@revxui/intellibid-client-ts 1.0.4 → 1.0.6

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 (88) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +15 -15
  3. package/api/businessGeoController.service.d.ts +28 -28
  4. package/api/campaignController.service.d.ts +67 -67
  5. package/api/countryController.service.d.ts +28 -28
  6. package/api/dpaCampaignController.service.d.ts +52 -52
  7. package/api/dpaEngagementController.service.d.ts +126 -126
  8. package/api/facebookEngagementController.service.d.ts +67 -67
  9. package/api/packageDetailController.service.d.ts +45 -45
  10. package/api.module.d.ts +11 -11
  11. package/configuration.d.ts +48 -48
  12. package/encoder.d.ts +10 -10
  13. package/esm2020/api/api.mjs +15 -15
  14. package/esm2020/api/businessGeoController.service.mjs +77 -77
  15. package/esm2020/api/campaignController.service.mjs +179 -179
  16. package/esm2020/api/countryController.service.mjs +77 -77
  17. package/esm2020/api/dpaCampaignController.service.mjs +144 -144
  18. package/esm2020/api/dpaEngagementController.service.mjs +327 -327
  19. package/esm2020/api/facebookEngagementController.service.mjs +184 -184
  20. package/esm2020/api/packageDetailController.service.mjs +122 -122
  21. package/esm2020/api.module.mjs +62 -62
  22. package/esm2020/configuration.mjs +58 -58
  23. package/esm2020/encoder.mjs +16 -16
  24. package/esm2020/index.mjs +5 -5
  25. package/esm2020/model/adSetDetails.mjs +19 -19
  26. package/esm2020/model/audienceDetails.mjs +12 -12
  27. package/esm2020/model/businessGeoResponse.mjs +12 -12
  28. package/esm2020/model/campaignResponse.mjs +31 -31
  29. package/esm2020/model/campaignSearchResponse.mjs +13 -0
  30. package/esm2020/model/countryResponse.mjs +12 -12
  31. package/esm2020/model/createCampaignRequest.mjs +13 -13
  32. package/esm2020/model/creativeDetails.mjs +1 -1
  33. package/esm2020/model/dpaCampaignRequest.mjs +1 -1
  34. package/esm2020/model/dpaCampaignResponse.mjs +12 -11
  35. package/esm2020/model/dpaEngagementRequest.mjs +1 -1
  36. package/esm2020/model/dpaEngagementResponse.mjs +33 -32
  37. package/esm2020/model/dpaEngagementSearchResponse.mjs +13 -0
  38. package/esm2020/model/exclusionRule.mjs +12 -12
  39. package/esm2020/model/facebookDetails.mjs +1 -1
  40. package/esm2020/model/facebookEngagementRequest.mjs +12 -12
  41. package/esm2020/model/facebookEngagementResponse.mjs +20 -20
  42. package/esm2020/model/imageOverlaySpecDetails.mjs +12 -12
  43. package/esm2020/model/models.mjs +27 -26
  44. package/esm2020/model/packageDetailResponse.mjs +12 -12
  45. package/esm2020/model/pageCampaignResponse.mjs +1 -1
  46. package/esm2020/model/pageDpaEngagementResponse.mjs +1 -1
  47. package/esm2020/model/pageFacebookEngagementResponse.mjs +1 -1
  48. package/esm2020/model/pagePackageDetailResponse.mjs +1 -1
  49. package/esm2020/model/pageableObject.mjs +2 -2
  50. package/esm2020/model/sortObject.mjs +12 -12
  51. package/esm2020/model/updateDailyBudgetRequest.mjs +12 -12
  52. package/esm2020/revxui-intellibid-client-ts.mjs +4 -4
  53. package/esm2020/variables.mjs +8 -8
  54. package/fesm2015/revxui-intellibid-client-ts.mjs +1301 -1299
  55. package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
  56. package/fesm2020/revxui-intellibid-client-ts.mjs +1407 -1393
  57. package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
  58. package/index.d.ts +5 -5
  59. package/model/adSetDetails.d.ts +28 -28
  60. package/model/audienceDetails.d.ts +22 -22
  61. package/model/businessGeoResponse.d.ts +15 -15
  62. package/model/campaignResponse.d.ts +117 -117
  63. package/model/campaignSearchResponse.d.ts +16 -0
  64. package/model/countryResponse.d.ts +16 -16
  65. package/model/createCampaignRequest.d.ts +17 -16
  66. package/model/creativeDetails.d.ts +21 -21
  67. package/model/dpaCampaignRequest.d.ts +17 -17
  68. package/model/dpaCampaignResponse.d.ts +36 -35
  69. package/model/dpaEngagementRequest.d.ts +30 -30
  70. package/model/dpaEngagementResponse.d.ts +93 -90
  71. package/model/{entitySearchResponse.d.ts → dpaEngagementSearchResponse.d.ts} +15 -15
  72. package/model/exclusionRule.d.ts +15 -15
  73. package/model/facebookDetails.d.ts +27 -27
  74. package/model/facebookEngagementRequest.d.ts +23 -23
  75. package/model/facebookEngagementResponse.d.ts +38 -38
  76. package/model/imageOverlaySpecDetails.d.ts +20 -20
  77. package/model/models.d.ts +26 -25
  78. package/model/packageDetailResponse.d.ts +16 -16
  79. package/model/pageCampaignResponse.d.ts +27 -27
  80. package/model/pageDpaEngagementResponse.d.ts +27 -27
  81. package/model/pageFacebookEngagementResponse.d.ts +27 -27
  82. package/model/pagePackageDetailResponse.d.ts +27 -27
  83. package/model/pageableObject.d.ts +20 -20
  84. package/model/sortObject.d.ts +18 -18
  85. package/model/updateDailyBudgetRequest.d.ts +14 -14
  86. package/package.json +1 -1
  87. package/variables.d.ts +8 -8
  88. package/esm2020/model/entitySearchResponse.mjs +0 -13
