@revxui/intellibid-client-ts 1.0.2 → 1.0.3
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/api/api.d.ts +15 -15
- package/api/businessGeoController.service.d.ts +28 -28
- package/api/campaignController.service.d.ts +67 -67
- package/api/countryController.service.d.ts +28 -28
- package/api/dpaCampaignController.service.d.ts +52 -52
- package/api/dpaEngagementController.service.d.ts +126 -126
- package/api/facebookEngagementController.service.d.ts +77 -77
- package/api/packageDetailController.service.d.ts +45 -45
- package/api.module.d.ts +11 -11
- package/configuration.d.ts +48 -48
- package/encoder.d.ts +10 -10
- package/esm2020/api/api.mjs +15 -15
- package/esm2020/api/businessGeoController.service.mjs +77 -77
- package/esm2020/api/campaignController.service.mjs +178 -178
- package/esm2020/api/countryController.service.mjs +77 -77
- package/esm2020/api/dpaCampaignController.service.mjs +144 -144
- package/esm2020/api/dpaEngagementController.service.mjs +326 -326
- package/esm2020/api/facebookEngagementController.service.mjs +213 -213
- package/esm2020/api/packageDetailController.service.mjs +122 -122
- package/esm2020/api.module.mjs +62 -62
- package/esm2020/configuration.mjs +58 -58
- package/esm2020/encoder.mjs +16 -16
- package/esm2020/index.mjs +5 -5
- package/esm2020/model/adSetDetails.mjs +19 -19
- package/esm2020/model/audienceDetails.mjs +12 -12
- package/esm2020/model/businessGeoResponse.mjs +12 -12
- package/esm2020/model/campaignResponse.mjs +31 -31
- package/esm2020/model/countryResponse.mjs +12 -12
- package/esm2020/model/createCampaignRequest.mjs +12 -12
- package/esm2020/model/creativeDetails.mjs +1 -1
- package/esm2020/model/dpaCampaignRequest.mjs +1 -1
- package/esm2020/model/dpaCampaignResponse.mjs +10 -10
- package/esm2020/model/dpaEngagementRequest.mjs +1 -1
- package/esm2020/model/dpaEngagementResponse.mjs +31 -31
- package/esm2020/model/entitySearchResponse.mjs +12 -12
- package/esm2020/model/exclusionRule.mjs +12 -12
- package/esm2020/model/facebookDetails.mjs +1 -1
- package/esm2020/model/facebookEngagementRequest.mjs +12 -12
- package/esm2020/model/facebookEngagementResponse.mjs +20 -20
- package/esm2020/model/imageOverlaySpecDetails.mjs +12 -12
- package/esm2020/model/models.mjs +25 -25
- package/esm2020/model/packageDetailResponse.mjs +12 -12
- 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/esm2020/model/sortObject.mjs +12 -12
- package/esm2020/model/updateDailyBudgetRequest.mjs +12 -12
- package/esm2020/revxui-intellibid-client-ts.mjs +4 -4
- package/esm2020/variables.mjs +8 -8
- package/fesm2015/revxui-intellibid-client-ts.mjs +1328 -1328
- package/fesm2020/revxui-intellibid-client-ts.mjs +1422 -1422
- package/index.d.ts +5 -5
- package/model/adSetDetails.d.ts +28 -28
- package/model/audienceDetails.d.ts +22 -22
- package/model/businessGeoResponse.d.ts +15 -15
- package/model/campaignResponse.d.ts +117 -117
- package/model/countryResponse.d.ts +16 -16
- package/model/createCampaignRequest.d.ts +16 -16
- package/model/creativeDetails.d.ts +21 -21
- package/model/dpaCampaignRequest.d.ts +17 -17
- package/model/dpaCampaignResponse.d.ts +35 -35
- package/model/dpaEngagementRequest.d.ts +29 -29
- package/model/dpaEngagementResponse.d.ts +90 -90
- package/model/entitySearchResponse.d.ts +15 -15
- package/model/exclusionRule.d.ts +15 -15
- package/model/facebookDetails.d.ts +27 -27
- package/model/facebookEngagementRequest.d.ts +24 -24
- package/model/facebookEngagementResponse.d.ts +39 -39
- package/model/imageOverlaySpecDetails.d.ts +20 -20
- package/model/models.d.ts +25 -25
- package/model/packageDetailResponse.d.ts +16 -16
- package/model/pageCampaignResponse.d.ts +27 -27
- package/model/pageDpaEngagementResponse.d.ts +27 -27
- package/model/pageFacebookEngagementResponse.d.ts +27 -27
- package/model/pagePackageDetailResponse.d.ts +27 -27
- package/model/pageableObject.d.ts +20 -20
- package/model/sortObject.d.ts +18 -18
- package/model/updateDailyBudgetRequest.d.ts +14 -14
- package/package.json +1 -1
- package/variables.d.ts +8 -8
|
@@ -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 { 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,77 +1,77 @@
|
|
|
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 observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
24
|
-
* @param reportProgress flag to report request and response progress.
|
|
25
|
-
*/
|
|
26
|
-
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
27
|
-
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
28
|
-
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
* @param id
|
|
33
|
-
* @param campaignId
|
|
34
|
-
* @param facebookAccountId
|
|
35
|
-
* @param facebookFanPageId
|
|
36
|
-
* @param facebookCatalogId
|
|
37
|
-
* @param facebookCatalogType
|
|
38
|
-
* @param instagramActorId
|
|
39
|
-
* @param facebookPixelId
|
|
40
|
-
* @param facebookAppId
|
|
41
|
-
* @param facebookProductSetId
|
|
42
|
-
* @param tosAccepted
|
|
43
|
-
* @param eventSourceGroupId
|
|
44
|
-
* @param audienceDsdo
|
|
45
|
-
* @param page Zero-based page index (0..N)
|
|
46
|
-
* @param size The size of the page to be returned
|
|
47
|
-
* @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
48
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
49
|
-
* @param reportProgress flag to report request and response progress.
|
|
50
|
-
*/
|
|
51
|
-
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>;
|
|
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?: 'response', reportProgress?: boolean): Observable<HttpResponse<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?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageFacebookEngagementResponse>>;
|
|
54
|
-
/**
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
* @param id
|
|
58
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
59
|
-
* @param reportProgress flag to report request and response progress.
|
|
60
|
-
*/
|
|
61
|
-
getFacebookEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
62
|
-
getFacebookEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
63
|
-
getFacebookEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
64
|
-
/**
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
* @param body
|
|
68
|
-
* @param id
|
|
69
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
70
|
-
* @param reportProgress flag to report request and response progress.
|
|
71
|
-
*/
|
|
72
|
-
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
73
|
-
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
74
|
-
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
75
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FacebookEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
|
|
76
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FacebookEngagementControllerService>;
|
|
77
|
-
}
|
|
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 observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
24
|
+
* @param reportProgress flag to report request and response progress.
|
|
25
|
+
*/
|
|
26
|
+
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
27
|
+
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
28
|
+
createFacebookEngagement(body: FacebookEngagementRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
*
|
|
32
|
+
* @param id
|
|
33
|
+
* @param campaignId
|
|
34
|
+
* @param facebookAccountId
|
|
35
|
+
* @param facebookFanPageId
|
|
36
|
+
* @param facebookCatalogId
|
|
37
|
+
* @param facebookCatalogType
|
|
38
|
+
* @param instagramActorId
|
|
39
|
+
* @param facebookPixelId
|
|
40
|
+
* @param facebookAppId
|
|
41
|
+
* @param facebookProductSetId
|
|
42
|
+
* @param tosAccepted
|
|
43
|
+
* @param eventSourceGroupId
|
|
44
|
+
* @param audienceDsdo
|
|
45
|
+
* @param page Zero-based page index (0..N)
|
|
46
|
+
* @param size The size of the page to be returned
|
|
47
|
+
* @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
48
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
49
|
+
* @param reportProgress flag to report request and response progress.
|
|
50
|
+
*/
|
|
51
|
+
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>;
|
|
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?: 'response', reportProgress?: boolean): Observable<HttpResponse<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?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageFacebookEngagementResponse>>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
*
|
|
57
|
+
* @param id
|
|
58
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
59
|
+
* @param reportProgress flag to report request and response progress.
|
|
60
|
+
*/
|
|
61
|
+
getFacebookEngagement(id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
62
|
+
getFacebookEngagement(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
63
|
+
getFacebookEngagement(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
*
|
|
67
|
+
* @param body
|
|
68
|
+
* @param id
|
|
69
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
70
|
+
* @param reportProgress flag to report request and response progress.
|
|
71
|
+
*/
|
|
72
|
+
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<FacebookEngagementResponse>;
|
|
73
|
+
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FacebookEngagementResponse>>;
|
|
74
|
+
updateFacebookEngagement(body: FacebookEngagementRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FacebookEngagementResponse>>;
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FacebookEngagementControllerService, [null, { optional: true; }, { optional: true; }]>;
|
|
76
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FacebookEngagementControllerService>;
|
|
77
|
+
}
|
|
@@ -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
|
+
}
|