@revxui/api-clients-ts 1.1.469 → 1.1.470

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.
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Api Documentation
3
+ * Api Documentation
4
+ *
5
+ * OpenAPI spec version: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { DcoVideoMusicTrackDTO } from './dcoVideoMusicTrackDTO';
13
+ export interface ApiResponseObjectListDcoVideoMusicTrackDTO {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: Array<DcoVideoMusicTrackDTO>;
17
+ }
@@ -18,6 +18,7 @@ export interface DcoVideoAssetDTO {
18
18
  height?: number;
19
19
  id?: number;
20
20
  modifiedAt?: Date;
21
+ musicLibraryTrackId?: number;
21
22
  type?: string;
22
23
  url?: string;
23
24
  width?: number;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Api Documentation
3
+ * Api Documentation
4
+ *
5
+ * OpenAPI spec version: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface DcoVideoMusicTrackDTO {
13
+ displayName?: string;
14
+ durationSecs?: number;
15
+ fileName?: string;
16
+ fileSizeInBytes?: number;
17
+ id?: number;
18
+ url?: string;
19
+ }
@@ -20,6 +20,7 @@ export interface DcoVideoSettingsDTO {
20
20
  feedKey?: string;
21
21
  id?: number;
22
22
  isActive?: boolean;
23
+ isArchived?: boolean;
23
24
  modifiedBy?: number;
24
25
  sampleVideoGeneratedAt?: Date;
25
26
  sampleVideoHeight?: number;
package/model/models.d.ts CHANGED
@@ -124,6 +124,7 @@ export * from './apiResponseObjectListCreativeMetaData';
124
124
  export * from './apiResponseObjectListDashboardResponse';
125
125
  export * from './apiResponseObjectListDcoVideoBrandGuidelineDTO';
126
126
  export * from './apiResponseObjectListDcoVideoDimensionDTO';
127
+ export * from './apiResponseObjectListDcoVideoMusicTrackDTO';
127
128
  export * from './apiResponseObjectListDcoVideoSettingsDTO';
128
129
  export * from './apiResponseObjectListDcoVideoTemplateDTO';
129
130
  export * from './apiResponseObjectListDynamicVideoTemplate';
@@ -292,6 +293,7 @@ export * from './dcoVideoDimensionDTO';
292
293
  export * from './dcoVideoGenerateSampleRequest';
293
294
  export * from './dcoVideoGenerateSampleResponse';
294
295
  export * from './dcoVideoGeneratedCountResponse';
296
+ export * from './dcoVideoMusicTrackDTO';
295
297
  export * from './dcoVideoSettingsCreateRequest';
296
298
  export * from './dcoVideoSettingsDTO';
297
299
  export * from './dcoVideoSettingsUpdateRequest';
@@ -22,12 +22,9 @@ export interface SafeguardBlockedItemDTO {
22
22
  unblockActionMessage?: string;
23
23
  }
24
24
  export declare namespace SafeguardBlockedItemDTO {
25
- type StatusEnum = 'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'SUCCESS' | 'PARTIAL_SUCCESS';
25
+ type StatusEnum = 'SUCCESS' | 'FAILURE';
26
26
  const StatusEnum: {
27
- PENDING: StatusEnum;
28
- INPROGRESS: StatusEnum;
29
- FAILED: StatusEnum;
30
27
  SUCCESS: StatusEnum;
31
- PARTIALSUCCESS: StatusEnum;
28
+ FAILURE: StatusEnum;
32
29
  };
33
30
  }
@@ -14,10 +14,12 @@ export interface SafeguardDetail {
14
14
  createdBy?: BaseModel;
15
15
  createdOn?: number;
16
16
  isActive?: boolean;
17
+ lastRunTime?: number;
17
18
  lookbackWindow?: number;
18
19
  modifiedBy?: BaseModel;
19
20
  modifiedOn?: number;
20
21
  nextRunTime?: number;
22
+ permanentlyBlockOnSecondStrike?: boolean;
21
23
  refreshFrequency?: number;
22
24
  rules?: string;
23
25
  runFrequency?: number;
@@ -28,9 +30,10 @@ export interface SafeguardDetail {
28
30
  targetingScope?: SafeguardDetail.TargetingScopeEnum;
29
31
  }
30
32
  export declare namespace SafeguardDetail {
31
- type TargetingScopeEnum = 'APP' | 'INVENTORY';
33
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
32
34
  const TargetingScopeEnum: {
33
35
  APP: TargetingScopeEnum;
34
36
  INVENTORY: TargetingScopeEnum;
37
+ CREATIVE: TargetingScopeEnum;
35
38
  };
36
39
  }
@@ -17,9 +17,10 @@ export interface SafeguardExclusionDTO {
17
17
  scope?: SafeguardExclusionDTO.ScopeEnum;
18
18
  }
19
19
  export declare namespace SafeguardExclusionDTO {
20
- type ScopeEnum = 'APP' | 'INVENTORY';
20
+ type ScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
21
21
  const ScopeEnum: {
22
22
  APP: ScopeEnum;
23
23
  INVENTORY: ScopeEnum;
24
+ CREATIVE: ScopeEnum;
24
25
  };
25
26
  }
@@ -15,6 +15,7 @@ export interface SafeguardRequestDTO {
15
15
  advertiserId?: number;
16
16
  campaignId?: number;
17
17
  lookbackWindow?: number;
18
+ permanentlyBlockOnSecondStrike?: boolean;
18
19
  refreshFrequency?: number;
19
20
  rules?: string;
20
21
  runFrequency?: number;
@@ -25,9 +26,10 @@ export interface SafeguardRequestDTO {
25
26
  targetingScope?: SafeguardRequestDTO.TargetingScopeEnum;
26
27
  }
27
28
  export declare namespace SafeguardRequestDTO {
28
- type TargetingScopeEnum = 'APP' | 'INVENTORY';
29
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
29
30
  const TargetingScopeEnum: {
30
31
  APP: TargetingScopeEnum;
31
32
  INVENTORY: TargetingScopeEnum;
33
+ CREATIVE: TargetingScopeEnum;
32
34
  };
33
35
  }
@@ -16,6 +16,7 @@ export interface SafeguardResponseDTO {
16
16
  campaignId?: number;
17
17
  lookbackWindow?: number;
18
18
  nextRunTime?: number;
19
+ permanentlyBlockOnSecondStrike?: boolean;
19
20
  refreshFrequency?: number;
20
21
  rules?: string;
21
22
  runFrequency?: number;
@@ -26,9 +27,10 @@ export interface SafeguardResponseDTO {
26
27
  targetingScope?: SafeguardResponseDTO.TargetingScopeEnum;
27
28
  }
28
29
  export declare namespace SafeguardResponseDTO {
29
- type TargetingScopeEnum = 'APP' | 'INVENTORY';
30
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
30
31
  const TargetingScopeEnum: {
31
32
  APP: TargetingScopeEnum;
32
33
  INVENTORY: TargetingScopeEnum;
34
+ CREATIVE: TargetingScopeEnum;
33
35
  };
34
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "1.1.469",
3
+ "version": "1.1.470",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [