graphlit-client 1.0.20251006001 → 1.0.20251007001

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.
@@ -14985,12 +14985,14 @@ export type VideoMetadataInput = {
14985
14985
  };
14986
14986
  /** Video size (resolution) */
14987
14987
  export declare enum VideoSizeTypes {
14988
- /** 1080x1920 (Full HD portrait) */
14989
- Size_1080X1920 = "SIZE_1080X1920",
14990
- /** 1280x720 (HD landscape) */
14991
- Size_1280X720 = "SIZE_1280X720",
14992
- /** 1920x1080 (Full HD landscape) */
14993
- Size_1920X1080 = "SIZE_1920X1080"
14988
+ /** Full HD landscape */
14989
+ FullHdLandscape = "FULL_HD_LANDSCAPE",
14990
+ /** Full HD portrait */
14991
+ FullHdPortrait = "FULL_HD_PORTRAIT",
14992
+ /** HD landscape */
14993
+ HdLandscape = "HD_LANDSCAPE",
14994
+ /** HD portrait */
14995
+ HdPortrait = "HD_PORTRAIT"
14994
14996
  }
14995
14997
  /** Represents a view. */
14996
14998
  export type View = {
@@ -2355,12 +2355,14 @@ export var UserTypes;
2355
2355
  /** Video size (resolution) */
2356
2356
  export var VideoSizeTypes;
2357
2357
  (function (VideoSizeTypes) {
2358
- /** 1080x1920 (Full HD portrait) */
2359
- VideoSizeTypes["Size_1080X1920"] = "SIZE_1080X1920";
2360
- /** 1280x720 (HD landscape) */
2361
- VideoSizeTypes["Size_1280X720"] = "SIZE_1280X720";
2362
- /** 1920x1080 (Full HD landscape) */
2363
- VideoSizeTypes["Size_1920X1080"] = "SIZE_1920X1080";
2358
+ /** Full HD landscape */
2359
+ VideoSizeTypes["FullHdLandscape"] = "FULL_HD_LANDSCAPE";
2360
+ /** Full HD portrait */
2361
+ VideoSizeTypes["FullHdPortrait"] = "FULL_HD_PORTRAIT";
2362
+ /** HD landscape */
2363
+ VideoSizeTypes["HdLandscape"] = "HD_LANDSCAPE";
2364
+ /** HD portrait */
2365
+ VideoSizeTypes["HdPortrait"] = "HD_PORTRAIT";
2364
2366
  })(VideoSizeTypes || (VideoSizeTypes = {}));
2365
2367
  /** View type */
2366
2368
  export var ViewTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251006001",
3
+ "version": "1.0.20251007001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",