Updated API folder name

This commit is contained in:
WardPearce
2024-10-24 20:54:16 +13:00
parent a867e6a95c
commit db86f036ed
15 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import he from 'he';
import humanNumber from 'human-number';
import type Peer from 'peerjs';
import { get } from 'svelte/store';
import type { Image } from './Api/model';
import type { Image } from './api/model';
import { instanceStore, interfaceForceCase } from './store';
+1 -1
View File
@@ -1,4 +1,4 @@
import type { AdaptiveFormats, Captions, Image, StoryBoard, Thumbnail, VideoBase, VideoPlay } from '$lib/Api/model';
import type { AdaptiveFormats, Captions, Image, StoryBoard, Thumbnail, VideoBase, VideoPlay } from '$lib/api/model';
import { numberWithCommas } from '$lib/misc';
import { interfaceRegionStore, poTokenCacheStore } from '$lib/store';
import { Capacitor } from '@capacitor/core';
+1 -1
View File
@@ -1,4 +1,4 @@
import type { VideoPlay } from '$lib/Api/model';
import type { VideoPlay } from '$lib/api/model';
import { Capacitor } from '@capacitor/core';
import type Peer from 'peerjs';
import type { DataConnection } from 'peerjs';
+1 -1
View File
@@ -1,4 +1,4 @@
import { getPopular } from '$lib/Api/index.js';
import { getPopular } from '$lib/api/index.js';
import { error } from '@sveltejs/kit';
export async function load() {
@@ -1,4 +1,4 @@
import { getChannel } from '$lib/Api/index.js';
import { getChannel } from '$lib/api/index.js';
import { error } from '@sveltejs/kit';
export async function load({ params }) {
@@ -1,4 +1,4 @@
import { getPlaylist } from '$lib/Api/index.js';
import { getPlaylist } from '$lib/api/index.js';
import { error } from '@sveltejs/kit';
export async function load({ params }) {
@@ -1,4 +1,4 @@
import { getPersonalPlaylists } from '$lib/Api';
import { getPersonalPlaylists } from '$lib/api';
import { error } from '@sveltejs/kit';
export async function load() {
@@ -1,4 +1,4 @@
import { getSearch } from '$lib/Api/index';
import { getSearch } from '$lib/api/index';
import { error } from '@sveltejs/kit';
export async function load({ params, url }) {
@@ -1,4 +1,4 @@
import { getFeed } from '$lib/Api/index.js';
import { getFeed } from '$lib/api/index.js';
import { error } from '@sveltejs/kit';
export async function load({ params }) {
@@ -1,4 +1,4 @@
import { getSubscriptions } from '$lib/Api';
import { getSubscriptions } from '$lib/api';
import { error } from '@sveltejs/kit';
export async function load() {
@@ -1,5 +1,5 @@
import { getTrending } from '$lib/Api/index.js';
import type { Video } from '$lib/Api/model';
import { getTrending } from '$lib/api/index.js';
import type { Video } from '$lib/api/model';
import { error } from '@sveltejs/kit';
export async function load() {
@@ -5,7 +5,7 @@ import {
getPersonalPlaylists,
getVideo,
postHistory
} from '$lib/Api/index.js';
} from '$lib/api/index.js';
import { phaseDescription } from '$lib/misc';
import {
authStore,
@@ -1,4 +1,4 @@
import { getVideo } from '$lib/Api/index.js';
import { getVideo } from '$lib/api/index.js';
import { error } from '@sveltejs/kit';
import { get } from 'svelte/store';
import type { PhasedDescription } from '../../../../lib/misc.js';