randmar-api-client 1.68.0 → 1.69.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.
@@ -2090,7 +2090,7 @@ export type GetProductByProductNumberVideoExistsApiArg = {
2090
2090
  productNumber: string;
2091
2091
  };
2092
2092
  export type GetShortsGenerationContentScenesApiResponse =
2093
- /** status 200 Returns a list of scene names. */ string[];
2093
+ /** status 200 Returns a list of available scenes with their asset details. */ SceneInformation[];
2094
2094
  export type GetShortsGenerationContentScenesApiArg = void;
2095
2095
  export type GetShortsGenerationContentSceneBySceneNameApiResponse = unknown;
2096
2096
  export type GetShortsGenerationContentSceneBySceneNameApiArg = {
@@ -4187,6 +4187,21 @@ export type MostRecentVideo = {
4187
4187
  CreationDate?: string;
4188
4188
  RandmarSKU?: string | null;
4189
4189
  };
4190
+ export type SceneAsset = {
4191
+ FileName?: string | null;
4192
+ FileType?: string | null;
4193
+ CreationDate?: string;
4194
+ Description?: string | null;
4195
+ ContentLength?: number;
4196
+ ContentType?: string | null;
4197
+ };
4198
+ export type SceneInformation = {
4199
+ Name?: string | null;
4200
+ Scene?: SceneAsset;
4201
+ Thumbnail?: SceneAsset;
4202
+ Preview?: SceneAsset;
4203
+ AmbientSound?: SceneAsset;
4204
+ };
4190
4205
  export type CreateRequisitionInput = {
4191
4206
  Location?: string | null;
4192
4207
  Reference?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "randmar-api-client",
3
- "version": "1.68.0",
3
+ "version": "1.69.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",