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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -4
  2. 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
- id?: string;
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
- url?: string;
707
- urls?: string[];
705
+ urls: string[];
708
706
  tag?: string;
709
707
  }
710
708
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.18.0",
3
+ "version": "2.19.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",