ugcinc 2.18.0 → 2.19.0
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/dist/types.d.ts +2 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -687,8 +687,7 @@ export interface UpdateMediaTagParams {
|
|
|
687
687
|
tag: string;
|
|
688
688
|
}
|
|
689
689
|
export interface DeleteMediaParams {
|
|
690
|
-
|
|
691
|
-
ids?: string[];
|
|
690
|
+
ids: string[];
|
|
692
691
|
}
|
|
693
692
|
export interface DeleteMediaResponse {
|
|
694
693
|
deleted: string[];
|
|
@@ -703,8 +702,7 @@ export interface CreateSocialAudioParams {
|
|
|
703
702
|
tag?: string;
|
|
704
703
|
}
|
|
705
704
|
export interface CreateMediaFromUrlParams {
|
|
706
|
-
|
|
707
|
-
urls?: string[];
|
|
705
|
+
urls: string[];
|
|
708
706
|
tag?: string;
|
|
709
707
|
}
|
|
710
708
|
export {};
|