ugcinc 2.58.0 → 2.59.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 -5
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ImageEditorElement as RemotionImageEditorElement, ImageEditorNodeConfig as RemotionImageEditorNodeConfig, DimensionPresetKey as RemotionDimensionPresetKey } from 'ugcinc-remotion';
1
+ import type { ImageEditorElement, ImageEditorNodeConfig, DimensionPresetKey } from 'ugcinc-remotion';
2
2
  /**
3
3
  * API response types
4
4
  */
@@ -375,9 +375,7 @@ export interface ImageEditorConfig extends BaseEditorConfig {
375
375
  }>;
376
376
  dynamicCrop?: DynamicCropConfig;
377
377
  }
378
- export type ImageEditorElement = RemotionImageEditorElement;
379
- export type ImageEditorNodeConfig = RemotionImageEditorNodeConfig;
380
- export type DimensionPresetKey = RemotionDimensionPresetKey;
378
+ export type { ImageEditorElement, ImageEditorNodeConfig, DimensionPresetKey };
381
379
  export interface ImageEditorNodeInput extends Record<string, unknown> {
382
380
  type: 'image-editor';
383
381
  config: ImageEditorNodeConfig;
@@ -950,4 +948,3 @@ export interface UploadTokenResponse {
950
948
  clientToken: string;
951
949
  pathname: string;
952
950
  }
953
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.58.0",
3
+ "version": "2.59.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",