@revxui/api-clients-ts 1.1.474 → 1.1.476
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/esm2020/model/advertiserPojo.mjs +1 -1
- package/esm2020/model/advertiserSettings.mjs +1 -1
- package/esm2020/model/clickDestination.mjs +1 -1
- package/esm2020/model/models.mjs +1 -3
- package/fesm2015/revxui-api-clients-ts.mjs +1 -22
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +1 -22
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/advertiserPojo.d.ts +0 -4
- package/model/advertiserSettings.d.ts +0 -2
- package/model/clickDestination.d.ts +5 -7
- package/model/models.d.ts +0 -2
- package/package.json +1 -1
- package/esm2020/model/clickSigningDTO.mjs +0 -2
- package/esm2020/model/platformClickSigningConfig.mjs +0 -21
- package/model/clickSigningDTO.d.ts +0 -16
- package/model/platformClickSigningConfig.d.ts +0 -26
|
@@ -9,10 +9,8 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { AdvertiserAppSettingsDTO } from './advertiserAppSettingsDTO';
|
|
13
12
|
import { AppSettingsDTO } from './appSettingsDTO';
|
|
14
13
|
import { BaseModel } from './baseModel';
|
|
15
|
-
import { ClickSigningDTO } from './clickSigningDTO';
|
|
16
14
|
export interface AdvertiserPojo {
|
|
17
15
|
active?: boolean;
|
|
18
16
|
androidDeclareUrl?: string;
|
|
@@ -24,8 +22,6 @@ export interface AdvertiserPojo {
|
|
|
24
22
|
categoryIabCode?: string;
|
|
25
23
|
categoryId?: number;
|
|
26
24
|
categoryName?: string;
|
|
27
|
-
clickSigningDetails?: ClickSigningDTO;
|
|
28
|
-
clickSigningSettings?: AdvertiserAppSettingsDTO;
|
|
29
25
|
contactAddress?: string;
|
|
30
26
|
contactNumber?: string;
|
|
31
27
|
createdBy?: number;
|
|
@@ -10,10 +10,8 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { BaseModel } from './baseModel';
|
|
13
|
-
import { ClickSigningDTO } from './clickSigningDTO';
|
|
14
13
|
export interface AdvertiserSettings {
|
|
15
14
|
advertiserId?: number;
|
|
16
|
-
clickSigning?: ClickSigningDTO;
|
|
17
15
|
creativeNameFormat?: string;
|
|
18
16
|
dateFormat?: string;
|
|
19
17
|
eventFilterAllowed?: boolean;
|
|
@@ -14,11 +14,10 @@ export interface ClickDestination {
|
|
|
14
14
|
active?: boolean;
|
|
15
15
|
advertiserId?: number;
|
|
16
16
|
androidClickUrl?: string;
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
androidImpressionS2sUrl?: string;
|
|
18
|
+
androidImpressionUrl?: string;
|
|
19
19
|
androidS2SV2EngagedClickTrackingUrl?: string;
|
|
20
20
|
androidS2SV2EngagedImpressionTrackingUrl?: string;
|
|
21
|
-
androidS2SV2ImpressionTrackingUrl?: string;
|
|
22
21
|
androidS2sClickTrackingUrl?: string;
|
|
23
22
|
campaignType?: ClickDestination.CampaignTypeEnum;
|
|
24
23
|
clickUrl?: string;
|
|
@@ -27,15 +26,13 @@ export interface ClickDestination {
|
|
|
27
26
|
creativeFormat?: ClickDestination.CreativeFormatEnum;
|
|
28
27
|
creativeSets?: Array<BaseModel>;
|
|
29
28
|
dco?: boolean;
|
|
30
|
-
enrichedEngagement?: number;
|
|
31
29
|
generatedUrlType?: ClickDestination.GeneratedUrlTypeEnum;
|
|
32
30
|
id?: number;
|
|
33
31
|
iosCLickUrl?: string;
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
iosImpressionS2sUrl?: string;
|
|
33
|
+
iosImpressionUrl?: string;
|
|
36
34
|
iosS2SV2EngagedClickTrackingUrl?: string;
|
|
37
35
|
iosS2SV2EngagedImpressionTrackingUrl?: string;
|
|
38
|
-
iosS2SV2ImpressionTrackingUrl?: string;
|
|
39
36
|
iosS2sClickTrackingUrl?: string;
|
|
40
37
|
isArchived?: boolean;
|
|
41
38
|
licenseeId?: number;
|
|
@@ -47,6 +44,7 @@ export interface ClickDestination {
|
|
|
47
44
|
serverTrackingUrl?: string;
|
|
48
45
|
skadTarget?: boolean;
|
|
49
46
|
vtaTriggerPercentile?: number;
|
|
47
|
+
warnings?: Array<string>;
|
|
50
48
|
webClickUrl?: string;
|
|
51
49
|
webImpressionTracker?: string;
|
|
52
50
|
webS2sClickTrackingUrl?: string;
|
package/model/models.d.ts
CHANGED
|
@@ -233,7 +233,6 @@ export * from './catalogFeed';
|
|
|
233
233
|
export * from './chartDashboardResponse';
|
|
234
234
|
export * from './clickDestination';
|
|
235
235
|
export * from './clickDestinationAutomationUrls';
|
|
236
|
-
export * from './clickSigningDTO';
|
|
237
236
|
export * from './cohortCampaignStrategyDO';
|
|
238
237
|
export * from './cohortCampaignStrategyResponse';
|
|
239
238
|
export * from './cohortData';
|
|
@@ -386,7 +385,6 @@ export * from './pixelDataFileDTO';
|
|
|
386
385
|
export * from './pixelDataScheduleDTO';
|
|
387
386
|
export * from './pixelRemoteConfigDTO';
|
|
388
387
|
export * from './platformAudienceDTO';
|
|
389
|
-
export * from './platformClickSigningConfig';
|
|
390
388
|
export * from './publisherId';
|
|
391
389
|
export * from './rTBAggregators';
|
|
392
390
|
export * from './rTBAggregatorsEditField';
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpY2tTaWduaW5nRFRPLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbW9kZWwvY2xpY2tTaWduaW5nRFRPLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEFwaSBEb2N1bWVudGF0aW9uXG4gKiBBcGkgRG9jdW1lbnRhdGlvblxuICpcbiAqIE9wZW5BUEkgc3BlYyB2ZXJzaW9uOiAxLjBcbiAqIFxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgdGhlIHN3YWdnZXIgY29kZSBnZW5lcmF0b3IgcHJvZ3JhbS5cbiAqIGh0dHBzOi8vZ2l0aHViLmNvbS9zd2FnZ2VyLWFwaS9zd2FnZ2VyLWNvZGVnZW4uZ2l0XG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFBsYXRmb3JtQ2xpY2tTaWduaW5nQ29uZmlnIH0gZnJvbSAnLi9wbGF0Zm9ybUNsaWNrU2lnbmluZ0NvbmZpZyc7XG5cblxuZXhwb3J0IGludGVyZmFjZSBDbGlja1NpZ25pbmdEVE8geyBcbiAgICBhbmRyb2lkPzogUGxhdGZvcm1DbGlja1NpZ25pbmdDb25maWc7XG4gICAgaW9zPzogUGxhdGZvcm1DbGlja1NpZ25pbmdDb25maWc7XG59XG4iXX0=
|
|
@@ -1,21 +0,0 @@
|
|
|
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 var PlatformClickSigningConfig;
|
|
13
|
-
(function (PlatformClickSigningConfig) {
|
|
14
|
-
PlatformClickSigningConfig.ClickSigningStatusEnum = {
|
|
15
|
-
ENABLECSPENDING: 'ENABLE_CS_PENDING',
|
|
16
|
-
CSENABLED: 'CS_ENABLED',
|
|
17
|
-
DISABLECSPENDING: 'DISABLE_CS_PENDING',
|
|
18
|
-
CSDISABLED: 'CS_DISABLED'
|
|
19
|
-
};
|
|
20
|
-
})(PlatformClickSigningConfig || (PlatformClickSigningConfig = {}));
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm1DbGlja1NpZ25pbmdDb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9wbGF0Zm9ybUNsaWNrU2lnbmluZ0NvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7OztHQVVHO0FBU0gsTUFBTSxLQUFXLDBCQUEwQixDQVExQztBQVJELFdBQWlCLDBCQUEwQjtJQUUxQixpREFBc0IsR0FBRztRQUNsQyxlQUFlLEVBQUUsbUJBQTZDO1FBQzlELFNBQVMsRUFBRSxZQUFzQztRQUNqRCxnQkFBZ0IsRUFBRSxvQkFBOEM7UUFDaEUsVUFBVSxFQUFFLGFBQXVDO0tBQ3RELENBQUM7QUFDTixDQUFDLEVBUmdCLDBCQUEwQixLQUExQiwwQkFBMEIsUUFRMUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEFwaSBEb2N1bWVudGF0aW9uXG4gKiBBcGkgRG9jdW1lbnRhdGlvblxuICpcbiAqIE9wZW5BUEkgc3BlYyB2ZXJzaW9uOiAxLjBcbiAqIFxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgdGhlIHN3YWdnZXIgY29kZSBnZW5lcmF0b3IgcHJvZ3JhbS5cbiAqIGh0dHBzOi8vZ2l0aHViLmNvbS9zd2FnZ2VyLWFwaS9zd2FnZ2VyLWNvZGVnZW4uZ2l0XG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cblxuXG5leHBvcnQgaW50ZXJmYWNlIFBsYXRmb3JtQ2xpY2tTaWduaW5nQ29uZmlnIHsgXG4gICAgYXBwSWQ/OiBzdHJpbmc7XG4gICAgY2xpY2tTaWduaW5nU3RhdHVzPzogUGxhdGZvcm1DbGlja1NpZ25pbmdDb25maWcuQ2xpY2tTaWduaW5nU3RhdHVzRW51bTtcbiAgICBpc0VuYWJsZWQ/OiBib29sZWFuO1xuICAgIHBhY2thZ2VOYW1lPzogc3RyaW5nO1xufVxuZXhwb3J0IG5hbWVzcGFjZSBQbGF0Zm9ybUNsaWNrU2lnbmluZ0NvbmZpZyB7XG4gICAgZXhwb3J0IHR5cGUgQ2xpY2tTaWduaW5nU3RhdHVzRW51bSA9ICdFTkFCTEVfQ1NfUEVORElORycgfCAnQ1NfRU5BQkxFRCcgfCAnRElTQUJMRV9DU19QRU5ESU5HJyB8ICdDU19ESVNBQkxFRCc7XG4gICAgZXhwb3J0IGNvbnN0IENsaWNrU2lnbmluZ1N0YXR1c0VudW0gPSB7XG4gICAgICAgIEVOQUJMRUNTUEVORElORzogJ0VOQUJMRV9DU19QRU5ESU5HJyBhcyBDbGlja1NpZ25pbmdTdGF0dXNFbnVtLFxuICAgICAgICBDU0VOQUJMRUQ6ICdDU19FTkFCTEVEJyBhcyBDbGlja1NpZ25pbmdTdGF0dXNFbnVtLFxuICAgICAgICBESVNBQkxFQ1NQRU5ESU5HOiAnRElTQUJMRV9DU19QRU5ESU5HJyBhcyBDbGlja1NpZ25pbmdTdGF0dXNFbnVtLFxuICAgICAgICBDU0RJU0FCTEVEOiAnQ1NfRElTQUJMRUQnIGFzIENsaWNrU2lnbmluZ1N0YXR1c0VudW1cbiAgICB9O1xufVxuIl19
|
|
@@ -1,16 +0,0 @@
|
|
|
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 { PlatformClickSigningConfig } from './platformClickSigningConfig';
|
|
13
|
-
export interface ClickSigningDTO {
|
|
14
|
-
android?: PlatformClickSigningConfig;
|
|
15
|
-
ios?: PlatformClickSigningConfig;
|
|
16
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
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 PlatformClickSigningConfig {
|
|
13
|
-
appId?: string;
|
|
14
|
-
clickSigningStatus?: PlatformClickSigningConfig.ClickSigningStatusEnum;
|
|
15
|
-
isEnabled?: boolean;
|
|
16
|
-
packageName?: string;
|
|
17
|
-
}
|
|
18
|
-
export declare namespace PlatformClickSigningConfig {
|
|
19
|
-
type ClickSigningStatusEnum = 'ENABLE_CS_PENDING' | 'CS_ENABLED' | 'DISABLE_CS_PENDING' | 'CS_DISABLED';
|
|
20
|
-
const ClickSigningStatusEnum: {
|
|
21
|
-
ENABLECSPENDING: ClickSigningStatusEnum;
|
|
22
|
-
CSENABLED: ClickSigningStatusEnum;
|
|
23
|
-
DISABLECSPENDING: ClickSigningStatusEnum;
|
|
24
|
-
CSDISABLED: ClickSigningStatusEnum;
|
|
25
|
-
};
|
|
26
|
-
}
|