@revxui/intellibid-client-ts 1.0.58 → 1.0.59

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.
Files changed (35) hide show
  1. package/README.md +2 -2
  2. package/api/advertiserController.service.d.ts +23 -0
  3. package/api/api.d.ts +3 -1
  4. package/api/audienceController.service.d.ts +41 -0
  5. package/esm2020/api/advertiserController.service.mjs +55 -1
  6. package/esm2020/api/api.mjs +4 -2
  7. package/esm2020/api/audienceController.service.mjs +110 -0
  8. package/esm2020/api.module.mjs +4 -1
  9. package/esm2020/model/audienceChildStatusDTO.mjs +22 -0
  10. package/esm2020/model/audienceGroupStatusResponse.mjs +16 -0
  11. package/esm2020/model/childPreviewDTO.mjs +13 -0
  12. package/esm2020/model/createBucketizedLiveAudienceRequest.mjs +19 -0
  13. package/esm2020/model/createBucketizedLiveAudienceResponse.mjs +10 -0
  14. package/esm2020/model/models.mjs +8 -1
  15. package/esm2020/model/pageAdvertiserResponse.mjs +1 -1
  16. package/esm2020/model/pageCampaignChangeLogResponse.mjs +1 -1
  17. package/esm2020/model/pageCampaignResponse.mjs +1 -1
  18. package/esm2020/model/productSetResponse.mjs +13 -0
  19. package/esm2020/model/upsertProductSetRequest.mjs +13 -0
  20. package/fesm2015/revxui-intellibid-client-ts.mjs +230 -2
  21. package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
  22. package/fesm2020/revxui-intellibid-client-ts.mjs +264 -2
  23. package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
  24. package/model/audienceChildStatusDTO.d.ts +31 -0
  25. package/model/audienceGroupStatusResponse.d.ts +42 -0
  26. package/model/childPreviewDTO.d.ts +19 -0
  27. package/model/createBucketizedLiveAudienceRequest.d.ts +33 -0
  28. package/model/createBucketizedLiveAudienceResponse.d.ts +28 -0
  29. package/model/models.d.ts +7 -0
  30. package/model/pageAdvertiserResponse.d.ts +1 -1
  31. package/model/pageCampaignChangeLogResponse.d.ts +1 -1
  32. package/model/pageCampaignResponse.d.ts +1 -1
  33. package/model/productSetResponse.d.ts +16 -0
  34. package/model/upsertProductSetRequest.d.ts +15 -0
  35. package/package.json +1 -1
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 { AudienceChildStatusDTO } from './audienceChildStatusDTO';
13
+ export interface AudienceGroupStatusResponse {
14
+ groupId?: number;
15
+ groupType?: AudienceGroupStatusResponse.GroupTypeEnum;
16
+ advertiserId?: number;
17
+ platformId?: number;
18
+ businessZoneId?: number;
19
+ syncStatus?: AudienceGroupStatusResponse.SyncStatusEnum;
20
+ lastSyncOperationId?: string;
21
+ lastSyncError?: string;
22
+ lastConfigAppliedAt?: Date;
23
+ createdAt?: Date;
24
+ updatedAt?: Date;
25
+ children?: Array<AudienceChildStatusDTO>;
26
+ }
27
+ export declare namespace AudienceGroupStatusResponse {
28
+ type GroupTypeEnum = 'BUCKETIZED_LIVE' | 'BLOCKED_LIVE' | 'BUCKETIZED_CUSTOM' | 'DS_CUSTOM_QUERY';
29
+ const GroupTypeEnum: {
30
+ BUCKETIZEDLIVE: GroupTypeEnum;
31
+ BLOCKEDLIVE: GroupTypeEnum;
32
+ BUCKETIZEDCUSTOM: GroupTypeEnum;
33
+ DSCUSTOMQUERY: GroupTypeEnum;
34
+ };
35
+ type SyncStatusEnum = 'IDLE' | 'SYNCING' | 'PARTIAL' | 'FAILED';
36
+ const SyncStatusEnum: {
37
+ IDLE: SyncStatusEnum;
38
+ SYNCING: SyncStatusEnum;
39
+ PARTIAL: SyncStatusEnum;
40
+ FAILED: SyncStatusEnum;
41
+ };
42
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 ChildPreviewDTO {
13
+ childId?: number;
14
+ childKeyHash?: string;
15
+ computedName?: string;
16
+ cvrBucketLabel?: string;
17
+ retentionBucketLabel?: string;
18
+ retentionNoOfDays?: number;
19
+ }
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 CreateBucketizedLiveAudienceRequest {
13
+ advertiserId: number;
14
+ platformId: number;
15
+ audienceType: CreateBucketizedLiveAudienceRequest.AudienceTypeEnum;
16
+ businessZoneId: number;
17
+ goalEventNameId: number;
18
+ osId: number;
19
+ countryIds?: Array<number>;
20
+ name: string;
21
+ productSetId?: string;
22
+ addEmailId: boolean;
23
+ addPhoneNumber: boolean;
24
+ addProbability: boolean;
25
+ description?: string;
26
+ }
27
+ export declare namespace CreateBucketizedLiveAudienceRequest {
28
+ type AudienceTypeEnum = 'DYNAMIC' | 'CATALOGUE';
29
+ const AudienceTypeEnum: {
30
+ DYNAMIC: AudienceTypeEnum;
31
+ CATALOGUE: AudienceTypeEnum;
32
+ };
33
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 { ChildPreviewDTO } from './childPreviewDTO';
13
+ export interface CreateBucketizedLiveAudienceResponse {
14
+ audienceGroupId?: number;
15
+ operationId?: string;
16
+ totalChildren?: number;
17
+ syncStatus?: CreateBucketizedLiveAudienceResponse.SyncStatusEnum;
18
+ childPreviews?: Array<ChildPreviewDTO>;
19
+ }
20
+ export declare namespace CreateBucketizedLiveAudienceResponse {
21
+ type SyncStatusEnum = 'IDLE' | 'SYNCING' | 'PARTIAL' | 'FAILED';
22
+ const SyncStatusEnum: {
23
+ IDLE: SyncStatusEnum;
24
+ SYNCING: SyncStatusEnum;
25
+ PARTIAL: SyncStatusEnum;
26
+ FAILED: SyncStatusEnum;
27
+ };
28
+ }
package/model/models.d.ts CHANGED
@@ -1,6 +1,8 @@
1
1
  export * from './advertiserMmpConversionEventResponse';
2
2
  export * from './advertiserResponse';
3
3
  export * from './advertiserSearchResponse';
4
+ export * from './audienceChildStatusDTO';
5
+ export * from './audienceGroupStatusResponse';
4
6
  export * from './blockedEventResponse';
5
7
  export * from './businessZoneResponse';
6
8
  export * from './campaignChangeLogResponse';
@@ -9,7 +11,10 @@ export * from './campaignInsightsResponse';
9
11
  export * from './campaignRequest';
10
12
  export * from './campaignResponse';
11
13
  export * from './campaignSearchResponse';
14
+ export * from './childPreviewDTO';
12
15
  export * from './countryResponse';
16
+ export * from './createBucketizedLiveAudienceRequest';
17
+ export * from './createBucketizedLiveAudienceResponse';
13
18
  export * from './goalResponse';
14
19
  export * from './oSResponse';
15
20
  export * from './pageAdvertiserResponse';
@@ -17,6 +22,8 @@ export * from './pageCampaignChangeLogResponse';
17
22
  export * from './pageCampaignResponse';
18
23
  export * from './pageableObject';
19
24
  export * from './platformResponse';
25
+ export * from './productSetResponse';
20
26
  export * from './scheduleUpdateRequest';
21
27
  export * from './scheduledUpdates';
22
28
  export * from './sortObject';
29
+ export * from './upsertProductSetRequest';
@@ -17,8 +17,8 @@ export interface PageAdvertiserResponse {
17
17
  totalElements?: number;
18
18
  first?: boolean;
19
19
  sort?: Array<SortObject>;
20
- pageable?: PageableObject;
21
20
  numberOfElements?: number;
21
+ pageable?: PageableObject;
22
22
  last?: boolean;
23
23
  size?: number;
24
24
  content?: Array<AdvertiserResponse>;
@@ -17,8 +17,8 @@ export interface PageCampaignChangeLogResponse {
17
17
  totalElements?: number;
18
18
  first?: boolean;
19
19
  sort?: Array<SortObject>;
20
- pageable?: PageableObject;
21
20
  numberOfElements?: number;
21
+ pageable?: PageableObject;
22
22
  last?: boolean;
23
23
  size?: number;
24
24
  content?: Array<CampaignChangeLogResponse>;
@@ -17,8 +17,8 @@ export interface PageCampaignResponse {
17
17
  totalElements?: number;
18
18
  first?: boolean;
19
19
  sort?: Array<SortObject>;
20
- pageable?: PageableObject;
21
20
  numberOfElements?: number;
21
+ pageable?: PageableObject;
22
22
  last?: boolean;
23
23
  size?: number;
24
24
  content?: Array<CampaignResponse>;
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 ProductSetResponse {
13
+ id?: number;
14
+ productSetId?: string;
15
+ productSetLabel?: string;
16
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Intellibid API
3
+ * API documentation for the Intellibid platform
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 UpsertProductSetRequest {
13
+ productSetId: string;
14
+ productSetLabel: string;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/intellibid-client-ts",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "swagger client for @revxui/intellibid-client-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [