@energycap/energycap-billcapture-sdk-angular 1.0.2-internal-20240104-2210
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/api/api.d.ts +9 -0
- package/api/billCaptureAPI.service.d.ts +162 -0
- package/api/sample.service.d.ts +81 -0
- package/api/upload.service.d.ts +55 -0
- package/api/version.service.d.ts +48 -0
- package/api.module.d.ts +11 -0
- package/configuration.d.ts +21 -0
- package/esm2020/api/api.mjs +10 -0
- package/esm2020/api/billCaptureAPI.service.mjs +454 -0
- package/esm2020/api/sample.service.mjs +233 -0
- package/esm2020/api/upload.service.mjs +160 -0
- package/esm2020/api/version.service.mjs +143 -0
- package/esm2020/api.module.mjs +30 -0
- package/esm2020/configuration.mjs +23 -0
- package/esm2020/energycap-energycap-billcapture-sdk-angular.mjs +5 -0
- package/esm2020/model/aPIFilter.mjs +14 -0
- package/esm2020/model/aPIOrderBy.mjs +14 -0
- package/esm2020/model/clientChildDTO.mjs +14 -0
- package/esm2020/model/getClientsResponse.mjs +14 -0
- package/esm2020/model/models.mjs +6 -0
- package/esm2020/model/uploadResponseDTO.mjs +14 -0
- package/esm2020/public-api.mjs +6 -0
- package/esm2020/variables.mjs +9 -0
- package/fesm2015/energycap-energycap-billcapture-sdk-angular.mjs +1103 -0
- package/fesm2015/energycap-energycap-billcapture-sdk-angular.mjs.map +1 -0
- package/fesm2020/energycap-energycap-billcapture-sdk-angular.mjs +1095 -0
- package/fesm2020/energycap-energycap-billcapture-sdk-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/model/aPIFilter.d.ts +13 -0
- package/model/aPIOrderBy.d.ts +13 -0
- package/model/clientChildDTO.d.ts +33 -0
- package/model/getClientsResponse.d.ts +16 -0
- package/model/models.d.ts +5 -0
- package/model/uploadResponseDTO.d.ts +51 -0
- package/package.json +33 -0
- package/public-api.d.ts +5 -0
- package/variables.d.ts +8 -0
package/api/api.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './billCaptureAPI.service';
|
|
2
|
+
import { BillCaptureAPIService } from './billCaptureAPI.service';
|
|
3
|
+
export * from './sample.service';
|
|
4
|
+
import { SampleService } from './sample.service';
|
|
5
|
+
export * from './upload.service';
|
|
6
|
+
import { UploadService } from './upload.service';
|
|
7
|
+
export * from './version.service';
|
|
8
|
+
import { VersionService } from './version.service';
|
|
9
|
+
export declare const APIS: (typeof BillCaptureAPIService | typeof SampleService | typeof UploadService | typeof VersionService)[];
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { HttpResponse } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BillCaptureAPIService {
|
|
7
|
+
protected http: HttpClient;
|
|
8
|
+
protected basePath: string;
|
|
9
|
+
defaultHeaders: HttpHeaders;
|
|
10
|
+
configuration: Configuration;
|
|
11
|
+
constructor(http: HttpClient, basePath: string, configuration: Configuration);
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* Extends object by coping non-existing properties.
|
|
15
|
+
* @param objA object to be extended
|
|
16
|
+
* @param objB source object
|
|
17
|
+
*/
|
|
18
|
+
private extendObj;
|
|
19
|
+
/**
|
|
20
|
+
* @param consumes string[] mime-types
|
|
21
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
22
|
+
*/
|
|
23
|
+
private canConsumeForm;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
apiBatchPartialbatchesPost(extraHttpRequestParams?: {
|
|
29
|
+
search: string | {
|
|
30
|
+
[param: string]: string | string[];
|
|
31
|
+
};
|
|
32
|
+
}, extraHttpRequestHeaders?: {
|
|
33
|
+
[header: string]: string | string[];
|
|
34
|
+
}): Observable<any>;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
apiFrontdoorPickupPost(extraHttpRequestParams?: {
|
|
40
|
+
search: string | {
|
|
41
|
+
[param: string]: string | string[];
|
|
42
|
+
};
|
|
43
|
+
}, extraHttpRequestHeaders?: {
|
|
44
|
+
[header: string]: string | string[];
|
|
45
|
+
}): Observable<any>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
*
|
|
49
|
+
* @param partnerId
|
|
50
|
+
*/
|
|
51
|
+
apiPartnerPartnerIdPickupPost(partnerId: string, extraHttpRequestParams?: {
|
|
52
|
+
search: string | {
|
|
53
|
+
[param: string]: string | string[];
|
|
54
|
+
};
|
|
55
|
+
}, extraHttpRequestHeaders?: {
|
|
56
|
+
[header: string]: string | string[];
|
|
57
|
+
}): Observable<any>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
*
|
|
61
|
+
*/
|
|
62
|
+
apiPartnerPullPost(extraHttpRequestParams?: {
|
|
63
|
+
search: string | {
|
|
64
|
+
[param: string]: string | string[];
|
|
65
|
+
};
|
|
66
|
+
}, extraHttpRequestHeaders?: {
|
|
67
|
+
[header: string]: string | string[];
|
|
68
|
+
}): Observable<any>;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @param vendorId
|
|
73
|
+
*/
|
|
74
|
+
apiVendorVendorIdClientFileChildrenReprocessPut(vendorId: number, extraHttpRequestParams?: {
|
|
75
|
+
search: string | {
|
|
76
|
+
[param: string]: string | string[];
|
|
77
|
+
};
|
|
78
|
+
}, extraHttpRequestHeaders?: {
|
|
79
|
+
[header: string]: string | string[];
|
|
80
|
+
}): Observable<any>;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
*/
|
|
85
|
+
apiVersionGet(extraHttpRequestParams?: {
|
|
86
|
+
search: string | {
|
|
87
|
+
[param: string]: string | string[];
|
|
88
|
+
};
|
|
89
|
+
}, extraHttpRequestHeaders?: {
|
|
90
|
+
[header: string]: string | string[];
|
|
91
|
+
}): Observable<string>;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
apiBatchPartialbatchesPostWithHttpInfo(extraHttpRequestParams?: {
|
|
97
|
+
search: string | {
|
|
98
|
+
[param: string]: string | string[];
|
|
99
|
+
};
|
|
100
|
+
}, extraHttpRequestHeaders?: {
|
|
101
|
+
[header: string]: string | string[];
|
|
102
|
+
}): Observable<HttpResponse<any>>;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
*
|
|
106
|
+
*/
|
|
107
|
+
apiFrontdoorPickupPostWithHttpInfo(extraHttpRequestParams?: {
|
|
108
|
+
search: string | {
|
|
109
|
+
[param: string]: string | string[];
|
|
110
|
+
};
|
|
111
|
+
}, extraHttpRequestHeaders?: {
|
|
112
|
+
[header: string]: string | string[];
|
|
113
|
+
}): Observable<HttpResponse<any>>;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
*
|
|
117
|
+
* @param partnerId
|
|
118
|
+
*/
|
|
119
|
+
apiPartnerPartnerIdPickupPostWithHttpInfo(partnerId: string, extraHttpRequestParams?: {
|
|
120
|
+
search: string | {
|
|
121
|
+
[param: string]: string | string[];
|
|
122
|
+
};
|
|
123
|
+
}, extraHttpRequestHeaders?: {
|
|
124
|
+
[header: string]: string | string[];
|
|
125
|
+
}): Observable<HttpResponse<any>>;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
*
|
|
129
|
+
*/
|
|
130
|
+
apiPartnerPullPostWithHttpInfo(extraHttpRequestParams?: {
|
|
131
|
+
search: string | {
|
|
132
|
+
[param: string]: string | string[];
|
|
133
|
+
};
|
|
134
|
+
}, extraHttpRequestHeaders?: {
|
|
135
|
+
[header: string]: string | string[];
|
|
136
|
+
}): Observable<HttpResponse<any>>;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
*
|
|
140
|
+
* @param vendorId
|
|
141
|
+
*/
|
|
142
|
+
apiVendorVendorIdClientFileChildrenReprocessPutWithHttpInfo(vendorId: number, extraHttpRequestParams?: {
|
|
143
|
+
search: string | {
|
|
144
|
+
[param: string]: string | string[];
|
|
145
|
+
};
|
|
146
|
+
}, extraHttpRequestHeaders?: {
|
|
147
|
+
[header: string]: string | string[];
|
|
148
|
+
}): Observable<HttpResponse<any>>;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
*
|
|
152
|
+
*/
|
|
153
|
+
apiVersionGetWithHttpInfo(extraHttpRequestParams?: {
|
|
154
|
+
search: string | {
|
|
155
|
+
[param: string]: string | string[];
|
|
156
|
+
};
|
|
157
|
+
}, extraHttpRequestHeaders?: {
|
|
158
|
+
[header: string]: string | string[];
|
|
159
|
+
}): Observable<HttpResponse<string>>;
|
|
160
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BillCaptureAPIService, [null, { optional: true; }, { optional: true; }]>;
|
|
161
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BillCaptureAPIService>;
|
|
162
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { HttpResponse } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { GetClientsResponse } from '../model/getClientsResponse';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SampleService {
|
|
8
|
+
protected http: HttpClient;
|
|
9
|
+
protected basePath: string;
|
|
10
|
+
defaultHeaders: HttpHeaders;
|
|
11
|
+
configuration: Configuration;
|
|
12
|
+
constructor(http: HttpClient, basePath: string, configuration: Configuration);
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* Extends object by coping non-existing properties.
|
|
16
|
+
* @param objA object to be extended
|
|
17
|
+
* @param objB source object
|
|
18
|
+
*/
|
|
19
|
+
private extendObj;
|
|
20
|
+
/**
|
|
21
|
+
* @param consumes string[] mime-types
|
|
22
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
23
|
+
*/
|
|
24
|
+
private canConsumeForm;
|
|
25
|
+
/**
|
|
26
|
+
* Sample controller endpoint that gets a client
|
|
27
|
+
*
|
|
28
|
+
* @param clientId The client identifier
|
|
29
|
+
*/
|
|
30
|
+
apiPublicSampleClientIdGet(clientId: number, extraHttpRequestParams?: {
|
|
31
|
+
search: string | {
|
|
32
|
+
[param: string]: string | string[];
|
|
33
|
+
};
|
|
34
|
+
}, extraHttpRequestHeaders?: {
|
|
35
|
+
[header: string]: string | string[];
|
|
36
|
+
}): Observable<GetClientsResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* Sample controller endpoint that gets clients
|
|
39
|
+
*
|
|
40
|
+
* @param filter A filter <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Type</th><th>Operators</th></tr><tr><td>clientName</td><td>Client Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>clientID</td><td>Client Id</td><td>Whole Number</td><td>equals</td></tr></table>
|
|
41
|
+
* @param orderBy An order by <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Sort Operators</th></tr><tr><td>clientName</td><td>Client Name</td><td>ASC, DESC</td></tr></table>
|
|
42
|
+
* @param pageSize The number of elements to return in a page
|
|
43
|
+
* @param pageNumber The current page number
|
|
44
|
+
*/
|
|
45
|
+
apiPublicSampleGet(filter?: string, orderBy?: string, pageSize?: number, pageNumber?: number, extraHttpRequestParams?: {
|
|
46
|
+
search: string | {
|
|
47
|
+
[param: string]: string | string[];
|
|
48
|
+
};
|
|
49
|
+
}, extraHttpRequestHeaders?: {
|
|
50
|
+
[header: string]: string | string[];
|
|
51
|
+
}): Observable<Array<GetClientsResponse>>;
|
|
52
|
+
/**
|
|
53
|
+
* Sample controller endpoint that gets a client
|
|
54
|
+
*
|
|
55
|
+
* @param clientId The client identifier
|
|
56
|
+
*/
|
|
57
|
+
apiPublicSampleClientIdGetWithHttpInfo(clientId: number, extraHttpRequestParams?: {
|
|
58
|
+
search: string | {
|
|
59
|
+
[param: string]: string | string[];
|
|
60
|
+
};
|
|
61
|
+
}, extraHttpRequestHeaders?: {
|
|
62
|
+
[header: string]: string | string[];
|
|
63
|
+
}): Observable<HttpResponse<GetClientsResponse>>;
|
|
64
|
+
/**
|
|
65
|
+
* Sample controller endpoint that gets clients
|
|
66
|
+
*
|
|
67
|
+
* @param filter A filter <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Type</th><th>Operators</th></tr><tr><td>clientName</td><td>Client Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>clientID</td><td>Client Id</td><td>Whole Number</td><td>equals</td></tr></table>
|
|
68
|
+
* @param orderBy An order by <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Sort Operators</th></tr><tr><td>clientName</td><td>Client Name</td><td>ASC, DESC</td></tr></table>
|
|
69
|
+
* @param pageSize The number of elements to return in a page
|
|
70
|
+
* @param pageNumber The current page number
|
|
71
|
+
*/
|
|
72
|
+
apiPublicSampleGetWithHttpInfo(filter?: string, orderBy?: string, pageSize?: number, pageNumber?: number, extraHttpRequestParams?: {
|
|
73
|
+
search: string | {
|
|
74
|
+
[param: string]: string | string[];
|
|
75
|
+
};
|
|
76
|
+
}, extraHttpRequestHeaders?: {
|
|
77
|
+
[header: string]: string | string[];
|
|
78
|
+
}): Observable<HttpResponse<Array<GetClientsResponse>>>;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SampleService, [null, { optional: true; }, { optional: true; }]>;
|
|
80
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SampleService>;
|
|
81
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { HttpResponse } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { UploadResponseDTO } from '../model/uploadResponseDTO';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class UploadService {
|
|
8
|
+
protected http: HttpClient;
|
|
9
|
+
protected basePath: string;
|
|
10
|
+
defaultHeaders: HttpHeaders;
|
|
11
|
+
configuration: Configuration;
|
|
12
|
+
constructor(http: HttpClient, basePath: string, configuration: Configuration);
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* Extends object by coping non-existing properties.
|
|
16
|
+
* @param objA object to be extended
|
|
17
|
+
* @param objB source object
|
|
18
|
+
*/
|
|
19
|
+
private extendObj;
|
|
20
|
+
/**
|
|
21
|
+
* @param consumes string[] mime-types
|
|
22
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
23
|
+
*/
|
|
24
|
+
private canConsumeForm;
|
|
25
|
+
/**
|
|
26
|
+
* Get file uploads
|
|
27
|
+
*
|
|
28
|
+
* @param filter API filters. <br /> Valid values for the Upload Category filter are: 'Maintenance', 'Historical', 'Setup Enrollments', and 'Live'. <br /> TODO (ECAP-20445): 'utilityManagementSystemUserID' filter is not implemented yet. <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Type</th><th>Operators</th></tr><tr><td>clientFileName</td><td>Client File Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>uploadDate</td><td>Client File Upload Date</td><td>Date &amp; Time</td><td>equals, not equals, less than, between, greater than, less than equal, greater than equal, not between</td></tr><tr><td>uploadCategory</td><td>Upload Category</td><td>Any Text</td><td>equals</td></tr><tr><td>clientName</td><td>Client Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>utilityManagementSystemUserID</td><td>Utility Management System User ID</td><td>Whole Number</td><td>equals</td></tr></table>
|
|
29
|
+
* @param pageSize The number of elements to return in a page
|
|
30
|
+
* @param pageNumber The current page number
|
|
31
|
+
*/
|
|
32
|
+
apiPublicUploadGet(filter?: string, pageSize?: number, pageNumber?: number, extraHttpRequestParams?: {
|
|
33
|
+
search: string | {
|
|
34
|
+
[param: string]: string | string[];
|
|
35
|
+
};
|
|
36
|
+
}, extraHttpRequestHeaders?: {
|
|
37
|
+
[header: string]: string | string[];
|
|
38
|
+
}): Observable<Array<UploadResponseDTO>>;
|
|
39
|
+
/**
|
|
40
|
+
* Get file uploads
|
|
41
|
+
*
|
|
42
|
+
* @param filter API filters. <br /> Valid values for the Upload Category filter are: 'Maintenance', 'Historical', 'Setup Enrollments', and 'Live'. <br /> TODO (ECAP-20445): 'utilityManagementSystemUserID' filter is not implemented yet. <table id=\"api-filter\"><tr><th>Name</th><th>Description</th><th>Type</th><th>Operators</th></tr><tr><td>clientFileName</td><td>Client File Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>uploadDate</td><td>Client File Upload Date</td><td>Date &amp; Time</td><td>equals, not equals, less than, between, greater than, less than equal, greater than equal, not between</td></tr><tr><td>uploadCategory</td><td>Upload Category</td><td>Any Text</td><td>equals</td></tr><tr><td>clientName</td><td>Client Name</td><td>Any Text</td><td>equals, not equals, one of, like, not like, not one of</td></tr><tr><td>utilityManagementSystemUserID</td><td>Utility Management System User ID</td><td>Whole Number</td><td>equals</td></tr></table>
|
|
43
|
+
* @param pageSize The number of elements to return in a page
|
|
44
|
+
* @param pageNumber The current page number
|
|
45
|
+
*/
|
|
46
|
+
apiPublicUploadGetWithHttpInfo(filter?: string, pageSize?: number, pageNumber?: number, extraHttpRequestParams?: {
|
|
47
|
+
search: string | {
|
|
48
|
+
[param: string]: string | string[];
|
|
49
|
+
};
|
|
50
|
+
}, extraHttpRequestHeaders?: {
|
|
51
|
+
[header: string]: string | string[];
|
|
52
|
+
}): Observable<HttpResponse<Array<UploadResponseDTO>>>;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadService, [null, { optional: true; }, { optional: true; }]>;
|
|
54
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UploadService>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { HttpResponse } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class VersionService {
|
|
7
|
+
protected http: HttpClient;
|
|
8
|
+
protected basePath: string;
|
|
9
|
+
defaultHeaders: HttpHeaders;
|
|
10
|
+
configuration: Configuration;
|
|
11
|
+
constructor(http: HttpClient, basePath: string, configuration: Configuration);
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* Extends object by coping non-existing properties.
|
|
15
|
+
* @param objA object to be extended
|
|
16
|
+
* @param objB source object
|
|
17
|
+
*/
|
|
18
|
+
private extendObj;
|
|
19
|
+
/**
|
|
20
|
+
* @param consumes string[] mime-types
|
|
21
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
22
|
+
*/
|
|
23
|
+
private canConsumeForm;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
getVersion(extraHttpRequestParams?: {
|
|
29
|
+
search: string | {
|
|
30
|
+
[param: string]: string | string[];
|
|
31
|
+
};
|
|
32
|
+
}, extraHttpRequestHeaders?: {
|
|
33
|
+
[header: string]: string | string[];
|
|
34
|
+
}): Observable<any>;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
getVersionWithHttpInfo(extraHttpRequestParams?: {
|
|
40
|
+
search: string | {
|
|
41
|
+
[param: string]: string | string[];
|
|
42
|
+
};
|
|
43
|
+
}, extraHttpRequestHeaders?: {
|
|
44
|
+
[header: string]: string | string[];
|
|
45
|
+
}): Observable<HttpResponse<any>>;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VersionService, [null, { optional: true; }, { optional: true; }]>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<VersionService>;
|
|
48
|
+
}
|
package/api.module.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { Configuration } from './configuration';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/common/http";
|
|
6
|
+
export declare class EnergyCapSdkModule {
|
|
7
|
+
static forConfig(configurationFactory: () => Configuration): ModuleWithProviders<EnergyCapSdkModule>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnergyCapSdkModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EnergyCapSdkModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule], never>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<EnergyCapSdkModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface ConfigurationParameters {
|
|
2
|
+
apiKeys?: {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
};
|
|
5
|
+
username?: string;
|
|
6
|
+
password?: string;
|
|
7
|
+
accessToken?: 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
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './billCaptureAPI.service';
|
|
2
|
+
import { BillCaptureAPIService } from './billCaptureAPI.service';
|
|
3
|
+
export * from './sample.service';
|
|
4
|
+
import { SampleService } from './sample.service';
|
|
5
|
+
export * from './upload.service';
|
|
6
|
+
import { UploadService } from './upload.service';
|
|
7
|
+
export * from './version.service';
|
|
8
|
+
import { VersionService } from './version.service';
|
|
9
|
+
export const APIS = [BillCaptureAPIService, SampleService, UploadService, VersionService];
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vYXBpL2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2pFLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELGNBQWMsa0JBQWtCLENBQUM7QUFDakMsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ25ELE1BQU0sQ0FBQyxNQUFNLElBQUksR0FBRyxDQUFDLHFCQUFxQixFQUFFLGFBQWEsRUFBRSxhQUFhLEVBQUUsY0FBYyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JpbGxDYXB0dXJlQVBJLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBCaWxsQ2FwdHVyZUFQSVNlcnZpY2UgfSBmcm9tICcuL2JpbGxDYXB0dXJlQVBJLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NhbXBsZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgU2FtcGxlU2VydmljZSB9IGZyb20gJy4vc2FtcGxlLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3VwbG9hZC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgVXBsb2FkU2VydmljZSB9IGZyb20gJy4vdXBsb2FkLnNlcnZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL3ZlcnNpb24uc2VydmljZSc7XHJcbmltcG9ydCB7IFZlcnNpb25TZXJ2aWNlIH0gZnJvbSAnLi92ZXJzaW9uLnNlcnZpY2UnO1xyXG5leHBvcnQgY29uc3QgQVBJUyA9IFtCaWxsQ2FwdHVyZUFQSVNlcnZpY2UsIFNhbXBsZVNlcnZpY2UsIFVwbG9hZFNlcnZpY2UsIFZlcnNpb25TZXJ2aWNlXTtcclxuIl19
|