@revxui/intellibid-client-ts 1.0.7 → 1.0.8
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/api/businessGeoController.service.mjs +3 -3
- package/esm2020/api/campaignController.service.mjs +6 -6
- package/esm2020/api/countryController.service.mjs +3 -3
- package/esm2020/api/dpaCampaignController.service.mjs +5 -5
- package/esm2020/api/dpaEngagementController.service.mjs +11 -11
- package/esm2020/api/facebookEngagementController.service.mjs +5 -5
- package/esm2020/api/packageDetailController.service.mjs +4 -4
- package/esm2020/model/dpaEngagementResponse.mjs +1 -1
- package/esm2020/model/pageCampaignResponse.mjs +1 -1
- package/esm2020/model/pageDpaEngagementResponse.mjs +1 -1
- package/esm2020/model/pageFacebookEngagementResponse.mjs +1 -1
- package/esm2020/model/pagePackageDetailResponse.mjs +1 -1
- package/esm2020/model/pageableObject.mjs +1 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs +30 -30
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +30 -30
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/dpaEngagementResponse.d.ts +1 -0
- package/model/pageCampaignResponse.d.ts +2 -2
- package/model/pageDpaEngagementResponse.d.ts +2 -2
- package/model/pageFacebookEngagementResponse.d.ts +2 -2
- package/model/pagePackageDetailResponse.d.ts +2 -2
- package/model/pageableObject.d.ts +2 -2
- package/package.json +1 -1
|
@@ -84,7 +84,7 @@ class Configuration {
|
|
|
84
84
|
class BusinessGeoControllerService {
|
|
85
85
|
constructor(httpClient, basePath, configuration) {
|
|
86
86
|
this.httpClient = httpClient;
|
|
87
|
-
this.basePath = 'http://intellibid-
|
|
87
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
88
88
|
this.defaultHeaders = new HttpHeaders();
|
|
89
89
|
this.configuration = new Configuration();
|
|
90
90
|
if (basePath) {
|
|
@@ -120,7 +120,7 @@ class BusinessGeoControllerService {
|
|
|
120
120
|
}
|
|
121
121
|
// to determine the Content-Type header
|
|
122
122
|
const consumes = [];
|
|
123
|
-
return this.httpClient.request('get', `${this.basePath}/business-geo`, {
|
|
123
|
+
return this.httpClient.request('get', `${this.basePath}/api/business-geo`, {
|
|
124
124
|
withCredentials: this.configuration.withCredentials,
|
|
125
125
|
headers: headers,
|
|
126
126
|
observe: observe,
|
|
@@ -171,7 +171,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
171
171
|
class CampaignControllerService {
|
|
172
172
|
constructor(httpClient, basePath, configuration) {
|
|
173
173
|
this.httpClient = httpClient;
|
|
174
|
-
this.basePath = 'http://intellibid-
|
|
174
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
175
175
|
this.defaultHeaders = new HttpHeaders();
|
|
176
176
|
this.configuration = new Configuration();
|
|
177
177
|
if (basePath) {
|
|
@@ -216,7 +216,7 @@ class CampaignControllerService {
|
|
|
216
216
|
if (httpContentTypeSelected != undefined) {
|
|
217
217
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
218
218
|
}
|
|
219
|
-
return this.httpClient.request('post', `${this.basePath}/campaign`, {
|
|
219
|
+
return this.httpClient.request('post', `${this.basePath}/api/campaign`, {
|
|
220
220
|
body: body,
|
|
221
221
|
withCredentials: this.configuration.withCredentials,
|
|
222
222
|
headers: headers,
|
|
@@ -257,7 +257,7 @@ class CampaignControllerService {
|
|
|
257
257
|
}
|
|
258
258
|
// to determine the Content-Type header
|
|
259
259
|
const consumes = [];
|
|
260
|
-
return this.httpClient.request('get', `${this.basePath}/campaign`, {
|
|
260
|
+
return this.httpClient.request('get', `${this.basePath}/api/campaign`, {
|
|
261
261
|
params: queryParameters,
|
|
262
262
|
withCredentials: this.configuration.withCredentials,
|
|
263
263
|
headers: headers,
|
|
@@ -280,7 +280,7 @@ class CampaignControllerService {
|
|
|
280
280
|
}
|
|
281
281
|
// to determine the Content-Type header
|
|
282
282
|
const consumes = [];
|
|
283
|
-
return this.httpClient.request('get', `${this.basePath}/campaign/${encodeURIComponent(String(id))}`, {
|
|
283
|
+
return this.httpClient.request('get', `${this.basePath}/api/campaign/${encodeURIComponent(String(id))}`, {
|
|
284
284
|
withCredentials: this.configuration.withCredentials,
|
|
285
285
|
headers: headers,
|
|
286
286
|
observe: observe,
|
|
@@ -306,7 +306,7 @@ class CampaignControllerService {
|
|
|
306
306
|
}
|
|
307
307
|
// to determine the Content-Type header
|
|
308
308
|
const consumes = [];
|
|
309
|
-
return this.httpClient.request('get', `${this.basePath}/campaign/search`, {
|
|
309
|
+
return this.httpClient.request('get', `${this.basePath}/api/campaign/search`, {
|
|
310
310
|
params: queryParameters,
|
|
311
311
|
withCredentials: this.configuration.withCredentials,
|
|
312
312
|
headers: headers,
|
|
@@ -342,7 +342,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
342
342
|
class CountryControllerService {
|
|
343
343
|
constructor(httpClient, basePath, configuration) {
|
|
344
344
|
this.httpClient = httpClient;
|
|
345
|
-
this.basePath = 'http://intellibid-
|
|
345
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
346
346
|
this.defaultHeaders = new HttpHeaders();
|
|
347
347
|
this.configuration = new Configuration();
|
|
348
348
|
if (basePath) {
|
|
@@ -378,7 +378,7 @@ class CountryControllerService {
|
|
|
378
378
|
}
|
|
379
379
|
// to determine the Content-Type header
|
|
380
380
|
const consumes = [];
|
|
381
|
-
return this.httpClient.request('get', `${this.basePath}/country`, {
|
|
381
|
+
return this.httpClient.request('get', `${this.basePath}/api/country`, {
|
|
382
382
|
withCredentials: this.configuration.withCredentials,
|
|
383
383
|
headers: headers,
|
|
384
384
|
observe: observe,
|
|
@@ -413,7 +413,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
413
413
|
class DpaCampaignControllerService {
|
|
414
414
|
constructor(httpClient, basePath, configuration) {
|
|
415
415
|
this.httpClient = httpClient;
|
|
416
|
-
this.basePath = 'http://intellibid-
|
|
416
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
417
417
|
this.defaultHeaders = new HttpHeaders();
|
|
418
418
|
this.configuration = new Configuration();
|
|
419
419
|
if (basePath) {
|
|
@@ -461,7 +461,7 @@ class DpaCampaignControllerService {
|
|
|
461
461
|
if (httpContentTypeSelected != undefined) {
|
|
462
462
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
463
463
|
}
|
|
464
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
464
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
465
465
|
body: body,
|
|
466
466
|
withCredentials: this.configuration.withCredentials,
|
|
467
467
|
headers: headers,
|
|
@@ -484,7 +484,7 @@ class DpaCampaignControllerService {
|
|
|
484
484
|
}
|
|
485
485
|
// to determine the Content-Type header
|
|
486
486
|
const consumes = [];
|
|
487
|
-
return this.httpClient.request('get', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
487
|
+
return this.httpClient.request('get', `${this.basePath}/api/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
488
488
|
withCredentials: this.configuration.withCredentials,
|
|
489
489
|
headers: headers,
|
|
490
490
|
observe: observe,
|
|
@@ -515,7 +515,7 @@ class DpaCampaignControllerService {
|
|
|
515
515
|
if (httpContentTypeSelected != undefined) {
|
|
516
516
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
517
517
|
}
|
|
518
|
-
return this.httpClient.request('put', `${this.basePath}/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
518
|
+
return this.httpClient.request('put', `${this.basePath}/api/dpa-campaign/${encodeURIComponent(String(id))}`, {
|
|
519
519
|
body: body,
|
|
520
520
|
withCredentials: this.configuration.withCredentials,
|
|
521
521
|
headers: headers,
|
|
@@ -551,7 +551,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
551
551
|
class DpaEngagementControllerService {
|
|
552
552
|
constructor(httpClient, basePath, configuration) {
|
|
553
553
|
this.httpClient = httpClient;
|
|
554
|
-
this.basePath = 'http://intellibid-
|
|
554
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
555
555
|
this.defaultHeaders = new HttpHeaders();
|
|
556
556
|
this.configuration = new Configuration();
|
|
557
557
|
if (basePath) {
|
|
@@ -590,7 +590,7 @@ class DpaEngagementControllerService {
|
|
|
590
590
|
}
|
|
591
591
|
// to determine the Content-Type header
|
|
592
592
|
const consumes = [];
|
|
593
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}/activate`, {
|
|
593
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}/activate`, {
|
|
594
594
|
withCredentials: this.configuration.withCredentials,
|
|
595
595
|
headers: headers,
|
|
596
596
|
observe: observe,
|
|
@@ -618,7 +618,7 @@ class DpaEngagementControllerService {
|
|
|
618
618
|
if (httpContentTypeSelected != undefined) {
|
|
619
619
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
620
620
|
}
|
|
621
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement`, {
|
|
621
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement`, {
|
|
622
622
|
body: body,
|
|
623
623
|
withCredentials: this.configuration.withCredentials,
|
|
624
624
|
headers: headers,
|
|
@@ -677,7 +677,7 @@ class DpaEngagementControllerService {
|
|
|
677
677
|
}
|
|
678
678
|
// to determine the Content-Type header
|
|
679
679
|
const consumes = [];
|
|
680
|
-
return this.httpClient.request('get', `${this.basePath}/dpa-engagement`, {
|
|
680
|
+
return this.httpClient.request('get', `${this.basePath}/api/dpa-engagement`, {
|
|
681
681
|
params: queryParameters,
|
|
682
682
|
withCredentials: this.configuration.withCredentials,
|
|
683
683
|
headers: headers,
|
|
@@ -700,7 +700,7 @@ class DpaEngagementControllerService {
|
|
|
700
700
|
}
|
|
701
701
|
// to determine the Content-Type header
|
|
702
702
|
const consumes = [];
|
|
703
|
-
return this.httpClient.request('get', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}`, {
|
|
703
|
+
return this.httpClient.request('get', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}`, {
|
|
704
704
|
withCredentials: this.configuration.withCredentials,
|
|
705
705
|
headers: headers,
|
|
706
706
|
observe: observe,
|
|
@@ -722,7 +722,7 @@ class DpaEngagementControllerService {
|
|
|
722
722
|
}
|
|
723
723
|
// to determine the Content-Type header
|
|
724
724
|
const consumes = [];
|
|
725
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}/pause`, {
|
|
725
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}/pause`, {
|
|
726
726
|
withCredentials: this.configuration.withCredentials,
|
|
727
727
|
headers: headers,
|
|
728
728
|
observe: observe,
|
|
@@ -744,7 +744,7 @@ class DpaEngagementControllerService {
|
|
|
744
744
|
}
|
|
745
745
|
// to determine the Content-Type header
|
|
746
746
|
const consumes = [];
|
|
747
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}/publish`, {
|
|
747
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}/publish`, {
|
|
748
748
|
withCredentials: this.configuration.withCredentials,
|
|
749
749
|
headers: headers,
|
|
750
750
|
observe: observe,
|
|
@@ -770,7 +770,7 @@ class DpaEngagementControllerService {
|
|
|
770
770
|
}
|
|
771
771
|
// to determine the Content-Type header
|
|
772
772
|
const consumes = [];
|
|
773
|
-
return this.httpClient.request('get', `${this.basePath}/dpa-engagement/search`, {
|
|
773
|
+
return this.httpClient.request('get', `${this.basePath}/api/dpa-engagement/search`, {
|
|
774
774
|
params: queryParameters,
|
|
775
775
|
withCredentials: this.configuration.withCredentials,
|
|
776
776
|
headers: headers,
|
|
@@ -802,7 +802,7 @@ class DpaEngagementControllerService {
|
|
|
802
802
|
if (httpContentTypeSelected != undefined) {
|
|
803
803
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
804
804
|
}
|
|
805
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}/daily-budget`, {
|
|
805
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}/daily-budget`, {
|
|
806
806
|
body: body,
|
|
807
807
|
withCredentials: this.configuration.withCredentials,
|
|
808
808
|
headers: headers,
|
|
@@ -834,7 +834,7 @@ class DpaEngagementControllerService {
|
|
|
834
834
|
if (httpContentTypeSelected != undefined) {
|
|
835
835
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
836
836
|
}
|
|
837
|
-
return this.httpClient.request('post', `${this.basePath}/dpa-engagement/${encodeURIComponent(String(id))}`, {
|
|
837
|
+
return this.httpClient.request('post', `${this.basePath}/api/dpa-engagement/${encodeURIComponent(String(id))}`, {
|
|
838
838
|
body: body,
|
|
839
839
|
withCredentials: this.configuration.withCredentials,
|
|
840
840
|
headers: headers,
|
|
@@ -870,7 +870,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
870
870
|
class FacebookEngagementControllerService {
|
|
871
871
|
constructor(httpClient, basePath, configuration) {
|
|
872
872
|
this.httpClient = httpClient;
|
|
873
|
-
this.basePath = 'http://intellibid-
|
|
873
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
874
874
|
this.defaultHeaders = new HttpHeaders();
|
|
875
875
|
this.configuration = new Configuration();
|
|
876
876
|
if (basePath) {
|
|
@@ -918,7 +918,7 @@ class FacebookEngagementControllerService {
|
|
|
918
918
|
if (httpContentTypeSelected != undefined) {
|
|
919
919
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
920
920
|
}
|
|
921
|
-
return this.httpClient.request('post', `${this.basePath}/facebook-engagement/${encodeURIComponent(String(id))}`, {
|
|
921
|
+
return this.httpClient.request('post', `${this.basePath}/api/facebook-engagement/${encodeURIComponent(String(id))}`, {
|
|
922
922
|
body: body,
|
|
923
923
|
withCredentials: this.configuration.withCredentials,
|
|
924
924
|
headers: headers,
|
|
@@ -989,7 +989,7 @@ class FacebookEngagementControllerService {
|
|
|
989
989
|
}
|
|
990
990
|
// to determine the Content-Type header
|
|
991
991
|
const consumes = [];
|
|
992
|
-
return this.httpClient.request('get', `${this.basePath}/facebook-engagement`, {
|
|
992
|
+
return this.httpClient.request('get', `${this.basePath}/api/facebook-engagement`, {
|
|
993
993
|
params: queryParameters,
|
|
994
994
|
withCredentials: this.configuration.withCredentials,
|
|
995
995
|
headers: headers,
|
|
@@ -1012,7 +1012,7 @@ class FacebookEngagementControllerService {
|
|
|
1012
1012
|
}
|
|
1013
1013
|
// to determine the Content-Type header
|
|
1014
1014
|
const consumes = [];
|
|
1015
|
-
return this.httpClient.request('get', `${this.basePath}/facebook-engagement/${encodeURIComponent(String(id))}`, {
|
|
1015
|
+
return this.httpClient.request('get', `${this.basePath}/api/facebook-engagement/${encodeURIComponent(String(id))}`, {
|
|
1016
1016
|
withCredentials: this.configuration.withCredentials,
|
|
1017
1017
|
headers: headers,
|
|
1018
1018
|
observe: observe,
|
|
@@ -1047,7 +1047,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1047
1047
|
class PackageDetailControllerService {
|
|
1048
1048
|
constructor(httpClient, basePath, configuration) {
|
|
1049
1049
|
this.httpClient = httpClient;
|
|
1050
|
-
this.basePath = 'http://intellibid-
|
|
1050
|
+
this.basePath = 'http://dev1-intellibid-svc.revx.io';
|
|
1051
1051
|
this.defaultHeaders = new HttpHeaders();
|
|
1052
1052
|
this.configuration = new Configuration();
|
|
1053
1053
|
if (basePath) {
|
|
@@ -1104,7 +1104,7 @@ class PackageDetailControllerService {
|
|
|
1104
1104
|
}
|
|
1105
1105
|
// to determine the Content-Type header
|
|
1106
1106
|
const consumes = [];
|
|
1107
|
-
return this.httpClient.request('get', `${this.basePath}/package`, {
|
|
1107
|
+
return this.httpClient.request('get', `${this.basePath}/api/package`, {
|
|
1108
1108
|
params: queryParameters,
|
|
1109
1109
|
withCredentials: this.configuration.withCredentials,
|
|
1110
1110
|
headers: headers,
|
|
@@ -1127,7 +1127,7 @@ class PackageDetailControllerService {
|
|
|
1127
1127
|
}
|
|
1128
1128
|
// to determine the Content-Type header
|
|
1129
1129
|
const consumes = [];
|
|
1130
|
-
return this.httpClient.request('get', `${this.basePath}/package/${encodeURIComponent(String(id))}`, {
|
|
1130
|
+
return this.httpClient.request('get', `${this.basePath}/api/package/${encodeURIComponent(String(id))}`, {
|
|
1131
1131
|
withCredentials: this.configuration.withCredentials,
|
|
1132
1132
|
headers: headers,
|
|
1133
1133
|
observe: observe,
|