@revxui/api-clients-ts 3.0.0-beta02-08 → 3.0.0-beta02-09
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.
- package/README.md +2 -2
- package/fesm2022/revxui-api-clients-ts.mjs +217 -16
- package/fesm2022/revxui-api-clients-ts.mjs.map +1 -1
- package/index.d.ts +218 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @revxui/api-clients-ts@3.0.0-beta02-
|
|
1
|
+
# @revxui/api-clients-ts@3.0.0-beta02-09
|
|
2
2
|
|
|
3
3
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @revxui/api-clients-ts@3.0.0-beta02-
|
|
27
|
+
npm install @revxui/api-clients-ts@3.0.0-beta02-09 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -5969,6 +5969,101 @@ class CreativeSetsV2ControllerService extends BaseService {
|
|
|
5969
5969
|
super(basePath, configuration);
|
|
5970
5970
|
this.httpClient = httpClient;
|
|
5971
5971
|
}
|
|
5972
|
+
completeUploadSession(sessionId, uploadSessionCompleteRequest, observe = 'body', reportProgress = false, options) {
|
|
5973
|
+
if (sessionId === null || sessionId === undefined) {
|
|
5974
|
+
throw new Error('Required parameter sessionId was null or undefined when calling completeUploadSession.');
|
|
5975
|
+
}
|
|
5976
|
+
if (uploadSessionCompleteRequest === null || uploadSessionCompleteRequest === undefined) {
|
|
5977
|
+
throw new Error('Required parameter uploadSessionCompleteRequest was null or undefined when calling completeUploadSession.');
|
|
5978
|
+
}
|
|
5979
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5980
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5981
|
+
'application/json'
|
|
5982
|
+
]);
|
|
5983
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5984
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5985
|
+
}
|
|
5986
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5987
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5988
|
+
// to determine the Content-Type header
|
|
5989
|
+
const consumes = [
|
|
5990
|
+
'application/json'
|
|
5991
|
+
];
|
|
5992
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
5993
|
+
if (httpContentTypeSelected !== undefined) {
|
|
5994
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
5995
|
+
}
|
|
5996
|
+
let responseType_ = 'json';
|
|
5997
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5998
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5999
|
+
responseType_ = 'text';
|
|
6000
|
+
}
|
|
6001
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6002
|
+
responseType_ = 'json';
|
|
6003
|
+
}
|
|
6004
|
+
else {
|
|
6005
|
+
responseType_ = 'blob';
|
|
6006
|
+
}
|
|
6007
|
+
}
|
|
6008
|
+
let localVarPath = `/v2/api/creativesets/v2/upload-session/${this.configuration.encodeParam({ name: "sessionId", value: sessionId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}/complete`;
|
|
6009
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6010
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
6011
|
+
context: localVarHttpContext,
|
|
6012
|
+
body: uploadSessionCompleteRequest,
|
|
6013
|
+
responseType: responseType_,
|
|
6014
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6015
|
+
headers: localVarHeaders,
|
|
6016
|
+
observe: observe,
|
|
6017
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6018
|
+
reportProgress: reportProgress
|
|
6019
|
+
});
|
|
6020
|
+
}
|
|
6021
|
+
createUploadSession(uploadSessionRequest, observe = 'body', reportProgress = false, options) {
|
|
6022
|
+
if (uploadSessionRequest === null || uploadSessionRequest === undefined) {
|
|
6023
|
+
throw new Error('Required parameter uploadSessionRequest was null or undefined when calling createUploadSession.');
|
|
6024
|
+
}
|
|
6025
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6026
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6027
|
+
'application/json'
|
|
6028
|
+
]);
|
|
6029
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6030
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6031
|
+
}
|
|
6032
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6033
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6034
|
+
// to determine the Content-Type header
|
|
6035
|
+
const consumes = [
|
|
6036
|
+
'application/json'
|
|
6037
|
+
];
|
|
6038
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6039
|
+
if (httpContentTypeSelected !== undefined) {
|
|
6040
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
6041
|
+
}
|
|
6042
|
+
let responseType_ = 'json';
|
|
6043
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6044
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6045
|
+
responseType_ = 'text';
|
|
6046
|
+
}
|
|
6047
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6048
|
+
responseType_ = 'json';
|
|
6049
|
+
}
|
|
6050
|
+
else {
|
|
6051
|
+
responseType_ = 'blob';
|
|
6052
|
+
}
|
|
6053
|
+
}
|
|
6054
|
+
let localVarPath = `/v2/api/creativesets/v2/upload-session`;
|
|
6055
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6056
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
6057
|
+
context: localVarHttpContext,
|
|
6058
|
+
body: uploadSessionRequest,
|
|
6059
|
+
responseType: responseType_,
|
|
6060
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6061
|
+
headers: localVarHeaders,
|
|
6062
|
+
observe: observe,
|
|
6063
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6064
|
+
reportProgress: reportProgress
|
|
6065
|
+
});
|
|
6066
|
+
}
|
|
5972
6067
|
getJobStatus(jobId, observe = 'body', reportProgress = false, options) {
|
|
5973
6068
|
if (jobId === null || jobId === undefined) {
|
|
5974
6069
|
throw new Error('Required parameter jobId was null or undefined when calling getJobStatus.');
|
|
@@ -6092,12 +6187,12 @@ class CreativeSetsV2ControllerService extends BaseService {
|
|
|
6092
6187
|
reportProgress: reportProgress
|
|
6093
6188
|
});
|
|
6094
6189
|
}
|
|
6095
|
-
|
|
6190
|
+
updateCreativeSetV2(id, creativeAssetOptimizationRequest, observe = 'body', reportProgress = false, options) {
|
|
6096
6191
|
if (id === null || id === undefined) {
|
|
6097
|
-
throw new Error('Required parameter id was null or undefined when calling
|
|
6192
|
+
throw new Error('Required parameter id was null or undefined when calling updateCreativeSetV2.');
|
|
6098
6193
|
}
|
|
6099
6194
|
if (creativeAssetOptimizationRequest === null || creativeAssetOptimizationRequest === undefined) {
|
|
6100
|
-
throw new Error('Required parameter creativeAssetOptimizationRequest was null or undefined when calling
|
|
6195
|
+
throw new Error('Required parameter creativeAssetOptimizationRequest was null or undefined when calling updateCreativeSetV2.');
|
|
6101
6196
|
}
|
|
6102
6197
|
let localVarHeaders = this.defaultHeaders;
|
|
6103
6198
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
@@ -9415,6 +9510,46 @@ class NotificationsControllerService extends BaseService {
|
|
|
9415
9510
|
reportProgress: reportProgress
|
|
9416
9511
|
});
|
|
9417
9512
|
}
|
|
9513
|
+
getSafeguardAlertsByEntity(entityType, entityId, observe = 'body', reportProgress = false, options) {
|
|
9514
|
+
if (entityType === null || entityType === undefined) {
|
|
9515
|
+
throw new Error('Required parameter entityType was null or undefined when calling getSafeguardAlertsByEntity.');
|
|
9516
|
+
}
|
|
9517
|
+
if (entityId === null || entityId === undefined) {
|
|
9518
|
+
throw new Error('Required parameter entityId was null or undefined when calling getSafeguardAlertsByEntity.');
|
|
9519
|
+
}
|
|
9520
|
+
let localVarHeaders = this.defaultHeaders;
|
|
9521
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
9522
|
+
'application/json'
|
|
9523
|
+
]);
|
|
9524
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
9525
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
9526
|
+
}
|
|
9527
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
9528
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
9529
|
+
let responseType_ = 'json';
|
|
9530
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
9531
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
9532
|
+
responseType_ = 'text';
|
|
9533
|
+
}
|
|
9534
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
9535
|
+
responseType_ = 'json';
|
|
9536
|
+
}
|
|
9537
|
+
else {
|
|
9538
|
+
responseType_ = 'blob';
|
|
9539
|
+
}
|
|
9540
|
+
}
|
|
9541
|
+
let localVarPath = `/v2/api/notifications/getBannerNotifications/${this.configuration.encodeParam({ name: "entityType", value: entityType, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}/${this.configuration.encodeParam({ name: "entityId", value: entityId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
9542
|
+
const { basePath, withCredentials } = this.configuration;
|
|
9543
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
9544
|
+
context: localVarHttpContext,
|
|
9545
|
+
responseType: responseType_,
|
|
9546
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
9547
|
+
headers: localVarHeaders,
|
|
9548
|
+
observe: observe,
|
|
9549
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
9550
|
+
reportProgress: reportProgress
|
|
9551
|
+
});
|
|
9552
|
+
}
|
|
9418
9553
|
markAllSeen(observe = 'body', reportProgress = false, options) {
|
|
9419
9554
|
let localVarHeaders = this.defaultHeaders;
|
|
9420
9555
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
@@ -9855,12 +9990,12 @@ class PixelControllerService extends BaseService {
|
|
|
9855
9990
|
reportProgress: reportProgress
|
|
9856
9991
|
});
|
|
9857
9992
|
}
|
|
9858
|
-
|
|
9993
|
+
updatePixelById(id, pixel, observe = 'body', reportProgress = false, options) {
|
|
9859
9994
|
if (id === null || id === undefined) {
|
|
9860
|
-
throw new Error('Required parameter id was null or undefined when calling
|
|
9995
|
+
throw new Error('Required parameter id was null or undefined when calling updatePixelById.');
|
|
9861
9996
|
}
|
|
9862
9997
|
if (pixel === null || pixel === undefined) {
|
|
9863
|
-
throw new Error('Required parameter pixel was null or undefined when calling
|
|
9998
|
+
throw new Error('Required parameter pixel was null or undefined when calling updatePixelById.');
|
|
9864
9999
|
}
|
|
9865
10000
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
9866
10001
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'id', id, QueryParamStyle.Form, true);
|
|
@@ -11664,7 +11799,7 @@ class SliceXControllerService extends BaseService {
|
|
|
11664
11799
|
responseType_ = 'blob';
|
|
11665
11800
|
}
|
|
11666
11801
|
}
|
|
11667
|
-
let localVarPath = `/v2/api/slicex/list/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11802
|
+
let localVarPath = `/v2/api/slicex/list/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'bidRequestSize' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11668
11803
|
const { basePath, withCredentials } = this.configuration;
|
|
11669
11804
|
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
11670
11805
|
context: localVarHttpContext,
|
|
@@ -11716,7 +11851,7 @@ class SliceXControllerService extends BaseService {
|
|
|
11716
11851
|
responseType_ = 'blob';
|
|
11717
11852
|
}
|
|
11718
11853
|
}
|
|
11719
|
-
let localVarPath = `/v2/api/slicex/list/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}/new`;
|
|
11854
|
+
let localVarPath = `/v2/api/slicex/list/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'bidRequestSize' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}/new`;
|
|
11720
11855
|
const { basePath, withCredentials } = this.configuration;
|
|
11721
11856
|
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
11722
11857
|
context: localVarHttpContext,
|
|
@@ -11768,7 +11903,7 @@ class SliceXControllerService extends BaseService {
|
|
|
11768
11903
|
responseType_ = 'blob';
|
|
11769
11904
|
}
|
|
11770
11905
|
}
|
|
11771
|
-
let localVarPath = `/v2/api/slicex/list/compare/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11906
|
+
let localVarPath = `/v2/api/slicex/list/compare/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'bidRequestSize' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11772
11907
|
const { basePath, withCredentials } = this.configuration;
|
|
11773
11908
|
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
11774
11909
|
context: localVarHttpContext,
|
|
@@ -11818,7 +11953,7 @@ class SliceXControllerService extends BaseService {
|
|
|
11818
11953
|
responseType_ = 'blob';
|
|
11819
11954
|
}
|
|
11820
11955
|
}
|
|
11821
|
-
let localVarPath = `/v2/api/slicex/list/details/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11956
|
+
let localVarPath = `/v2/api/slicex/list/details/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'bidRequestSize' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11822
11957
|
const { basePath, withCredentials } = this.configuration;
|
|
11823
11958
|
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
11824
11959
|
context: localVarHttpContext,
|
|
@@ -11869,7 +12004,7 @@ class SliceXControllerService extends BaseService {
|
|
|
11869
12004
|
responseType_ = 'blob';
|
|
11870
12005
|
}
|
|
11871
12006
|
}
|
|
11872
|
-
let localVarPath = `/v2/api/slicex/list/csv/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
12007
|
+
let localVarPath = `/v2/api/slicex/list/csv/${this.configuration.encodeParam({ name: "entity", value: entity, in: "path", style: "simple", explode: false, dataType: "'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'bidRequestSize' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement' | 'sourceType' | 'deal' | 'lat'", dataFormat: undefined })}`;
|
|
11873
12008
|
const { basePath, withCredentials } = this.configuration;
|
|
11874
12009
|
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
11875
12010
|
context: localVarHttpContext,
|
|
@@ -16627,6 +16762,16 @@ var RuleDTO;
|
|
|
16627
16762
|
* Do not edit the class manually.
|
|
16628
16763
|
*/
|
|
16629
16764
|
|
|
16765
|
+
/**
|
|
16766
|
+
* OpenAPI definition
|
|
16767
|
+
*
|
|
16768
|
+
*
|
|
16769
|
+
*
|
|
16770
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
16771
|
+
* https://openapi-generator.tech
|
|
16772
|
+
* Do not edit the class manually.
|
|
16773
|
+
*/
|
|
16774
|
+
|
|
16630
16775
|
/**
|
|
16631
16776
|
* OpenAPI definition
|
|
16632
16777
|
*
|
|
@@ -16649,7 +16794,8 @@ var SafeguardDetail;
|
|
|
16649
16794
|
SafeguardDetail.TargetingScopeEnum = {
|
|
16650
16795
|
APP: 'APP',
|
|
16651
16796
|
INVENTORY: 'INVENTORY',
|
|
16652
|
-
CREATIVE: 'CREATIVE'
|
|
16797
|
+
CREATIVE: 'CREATIVE',
|
|
16798
|
+
STRATEGY: 'STRATEGY'
|
|
16653
16799
|
};
|
|
16654
16800
|
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
16655
16801
|
|
|
@@ -16658,7 +16804,8 @@ var SafeguardExclusionDTO;
|
|
|
16658
16804
|
SafeguardExclusionDTO.ScopeEnum = {
|
|
16659
16805
|
APP: 'APP',
|
|
16660
16806
|
INVENTORY: 'INVENTORY',
|
|
16661
|
-
CREATIVE: 'CREATIVE'
|
|
16807
|
+
CREATIVE: 'CREATIVE',
|
|
16808
|
+
STRATEGY: 'STRATEGY'
|
|
16662
16809
|
};
|
|
16663
16810
|
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
16664
16811
|
|
|
@@ -16667,7 +16814,8 @@ var SafeguardRequestDTO;
|
|
|
16667
16814
|
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
16668
16815
|
APP: 'APP',
|
|
16669
16816
|
INVENTORY: 'INVENTORY',
|
|
16670
|
-
CREATIVE: 'CREATIVE'
|
|
16817
|
+
CREATIVE: 'CREATIVE',
|
|
16818
|
+
STRATEGY: 'STRATEGY'
|
|
16671
16819
|
};
|
|
16672
16820
|
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
16673
16821
|
|
|
@@ -16676,7 +16824,8 @@ var SafeguardResponseDTO;
|
|
|
16676
16824
|
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
16677
16825
|
APP: 'APP',
|
|
16678
16826
|
INVENTORY: 'INVENTORY',
|
|
16679
|
-
CREATIVE: 'CREATIVE'
|
|
16827
|
+
CREATIVE: 'CREATIVE',
|
|
16828
|
+
STRATEGY: 'STRATEGY'
|
|
16680
16829
|
};
|
|
16681
16830
|
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
16682
16831
|
|
|
@@ -17142,6 +17291,58 @@ var TemplateVariablesDTO;
|
|
|
17142
17291
|
};
|
|
17143
17292
|
})(TemplateVariablesDTO || (TemplateVariablesDTO = {}));
|
|
17144
17293
|
|
|
17294
|
+
/**
|
|
17295
|
+
* OpenAPI definition
|
|
17296
|
+
*
|
|
17297
|
+
*
|
|
17298
|
+
*
|
|
17299
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
17300
|
+
* https://openapi-generator.tech
|
|
17301
|
+
* Do not edit the class manually.
|
|
17302
|
+
*/
|
|
17303
|
+
|
|
17304
|
+
/**
|
|
17305
|
+
* OpenAPI definition
|
|
17306
|
+
*
|
|
17307
|
+
*
|
|
17308
|
+
*
|
|
17309
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
17310
|
+
* https://openapi-generator.tech
|
|
17311
|
+
* Do not edit the class manually.
|
|
17312
|
+
*/
|
|
17313
|
+
|
|
17314
|
+
/**
|
|
17315
|
+
* OpenAPI definition
|
|
17316
|
+
*
|
|
17317
|
+
*
|
|
17318
|
+
*
|
|
17319
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
17320
|
+
* https://openapi-generator.tech
|
|
17321
|
+
* Do not edit the class manually.
|
|
17322
|
+
*/
|
|
17323
|
+
var UploadSessionCompleteRequest;
|
|
17324
|
+
(function (UploadSessionCompleteRequest) {
|
|
17325
|
+
UploadSessionCompleteRequest.CreativeSetTypeEnum = {
|
|
17326
|
+
IMAGE: 'IMAGE',
|
|
17327
|
+
VIDEO: 'VIDEO',
|
|
17328
|
+
THIRD_PARTY_AD_TAGS: 'THIRD_PARTY_AD_TAGS',
|
|
17329
|
+
ZIPPED_HTML: 'ZIPPED_HTML',
|
|
17330
|
+
NATIVE_IMAGE: 'NATIVE_IMAGE',
|
|
17331
|
+
NATIVE_VIDEO: 'NATIVE_VIDEO',
|
|
17332
|
+
DYNAMIC_IMAGE: 'DYNAMIC_IMAGE',
|
|
17333
|
+
DYNAMIC_MACRO: 'DYNAMIC_MACRO',
|
|
17334
|
+
DYNAMIC_HTML: 'DYNAMIC_HTML',
|
|
17335
|
+
DYNAMIC_VIDEO: 'DYNAMIC_VIDEO',
|
|
17336
|
+
HYBRID_STATIC_AD: 'HYBRID_STATIC_AD',
|
|
17337
|
+
HYBRID_DYNAMIC_AD: 'HYBRID_DYNAMIC_AD',
|
|
17338
|
+
THIRD_PARTY_VIDEO_AD_TAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
17339
|
+
NATIVE_ICON: 'NATIVE_ICON',
|
|
17340
|
+
ICON: 'ICON',
|
|
17341
|
+
CTV_VIDEO: 'CTV_VIDEO',
|
|
17342
|
+
PLAYABLE: 'PLAYABLE'
|
|
17343
|
+
};
|
|
17344
|
+
})(UploadSessionCompleteRequest || (UploadSessionCompleteRequest = {}));
|
|
17345
|
+
|
|
17145
17346
|
/**
|
|
17146
17347
|
* OpenAPI definition
|
|
17147
17348
|
*
|
|
@@ -17409,5 +17610,5 @@ function provideApi(configOrBasePath) {
|
|
|
17409
17610
|
* Generated bundle index. Do not edit.
|
|
17410
17611
|
*/
|
|
17411
17612
|
|
|
17412
|
-
export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, AdvertiserSettings, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerAudienceControllerService, AppsFlyerControllerService, AssetSelectionDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeControllerService, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, ConsoleCreativeControllerService, CreativeAssetOptimizationRequest, CreativeAssetUploadResponse, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeSetsV2ControllerService, CreativeSizeMappingDTO, CreativeTemplateDTO, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, DcoAttributesDTO, DcoVideoAssetDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, EndCards, ExperimentsControllerService, ExperimentsEntity, FileModel, FileUploadControllerService, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, LookAlikeAudienceConfigDTO, MDMPAudienceControllerService, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationJobItemStatusDTO, OptimizationJobStatusResponse, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RecencyTargetingDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeGuardControllerService, SafeguardBlockedItemDTO, SafeguardDetail, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SchedulerRequest, SelectedTargetDTO, ShopeeAudienceControllerService, ShopeeAudienceDTO, ShopeeAudienceDescriptionDTO, ShopeeAudienceListResp, SliceXControllerService, SmartCachingControllerService, SpringRoleTestingControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity, provideApi };
|
|
17613
|
+
export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, AdvertiserSettings, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerAudienceControllerService, AppsFlyerControllerService, AssetSelectionDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeControllerService, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, ConsoleCreativeControllerService, CreativeAssetOptimizationRequest, CreativeAssetUploadResponse, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeSetsV2ControllerService, CreativeSizeMappingDTO, CreativeTemplateDTO, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, DcoAttributesDTO, DcoVideoAssetDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, EndCards, ExperimentsControllerService, ExperimentsEntity, FileModel, FileUploadControllerService, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, LookAlikeAudienceConfigDTO, MDMPAudienceControllerService, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationJobItemStatusDTO, OptimizationJobStatusResponse, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RecencyTargetingDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeGuardControllerService, SafeguardBlockedItemDTO, SafeguardDetail, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SchedulerRequest, SelectedTargetDTO, ShopeeAudienceControllerService, ShopeeAudienceDTO, ShopeeAudienceDescriptionDTO, ShopeeAudienceListResp, SliceXControllerService, SmartCachingControllerService, SpringRoleTestingControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UploadSessionCompleteRequest, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity, provideApi };
|
|
17413
17614
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|