@@ -1,126 +1,126 @@
1
- import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { DpaEngagementRequest } from '../model/dpaEngagementRequest';
4
- import { DpaEngagementResponse } from '../model/dpaEngagementResponse';
5
- import { EntitySearchResponse } from '../model/entitySearchResponse';
6
- import { PageDpaEngagementResponse } from '../model/pageDpaEngagementResponse';
7
- import { UpdateDailyBudgetRequest } from '../model/updateDailyBudgetRequest';
8
- import { Configuration } from '../configuration';
9
- import * as i0 from "@angular/core";
10
- export declare class DpaEngagementControllerService {
11
- protected httpClient: HttpClient;
12
- protected basePath: string;
13
- defaultHeaders: HttpHeaders;
14
- configuration: Configuration;
15
- constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
16
- /**
17
- * @param consumes string[] mime-types
18
- * @return true: consumes contains 'multipart/form-data', false: otherwise
19
- */
20
- private canConsumeForm;
21
- /**
22
- *
23
- *
24
- * @param id
25
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
26
- * @param reportProgress flag to report request and response progress.
27
- */
28
- activateDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
29
- activateDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
30
- activateDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
31
- /**
32
- *
33
- *
34
- * @param body
35
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
36
- * @param reportProgress flag to report request and response progress.
37
- */
38
- createDpaEngagement(body: DpaEngagementRequest, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
39
- createDpaEngagement(body: DpaEngagementRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
40
- createDpaEngagement(body: DpaEngagementRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
41
- /**
42
- *
43
- *
44
- * @param id
45
- * @param campaignId
46
- * @param facebookCampaignId
47
- * @param name
48
- * @param payoutType
49
- * @param status
50
- * @param isIntellibidEnabled
51
- * @param isMarketFeedbackEnabled
52
- * @param campaignStatus
53
- * @param page Zero-based page index (0..N)
54
- * @param size The size of the page to be returned
55
- * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
56
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
57
- * @param reportProgress flag to report request and response progress.
58
- */
59
- getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageDpaEngagementResponse>;
60
- getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageDpaEngagementResponse>>;
61
- getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageDpaEngagementResponse>>;
62
- /**
63
- *
64
- *
65
- * @param id
66
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
67
- * @param reportProgress flag to report request and response progress.
68
- */
69
- getDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
70
- getDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
71
- getDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
72
- /**
73
- *
74
- *
75
- * @param id
76
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
77
- * @param reportProgress flag to report request and response progress.
78
- */
79
- pauseDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
80
- pauseDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
81
- pauseDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
82
- /**
83
- *
84
- *
85
- * @param id
86
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
87
- * @param reportProgress flag to report request and response progress.
88
- */
89
- publishDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
90
- publishDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
91
- publishDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
92
- /**
93
- *
94
- *
95
- * @param q
96
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
97
- * @param reportProgress flag to report request and response progress.
98
- */
99
- searchDpaEngagements(q: string, observe?: 'body', reportProgress?: boolean): Observable<Array<EntitySearchResponse>>;
100
- searchDpaEngagements(q: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<EntitySearchResponse>>>;
101
- searchDpaEngagements(q: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<EntitySearchResponse>>>;
102
- /**
103
- *
104
- *
105
- * @param body
106
- * @param id
107
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
108
- * @param reportProgress flag to report request and response progress.
109
- */
110
- updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
111
- updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
112
- updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
113
- /**
114
- *
115
- *
116
- * @param body
117
- * @param id
118
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
119
- * @param reportProgress flag to report request and response progress.
120
- */
121
- updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
122
- updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
123
- updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
124
- static ɵfac: i0.ɵɵFactoryDeclaration<DpaEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
125
- static ɵprov: i0.ɵɵInjectableDeclaration<DpaEngagementControllerService>;
126
- }
1
+ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { DpaEngagementRequest } from '../model/dpaEngagementRequest';
4
+ import { DpaEngagementResponse } from '../model/dpaEngagementResponse';
5
+ import { DpaEngagementSearchResponse } from '../model/dpaEngagementSearchResponse';
6
+ import { PageDpaEngagementResponse } from '../model/pageDpaEngagementResponse';
7
+ import { UpdateDailyBudgetRequest } from '../model/updateDailyBudgetRequest';
8
+ import { Configuration } from '../configuration';
9
+ import * as i0 from "@angular/core";
10
+ export declare class DpaEngagementControllerService {
11
+ protected httpClient: HttpClient;
12
+ protected basePath: string;
13
+ defaultHeaders: HttpHeaders;
14
+ configuration: Configuration;
15
+ constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
16
+ /**
17
+ * @param consumes string[] mime-types
18
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
19
+ */
20
+ private canConsumeForm;
21
+ /**
22
+ *
23
+ *
24
+ * @param id
25
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
26
+ * @param reportProgress flag to report request and response progress.
27
+ */
28
+ activateDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
29
+ activateDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
30
+ activateDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
31
+ /**
32
+ *
33
+ *
34
+ * @param body
35
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
36
+ * @param reportProgress flag to report request and response progress.
37
+ */
38
+ createDpaEngagement(body: DpaEngagementRequest, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
39
+ createDpaEngagement(body: DpaEngagementRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
40
+ createDpaEngagement(body: DpaEngagementRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
41
+ /**
42
+ *
43
+ *
44
+ * @param id
45
+ * @param campaignId
46
+ * @param facebookCampaignId
47
+ * @param name
48
+ * @param payoutType
49
+ * @param status
50
+ * @param isIntellibidEnabled
51
+ * @param isMarketFeedbackEnabled
52
+ * @param campaignStatus
53
+ * @param page Zero-based page index (0..N)
54
+ * @param size The size of the page to be returned
55
+ * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
56
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
57
+ * @param reportProgress flag to report request and response progress.
58
+ */
59
+ getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageDpaEngagementResponse>;
60
+ getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageDpaEngagementResponse>>;
61
+ getAllDpaEngagements(id?: number, campaignId?: number, facebookCampaignId?: string, name?: string, payoutType?: string, status?: string, isIntellibidEnabled?: boolean, isMarketFeedbackEnabled?: boolean, campaignStatus?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageDpaEngagementResponse>>;
62
+ /**
63
+ *
64
+ *
65
+ * @param id
66
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
67
+ * @param reportProgress flag to report request and response progress.
68
+ */
69
+ getDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
70
+ getDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
71
+ getDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
72
+ /**
73
+ *
74
+ *
75
+ * @param id
76
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
77
+ * @param reportProgress flag to report request and response progress.
78
+ */
79
+ pauseDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
80
+ pauseDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
81
+ pauseDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
82
+ /**
83
+ *
84
+ *
85
+ * @param id
86
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
87
+ * @param reportProgress flag to report request and response progress.
88
+ */
89
+ publishDpaEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
90
+ publishDpaEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
91
+ publishDpaEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
92
+ /**
93
+ *
94
+ *
95
+ * @param q
96
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
97
+ * @param reportProgress flag to report request and response progress.
98
+ */
99
+ searchDpaEngagements(q: string, observe?: 'body', reportProgress?: boolean): Observable<Array<DpaEngagementSearchResponse>>;
100
+ searchDpaEngagements(q: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<DpaEngagementSearchResponse>>>;
101
+ searchDpaEngagements(q: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<DpaEngagementSearchResponse>>>;
102
+ /**
103
+ *
104
+ *
105
+ * @param body
106
+ * @param id
107
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
108
+ * @param reportProgress flag to report request and response progress.
109
+ */
110
+ updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
111
+ updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
112
+ updateDailyBudget(body: UpdateDailyBudgetRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
113
+ /**
114
+ *
115
+ *
116
+ * @param body
117
+ * @param id
118
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
119
+ * @param reportProgress flag to report request and response progress.
120
+ */
121
+ updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<DpaEngagementResponse>;
122
+ updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<DpaEngagementResponse>>;
123
+ updateDpaEngagement(body: DpaEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<DpaEngagementResponse>>;
124
+ static ɵfac: i0.ɵɵFactoryDeclaration<DpaEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
125
+ static ɵprov: i0.ɵɵInjectableDeclaration<DpaEngagementControllerService>;
126
+ }
@@ -1,67 +1,67 @@
1
- import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { FacebookEngagementRequest } from '../model/facebookEngagementRequest';
4
- import { FacebookEngagementResponse } from '../model/facebookEngagementResponse';
5
- import { PageFacebookEngagementResponse } from '../model/pageFacebookEngagementResponse';
6
- import { Configuration } from '../configuration';
7
- import * as i0 from "@angular/core";
8
- export declare class FacebookEngagementControllerService {
9
- protected httpClient: HttpClient;
10
- protected basePath: string;
11
- defaultHeaders: HttpHeaders;
12
- configuration: Configuration;
13
- constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
14
- /**
15
- * @param consumes string[] mime-types
16
- * @return true: consumes contains 'multipart/form-data', false: otherwise
17
- */
18
- private canConsumeForm;
19
- /**
20
- *
21
- *
22
- * @param body
23
- * @param id
24
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
25
- * @param reportProgress flag to report request and response progress.
26
- */
27
- createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
28
- createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
29
- createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
30
- /**
31
- *
32
- *
33
- * @param id
34
- * @param campaignId
35
- * @param facebookAccountId
36
- * @param facebookFanPageId
37
- * @param facebookCatalogId
38
- * @param facebookCatalogType
39
- * @param instagramActorId
40
- * @param facebookPixelId
41
- * @param facebookAppId
42
- * @param facebookProductSetId
43
- * @param tosAccepted
44
- * @param eventSourceGroupId
45
- * @param audienceDsdo
46
- * @param page Zero-based page index (0..N)
47
- * @param size The size of the page to be returned
48
- * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
49
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
50
- * @param reportProgress flag to report request and response progress.
51
- */
52
- getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageFacebookEngagementResponse>;
53
- getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageFacebookEngagementResponse>>;
54
- getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageFacebookEngagementResponse>>;
55
- /**
56
- *
57
- *
58
- * @param id
59
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
60
- * @param reportProgress flag to report request and response progress.
61
- */
62
- getFacebookEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
63
- getFacebookEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
64
- getFacebookEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
65
- static ɵfac: i0.ɵɵFactoryDeclaration<FacebookEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
66
- static ɵprov: i0.ɵɵInjectableDeclaration<FacebookEngagementControllerService>;
67
- }
1
+ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { FacebookEngagementRequest } from '../model/facebookEngagementRequest';
4
+ import { FacebookEngagementResponse } from '../model/facebookEngagementResponse';
5
+ import { PageFacebookEngagementResponse } from '../model/pageFacebookEngagementResponse';
6
+ import { Configuration } from '../configuration';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FacebookEngagementControllerService {
9
+ protected httpClient: HttpClient;
10
+ protected basePath: string;
11
+ defaultHeaders: HttpHeaders;
12
+ configuration: Configuration;
13
+ constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
14
+ /**
15
+ * @param consumes string[] mime-types
16
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
17
+ */
18
+ private canConsumeForm;
19
+ /**
20
+ *
21
+ *
22
+ * @param body
23
+ * @param id
24
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
25
+ * @param reportProgress flag to report request and response progress.
26
+ */
27
+ createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
28
+ createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
29
+ createOrUpdateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
30
+ /**
31
+ *
32
+ *
33
+ * @param id
34
+ * @param campaignId
35
+ * @param facebookAccountId
36
+ * @param facebookFanPageId
37
+ * @param facebookCatalogId
38
+ * @param facebookCatalogType
39
+ * @param instagramActorId
40
+ * @param facebookPixelId
41
+ * @param facebookAppId
42
+ * @param facebookProductSetId
43
+ * @param tosAccepted
44
+ * @param eventSourceGroupId
45
+ * @param audienceDsdo
46
+ * @param page Zero-based page index (0..N)
47
+ * @param size The size of the page to be returned
48
+ * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
49
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
50
+ * @param reportProgress flag to report request and response progress.
51
+ */
52
+ getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageFacebookEngagementResponse>;
53
+ getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageFacebookEngagementResponse>>;
54
+ getAllFacebookEngagements(id?: number, campaignId?: number, facebookAccountId?: string, facebookFanPageId?: string, facebookCatalogId?: string, facebookCatalogType?: string, instagramActorId?: string, facebookPixelId?: string, facebookAppId?: string, facebookProductSetId?: string, tosAccepted?: boolean, eventSourceGroupId?: string, audienceDsdo?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageFacebookEngagementResponse>>;
55
+ /**
56
+ *
57
+ *
58
+ * @param id
59
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
60
+ * @param reportProgress flag to report request and response progress.
61
+ */
62
+ getFacebookEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
63
+ getFacebookEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
64
+ getFacebookEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<FacebookEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
66
+ static ɵprov: i0.ɵɵInjectableDeclaration<FacebookEngagementControllerService>;
67
+ }
@@ -1,45 +1,45 @@
1
- import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { PackageDetailResponse } from '../model/packageDetailResponse';
4
- import { PagePackageDetailResponse } from '../model/pagePackageDetailResponse';
5
- import { Configuration } from '../configuration';
6
- import * as i0 from "@angular/core";
7
- export declare class PackageDetailControllerService {
8
- protected httpClient: HttpClient;
9
- protected basePath: string;
10
- defaultHeaders: HttpHeaders;
11
- configuration: Configuration;
12
- constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
13
- /**
14
- * @param consumes string[] mime-types
15
- * @return true: consumes contains 'multipart/form-data', false: otherwise
16
- */
17
- private canConsumeForm;
18
- /**
19
- *
20
- *
21
- * @param id
22
- * @param name
23
- * @param isActive
24
- * @param page Zero-based page index (0..N)
25
- * @param size The size of the page to be returned
26
- * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
27
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
28
- * @param reportProgress flag to report request and response progress.
29
- */
30
- getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PagePackageDetailResponse>;
31
- getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PagePackageDetailResponse>>;
32
- getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PagePackageDetailResponse>>;
33
- /**
34
- *
35
- *
36
- * @param id
37
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
38
- * @param reportProgress flag to report request and response progress.
39
- */
40
- getPackageDetail(id: number, observe?: 'body', reportProgress?: boolean): Observable<PackageDetailResponse>;
41
- getPackageDetail(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PackageDetailResponse>>;
42
- getPackageDetail(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PackageDetailResponse>>;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<PackageDetailControllerService, [null, { optional: true; }, { optional: true; }]>;
44
- static ɵprov: i0.ɵɵInjectableDeclaration<PackageDetailControllerService>;
45
- }
1
+ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { PackageDetailResponse } from '../model/packageDetailResponse';
4
+ import { PagePackageDetailResponse } from '../model/pagePackageDetailResponse';
5
+ import { Configuration } from '../configuration';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PackageDetailControllerService {
8
+ protected httpClient: HttpClient;
9
+ protected basePath: string;
10
+ defaultHeaders: HttpHeaders;
11
+ configuration: Configuration;
12
+ constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
13
+ /**
14
+ * @param consumes string[] mime-types
15
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
16
+ */
17
+ private canConsumeForm;
18
+ /**
19
+ *
20
+ *
21
+ * @param id
22
+ * @param name
23
+ * @param isActive
24
+ * @param page Zero-based page index (0..N)
25
+ * @param size The size of the page to be returned
26
+ * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
27
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
28
+ * @param reportProgress flag to report request and response progress.
29
+ */
30
+ getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PagePackageDetailResponse>;
31
+ getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PagePackageDetailResponse>>;
32
+ getAllPackageDetails(id?: number, name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PagePackageDetailResponse>>;
33
+ /**
34
+ *
35
+ *
36
+ * @param id
37
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
38
+ * @param reportProgress flag to report request and response progress.
39
+ */
40
+ getPackageDetail(id: number, observe?: 'body', reportProgress?: boolean): Observable<PackageDetailResponse>;
41
+ getPackageDetail(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PackageDetailResponse>>;
42
+ getPackageDetail(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PackageDetailResponse>>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<PackageDetailControllerService, [null, { optional: true; }, { optional: true; }]>;
44
+ static ɵprov: i0.ɵɵInjectableDeclaration<PackageDetailControllerService>;
45
+ }
package/api.module.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import { Configuration } from './configuration';
3
- import { HttpClient } from '@angular/common/http';
4
- import * as i0 from "@angular/core";
5
- export declare class ApiModule {
6
- static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule>;
7
- constructor(parentModule: ApiModule, http: HttpClient);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ApiModule, [{ optional: true; skipSelf: true; }, { optional: true; }]>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<ApiModule, never, never, never>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<ApiModule>;
11
- }
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { Configuration } from './configuration';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ApiModule {
6
+ static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule>;
7
+ constructor(parentModule: ApiModule, http: HttpClient);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiModule, [{ optional: true; skipSelf: true; }, { optional: true; }]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ApiModule, never, never, never>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ApiModule>;
11
+ }
@@ -1,48 +1,48 @@
1
- export interface ConfigurationParameters {
2
- apiKeys?: {
3
- [key: string]: string;
4
- };
5
- username?: string;
6
- password?: string;
7
- accessToken?: string | (() => string);
8
- basePath?: string;
9
- withCredentials?: boolean;
10
- }
11
- export declare class Configuration {
12
- apiKeys?: {
13
- [key: string]: string;
14
- };
15
- username?: string;
16
- password?: string;
17
- accessToken?: string | (() => string);
18
- basePath?: string;
19
- withCredentials?: boolean;
20
- constructor(configurationParameters?: ConfigurationParameters);
21
- /**
22
- * Select the correct content-type to use for a request.
23
- * Uses {@link Configuration#isJsonMime} to determine the correct content-type.
24
- * If no content type is found return the first found type if the contentTypes is not empty
25
- * @param contentTypes - the array of content types that are available for selection
26
- * @returns the selected content-type or <code>undefined</code> if no selection could be made.
27
- */
28
- selectHeaderContentType(contentTypes: string[]): string | undefined;
29
- /**
30
- * Select the correct accept content-type to use for a request.
31
- * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.
32
- * If no content type is found return the first found type if the contentTypes is not empty
33
- * @param accepts - the array of content types that are available for selection.
34
- * @returns the selected content-type or <code>undefined</code> if no selection could be made.
35
- */
36
- selectHeaderAccept(accepts: string[]): string | undefined;
37
- /**
38
- * Check if the given MIME is a JSON MIME.
39
- * JSON MIME examples:
40
- * application/json
41
- * application/json; charset=UTF8
42
- * APPLICATION/JSON
43
- * application/vnd.company+json
44
- * @param mime - MIME (Multipurpose Internet Mail Extensions)
45
- * @return True if the given MIME is JSON, false otherwise.
46
- */
47
- isJsonMime(mime: string): boolean;
48
- }
1
+ export interface ConfigurationParameters {
2
+ apiKeys?: {
3
+ [key: string]: string;
4
+ };
5
+ username?: string;
6
+ password?: string;
7
+ accessToken?: string | (() => string);
8
+ basePath?: string;
9
+ withCredentials?: boolean;
10
+ }
11
+ export declare class Configuration {
12
+ apiKeys?: {
13
+ [key: string]: string;
14
+ };
15
+ username?: string;
16
+ password?: string;
17
+ accessToken?: string | (() => string);
18
+ basePath?: string;
19
+ withCredentials?: boolean;
20
+ constructor(configurationParameters?: ConfigurationParameters);
21
+ /**
22
+ * Select the correct content-type to use for a request.
23
+ * Uses {@link Configuration#isJsonMime} to determine the correct content-type.
24
+ * If no content type is found return the first found type if the contentTypes is not empty
25
+ * @param contentTypes - the array of content types that are available for selection
26
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
27
+ */
28
+ selectHeaderContentType(contentTypes: string[]): string | undefined;
29
+ /**
30
+ * Select the correct accept content-type to use for a request.
31
+ * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.
32
+ * If no content type is found return the first found type if the contentTypes is not empty
33
+ * @param accepts - the array of content types that are available for selection.
34
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
35
+ */
36
+ selectHeaderAccept(accepts: string[]): string | undefined;
37
+ /**
38
+ * Check if the given MIME is a JSON MIME.
39
+ * JSON MIME examples:
40
+ * application/json
41
+ * application/json; charset=UTF8
42
+ * APPLICATION/JSON
43
+ * application/vnd.company+json
44
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
45
+ * @return True if the given MIME is JSON, false otherwise.
46
+ */
47
+ isJsonMime(mime: string): boolean;
48
+ }