@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/lib/AuthorizedApiBase.js
CHANGED
|
@@ -3,10 +3,19 @@ export class AuthorizedApiBase {
|
|
|
3
3
|
this.transformOptions = async (options) => {
|
|
4
4
|
options.headers = {
|
|
5
5
|
...options.headers,
|
|
6
|
-
Authorization:
|
|
6
|
+
Authorization: "Bearer " + (await this.config.getAccessToken()),
|
|
7
7
|
};
|
|
8
8
|
return options;
|
|
9
9
|
};
|
|
10
|
+
this.jsonParseReviver = (_, value) => {
|
|
11
|
+
// Matches starts with "2025-12-09T13:19:39"
|
|
12
|
+
// Will also match "2025-12-09T13:19:39.4576289+00:00"
|
|
13
|
+
const regex = /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/;
|
|
14
|
+
if (typeof value === "string" && regex.exec(value)) {
|
|
15
|
+
return new Date(value);
|
|
16
|
+
}
|
|
17
|
+
return value;
|
|
18
|
+
};
|
|
10
19
|
this.config = config;
|
|
11
20
|
}
|
|
12
21
|
}
|
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export declare class AuthorizedApiBase {
|
|
|
2
2
|
private readonly config;
|
|
3
3
|
protected constructor(config: IAccessTokenProvider);
|
|
4
4
|
protected transformOptions: (options: any) => Promise<any>;
|
|
5
|
+
protected jsonParseReviver: (_: any, value: any) => any;
|
|
5
6
|
}
|
|
6
7
|
export interface IAzureRegionsClient {
|
|
7
8
|
listAzureRegions(): Promise<AzureRegionDto[]>;
|
|
@@ -9,7 +10,6 @@ export interface IAzureRegionsClient {
|
|
|
9
10
|
export declare class AzureRegionsClient extends AuthorizedApiBase implements IAzureRegionsClient {
|
|
10
11
|
private http;
|
|
11
12
|
private baseUrl;
|
|
12
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
13
13
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
14
14
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
15
15
|
});
|
|
@@ -22,7 +22,6 @@ export interface ICountriesClient {
|
|
|
22
22
|
export declare class CountriesClient extends AuthorizedApiBase implements ICountriesClient {
|
|
23
23
|
private http;
|
|
24
24
|
private baseUrl;
|
|
25
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
26
25
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
27
26
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
28
27
|
});
|
|
@@ -72,7 +71,6 @@ export interface ICustomersClient {
|
|
|
72
71
|
export declare class CustomersClient extends AuthorizedApiBase implements ICustomersClient {
|
|
73
72
|
private http;
|
|
74
73
|
private baseUrl;
|
|
75
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
76
74
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
77
75
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
78
76
|
});
|
|
@@ -130,7 +128,6 @@ export interface IGuestsClient {
|
|
|
130
128
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
131
129
|
private http;
|
|
132
130
|
private baseUrl;
|
|
133
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
134
131
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
135
132
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
136
133
|
});
|
|
@@ -143,7 +140,6 @@ export interface IPresentationClient {
|
|
|
143
140
|
export declare class PresentationClient extends AuthorizedApiBase implements IPresentationClient {
|
|
144
141
|
private http;
|
|
145
142
|
private baseUrl;
|
|
146
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
147
143
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
148
144
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
149
145
|
});
|
|
@@ -182,7 +178,6 @@ export interface IMachineUtilizationClient {
|
|
|
182
178
|
export declare class MachineUtilizationClient extends AuthorizedApiBase implements IMachineUtilizationClient {
|
|
183
179
|
private http;
|
|
184
180
|
private baseUrl;
|
|
185
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
186
181
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
187
182
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
188
183
|
});
|
|
@@ -250,7 +245,6 @@ export interface IResourceUtilizationClient {
|
|
|
250
245
|
export declare class ResourceUtilizationClient extends AuthorizedApiBase implements IResourceUtilizationClient {
|
|
251
246
|
private http;
|
|
252
247
|
private baseUrl;
|
|
253
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
254
248
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
255
249
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
256
250
|
});
|
|
@@ -297,7 +291,6 @@ export interface IMeClient {
|
|
|
297
291
|
export declare class MeClient extends AuthorizedApiBase implements IMeClient {
|
|
298
292
|
private http;
|
|
299
293
|
private baseUrl;
|
|
300
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
301
294
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
302
295
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
303
296
|
});
|
|
@@ -323,7 +316,6 @@ export interface IUsersClient {
|
|
|
323
316
|
export declare class UsersClient extends AuthorizedApiBase implements IUsersClient {
|
|
324
317
|
private http;
|
|
325
318
|
private baseUrl;
|
|
326
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
327
319
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
328
320
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
329
321
|
});
|
|
@@ -343,7 +335,6 @@ export interface IUserAppSettingsClient {
|
|
|
343
335
|
export declare class UserAppSettingsClient extends AuthorizedApiBase implements IUserAppSettingsClient {
|
|
344
336
|
private http;
|
|
345
337
|
private baseUrl;
|
|
346
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
347
338
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
348
339
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
349
340
|
});
|
|
@@ -366,7 +357,6 @@ export interface IUploadClient {
|
|
|
366
357
|
export declare class UploadClient extends AuthorizedApiBase implements IUploadClient {
|
|
367
358
|
private http;
|
|
368
359
|
private baseUrl;
|
|
369
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
370
360
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
371
361
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
372
362
|
});
|
|
@@ -379,7 +369,6 @@ export interface ISystemHealthDashboardClient {
|
|
|
379
369
|
export declare class SystemHealthDashboardClient extends AuthorizedApiBase implements ISystemHealthDashboardClient {
|
|
380
370
|
private http;
|
|
381
371
|
private baseUrl;
|
|
382
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
383
372
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
384
373
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
385
374
|
});
|
|
@@ -392,7 +381,6 @@ export interface IPowerClient {
|
|
|
392
381
|
export declare class PowerClient extends AuthorizedApiBase implements IPowerClient {
|
|
393
382
|
private http;
|
|
394
383
|
private baseUrl;
|
|
395
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
396
384
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
397
385
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
398
386
|
});
|
|
@@ -411,7 +399,6 @@ export interface ISustainabilityClient {
|
|
|
411
399
|
export declare class SustainabilityClient extends AuthorizedApiBase implements ISustainabilityClient {
|
|
412
400
|
private http;
|
|
413
401
|
private baseUrl;
|
|
414
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
415
402
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
416
403
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
417
404
|
});
|
|
@@ -441,7 +428,6 @@ export interface IMachineAlarmsClient {
|
|
|
441
428
|
export declare class MachineAlarmsClient extends AuthorizedApiBase implements IMachineAlarmsClient {
|
|
442
429
|
private http;
|
|
443
430
|
private baseUrl;
|
|
444
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
445
431
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
446
432
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
447
433
|
});
|
|
@@ -472,7 +458,6 @@ export interface IDowntimeReasonsAdminResourceClient {
|
|
|
472
458
|
export declare class DowntimeReasonsAdminResourceClient extends AuthorizedApiBase implements IDowntimeReasonsAdminResourceClient {
|
|
473
459
|
private http;
|
|
474
460
|
private baseUrl;
|
|
475
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
476
461
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
477
462
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
478
463
|
});
|
|
@@ -510,7 +495,6 @@ export interface IDowntimeReasonsResourceClient {
|
|
|
510
495
|
export declare class DowntimeReasonsResourceClient extends AuthorizedApiBase implements IDowntimeReasonsResourceClient {
|
|
511
496
|
private http;
|
|
512
497
|
private baseUrl;
|
|
513
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
514
498
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
515
499
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
516
500
|
});
|
|
@@ -546,7 +530,6 @@ export interface IKpiAdminResourceClient {
|
|
|
546
530
|
export declare class KpiAdminResourceClient extends AuthorizedApiBase implements IKpiAdminResourceClient {
|
|
547
531
|
private http;
|
|
548
532
|
private baseUrl;
|
|
549
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
550
533
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
551
534
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
552
535
|
});
|
|
@@ -571,7 +554,6 @@ export interface IKpiResourceClient {
|
|
|
571
554
|
export declare class KpiResourceClient extends AuthorizedApiBase implements IKpiResourceClient {
|
|
572
555
|
private http;
|
|
573
556
|
private baseUrl;
|
|
574
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
575
557
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
576
558
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
577
559
|
});
|
|
@@ -612,7 +594,6 @@ export interface IResourcesClient {
|
|
|
612
594
|
export declare class ResourcesClient extends AuthorizedApiBase implements IResourcesClient {
|
|
613
595
|
private http;
|
|
614
596
|
private baseUrl;
|
|
615
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
616
597
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
617
598
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
618
599
|
});
|
|
@@ -679,7 +660,6 @@ export interface IPulseClient {
|
|
|
679
660
|
export declare class PulseClient extends AuthorizedApiBase implements IPulseClient {
|
|
680
661
|
private http;
|
|
681
662
|
private baseUrl;
|
|
682
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
683
663
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
684
664
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
685
665
|
});
|
|
@@ -750,7 +730,6 @@ export interface IUtilizationClient {
|
|
|
750
730
|
export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
751
731
|
private http;
|
|
752
732
|
private baseUrl;
|
|
753
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
754
733
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
755
734
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
756
735
|
});
|
|
@@ -873,7 +852,6 @@ export interface IMrbClient {
|
|
|
873
852
|
export declare class MrbClient extends AuthorizedApiBase implements IMrbClient {
|
|
874
853
|
private http;
|
|
875
854
|
private baseUrl;
|
|
876
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
877
855
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
878
856
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
879
857
|
});
|
|
@@ -986,7 +964,6 @@ export interface ITraceClient {
|
|
|
986
964
|
export declare class TraceClient extends AuthorizedApiBase implements ITraceClient {
|
|
987
965
|
private http;
|
|
988
966
|
private baseUrl;
|
|
989
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
990
967
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
991
968
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
992
969
|
});
|
|
@@ -1059,7 +1036,6 @@ export interface IMeasuringToolsClient {
|
|
|
1059
1036
|
export declare class MeasuringToolsClient extends AuthorizedApiBase implements IMeasuringToolsClient {
|
|
1060
1037
|
private http;
|
|
1061
1038
|
private baseUrl;
|
|
1062
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1063
1039
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1064
1040
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1065
1041
|
});
|
|
@@ -1148,7 +1124,6 @@ export interface IDowntimeReasonsAdminClient {
|
|
|
1148
1124
|
export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
1149
1125
|
private http;
|
|
1150
1126
|
private baseUrl;
|
|
1151
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1152
1127
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1153
1128
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1154
1129
|
});
|
|
@@ -1186,7 +1161,6 @@ export interface IDowntimeReasonsClient {
|
|
|
1186
1161
|
export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
|
|
1187
1162
|
private http;
|
|
1188
1163
|
private baseUrl;
|
|
1189
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1190
1164
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1191
1165
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1192
1166
|
});
|
|
@@ -1222,7 +1196,6 @@ export interface IKpiAdminClient {
|
|
|
1222
1196
|
export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
1223
1197
|
private http;
|
|
1224
1198
|
private baseUrl;
|
|
1225
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1226
1199
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1227
1200
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1228
1201
|
});
|
|
@@ -1247,7 +1220,6 @@ export interface IKpiClient {
|
|
|
1247
1220
|
export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
1248
1221
|
private http;
|
|
1249
1222
|
private baseUrl;
|
|
1250
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1251
1223
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1252
1224
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1253
1225
|
});
|
|
@@ -1289,7 +1261,6 @@ export interface IMachinesClient {
|
|
|
1289
1261
|
export declare class MachinesClient extends AuthorizedApiBase implements IMachinesClient {
|
|
1290
1262
|
private http;
|
|
1291
1263
|
private baseUrl;
|
|
1292
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1293
1264
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1294
1265
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1295
1266
|
});
|
|
@@ -1350,7 +1321,6 @@ export interface ILinksClient {
|
|
|
1350
1321
|
export declare class LinksClient extends AuthorizedApiBase implements ILinksClient {
|
|
1351
1322
|
private http;
|
|
1352
1323
|
private baseUrl;
|
|
1353
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1354
1324
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1355
1325
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1356
1326
|
});
|
|
@@ -1369,7 +1339,6 @@ export interface IExternalServicesClient {
|
|
|
1369
1339
|
export declare class ExternalServicesClient extends AuthorizedApiBase implements IExternalServicesClient {
|
|
1370
1340
|
private http;
|
|
1371
1341
|
private baseUrl;
|
|
1372
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1373
1342
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1374
1343
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1375
1344
|
});
|
|
@@ -1390,7 +1359,6 @@ export interface IDocumentsClient {
|
|
|
1390
1359
|
export declare class DocumentsClient extends AuthorizedApiBase implements IDocumentsClient {
|
|
1391
1360
|
private http;
|
|
1392
1361
|
private baseUrl;
|
|
1393
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1394
1362
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1395
1363
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1396
1364
|
});
|
|
@@ -1425,7 +1393,6 @@ export interface IDocumentTypesClient {
|
|
|
1425
1393
|
export declare class DocumentTypesClient extends AuthorizedApiBase implements IDocumentTypesClient {
|
|
1426
1394
|
private http;
|
|
1427
1395
|
private baseUrl;
|
|
1428
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1429
1396
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1430
1397
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1431
1398
|
});
|
|
@@ -1467,7 +1434,6 @@ export interface IExternalAccessClient {
|
|
|
1467
1434
|
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1468
1435
|
private http;
|
|
1469
1436
|
private baseUrl;
|
|
1470
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1471
1437
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1472
1438
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1473
1439
|
});
|
|
@@ -1494,7 +1460,6 @@ export interface IExternalClient {
|
|
|
1494
1460
|
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1495
1461
|
private http;
|
|
1496
1462
|
private baseUrl;
|
|
1497
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1498
1463
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1499
1464
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1500
1465
|
});
|
|
@@ -1524,7 +1489,6 @@ export interface ISuppliersClient {
|
|
|
1524
1489
|
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1525
1490
|
private http;
|
|
1526
1491
|
private baseUrl;
|
|
1527
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1528
1492
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1529
1493
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1530
1494
|
});
|
|
@@ -1563,7 +1527,6 @@ export interface ICncFileTransferClient {
|
|
|
1563
1527
|
export declare class CncFileTransferClient extends AuthorizedApiBase implements ICncFileTransferClient {
|
|
1564
1528
|
private http;
|
|
1565
1529
|
private baseUrl;
|
|
1566
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1567
1530
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1568
1531
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1569
1532
|
});
|
|
@@ -1590,7 +1553,6 @@ export interface ICncSetupAgentClient {
|
|
|
1590
1553
|
export declare class CncSetupAgentClient extends AuthorizedApiBase implements ICncSetupAgentClient {
|
|
1591
1554
|
private http;
|
|
1592
1555
|
private baseUrl;
|
|
1593
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1594
1556
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1595
1557
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1596
1558
|
});
|
|
@@ -1663,7 +1625,6 @@ export interface ICncSetupClient {
|
|
|
1663
1625
|
export declare class CncSetupClient extends AuthorizedApiBase implements ICncSetupClient {
|
|
1664
1626
|
private http;
|
|
1665
1627
|
private baseUrl;
|
|
1666
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1667
1628
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1668
1629
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1669
1630
|
});
|
|
@@ -1802,7 +1763,6 @@ export interface ICncSetupFixturesClient {
|
|
|
1802
1763
|
export declare class CncSetupFixturesClient extends AuthorizedApiBase implements ICncSetupFixturesClient {
|
|
1803
1764
|
private http;
|
|
1804
1765
|
private baseUrl;
|
|
1805
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1806
1766
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1807
1767
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1808
1768
|
});
|
|
@@ -1861,7 +1821,6 @@ export interface IOperatorCalculatorsClient {
|
|
|
1861
1821
|
export declare class OperatorCalculatorsClient extends AuthorizedApiBase implements IOperatorCalculatorsClient {
|
|
1862
1822
|
private http;
|
|
1863
1823
|
private baseUrl;
|
|
1864
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1865
1824
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1866
1825
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1867
1826
|
});
|
|
@@ -1904,7 +1863,6 @@ export interface IAssetsClient {
|
|
|
1904
1863
|
export declare class AssetsClient extends AuthorizedApiBase implements IAssetsClient {
|
|
1905
1864
|
private http;
|
|
1906
1865
|
private baseUrl;
|
|
1907
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1908
1866
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1909
1867
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1910
1868
|
});
|
|
@@ -1937,7 +1895,6 @@ export interface IAlertsClient {
|
|
|
1937
1895
|
export declare class AlertsClient extends AuthorizedApiBase implements IAlertsClient {
|
|
1938
1896
|
private http;
|
|
1939
1897
|
private baseUrl;
|
|
1940
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1941
1898
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1942
1899
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1943
1900
|
});
|
|
@@ -1962,7 +1919,6 @@ export interface ICredentialsClient {
|
|
|
1962
1919
|
export declare class CredentialsClient extends AuthorizedApiBase implements ICredentialsClient {
|
|
1963
1920
|
private http;
|
|
1964
1921
|
private baseUrl;
|
|
1965
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1966
1922
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1967
1923
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1968
1924
|
});
|
|
@@ -1986,7 +1942,6 @@ export interface ICdfClient {
|
|
|
1986
1942
|
export declare class CdfClient extends AuthorizedApiBase implements ICdfClient {
|
|
1987
1943
|
private http;
|
|
1988
1944
|
private baseUrl;
|
|
1989
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1990
1945
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1991
1946
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1992
1947
|
});
|
|
@@ -2015,7 +1970,6 @@ export interface IWorkspacesClient {
|
|
|
2015
1970
|
export declare class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
|
|
2016
1971
|
private http;
|
|
2017
1972
|
private baseUrl;
|
|
2018
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2019
1973
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2020
1974
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2021
1975
|
});
|
|
@@ -2050,7 +2004,6 @@ export interface IWorkspaceTemplatesAdminClient {
|
|
|
2050
2004
|
export declare class WorkspaceTemplatesAdminClient extends AuthorizedApiBase implements IWorkspaceTemplatesAdminClient {
|
|
2051
2005
|
private http;
|
|
2052
2006
|
private baseUrl;
|
|
2053
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2054
2007
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2055
2008
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2056
2009
|
});
|
|
@@ -2075,7 +2028,6 @@ export interface IWorkspaceTemplatesClient {
|
|
|
2075
2028
|
export declare class WorkspaceTemplatesClient extends AuthorizedApiBase implements IWorkspaceTemplatesClient {
|
|
2076
2029
|
private http;
|
|
2077
2030
|
private baseUrl;
|
|
2078
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2079
2031
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2080
2032
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2081
2033
|
});
|
|
@@ -2097,7 +2049,6 @@ export interface IMoveBookingClient {
|
|
|
2097
2049
|
export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
2098
2050
|
private http;
|
|
2099
2051
|
private baseUrl;
|
|
2100
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2101
2052
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2102
2053
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2103
2054
|
});
|
|
@@ -2133,7 +2084,6 @@ export interface IMoveLocationsClient {
|
|
|
2133
2084
|
export declare class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocationsClient {
|
|
2134
2085
|
private http;
|
|
2135
2086
|
private baseUrl;
|
|
2136
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2137
2087
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2138
2088
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2139
2089
|
});
|
|
@@ -2164,7 +2114,6 @@ export interface IMoveMaterialsClient {
|
|
|
2164
2114
|
export declare class MoveMaterialsClient extends AuthorizedApiBase implements IMoveMaterialsClient {
|
|
2165
2115
|
private http;
|
|
2166
2116
|
private baseUrl;
|
|
2167
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2168
2117
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2169
2118
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2170
2119
|
});
|
|
@@ -2190,7 +2139,6 @@ export interface IMoveNotificationsClient {
|
|
|
2190
2139
|
export declare class MoveNotificationsClient extends AuthorizedApiBase implements IMoveNotificationsClient {
|
|
2191
2140
|
private http;
|
|
2192
2141
|
private baseUrl;
|
|
2193
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2194
2142
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2195
2143
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2196
2144
|
});
|
|
@@ -2205,7 +2153,6 @@ export interface IMoveParcelsClient {
|
|
|
2205
2153
|
export declare class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
|
|
2206
2154
|
private http;
|
|
2207
2155
|
private baseUrl;
|
|
2208
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2209
2156
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2210
2157
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2211
2158
|
});
|
|
@@ -2226,7 +2173,6 @@ export interface IMoveTrackingClient {
|
|
|
2226
2173
|
export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
2227
2174
|
private http;
|
|
2228
2175
|
private baseUrl;
|
|
2229
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2230
2176
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2231
2177
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2232
2178
|
});
|
|
@@ -2260,7 +2206,6 @@ export interface IParcelCategoryClient {
|
|
|
2260
2206
|
export declare class ParcelCategoryClient extends AuthorizedApiBase implements IParcelCategoryClient {
|
|
2261
2207
|
private http;
|
|
2262
2208
|
private baseUrl;
|
|
2263
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2264
2209
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2265
2210
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2266
2211
|
});
|
|
@@ -2283,7 +2228,6 @@ export interface IInventoryClient {
|
|
|
2283
2228
|
export declare class InventoryClient extends AuthorizedApiBase implements IInventoryClient {
|
|
2284
2229
|
private http;
|
|
2285
2230
|
private baseUrl;
|
|
2286
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2287
2231
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2288
2232
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2289
2233
|
});
|
|
@@ -2296,7 +2240,6 @@ export interface IMesClient {
|
|
|
2296
2240
|
export declare class MesClient extends AuthorizedApiBase implements IMesClient {
|
|
2297
2241
|
private http;
|
|
2298
2242
|
private baseUrl;
|
|
2299
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2300
2243
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2301
2244
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2302
2245
|
});
|
|
@@ -2309,7 +2252,6 @@ export interface IMesDocumentsClient {
|
|
|
2309
2252
|
export declare class MesDocumentsClient extends AuthorizedApiBase implements IMesDocumentsClient {
|
|
2310
2253
|
private http;
|
|
2311
2254
|
private baseUrl;
|
|
2312
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2313
2255
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2314
2256
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2315
2257
|
});
|
|
@@ -2323,7 +2265,6 @@ export interface IMesEngineeringChangeOrdersClient {
|
|
|
2323
2265
|
export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase implements IMesEngineeringChangeOrdersClient {
|
|
2324
2266
|
private http;
|
|
2325
2267
|
private baseUrl;
|
|
2326
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2327
2268
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2328
2269
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2329
2270
|
});
|
|
@@ -2342,7 +2283,6 @@ export interface IMesLinksClient {
|
|
|
2342
2283
|
export declare class MesLinksClient extends AuthorizedApiBase implements IMesLinksClient {
|
|
2343
2284
|
private http;
|
|
2344
2285
|
private baseUrl;
|
|
2345
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2346
2286
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2347
2287
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2348
2288
|
});
|
|
@@ -2363,7 +2303,6 @@ export interface IMesOrMoveClient {
|
|
|
2363
2303
|
export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
2364
2304
|
private http;
|
|
2365
2305
|
private baseUrl;
|
|
2366
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2367
2306
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2368
2307
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2369
2308
|
});
|
|
@@ -2384,7 +2323,6 @@ export interface IMesProductionOrderClient {
|
|
|
2384
2323
|
export declare class MesProductionOrderClient extends AuthorizedApiBase implements IMesProductionOrderClient {
|
|
2385
2324
|
private http;
|
|
2386
2325
|
private baseUrl;
|
|
2387
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2388
2326
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2389
2327
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2390
2328
|
});
|
|
@@ -2419,7 +2357,6 @@ export interface IMesProductionScheduleClient {
|
|
|
2419
2357
|
export declare class MesProductionScheduleClient extends AuthorizedApiBase implements IMesProductionScheduleClient {
|
|
2420
2358
|
private http;
|
|
2421
2359
|
private baseUrl;
|
|
2422
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2423
2360
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2424
2361
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2425
2362
|
});
|
|
@@ -2445,7 +2382,6 @@ export interface IMesProjectsClient {
|
|
|
2445
2382
|
export declare class MesProjectsClient extends AuthorizedApiBase implements IMesProjectsClient {
|
|
2446
2383
|
private http;
|
|
2447
2384
|
private baseUrl;
|
|
2448
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2449
2385
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2450
2386
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2451
2387
|
});
|
|
@@ -2460,7 +2396,6 @@ export interface IMesPurchaseOrderClient {
|
|
|
2460
2396
|
export declare class MesPurchaseOrderClient extends AuthorizedApiBase implements IMesPurchaseOrderClient {
|
|
2461
2397
|
private http;
|
|
2462
2398
|
private baseUrl;
|
|
2463
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2464
2399
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2465
2400
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2466
2401
|
});
|
|
@@ -2475,7 +2410,6 @@ export interface IMesResourceClient {
|
|
|
2475
2410
|
export declare class MesResourceClient extends AuthorizedApiBase implements IMesResourceClient {
|
|
2476
2411
|
private http;
|
|
2477
2412
|
private baseUrl;
|
|
2478
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2479
2413
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2480
2414
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2481
2415
|
});
|
|
@@ -2495,7 +2429,6 @@ export interface IElectricalClient {
|
|
|
2495
2429
|
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2496
2430
|
private http;
|
|
2497
2431
|
private baseUrl;
|
|
2498
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2499
2432
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2500
2433
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2501
2434
|
});
|
|
@@ -2517,7 +2450,6 @@ export interface IWeldingClient {
|
|
|
2517
2450
|
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2518
2451
|
private http;
|
|
2519
2452
|
private baseUrl;
|
|
2520
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2521
2453
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2522
2454
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2523
2455
|
});
|
|
@@ -2601,7 +2533,6 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
2601
2533
|
export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase implements IMeasurementFormSchemasAdminClient {
|
|
2602
2534
|
private http;
|
|
2603
2535
|
private baseUrl;
|
|
2604
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2605
2536
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2606
2537
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2607
2538
|
});
|
|
@@ -2731,7 +2662,6 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2731
2662
|
export declare class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
2732
2663
|
private http;
|
|
2733
2664
|
private baseUrl;
|
|
2734
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2735
2665
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2736
2666
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2737
2667
|
});
|
|
@@ -2751,7 +2681,6 @@ export interface IMeasurementFormSettingsClient {
|
|
|
2751
2681
|
export declare class MeasurementFormSettingsClient extends AuthorizedApiBase implements IMeasurementFormSettingsClient {
|
|
2752
2682
|
private http;
|
|
2753
2683
|
private baseUrl;
|
|
2754
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2755
2684
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2756
2685
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2757
2686
|
});
|
|
@@ -2772,7 +2701,6 @@ export interface IMeasurementFormsInstancesAdminClient {
|
|
|
2772
2701
|
export declare class MeasurementFormsInstancesAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesAdminClient {
|
|
2773
2702
|
private http;
|
|
2774
2703
|
private baseUrl;
|
|
2775
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2776
2704
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2777
2705
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2778
2706
|
});
|
|
@@ -2812,7 +2740,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2812
2740
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
2813
2741
|
private http;
|
|
2814
2742
|
private baseUrl;
|
|
2815
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2816
2743
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2817
2744
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2818
2745
|
});
|
|
@@ -2876,7 +2803,6 @@ export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
|
2876
2803
|
export declare class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase implements IMeasurementFormsInstancesInstanceAdminClient {
|
|
2877
2804
|
private http;
|
|
2878
2805
|
private baseUrl;
|
|
2879
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2880
2806
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2881
2807
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2882
2808
|
});
|
|
@@ -2906,7 +2832,6 @@ export interface ICompaniesClient {
|
|
|
2906
2832
|
export declare class CompaniesClient extends AuthorizedApiBase implements ICompaniesClient {
|
|
2907
2833
|
private http;
|
|
2908
2834
|
private baseUrl;
|
|
2909
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2910
2835
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2911
2836
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2912
2837
|
});
|
|
@@ -2943,7 +2868,6 @@ export interface ICustomerOrdersClient {
|
|
|
2943
2868
|
export declare class CustomerOrdersClient extends AuthorizedApiBase implements ICustomerOrdersClient {
|
|
2944
2869
|
private http;
|
|
2945
2870
|
private baseUrl;
|
|
2946
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2947
2871
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2948
2872
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2949
2873
|
});
|
|
@@ -2983,7 +2907,6 @@ export interface IErpUsersClient {
|
|
|
2983
2907
|
export declare class ErpUsersClient extends AuthorizedApiBase implements IErpUsersClient {
|
|
2984
2908
|
private http;
|
|
2985
2909
|
private baseUrl;
|
|
2986
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2987
2910
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2988
2911
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2989
2912
|
});
|
|
@@ -2997,7 +2920,6 @@ export interface IProductionPoolsClient {
|
|
|
2997
2920
|
export declare class ProductionPoolsClient extends AuthorizedApiBase implements IProductionPoolsClient {
|
|
2998
2921
|
private http;
|
|
2999
2922
|
private baseUrl;
|
|
3000
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3001
2923
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3002
2924
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3003
2925
|
});
|
|
@@ -3108,7 +3030,6 @@ export interface IWorkordersClient {
|
|
|
3108
3030
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
3109
3031
|
private http;
|
|
3110
3032
|
private baseUrl;
|
|
3111
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3112
3033
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3113
3034
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3114
3035
|
});
|
|
@@ -3250,7 +3171,6 @@ export interface IMaterialCertificateChecksClient {
|
|
|
3250
3171
|
export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
|
|
3251
3172
|
private http;
|
|
3252
3173
|
private baseUrl;
|
|
3253
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3254
3174
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3255
3175
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3256
3176
|
});
|
|
@@ -3273,7 +3193,6 @@ export interface IMaterialCertificateSpecificationsClient {
|
|
|
3273
3193
|
export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
3274
3194
|
private http;
|
|
3275
3195
|
private baseUrl;
|
|
3276
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3277
3196
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3278
3197
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3279
3198
|
});
|
|
@@ -3298,7 +3217,6 @@ export interface IMaterialCertificateTypesClient {
|
|
|
3298
3217
|
export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
3299
3218
|
private http;
|
|
3300
3219
|
private baseUrl;
|
|
3301
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3302
3220
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3303
3221
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3304
3222
|
});
|