@ignos/api-client 20260213.47.1-alpha → 20260216.51.1-alpha
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/lib/AuthorizedApiBase.d.ts +1 -0
- package/lib/AuthorizedApiBase.js +10 -1
- package/lib/ignosportal-api.d.ts +1 -83
- package/lib/ignosportal-api.js +10 -84
- package/package.json +1 -1
- package/src/AuthorizedApiBase.ts +24 -12
- package/src/ignosportal-api.ts +23 -94
package/src/ignosportal-api.ts
CHANGED
|
@@ -8,19 +8,31 @@
|
|
|
8
8
|
// ReSharper disable InconsistentNaming
|
|
9
9
|
|
|
10
10
|
export class AuthorizedApiBase {
|
|
11
|
-
|
|
11
|
+
private readonly config: IAccessTokenProvider;
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
protected constructor(config: IAccessTokenProvider) {
|
|
14
|
+
this.config = config;
|
|
15
|
+
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
return options;
|
|
17
|
+
protected transformOptions = async (options: any): Promise<any> => {
|
|
18
|
+
options.headers = {
|
|
19
|
+
...options.headers,
|
|
20
|
+
Authorization: "Bearer " + (await this.config.getAccessToken()),
|
|
23
21
|
};
|
|
22
|
+
return options;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
protected jsonParseReviver = (_: any, value: any) => {
|
|
26
|
+
// Matches starts with "2025-12-09T13:19:39"
|
|
27
|
+
// Will also match "2025-12-09T13:19:39.4576289+00:00"
|
|
28
|
+
const regex = /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/;
|
|
29
|
+
|
|
30
|
+
if (typeof value === "string" && regex.exec(value)) {
|
|
31
|
+
return new Date(value);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return value;
|
|
35
|
+
};
|
|
24
36
|
}
|
|
25
37
|
|
|
26
38
|
export interface IAzureRegionsClient {
|
|
@@ -31,7 +43,6 @@ export interface IAzureRegionsClient {
|
|
|
31
43
|
export class AzureRegionsClient extends AuthorizedApiBase implements IAzureRegionsClient {
|
|
32
44
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
33
45
|
private baseUrl: string;
|
|
34
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
35
46
|
|
|
36
47
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
37
48
|
super(configuration);
|
|
@@ -83,7 +94,6 @@ export interface ICountriesClient {
|
|
|
83
94
|
export class CountriesClient extends AuthorizedApiBase implements ICountriesClient {
|
|
84
95
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
85
96
|
private baseUrl: string;
|
|
86
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
87
97
|
|
|
88
98
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
89
99
|
super(configuration);
|
|
@@ -180,7 +190,6 @@ export interface ICustomersClient {
|
|
|
180
190
|
export class CustomersClient extends AuthorizedApiBase implements ICustomersClient {
|
|
181
191
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
182
192
|
private baseUrl: string;
|
|
183
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
184
193
|
|
|
185
194
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
186
195
|
super(configuration);
|
|
@@ -557,7 +566,6 @@ export interface IGuestsClient {
|
|
|
557
566
|
export class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
558
567
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
559
568
|
private baseUrl: string;
|
|
560
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
561
569
|
|
|
562
570
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
563
571
|
super(configuration);
|
|
@@ -613,7 +621,6 @@ export interface IPresentationClient {
|
|
|
613
621
|
export class PresentationClient extends AuthorizedApiBase implements IPresentationClient {
|
|
614
622
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
615
623
|
private baseUrl: string;
|
|
616
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
617
624
|
|
|
618
625
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
619
626
|
super(configuration);
|
|
@@ -703,7 +710,6 @@ export interface IMachineUtilizationClient {
|
|
|
703
710
|
export class MachineUtilizationClient extends AuthorizedApiBase implements IMachineUtilizationClient {
|
|
704
711
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
705
712
|
private baseUrl: string;
|
|
706
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
707
713
|
|
|
708
714
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
709
715
|
super(configuration);
|
|
@@ -1191,7 +1197,6 @@ export interface IResourceUtilizationClient {
|
|
|
1191
1197
|
export class ResourceUtilizationClient extends AuthorizedApiBase implements IResourceUtilizationClient {
|
|
1192
1198
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
1193
1199
|
private baseUrl: string;
|
|
1194
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
1195
1200
|
|
|
1196
1201
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
1197
1202
|
super(configuration);
|
|
@@ -1616,7 +1621,6 @@ export interface IMeClient {
|
|
|
1616
1621
|
export class MeClient extends AuthorizedApiBase implements IMeClient {
|
|
1617
1622
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
1618
1623
|
private baseUrl: string;
|
|
1619
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
1620
1624
|
|
|
1621
1625
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
1622
1626
|
super(configuration);
|
|
@@ -1879,7 +1883,6 @@ export interface IUsersClient {
|
|
|
1879
1883
|
export class UsersClient extends AuthorizedApiBase implements IUsersClient {
|
|
1880
1884
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
1881
1885
|
private baseUrl: string;
|
|
1882
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
1883
1886
|
|
|
1884
1887
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
1885
1888
|
super(configuration);
|
|
@@ -1988,7 +1991,6 @@ export interface IUserAppSettingsClient {
|
|
|
1988
1991
|
export class UserAppSettingsClient extends AuthorizedApiBase implements IUserAppSettingsClient {
|
|
1989
1992
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
1990
1993
|
private baseUrl: string;
|
|
1991
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
1992
1994
|
|
|
1993
1995
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
1994
1996
|
super(configuration);
|
|
@@ -2218,7 +2220,6 @@ export interface IUploadClient {
|
|
|
2218
2220
|
export class UploadClient extends AuthorizedApiBase implements IUploadClient {
|
|
2219
2221
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
2220
2222
|
private baseUrl: string;
|
|
2221
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
2222
2223
|
|
|
2223
2224
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
2224
2225
|
super(configuration);
|
|
@@ -2270,7 +2271,6 @@ export interface ISystemHealthDashboardClient {
|
|
|
2270
2271
|
export class SystemHealthDashboardClient extends AuthorizedApiBase implements ISystemHealthDashboardClient {
|
|
2271
2272
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
2272
2273
|
private baseUrl: string;
|
|
2273
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
2274
2274
|
|
|
2275
2275
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
2276
2276
|
super(configuration);
|
|
@@ -2324,7 +2324,6 @@ export interface IPowerClient {
|
|
|
2324
2324
|
export class PowerClient extends AuthorizedApiBase implements IPowerClient {
|
|
2325
2325
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
2326
2326
|
private baseUrl: string;
|
|
2327
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
2328
2327
|
|
|
2329
2328
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
2330
2329
|
super(configuration);
|
|
@@ -2390,7 +2389,6 @@ export interface ISustainabilityClient {
|
|
|
2390
2389
|
export class SustainabilityClient extends AuthorizedApiBase implements ISustainabilityClient {
|
|
2391
2390
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
2392
2391
|
private baseUrl: string;
|
|
2393
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
2394
2392
|
|
|
2395
2393
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
2396
2394
|
super(configuration);
|
|
@@ -2687,7 +2685,6 @@ export interface IMachineAlarmsClient {
|
|
|
2687
2685
|
export class MachineAlarmsClient extends AuthorizedApiBase implements IMachineAlarmsClient {
|
|
2688
2686
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
2689
2687
|
private baseUrl: string;
|
|
2690
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
2691
2688
|
|
|
2692
2689
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
2693
2690
|
super(configuration);
|
|
@@ -3003,7 +3000,6 @@ export interface IDowntimeReasonsAdminResourceClient {
|
|
|
3003
3000
|
export class DowntimeReasonsAdminResourceClient extends AuthorizedApiBase implements IDowntimeReasonsAdminResourceClient {
|
|
3004
3001
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
3005
3002
|
private baseUrl: string;
|
|
3006
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
3007
3003
|
|
|
3008
3004
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
3009
3005
|
super(configuration);
|
|
@@ -3375,7 +3371,6 @@ export interface IDowntimeReasonsResourceClient {
|
|
|
3375
3371
|
export class DowntimeReasonsResourceClient extends AuthorizedApiBase implements IDowntimeReasonsResourceClient {
|
|
3376
3372
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
3377
3373
|
private baseUrl: string;
|
|
3378
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
3379
3374
|
|
|
3380
3375
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
3381
3376
|
super(configuration);
|
|
@@ -3788,7 +3783,6 @@ export interface IKpiAdminResourceClient {
|
|
|
3788
3783
|
export class KpiAdminResourceClient extends AuthorizedApiBase implements IKpiAdminResourceClient {
|
|
3789
3784
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
3790
3785
|
private baseUrl: string;
|
|
3791
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
3792
3786
|
|
|
3793
3787
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
3794
3788
|
super(configuration);
|
|
@@ -4039,7 +4033,6 @@ export interface IKpiResourceClient {
|
|
|
4039
4033
|
export class KpiResourceClient extends AuthorizedApiBase implements IKpiResourceClient {
|
|
4040
4034
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
4041
4035
|
private baseUrl: string;
|
|
4042
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
4043
4036
|
|
|
4044
4037
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
4045
4038
|
super(configuration);
|
|
@@ -4246,7 +4239,6 @@ export interface IResourcesClient {
|
|
|
4246
4239
|
export class ResourcesClient extends AuthorizedApiBase implements IResourcesClient {
|
|
4247
4240
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
4248
4241
|
private baseUrl: string;
|
|
4249
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
4250
4242
|
|
|
4251
4243
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
4252
4244
|
super(configuration);
|
|
@@ -5101,7 +5093,6 @@ export interface IPulseClient {
|
|
|
5101
5093
|
export class PulseClient extends AuthorizedApiBase implements IPulseClient {
|
|
5102
5094
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
5103
5095
|
private baseUrl: string;
|
|
5104
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
5105
5096
|
|
|
5106
5097
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
5107
5098
|
super(configuration);
|
|
@@ -5327,7 +5318,6 @@ export interface IUtilizationClient {
|
|
|
5327
5318
|
export class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
5328
5319
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
5329
5320
|
private baseUrl: string;
|
|
5330
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
5331
5321
|
|
|
5332
5322
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
5333
5323
|
super(configuration);
|
|
@@ -5943,7 +5933,6 @@ export interface IMrbClient {
|
|
|
5943
5933
|
export class MrbClient extends AuthorizedApiBase implements IMrbClient {
|
|
5944
5934
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
5945
5935
|
private baseUrl: string;
|
|
5946
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
5947
5936
|
|
|
5948
5937
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
5949
5938
|
super(configuration);
|
|
@@ -7187,7 +7176,6 @@ export interface ITraceClient {
|
|
|
7187
7176
|
export class TraceClient extends AuthorizedApiBase implements ITraceClient {
|
|
7188
7177
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
7189
7178
|
private baseUrl: string;
|
|
7190
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
7191
7179
|
|
|
7192
7180
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
7193
7181
|
super(configuration);
|
|
@@ -7648,7 +7636,6 @@ export interface IMeasuringToolsClient {
|
|
|
7648
7636
|
export class MeasuringToolsClient extends AuthorizedApiBase implements IMeasuringToolsClient {
|
|
7649
7637
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
7650
7638
|
private baseUrl: string;
|
|
7651
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
7652
7639
|
|
|
7653
7640
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
7654
7641
|
super(configuration);
|
|
@@ -8987,7 +8974,6 @@ export interface IDowntimeReasonsAdminClient {
|
|
|
8987
8974
|
export class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
8988
8975
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
8989
8976
|
private baseUrl: string;
|
|
8990
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
8991
8977
|
|
|
8992
8978
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
8993
8979
|
super(configuration);
|
|
@@ -9359,7 +9345,6 @@ export interface IDowntimeReasonsClient {
|
|
|
9359
9345
|
export class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
|
|
9360
9346
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
9361
9347
|
private baseUrl: string;
|
|
9362
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
9363
9348
|
|
|
9364
9349
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
9365
9350
|
super(configuration);
|
|
@@ -9772,7 +9757,6 @@ export interface IKpiAdminClient {
|
|
|
9772
9757
|
export class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
9773
9758
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
9774
9759
|
private baseUrl: string;
|
|
9775
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
9776
9760
|
|
|
9777
9761
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
9778
9762
|
super(configuration);
|
|
@@ -10023,7 +10007,6 @@ export interface IKpiClient {
|
|
|
10023
10007
|
export class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
10024
10008
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
10025
10009
|
private baseUrl: string;
|
|
10026
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
10027
10010
|
|
|
10028
10011
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
10029
10012
|
super(configuration);
|
|
@@ -10230,7 +10213,6 @@ export interface IMachinesClient {
|
|
|
10230
10213
|
export class MachinesClient extends AuthorizedApiBase implements IMachinesClient {
|
|
10231
10214
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
10232
10215
|
private baseUrl: string;
|
|
10233
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
10234
10216
|
|
|
10235
10217
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
10236
10218
|
super(configuration);
|
|
@@ -11053,7 +11035,6 @@ export interface ILinksClient {
|
|
|
11053
11035
|
export class LinksClient extends AuthorizedApiBase implements ILinksClient {
|
|
11054
11036
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
11055
11037
|
private baseUrl: string;
|
|
11056
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
11057
11038
|
|
|
11058
11039
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
11059
11040
|
super(configuration);
|
|
@@ -11218,7 +11199,6 @@ export interface IExternalServicesClient {
|
|
|
11218
11199
|
export class ExternalServicesClient extends AuthorizedApiBase implements IExternalServicesClient {
|
|
11219
11200
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
11220
11201
|
private baseUrl: string;
|
|
11221
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
11222
11202
|
|
|
11223
11203
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
11224
11204
|
super(configuration);
|
|
@@ -11282,7 +11262,6 @@ export interface IDocumentsClient {
|
|
|
11282
11262
|
export class DocumentsClient extends AuthorizedApiBase implements IDocumentsClient {
|
|
11283
11263
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
11284
11264
|
private baseUrl: string;
|
|
11285
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
11286
11265
|
|
|
11287
11266
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
11288
11267
|
super(configuration);
|
|
@@ -11407,7 +11386,6 @@ export interface IDocumentTypesClient {
|
|
|
11407
11386
|
export class DocumentTypesClient extends AuthorizedApiBase implements IDocumentTypesClient {
|
|
11408
11387
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
11409
11388
|
private baseUrl: string;
|
|
11410
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
11411
11389
|
|
|
11412
11390
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
11413
11391
|
super(configuration);
|
|
@@ -11849,7 +11827,6 @@ export interface IExternalAccessClient {
|
|
|
11849
11827
|
export class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
11850
11828
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
11851
11829
|
private baseUrl: string;
|
|
11852
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
11853
11830
|
|
|
11854
11831
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
11855
11832
|
super(configuration);
|
|
@@ -12130,7 +12107,6 @@ export interface IExternalClient {
|
|
|
12130
12107
|
export class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
12131
12108
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
12132
12109
|
private baseUrl: string;
|
|
12133
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
12134
12110
|
|
|
12135
12111
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
12136
12112
|
super(configuration);
|
|
@@ -12276,7 +12252,6 @@ export interface ISuppliersClient {
|
|
|
12276
12252
|
export class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
12277
12253
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
12278
12254
|
private baseUrl: string;
|
|
12279
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
12280
12255
|
|
|
12281
12256
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
12282
12257
|
super(configuration);
|
|
@@ -12597,7 +12572,6 @@ export interface ICncFileTransferClient {
|
|
|
12597
12572
|
export class CncFileTransferClient extends AuthorizedApiBase implements ICncFileTransferClient {
|
|
12598
12573
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
12599
12574
|
private baseUrl: string;
|
|
12600
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
12601
12575
|
|
|
12602
12576
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
12603
12577
|
super(configuration);
|
|
@@ -12888,7 +12862,6 @@ export interface ICncSetupAgentClient {
|
|
|
12888
12862
|
export class CncSetupAgentClient extends AuthorizedApiBase implements ICncSetupAgentClient {
|
|
12889
12863
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
12890
12864
|
private baseUrl: string;
|
|
12891
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
12892
12865
|
|
|
12893
12866
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
12894
12867
|
super(configuration);
|
|
@@ -13137,7 +13110,6 @@ export interface ICncSetupClient {
|
|
|
13137
13110
|
export class CncSetupClient extends AuthorizedApiBase implements ICncSetupClient {
|
|
13138
13111
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
13139
13112
|
private baseUrl: string;
|
|
13140
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
13141
13113
|
|
|
13142
13114
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
13143
13115
|
super(configuration);
|
|
@@ -15449,7 +15421,6 @@ export interface ICncSetupFixturesClient {
|
|
|
15449
15421
|
export class CncSetupFixturesClient extends AuthorizedApiBase implements ICncSetupFixturesClient {
|
|
15450
15422
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
15451
15423
|
private baseUrl: string;
|
|
15452
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
15453
15424
|
|
|
15454
15425
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
15455
15426
|
super(configuration);
|
|
@@ -16082,7 +16053,6 @@ export interface IOperatorCalculatorsClient {
|
|
|
16082
16053
|
export class OperatorCalculatorsClient extends AuthorizedApiBase implements IOperatorCalculatorsClient {
|
|
16083
16054
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
16084
16055
|
private baseUrl: string;
|
|
16085
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
16086
16056
|
|
|
16087
16057
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
16088
16058
|
super(configuration);
|
|
@@ -16281,7 +16251,6 @@ export interface IAssetsClient {
|
|
|
16281
16251
|
export class AssetsClient extends AuthorizedApiBase implements IAssetsClient {
|
|
16282
16252
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
16283
16253
|
private baseUrl: string;
|
|
16284
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
16285
16254
|
|
|
16286
16255
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
16287
16256
|
super(configuration);
|
|
@@ -16593,7 +16562,6 @@ export interface IAlertsClient {
|
|
|
16593
16562
|
export class AlertsClient extends AuthorizedApiBase implements IAlertsClient {
|
|
16594
16563
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
16595
16564
|
private baseUrl: string;
|
|
16596
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
16597
16565
|
|
|
16598
16566
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
16599
16567
|
super(configuration);
|
|
@@ -16832,7 +16800,6 @@ export interface ICredentialsClient {
|
|
|
16832
16800
|
export class CredentialsClient extends AuthorizedApiBase implements ICredentialsClient {
|
|
16833
16801
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
16834
16802
|
private baseUrl: string;
|
|
16835
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
16836
16803
|
|
|
16837
16804
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
16838
16805
|
super(configuration);
|
|
@@ -16963,7 +16930,6 @@ export interface ICdfClient {
|
|
|
16963
16930
|
export class CdfClient extends AuthorizedApiBase implements ICdfClient {
|
|
16964
16931
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
16965
16932
|
private baseUrl: string;
|
|
16966
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
16967
16933
|
|
|
16968
16934
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
16969
16935
|
super(configuration);
|
|
@@ -17076,7 +17042,6 @@ export interface IWorkspacesClient {
|
|
|
17076
17042
|
export class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
|
|
17077
17043
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
17078
17044
|
private baseUrl: string;
|
|
17079
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
17080
17045
|
|
|
17081
17046
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
17082
17047
|
super(configuration);
|
|
@@ -17461,7 +17426,6 @@ export interface IWorkspaceTemplatesAdminClient {
|
|
|
17461
17426
|
export class WorkspaceTemplatesAdminClient extends AuthorizedApiBase implements IWorkspaceTemplatesAdminClient {
|
|
17462
17427
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
17463
17428
|
private baseUrl: string;
|
|
17464
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
17465
17429
|
|
|
17466
17430
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
17467
17431
|
super(configuration);
|
|
@@ -17760,7 +17724,6 @@ export interface IWorkspaceTemplatesClient {
|
|
|
17760
17724
|
export class WorkspaceTemplatesClient extends AuthorizedApiBase implements IWorkspaceTemplatesClient {
|
|
17761
17725
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
17762
17726
|
private baseUrl: string;
|
|
17763
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
17764
17727
|
|
|
17765
17728
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
17766
17729
|
super(configuration);
|
|
@@ -17830,7 +17793,6 @@ export interface IMoveBookingClient {
|
|
|
17830
17793
|
export class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
17831
17794
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
17832
17795
|
private baseUrl: string;
|
|
17833
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
17834
17796
|
|
|
17835
17797
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
17836
17798
|
super(configuration);
|
|
@@ -18245,7 +18207,6 @@ export interface IMoveLocationsClient {
|
|
|
18245
18207
|
export class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocationsClient {
|
|
18246
18208
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
18247
18209
|
private baseUrl: string;
|
|
18248
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
18249
18210
|
|
|
18250
18211
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
18251
18212
|
super(configuration);
|
|
@@ -18510,7 +18471,6 @@ export interface IMoveMaterialsClient {
|
|
|
18510
18471
|
export class MoveMaterialsClient extends AuthorizedApiBase implements IMoveMaterialsClient {
|
|
18511
18472
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
18512
18473
|
private baseUrl: string;
|
|
18513
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
18514
18474
|
|
|
18515
18475
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
18516
18476
|
super(configuration);
|
|
@@ -18721,7 +18681,6 @@ export interface IMoveNotificationsClient {
|
|
|
18721
18681
|
export class MoveNotificationsClient extends AuthorizedApiBase implements IMoveNotificationsClient {
|
|
18722
18682
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
18723
18683
|
private baseUrl: string;
|
|
18724
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
18725
18684
|
|
|
18726
18685
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
18727
18686
|
super(configuration);
|
|
@@ -18812,7 +18771,6 @@ export interface IMoveParcelsClient {
|
|
|
18812
18771
|
export class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
|
|
18813
18772
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
18814
18773
|
private baseUrl: string;
|
|
18815
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
18816
18774
|
|
|
18817
18775
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
18818
18776
|
super(configuration);
|
|
@@ -18884,7 +18842,6 @@ export interface IMoveTrackingClient {
|
|
|
18884
18842
|
export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
18885
18843
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
18886
18844
|
private baseUrl: string;
|
|
18887
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
18888
18845
|
|
|
18889
18846
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
18890
18847
|
super(configuration);
|
|
@@ -19260,7 +19217,6 @@ export interface IParcelCategoryClient {
|
|
|
19260
19217
|
export class ParcelCategoryClient extends AuthorizedApiBase implements IParcelCategoryClient {
|
|
19261
19218
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19262
19219
|
private baseUrl: string;
|
|
19263
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19264
19220
|
|
|
19265
19221
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19266
19222
|
super(configuration);
|
|
@@ -19514,7 +19470,6 @@ export interface IInventoryClient {
|
|
|
19514
19470
|
export class InventoryClient extends AuthorizedApiBase implements IInventoryClient {
|
|
19515
19471
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19516
19472
|
private baseUrl: string;
|
|
19517
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19518
19473
|
|
|
19519
19474
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19520
19475
|
super(configuration);
|
|
@@ -19570,7 +19525,6 @@ export interface IMesClient {
|
|
|
19570
19525
|
export class MesClient extends AuthorizedApiBase implements IMesClient {
|
|
19571
19526
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19572
19527
|
private baseUrl: string;
|
|
19573
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19574
19528
|
|
|
19575
19529
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19576
19530
|
super(configuration);
|
|
@@ -19622,7 +19576,6 @@ export interface IMesDocumentsClient {
|
|
|
19622
19576
|
export class MesDocumentsClient extends AuthorizedApiBase implements IMesDocumentsClient {
|
|
19623
19577
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19624
19578
|
private baseUrl: string;
|
|
19625
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19626
19579
|
|
|
19627
19580
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19628
19581
|
super(configuration);
|
|
@@ -19682,7 +19635,6 @@ export interface IMesEngineeringChangeOrdersClient {
|
|
|
19682
19635
|
export class MesEngineeringChangeOrdersClient extends AuthorizedApiBase implements IMesEngineeringChangeOrdersClient {
|
|
19683
19636
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19684
19637
|
private baseUrl: string;
|
|
19685
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19686
19638
|
|
|
19687
19639
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19688
19640
|
super(configuration);
|
|
@@ -19785,7 +19737,6 @@ export interface IMesLinksClient {
|
|
|
19785
19737
|
export class MesLinksClient extends AuthorizedApiBase implements IMesLinksClient {
|
|
19786
19738
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19787
19739
|
private baseUrl: string;
|
|
19788
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19789
19740
|
|
|
19790
19741
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19791
19742
|
super(configuration);
|
|
@@ -19996,7 +19947,6 @@ export interface IMesOrMoveClient {
|
|
|
19996
19947
|
export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
19997
19948
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19998
19949
|
private baseUrl: string;
|
|
19999
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20000
19950
|
|
|
20001
19951
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20002
19952
|
super(configuration);
|
|
@@ -20068,7 +20018,6 @@ export interface IMesProductionOrderClient {
|
|
|
20068
20018
|
export class MesProductionOrderClient extends AuthorizedApiBase implements IMesProductionOrderClient {
|
|
20069
20019
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
20070
20020
|
private baseUrl: string;
|
|
20071
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20072
20021
|
|
|
20073
20022
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20074
20023
|
super(configuration);
|
|
@@ -20458,7 +20407,6 @@ export interface IMesProductionScheduleClient {
|
|
|
20458
20407
|
export class MesProductionScheduleClient extends AuthorizedApiBase implements IMesProductionScheduleClient {
|
|
20459
20408
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
20460
20409
|
private baseUrl: string;
|
|
20461
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20462
20410
|
|
|
20463
20411
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20464
20412
|
super(configuration);
|
|
@@ -20758,7 +20706,6 @@ export interface IMesProjectsClient {
|
|
|
20758
20706
|
export class MesProjectsClient extends AuthorizedApiBase implements IMesProjectsClient {
|
|
20759
20707
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
20760
20708
|
private baseUrl: string;
|
|
20761
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20762
20709
|
|
|
20763
20710
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20764
20711
|
super(configuration);
|
|
@@ -20853,7 +20800,6 @@ export interface IMesPurchaseOrderClient {
|
|
|
20853
20800
|
export class MesPurchaseOrderClient extends AuthorizedApiBase implements IMesPurchaseOrderClient {
|
|
20854
20801
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
20855
20802
|
private baseUrl: string;
|
|
20856
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20857
20803
|
|
|
20858
20804
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20859
20805
|
super(configuration);
|
|
@@ -20916,7 +20862,6 @@ export interface IMesResourceClient {
|
|
|
20916
20862
|
export class MesResourceClient extends AuthorizedApiBase implements IMesResourceClient {
|
|
20917
20863
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
20918
20864
|
private baseUrl: string;
|
|
20919
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
20920
20865
|
|
|
20921
20866
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
20922
20867
|
super(configuration);
|
|
@@ -21051,7 +20996,6 @@ export interface IElectricalClient {
|
|
|
21051
20996
|
export class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
21052
20997
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
21053
20998
|
private baseUrl: string;
|
|
21054
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
21055
20999
|
|
|
21056
21000
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
21057
21001
|
super(configuration);
|
|
@@ -21221,7 +21165,6 @@ export interface IWeldingClient {
|
|
|
21221
21165
|
export class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
21222
21166
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
21223
21167
|
private baseUrl: string;
|
|
21224
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
21225
21168
|
|
|
21226
21169
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
21227
21170
|
super(configuration);
|
|
@@ -21500,7 +21443,6 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
21500
21443
|
export class MeasurementFormSchemasAdminClient extends AuthorizedApiBase implements IMeasurementFormSchemasAdminClient {
|
|
21501
21444
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
21502
21445
|
private baseUrl: string;
|
|
21503
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
21504
21446
|
|
|
21505
21447
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
21506
21448
|
super(configuration);
|
|
@@ -23601,7 +23543,6 @@ export interface IMeasurementFormSchemasClient {
|
|
|
23601
23543
|
export class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
23602
23544
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
23603
23545
|
private baseUrl: string;
|
|
23604
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
23605
23546
|
|
|
23606
23547
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
23607
23548
|
super(configuration);
|
|
@@ -23736,7 +23677,6 @@ export interface IMeasurementFormSettingsClient {
|
|
|
23736
23677
|
export class MeasurementFormSettingsClient extends AuthorizedApiBase implements IMeasurementFormSettingsClient {
|
|
23737
23678
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
23738
23679
|
private baseUrl: string;
|
|
23739
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
23740
23680
|
|
|
23741
23681
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
23742
23682
|
super(configuration);
|
|
@@ -23908,7 +23848,6 @@ export interface IMeasurementFormsInstancesAdminClient {
|
|
|
23908
23848
|
export class MeasurementFormsInstancesAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesAdminClient {
|
|
23909
23849
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
23910
23850
|
private baseUrl: string;
|
|
23911
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
23912
23851
|
|
|
23913
23852
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
23914
23853
|
super(configuration);
|
|
@@ -24082,7 +24021,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
24082
24021
|
export class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
24083
24022
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
24084
24023
|
private baseUrl: string;
|
|
24085
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
24086
24024
|
|
|
24087
24025
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
24088
24026
|
super(configuration);
|
|
@@ -24996,7 +24934,6 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
24996
24934
|
export class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
24997
24935
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
24998
24936
|
private baseUrl: string;
|
|
24999
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
25000
24937
|
|
|
25001
24938
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
25002
24939
|
super(configuration);
|
|
@@ -25382,7 +25319,6 @@ export interface ICompaniesClient {
|
|
|
25382
25319
|
export class CompaniesClient extends AuthorizedApiBase implements ICompaniesClient {
|
|
25383
25320
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
25384
25321
|
private baseUrl: string;
|
|
25385
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
25386
25322
|
|
|
25387
25323
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
25388
25324
|
super(configuration);
|
|
@@ -25500,7 +25436,6 @@ export interface ICustomerOrdersClient {
|
|
|
25500
25436
|
export class CustomerOrdersClient extends AuthorizedApiBase implements ICustomerOrdersClient {
|
|
25501
25437
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
25502
25438
|
private baseUrl: string;
|
|
25503
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
25504
25439
|
|
|
25505
25440
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
25506
25441
|
super(configuration);
|
|
@@ -25781,7 +25716,6 @@ export interface IErpUsersClient {
|
|
|
25781
25716
|
export class ErpUsersClient extends AuthorizedApiBase implements IErpUsersClient {
|
|
25782
25717
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
25783
25718
|
private baseUrl: string;
|
|
25784
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
25785
25719
|
|
|
25786
25720
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
25787
25721
|
super(configuration);
|
|
@@ -25839,7 +25773,6 @@ export interface IProductionPoolsClient {
|
|
|
25839
25773
|
export class ProductionPoolsClient extends AuthorizedApiBase implements IProductionPoolsClient {
|
|
25840
25774
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
25841
25775
|
private baseUrl: string;
|
|
25842
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
25843
25776
|
|
|
25844
25777
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
25845
25778
|
super(configuration);
|
|
@@ -26053,7 +25986,6 @@ export interface IWorkordersClient {
|
|
|
26053
25986
|
export class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
26054
25987
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
26055
25988
|
private baseUrl: string;
|
|
26056
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
26057
25989
|
|
|
26058
25990
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
26059
25991
|
super(configuration);
|
|
@@ -27372,7 +27304,6 @@ export interface IMaterialCertificateChecksClient {
|
|
|
27372
27304
|
export class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
|
|
27373
27305
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
27374
27306
|
private baseUrl: string;
|
|
27375
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
27376
27307
|
|
|
27377
27308
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
27378
27309
|
super(configuration);
|
|
@@ -27549,7 +27480,6 @@ export interface IMaterialCertificateSpecificationsClient {
|
|
|
27549
27480
|
export class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
27550
27481
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
27551
27482
|
private baseUrl: string;
|
|
27552
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
27553
27483
|
|
|
27554
27484
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
27555
27485
|
super(configuration);
|
|
@@ -27766,7 +27696,6 @@ export interface IMaterialCertificateTypesClient {
|
|
|
27766
27696
|
export class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
27767
27697
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
27768
27698
|
private baseUrl: string;
|
|
27769
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
27770
27699
|
|
|
27771
27700
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
27772
27701
|
super(configuration);
|
|
@@ -34523,5 +34452,5 @@ function throwException(message: string, status: number, response: string, heade
|
|
|
34523
34452
|
}
|
|
34524
34453
|
|
|
34525
34454
|
export interface IAccessTokenProvider {
|
|
34526
|
-
|
|
34455
|
+
getAccessToken: () => Promise<string>;
|
|
34527
34456
|
}
|