@isardsat/editorial-common 6.13.0 → 6.13.2
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.
- package/CHANGELOG.md +12 -0
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { EditorialConfigSchema, EditorialDataItemSchema, EditorialDataObjec
|
|
|
3
3
|
export interface LargeFileHandler {
|
|
4
4
|
list: () => Promise<object[]>;
|
|
5
5
|
delete: () => Promise<void>;
|
|
6
|
-
upload: () => Promise<void>;
|
|
6
|
+
upload: (file: unknown, options?: unknown) => Promise<void>;
|
|
7
7
|
}
|
|
8
8
|
export type EditorialConfig = z.infer<typeof EditorialConfigSchema>;
|
|
9
9
|
export type EditorialData = z.infer<typeof EditorialDataSchema>;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -13,7 +13,7 @@ import type {
|
|
|
13
13
|
export interface LargeFileHandler {
|
|
14
14
|
list: () => Promise<object[]>;
|
|
15
15
|
delete: () => Promise<void>;
|
|
16
|
-
upload: () => Promise<void>;
|
|
16
|
+
upload: (file: unknown, options?: unknown) => Promise<void>;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export type EditorialConfig = z.infer<typeof EditorialConfigSchema>;
|