sveltekit-ui 1.0.68 → 1.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -292,9 +292,9 @@ export function create_audio_editor_manager(config) {
|
|
|
292
292
|
set_closurable(config?.storage_src, "https://www.contibase.com/api/v1/storage/{storage_id}")
|
|
293
293
|
)
|
|
294
294
|
let fetch_path_audio_read_tags = $derived(
|
|
295
|
-
set_closurable(config?.fetch_path_audio_read_tags, `${api_prefix}/audio/read_tags`)
|
|
295
|
+
set_closurable(config?.fetch_path_audio_read_tags, `${api_prefix}/tools/audio/read_tags`)
|
|
296
296
|
)
|
|
297
|
-
let fetch_path_audio_post = $derived(set_closurable(config?.fetch_path_audio_post, `${api_prefix}/audio`))
|
|
297
|
+
let fetch_path_audio_post = $derived(set_closurable(config?.fetch_path_audio_post, `${api_prefix}/tools/audio`))
|
|
298
298
|
let file_prefix = $derived(set_closurable(config?.file_prefix, `${api_prefix}/storage/`))
|
|
299
299
|
|
|
300
300
|
let account = $derived(set_closurable(config?.account, null))
|
|
@@ -113,7 +113,7 @@ export function create_storage_picker_manager(config) {
|
|
|
113
113
|
const is_acceptable_mime_type = (item) => {
|
|
114
114
|
return (
|
|
115
115
|
!(Array.isArray(acceptable_mime_types) && acceptable_mime_types.length > 0) ||
|
|
116
|
-
acceptable_mime_types.includes(item
|
|
116
|
+
acceptable_mime_types.includes(item?.mime_type)
|
|
117
117
|
)
|
|
118
118
|
}
|
|
119
119
|
if (
|
package/package.json
CHANGED
|
@@ -292,9 +292,9 @@ export function create_audio_editor_manager(config) {
|
|
|
292
292
|
set_closurable(config?.storage_src, "https://www.contibase.com/api/v1/storage/{storage_id}")
|
|
293
293
|
)
|
|
294
294
|
let fetch_path_audio_read_tags = $derived(
|
|
295
|
-
set_closurable(config?.fetch_path_audio_read_tags, `${api_prefix}/audio/read_tags`)
|
|
295
|
+
set_closurable(config?.fetch_path_audio_read_tags, `${api_prefix}/tools/audio/read_tags`)
|
|
296
296
|
)
|
|
297
|
-
let fetch_path_audio_post = $derived(set_closurable(config?.fetch_path_audio_post, `${api_prefix}/audio`))
|
|
297
|
+
let fetch_path_audio_post = $derived(set_closurable(config?.fetch_path_audio_post, `${api_prefix}/tools/audio`))
|
|
298
298
|
let file_prefix = $derived(set_closurable(config?.file_prefix, `${api_prefix}/storage/`))
|
|
299
299
|
|
|
300
300
|
let account = $derived(set_closurable(config?.account, null))
|
|
@@ -113,7 +113,7 @@ export function create_storage_picker_manager(config) {
|
|
|
113
113
|
const is_acceptable_mime_type = (item) => {
|
|
114
114
|
return (
|
|
115
115
|
!(Array.isArray(acceptable_mime_types) && acceptable_mime_types.length > 0) ||
|
|
116
|
-
acceptable_mime_types.includes(item
|
|
116
|
+
acceptable_mime_types.includes(item?.mime_type)
|
|
117
117
|
)
|
|
118
118
|
}
|
|
119
119
|
if (
|