@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/ignosportal-api.js
CHANGED
|
@@ -10,17 +10,25 @@ export class AuthorizedApiBase {
|
|
|
10
10
|
this.transformOptions = async (options) => {
|
|
11
11
|
options.headers = {
|
|
12
12
|
...options.headers,
|
|
13
|
-
Authorization:
|
|
13
|
+
Authorization: "Bearer " + (await this.config.getAccessToken()),
|
|
14
14
|
};
|
|
15
15
|
return options;
|
|
16
16
|
};
|
|
17
|
+
this.jsonParseReviver = (_, value) => {
|
|
18
|
+
// Matches starts with "2025-12-09T13:19:39"
|
|
19
|
+
// Will also match "2025-12-09T13:19:39.4576289+00:00"
|
|
20
|
+
const regex = /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/;
|
|
21
|
+
if (typeof value === "string" && regex.exec(value)) {
|
|
22
|
+
return new Date(value);
|
|
23
|
+
}
|
|
24
|
+
return value;
|
|
25
|
+
};
|
|
17
26
|
this.config = config;
|
|
18
27
|
}
|
|
19
28
|
}
|
|
20
29
|
export class AzureRegionsClient extends AuthorizedApiBase {
|
|
21
30
|
constructor(configuration, baseUrl, http) {
|
|
22
31
|
super(configuration);
|
|
23
|
-
this.jsonParseReviver = undefined;
|
|
24
32
|
this.http = http ? http : window;
|
|
25
33
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
26
34
|
}
|
|
@@ -64,7 +72,6 @@ export class AzureRegionsClient extends AuthorizedApiBase {
|
|
|
64
72
|
export class CountriesClient extends AuthorizedApiBase {
|
|
65
73
|
constructor(configuration, baseUrl, http) {
|
|
66
74
|
super(configuration);
|
|
67
|
-
this.jsonParseReviver = undefined;
|
|
68
75
|
this.http = http ? http : window;
|
|
69
76
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
70
77
|
}
|
|
@@ -108,7 +115,6 @@ export class CountriesClient extends AuthorizedApiBase {
|
|
|
108
115
|
export class CustomersClient extends AuthorizedApiBase {
|
|
109
116
|
constructor(configuration, baseUrl, http) {
|
|
110
117
|
super(configuration);
|
|
111
|
-
this.jsonParseReviver = undefined;
|
|
112
118
|
this.http = http ? http : window;
|
|
113
119
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
114
120
|
}
|
|
@@ -479,7 +485,6 @@ export class CustomersClient extends AuthorizedApiBase {
|
|
|
479
485
|
export class GuestsClient extends AuthorizedApiBase {
|
|
480
486
|
constructor(configuration, baseUrl, http) {
|
|
481
487
|
super(configuration);
|
|
482
|
-
this.jsonParseReviver = undefined;
|
|
483
488
|
this.http = http ? http : window;
|
|
484
489
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
485
490
|
}
|
|
@@ -527,7 +532,6 @@ export class GuestsClient extends AuthorizedApiBase {
|
|
|
527
532
|
export class PresentationClient extends AuthorizedApiBase {
|
|
528
533
|
constructor(configuration, baseUrl, http) {
|
|
529
534
|
super(configuration);
|
|
530
|
-
this.jsonParseReviver = undefined;
|
|
531
535
|
this.http = http ? http : window;
|
|
532
536
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
533
537
|
}
|
|
@@ -574,7 +578,6 @@ export class PresentationClient extends AuthorizedApiBase {
|
|
|
574
578
|
export class MachineUtilizationClient extends AuthorizedApiBase {
|
|
575
579
|
constructor(configuration, baseUrl, http) {
|
|
576
580
|
super(configuration);
|
|
577
|
-
this.jsonParseReviver = undefined;
|
|
578
581
|
this.http = http ? http : window;
|
|
579
582
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
580
583
|
}
|
|
@@ -1033,7 +1036,6 @@ export class MachineUtilizationClient extends AuthorizedApiBase {
|
|
|
1033
1036
|
export class ResourceUtilizationClient extends AuthorizedApiBase {
|
|
1034
1037
|
constructor(configuration, baseUrl, http) {
|
|
1035
1038
|
super(configuration);
|
|
1036
|
-
this.jsonParseReviver = undefined;
|
|
1037
1039
|
this.http = http ? http : window;
|
|
1038
1040
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
1039
1041
|
}
|
|
@@ -1444,7 +1446,6 @@ export class ResourceUtilizationClient extends AuthorizedApiBase {
|
|
|
1444
1446
|
export class MeClient extends AuthorizedApiBase {
|
|
1445
1447
|
constructor(configuration, baseUrl, http) {
|
|
1446
1448
|
super(configuration);
|
|
1447
|
-
this.jsonParseReviver = undefined;
|
|
1448
1449
|
this.http = http ? http : window;
|
|
1449
1450
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
1450
1451
|
}
|
|
@@ -1699,7 +1700,6 @@ export class MeClient extends AuthorizedApiBase {
|
|
|
1699
1700
|
export class UsersClient extends AuthorizedApiBase {
|
|
1700
1701
|
constructor(configuration, baseUrl, http) {
|
|
1701
1702
|
super(configuration);
|
|
1702
|
-
this.jsonParseReviver = undefined;
|
|
1703
1703
|
this.http = http ? http : window;
|
|
1704
1704
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
1705
1705
|
}
|
|
@@ -1790,7 +1790,6 @@ export class UsersClient extends AuthorizedApiBase {
|
|
|
1790
1790
|
export class UserAppSettingsClient extends AuthorizedApiBase {
|
|
1791
1791
|
constructor(configuration, baseUrl, http) {
|
|
1792
1792
|
super(configuration);
|
|
1793
|
-
this.jsonParseReviver = undefined;
|
|
1794
1793
|
this.http = http ? http : window;
|
|
1795
1794
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
1796
1795
|
}
|
|
@@ -2014,7 +2013,6 @@ export class UserAppSettingsClient extends AuthorizedApiBase {
|
|
|
2014
2013
|
export class UploadClient extends AuthorizedApiBase {
|
|
2015
2014
|
constructor(configuration, baseUrl, http) {
|
|
2016
2015
|
super(configuration);
|
|
2017
|
-
this.jsonParseReviver = undefined;
|
|
2018
2016
|
this.http = http ? http : window;
|
|
2019
2017
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2020
2018
|
}
|
|
@@ -2058,7 +2056,6 @@ export class UploadClient extends AuthorizedApiBase {
|
|
|
2058
2056
|
export class SystemHealthDashboardClient extends AuthorizedApiBase {
|
|
2059
2057
|
constructor(configuration, baseUrl, http) {
|
|
2060
2058
|
super(configuration);
|
|
2061
|
-
this.jsonParseReviver = undefined;
|
|
2062
2059
|
this.http = http ? http : window;
|
|
2063
2060
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2064
2061
|
}
|
|
@@ -2104,7 +2101,6 @@ export class SystemHealthDashboardClient extends AuthorizedApiBase {
|
|
|
2104
2101
|
export class PowerClient extends AuthorizedApiBase {
|
|
2105
2102
|
constructor(configuration, baseUrl, http) {
|
|
2106
2103
|
super(configuration);
|
|
2107
|
-
this.jsonParseReviver = undefined;
|
|
2108
2104
|
this.http = http ? http : window;
|
|
2109
2105
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2110
2106
|
}
|
|
@@ -2150,7 +2146,6 @@ export class PowerClient extends AuthorizedApiBase {
|
|
|
2150
2146
|
export class SustainabilityClient extends AuthorizedApiBase {
|
|
2151
2147
|
constructor(configuration, baseUrl, http) {
|
|
2152
2148
|
super(configuration);
|
|
2153
|
-
this.jsonParseReviver = undefined;
|
|
2154
2149
|
this.http = http ? http : window;
|
|
2155
2150
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2156
2151
|
}
|
|
@@ -2431,7 +2426,6 @@ export class SustainabilityClient extends AuthorizedApiBase {
|
|
|
2431
2426
|
export class MachineAlarmsClient extends AuthorizedApiBase {
|
|
2432
2427
|
constructor(configuration, baseUrl, http) {
|
|
2433
2428
|
super(configuration);
|
|
2434
|
-
this.jsonParseReviver = undefined;
|
|
2435
2429
|
this.http = http ? http : window;
|
|
2436
2430
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2437
2431
|
}
|
|
@@ -2727,7 +2721,6 @@ export class MachineAlarmsClient extends AuthorizedApiBase {
|
|
|
2727
2721
|
export class DowntimeReasonsAdminResourceClient extends AuthorizedApiBase {
|
|
2728
2722
|
constructor(configuration, baseUrl, http) {
|
|
2729
2723
|
super(configuration);
|
|
2730
|
-
this.jsonParseReviver = undefined;
|
|
2731
2724
|
this.http = http ? http : window;
|
|
2732
2725
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2733
2726
|
}
|
|
@@ -3075,7 +3068,6 @@ export class DowntimeReasonsAdminResourceClient extends AuthorizedApiBase {
|
|
|
3075
3068
|
export class DowntimeReasonsResourceClient extends AuthorizedApiBase {
|
|
3076
3069
|
constructor(configuration, baseUrl, http) {
|
|
3077
3070
|
super(configuration);
|
|
3078
|
-
this.jsonParseReviver = undefined;
|
|
3079
3071
|
this.http = http ? http : window;
|
|
3080
3072
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
3081
3073
|
}
|
|
@@ -3473,7 +3465,6 @@ export class DowntimeReasonsResourceClient extends AuthorizedApiBase {
|
|
|
3473
3465
|
export class KpiAdminResourceClient extends AuthorizedApiBase {
|
|
3474
3466
|
constructor(configuration, baseUrl, http) {
|
|
3475
3467
|
super(configuration);
|
|
3476
|
-
this.jsonParseReviver = undefined;
|
|
3477
3468
|
this.http = http ? http : window;
|
|
3478
3469
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
3479
3470
|
}
|
|
@@ -3714,7 +3705,6 @@ export class KpiAdminResourceClient extends AuthorizedApiBase {
|
|
|
3714
3705
|
export class KpiResourceClient extends AuthorizedApiBase {
|
|
3715
3706
|
constructor(configuration, baseUrl, http) {
|
|
3716
3707
|
super(configuration);
|
|
3717
|
-
this.jsonParseReviver = undefined;
|
|
3718
3708
|
this.http = http ? http : window;
|
|
3719
3709
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
3720
3710
|
}
|
|
@@ -3870,7 +3860,6 @@ export class KpiResourceClient extends AuthorizedApiBase {
|
|
|
3870
3860
|
export class ResourcesClient extends AuthorizedApiBase {
|
|
3871
3861
|
constructor(configuration, baseUrl, http) {
|
|
3872
3862
|
super(configuration);
|
|
3873
|
-
this.jsonParseReviver = undefined;
|
|
3874
3863
|
this.http = http ? http : window;
|
|
3875
3864
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
3876
3865
|
}
|
|
@@ -4718,7 +4707,6 @@ export class ResourcesClient extends AuthorizedApiBase {
|
|
|
4718
4707
|
export class PulseClient extends AuthorizedApiBase {
|
|
4719
4708
|
constructor(configuration, baseUrl, http) {
|
|
4720
4709
|
super(configuration);
|
|
4721
|
-
this.jsonParseReviver = undefined;
|
|
4722
4710
|
this.http = http ? http : window;
|
|
4723
4711
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
4724
4712
|
}
|
|
@@ -4882,7 +4870,6 @@ export class PulseClient extends AuthorizedApiBase {
|
|
|
4882
4870
|
export class UtilizationClient extends AuthorizedApiBase {
|
|
4883
4871
|
constructor(configuration, baseUrl, http) {
|
|
4884
4872
|
super(configuration);
|
|
4885
|
-
this.jsonParseReviver = undefined;
|
|
4886
4873
|
this.http = http ? http : window;
|
|
4887
4874
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
4888
4875
|
}
|
|
@@ -5415,7 +5402,6 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
5415
5402
|
export class MrbClient extends AuthorizedApiBase {
|
|
5416
5403
|
constructor(configuration, baseUrl, http) {
|
|
5417
5404
|
super(configuration);
|
|
5418
|
-
this.jsonParseReviver = undefined;
|
|
5419
5405
|
this.http = http ? http : window;
|
|
5420
5406
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
5421
5407
|
}
|
|
@@ -6640,7 +6626,6 @@ export class MrbClient extends AuthorizedApiBase {
|
|
|
6640
6626
|
export class TraceClient extends AuthorizedApiBase {
|
|
6641
6627
|
constructor(configuration, baseUrl, http) {
|
|
6642
6628
|
super(configuration);
|
|
6643
|
-
this.jsonParseReviver = undefined;
|
|
6644
6629
|
this.http = http ? http : window;
|
|
6645
6630
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
6646
6631
|
}
|
|
@@ -7031,7 +7016,6 @@ export class TraceClient extends AuthorizedApiBase {
|
|
|
7031
7016
|
export class MeasuringToolsClient extends AuthorizedApiBase {
|
|
7032
7017
|
constructor(configuration, baseUrl, http) {
|
|
7033
7018
|
super(configuration);
|
|
7034
|
-
this.jsonParseReviver = undefined;
|
|
7035
7019
|
this.http = http ? http : window;
|
|
7036
7020
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
7037
7021
|
}
|
|
@@ -8357,7 +8341,6 @@ export class MeasuringToolsClient extends AuthorizedApiBase {
|
|
|
8357
8341
|
export class DowntimeReasonsAdminClient extends AuthorizedApiBase {
|
|
8358
8342
|
constructor(configuration, baseUrl, http) {
|
|
8359
8343
|
super(configuration);
|
|
8360
|
-
this.jsonParseReviver = undefined;
|
|
8361
8344
|
this.http = http ? http : window;
|
|
8362
8345
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
8363
8346
|
}
|
|
@@ -8705,7 +8688,6 @@ export class DowntimeReasonsAdminClient extends AuthorizedApiBase {
|
|
|
8705
8688
|
export class DowntimeReasonsClient extends AuthorizedApiBase {
|
|
8706
8689
|
constructor(configuration, baseUrl, http) {
|
|
8707
8690
|
super(configuration);
|
|
8708
|
-
this.jsonParseReviver = undefined;
|
|
8709
8691
|
this.http = http ? http : window;
|
|
8710
8692
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
8711
8693
|
}
|
|
@@ -9103,7 +9085,6 @@ export class DowntimeReasonsClient extends AuthorizedApiBase {
|
|
|
9103
9085
|
export class KpiAdminClient extends AuthorizedApiBase {
|
|
9104
9086
|
constructor(configuration, baseUrl, http) {
|
|
9105
9087
|
super(configuration);
|
|
9106
|
-
this.jsonParseReviver = undefined;
|
|
9107
9088
|
this.http = http ? http : window;
|
|
9108
9089
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
9109
9090
|
}
|
|
@@ -9344,7 +9325,6 @@ export class KpiAdminClient extends AuthorizedApiBase {
|
|
|
9344
9325
|
export class KpiClient extends AuthorizedApiBase {
|
|
9345
9326
|
constructor(configuration, baseUrl, http) {
|
|
9346
9327
|
super(configuration);
|
|
9347
|
-
this.jsonParseReviver = undefined;
|
|
9348
9328
|
this.http = http ? http : window;
|
|
9349
9329
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
9350
9330
|
}
|
|
@@ -9500,7 +9480,6 @@ export class KpiClient extends AuthorizedApiBase {
|
|
|
9500
9480
|
export class MachinesClient extends AuthorizedApiBase {
|
|
9501
9481
|
constructor(configuration, baseUrl, http) {
|
|
9502
9482
|
super(configuration);
|
|
9503
|
-
this.jsonParseReviver = undefined;
|
|
9504
9483
|
this.http = http ? http : window;
|
|
9505
9484
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
9506
9485
|
}
|
|
@@ -10321,7 +10300,6 @@ export class MachinesClient extends AuthorizedApiBase {
|
|
|
10321
10300
|
export class LinksClient extends AuthorizedApiBase {
|
|
10322
10301
|
constructor(configuration, baseUrl, http) {
|
|
10323
10302
|
super(configuration);
|
|
10324
|
-
this.jsonParseReviver = undefined;
|
|
10325
10303
|
this.http = http ? http : window;
|
|
10326
10304
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
10327
10305
|
}
|
|
@@ -10479,7 +10457,6 @@ export class LinksClient extends AuthorizedApiBase {
|
|
|
10479
10457
|
export class ExternalServicesClient extends AuthorizedApiBase {
|
|
10480
10458
|
constructor(configuration, baseUrl, http) {
|
|
10481
10459
|
super(configuration);
|
|
10482
|
-
this.jsonParseReviver = undefined;
|
|
10483
10460
|
this.http = http ? http : window;
|
|
10484
10461
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
10485
10462
|
}
|
|
@@ -10526,7 +10503,6 @@ export class ExternalServicesClient extends AuthorizedApiBase {
|
|
|
10526
10503
|
export class DocumentsClient extends AuthorizedApiBase {
|
|
10527
10504
|
constructor(configuration, baseUrl, http) {
|
|
10528
10505
|
super(configuration);
|
|
10529
|
-
this.jsonParseReviver = undefined;
|
|
10530
10506
|
this.http = http ? http : window;
|
|
10531
10507
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
10532
10508
|
}
|
|
@@ -10620,7 +10596,6 @@ export class DocumentsClient extends AuthorizedApiBase {
|
|
|
10620
10596
|
export class DocumentTypesClient extends AuthorizedApiBase {
|
|
10621
10597
|
constructor(configuration, baseUrl, http) {
|
|
10622
10598
|
super(configuration);
|
|
10623
|
-
this.jsonParseReviver = undefined;
|
|
10624
10599
|
this.http = http ? http : window;
|
|
10625
10600
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
10626
10601
|
}
|
|
@@ -11046,7 +11021,6 @@ export class DocumentTypesClient extends AuthorizedApiBase {
|
|
|
11046
11021
|
export class ExternalAccessClient extends AuthorizedApiBase {
|
|
11047
11022
|
constructor(configuration, baseUrl, http) {
|
|
11048
11023
|
super(configuration);
|
|
11049
|
-
this.jsonParseReviver = undefined;
|
|
11050
11024
|
this.http = http ? http : window;
|
|
11051
11025
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
11052
11026
|
}
|
|
@@ -11317,7 +11291,6 @@ export class ExternalAccessClient extends AuthorizedApiBase {
|
|
|
11317
11291
|
export class ExternalClient extends AuthorizedApiBase {
|
|
11318
11292
|
constructor(configuration, baseUrl, http) {
|
|
11319
11293
|
super(configuration);
|
|
11320
|
-
this.jsonParseReviver = undefined;
|
|
11321
11294
|
this.http = http ? http : window;
|
|
11322
11295
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
11323
11296
|
}
|
|
@@ -11436,7 +11409,6 @@ export class ExternalClient extends AuthorizedApiBase {
|
|
|
11436
11409
|
export class SuppliersClient extends AuthorizedApiBase {
|
|
11437
11410
|
constructor(configuration, baseUrl, http) {
|
|
11438
11411
|
super(configuration);
|
|
11439
|
-
this.jsonParseReviver = undefined;
|
|
11440
11412
|
this.http = http ? http : window;
|
|
11441
11413
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
11442
11414
|
}
|
|
@@ -11738,7 +11710,6 @@ export class SuppliersClient extends AuthorizedApiBase {
|
|
|
11738
11710
|
export class CncFileTransferClient extends AuthorizedApiBase {
|
|
11739
11711
|
constructor(configuration, baseUrl, http) {
|
|
11740
11712
|
super(configuration);
|
|
11741
|
-
this.jsonParseReviver = undefined;
|
|
11742
11713
|
this.http = http ? http : window;
|
|
11743
11714
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
11744
11715
|
}
|
|
@@ -12020,7 +11991,6 @@ export class CncFileTransferClient extends AuthorizedApiBase {
|
|
|
12020
11991
|
export class CncSetupAgentClient extends AuthorizedApiBase {
|
|
12021
11992
|
constructor(configuration, baseUrl, http) {
|
|
12022
11993
|
super(configuration);
|
|
12023
|
-
this.jsonParseReviver = undefined;
|
|
12024
11994
|
this.http = http ? http : window;
|
|
12025
11995
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
12026
11996
|
}
|
|
@@ -12149,7 +12119,6 @@ export class CncSetupAgentClient extends AuthorizedApiBase {
|
|
|
12149
12119
|
export class CncSetupClient extends AuthorizedApiBase {
|
|
12150
12120
|
constructor(configuration, baseUrl, http) {
|
|
12151
12121
|
super(configuration);
|
|
12152
|
-
this.jsonParseReviver = undefined;
|
|
12153
12122
|
this.http = http ? http : window;
|
|
12154
12123
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
12155
12124
|
}
|
|
@@ -14443,7 +14412,6 @@ export class CncSetupClient extends AuthorizedApiBase {
|
|
|
14443
14412
|
export class CncSetupFixturesClient extends AuthorizedApiBase {
|
|
14444
14413
|
constructor(configuration, baseUrl, http) {
|
|
14445
14414
|
super(configuration);
|
|
14446
|
-
this.jsonParseReviver = undefined;
|
|
14447
14415
|
this.http = http ? http : window;
|
|
14448
14416
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
14449
14417
|
}
|
|
@@ -15051,7 +15019,6 @@ export class CncSetupFixturesClient extends AuthorizedApiBase {
|
|
|
15051
15019
|
export class OperatorCalculatorsClient extends AuthorizedApiBase {
|
|
15052
15020
|
constructor(configuration, baseUrl, http) {
|
|
15053
15021
|
super(configuration);
|
|
15054
|
-
this.jsonParseReviver = undefined;
|
|
15055
15022
|
this.http = http ? http : window;
|
|
15056
15023
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15057
15024
|
}
|
|
@@ -15227,7 +15194,6 @@ export class OperatorCalculatorsClient extends AuthorizedApiBase {
|
|
|
15227
15194
|
export class AssetsClient extends AuthorizedApiBase {
|
|
15228
15195
|
constructor(configuration, baseUrl, http) {
|
|
15229
15196
|
super(configuration);
|
|
15230
|
-
this.jsonParseReviver = undefined;
|
|
15231
15197
|
this.http = http ? http : window;
|
|
15232
15198
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15233
15199
|
}
|
|
@@ -15525,7 +15491,6 @@ export class AssetsClient extends AuthorizedApiBase {
|
|
|
15525
15491
|
export class AlertsClient extends AuthorizedApiBase {
|
|
15526
15492
|
constructor(configuration, baseUrl, http) {
|
|
15527
15493
|
super(configuration);
|
|
15528
|
-
this.jsonParseReviver = undefined;
|
|
15529
15494
|
this.http = http ? http : window;
|
|
15530
15495
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15531
15496
|
}
|
|
@@ -15754,7 +15719,6 @@ export class AlertsClient extends AuthorizedApiBase {
|
|
|
15754
15719
|
export class CredentialsClient extends AuthorizedApiBase {
|
|
15755
15720
|
constructor(configuration, baseUrl, http) {
|
|
15756
15721
|
super(configuration);
|
|
15757
|
-
this.jsonParseReviver = undefined;
|
|
15758
15722
|
this.http = http ? http : window;
|
|
15759
15723
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15760
15724
|
}
|
|
@@ -15870,7 +15834,6 @@ export class CredentialsClient extends AuthorizedApiBase {
|
|
|
15870
15834
|
export class CdfClient extends AuthorizedApiBase {
|
|
15871
15835
|
constructor(configuration, baseUrl, http) {
|
|
15872
15836
|
super(configuration);
|
|
15873
|
-
this.jsonParseReviver = undefined;
|
|
15874
15837
|
this.http = http ? http : window;
|
|
15875
15838
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15876
15839
|
}
|
|
@@ -15959,7 +15922,6 @@ export class CdfClient extends AuthorizedApiBase {
|
|
|
15959
15922
|
export class WorkspacesClient extends AuthorizedApiBase {
|
|
15960
15923
|
constructor(configuration, baseUrl, http) {
|
|
15961
15924
|
super(configuration);
|
|
15962
|
-
this.jsonParseReviver = undefined;
|
|
15963
15925
|
this.http = http ? http : window;
|
|
15964
15926
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15965
15927
|
}
|
|
@@ -16326,7 +16288,6 @@ export class WorkspacesClient extends AuthorizedApiBase {
|
|
|
16326
16288
|
export class WorkspaceTemplatesAdminClient extends AuthorizedApiBase {
|
|
16327
16289
|
constructor(configuration, baseUrl, http) {
|
|
16328
16290
|
super(configuration);
|
|
16329
|
-
this.jsonParseReviver = undefined;
|
|
16330
16291
|
this.http = http ? http : window;
|
|
16331
16292
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
16332
16293
|
}
|
|
@@ -16618,7 +16579,6 @@ export class WorkspaceTemplatesAdminClient extends AuthorizedApiBase {
|
|
|
16618
16579
|
export class WorkspaceTemplatesClient extends AuthorizedApiBase {
|
|
16619
16580
|
constructor(configuration, baseUrl, http) {
|
|
16620
16581
|
super(configuration);
|
|
16621
|
-
this.jsonParseReviver = undefined;
|
|
16622
16582
|
this.http = http ? http : window;
|
|
16623
16583
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
16624
16584
|
}
|
|
@@ -16662,7 +16622,6 @@ export class WorkspaceTemplatesClient extends AuthorizedApiBase {
|
|
|
16662
16622
|
export class MoveBookingClient extends AuthorizedApiBase {
|
|
16663
16623
|
constructor(configuration, baseUrl, http) {
|
|
16664
16624
|
super(configuration);
|
|
16665
|
-
this.jsonParseReviver = undefined;
|
|
16666
16625
|
this.http = http ? http : window;
|
|
16667
16626
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
16668
16627
|
}
|
|
@@ -17061,7 +17020,6 @@ export class MoveBookingClient extends AuthorizedApiBase {
|
|
|
17061
17020
|
export class MoveLocationsClient extends AuthorizedApiBase {
|
|
17062
17021
|
constructor(configuration, baseUrl, http) {
|
|
17063
17022
|
super(configuration);
|
|
17064
|
-
this.jsonParseReviver = undefined;
|
|
17065
17023
|
this.http = http ? http : window;
|
|
17066
17024
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
17067
17025
|
}
|
|
@@ -17311,7 +17269,6 @@ export class MoveLocationsClient extends AuthorizedApiBase {
|
|
|
17311
17269
|
export class MoveMaterialsClient extends AuthorizedApiBase {
|
|
17312
17270
|
constructor(configuration, baseUrl, http) {
|
|
17313
17271
|
super(configuration);
|
|
17314
|
-
this.jsonParseReviver = undefined;
|
|
17315
17272
|
this.http = http ? http : window;
|
|
17316
17273
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
17317
17274
|
}
|
|
@@ -17511,7 +17468,6 @@ export class MoveMaterialsClient extends AuthorizedApiBase {
|
|
|
17511
17468
|
export class MoveNotificationsClient extends AuthorizedApiBase {
|
|
17512
17469
|
constructor(configuration, baseUrl, http) {
|
|
17513
17470
|
super(configuration);
|
|
17514
|
-
this.jsonParseReviver = undefined;
|
|
17515
17471
|
this.http = http ? http : window;
|
|
17516
17472
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
17517
17473
|
}
|
|
@@ -17594,7 +17550,6 @@ export class MoveNotificationsClient extends AuthorizedApiBase {
|
|
|
17594
17550
|
export class MoveParcelsClient extends AuthorizedApiBase {
|
|
17595
17551
|
constructor(configuration, baseUrl, http) {
|
|
17596
17552
|
super(configuration);
|
|
17597
|
-
this.jsonParseReviver = undefined;
|
|
17598
17553
|
this.http = http ? http : window;
|
|
17599
17554
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
17600
17555
|
}
|
|
@@ -17642,7 +17597,6 @@ export class MoveParcelsClient extends AuthorizedApiBase {
|
|
|
17642
17597
|
export class MoveTrackingClient extends AuthorizedApiBase {
|
|
17643
17598
|
constructor(configuration, baseUrl, http) {
|
|
17644
17599
|
super(configuration);
|
|
17645
|
-
this.jsonParseReviver = undefined;
|
|
17646
17600
|
this.http = http ? http : window;
|
|
17647
17601
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
17648
17602
|
}
|
|
@@ -18002,7 +17956,6 @@ export class MoveTrackingClient extends AuthorizedApiBase {
|
|
|
18002
17956
|
export class ParcelCategoryClient extends AuthorizedApiBase {
|
|
18003
17957
|
constructor(configuration, baseUrl, http) {
|
|
18004
17958
|
super(configuration);
|
|
18005
|
-
this.jsonParseReviver = undefined;
|
|
18006
17959
|
this.http = http ? http : window;
|
|
18007
17960
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18008
17961
|
}
|
|
@@ -18252,7 +18205,6 @@ export class ParcelCategoryClient extends AuthorizedApiBase {
|
|
|
18252
18205
|
export class InventoryClient extends AuthorizedApiBase {
|
|
18253
18206
|
constructor(configuration, baseUrl, http) {
|
|
18254
18207
|
super(configuration);
|
|
18255
|
-
this.jsonParseReviver = undefined;
|
|
18256
18208
|
this.http = http ? http : window;
|
|
18257
18209
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18258
18210
|
}
|
|
@@ -18299,7 +18251,6 @@ export class InventoryClient extends AuthorizedApiBase {
|
|
|
18299
18251
|
export class MesClient extends AuthorizedApiBase {
|
|
18300
18252
|
constructor(configuration, baseUrl, http) {
|
|
18301
18253
|
super(configuration);
|
|
18302
|
-
this.jsonParseReviver = undefined;
|
|
18303
18254
|
this.http = http ? http : window;
|
|
18304
18255
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18305
18256
|
}
|
|
@@ -18343,7 +18294,6 @@ export class MesClient extends AuthorizedApiBase {
|
|
|
18343
18294
|
export class MesDocumentsClient extends AuthorizedApiBase {
|
|
18344
18295
|
constructor(configuration, baseUrl, http) {
|
|
18345
18296
|
super(configuration);
|
|
18346
|
-
this.jsonParseReviver = undefined;
|
|
18347
18297
|
this.http = http ? http : window;
|
|
18348
18298
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18349
18299
|
}
|
|
@@ -18393,7 +18343,6 @@ export class MesDocumentsClient extends AuthorizedApiBase {
|
|
|
18393
18343
|
export class MesEngineeringChangeOrdersClient extends AuthorizedApiBase {
|
|
18394
18344
|
constructor(configuration, baseUrl, http) {
|
|
18395
18345
|
super(configuration);
|
|
18396
|
-
this.jsonParseReviver = undefined;
|
|
18397
18346
|
this.http = http ? http : window;
|
|
18398
18347
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18399
18348
|
}
|
|
@@ -18481,7 +18430,6 @@ export class MesEngineeringChangeOrdersClient extends AuthorizedApiBase {
|
|
|
18481
18430
|
export class MesLinksClient extends AuthorizedApiBase {
|
|
18482
18431
|
constructor(configuration, baseUrl, http) {
|
|
18483
18432
|
super(configuration);
|
|
18484
|
-
this.jsonParseReviver = undefined;
|
|
18485
18433
|
this.http = http ? http : window;
|
|
18486
18434
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18487
18435
|
}
|
|
@@ -18686,7 +18634,6 @@ export class MesLinksClient extends AuthorizedApiBase {
|
|
|
18686
18634
|
export class MesOrMoveClient extends AuthorizedApiBase {
|
|
18687
18635
|
constructor(configuration, baseUrl, http) {
|
|
18688
18636
|
super(configuration);
|
|
18689
|
-
this.jsonParseReviver = undefined;
|
|
18690
18637
|
this.http = http ? http : window;
|
|
18691
18638
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18692
18639
|
}
|
|
@@ -18733,7 +18680,6 @@ export class MesOrMoveClient extends AuthorizedApiBase {
|
|
|
18733
18680
|
export class MesProductionOrderClient extends AuthorizedApiBase {
|
|
18734
18681
|
constructor(configuration, baseUrl, http) {
|
|
18735
18682
|
super(configuration);
|
|
18736
|
-
this.jsonParseReviver = undefined;
|
|
18737
18683
|
this.http = http ? http : window;
|
|
18738
18684
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18739
18685
|
}
|
|
@@ -19110,7 +19056,6 @@ export class MesProductionOrderClient extends AuthorizedApiBase {
|
|
|
19110
19056
|
export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
19111
19057
|
constructor(configuration, baseUrl, http) {
|
|
19112
19058
|
super(configuration);
|
|
19113
|
-
this.jsonParseReviver = undefined;
|
|
19114
19059
|
this.http = http ? http : window;
|
|
19115
19060
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19116
19061
|
}
|
|
@@ -19402,7 +19347,6 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
19402
19347
|
export class MesProjectsClient extends AuthorizedApiBase {
|
|
19403
19348
|
constructor(configuration, baseUrl, http) {
|
|
19404
19349
|
super(configuration);
|
|
19405
|
-
this.jsonParseReviver = undefined;
|
|
19406
19350
|
this.http = http ? http : window;
|
|
19407
19351
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19408
19352
|
}
|
|
@@ -19488,7 +19432,6 @@ export class MesProjectsClient extends AuthorizedApiBase {
|
|
|
19488
19432
|
export class MesPurchaseOrderClient extends AuthorizedApiBase {
|
|
19489
19433
|
constructor(configuration, baseUrl, http) {
|
|
19490
19434
|
super(configuration);
|
|
19491
|
-
this.jsonParseReviver = undefined;
|
|
19492
19435
|
this.http = http ? http : window;
|
|
19493
19436
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19494
19437
|
}
|
|
@@ -19539,7 +19482,6 @@ export class MesPurchaseOrderClient extends AuthorizedApiBase {
|
|
|
19539
19482
|
export class MesResourceClient extends AuthorizedApiBase {
|
|
19540
19483
|
constructor(configuration, baseUrl, http) {
|
|
19541
19484
|
super(configuration);
|
|
19542
|
-
this.jsonParseReviver = undefined;
|
|
19543
19485
|
this.http = http ? http : window;
|
|
19544
19486
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19545
19487
|
}
|
|
@@ -19662,7 +19604,6 @@ export class MesResourceClient extends AuthorizedApiBase {
|
|
|
19662
19604
|
export class ElectricalClient extends AuthorizedApiBase {
|
|
19663
19605
|
constructor(configuration, baseUrl, http) {
|
|
19664
19606
|
super(configuration);
|
|
19665
|
-
this.jsonParseReviver = undefined;
|
|
19666
19607
|
this.http = http ? http : window;
|
|
19667
19608
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19668
19609
|
}
|
|
@@ -19819,7 +19760,6 @@ export class ElectricalClient extends AuthorizedApiBase {
|
|
|
19819
19760
|
export class WeldingClient extends AuthorizedApiBase {
|
|
19820
19761
|
constructor(configuration, baseUrl, http) {
|
|
19821
19762
|
super(configuration);
|
|
19822
|
-
this.jsonParseReviver = undefined;
|
|
19823
19763
|
this.http = http ? http : window;
|
|
19824
19764
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19825
19765
|
}
|
|
@@ -19976,7 +19916,6 @@ export class WeldingClient extends AuthorizedApiBase {
|
|
|
19976
19916
|
export class MeasurementFormSchemasAdminClient extends AuthorizedApiBase {
|
|
19977
19917
|
constructor(configuration, baseUrl, http) {
|
|
19978
19918
|
super(configuration);
|
|
19979
|
-
this.jsonParseReviver = undefined;
|
|
19980
19919
|
this.http = http ? http : window;
|
|
19981
19920
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
19982
19921
|
}
|
|
@@ -22085,7 +22024,6 @@ export class MeasurementFormSchemasAdminClient extends AuthorizedApiBase {
|
|
|
22085
22024
|
export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
22086
22025
|
constructor(configuration, baseUrl, http) {
|
|
22087
22026
|
super(configuration);
|
|
22088
|
-
this.jsonParseReviver = undefined;
|
|
22089
22027
|
this.http = http ? http : window;
|
|
22090
22028
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
22091
22029
|
}
|
|
@@ -22207,7 +22145,6 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
22207
22145
|
export class MeasurementFormSettingsClient extends AuthorizedApiBase {
|
|
22208
22146
|
constructor(configuration, baseUrl, http) {
|
|
22209
22147
|
super(configuration);
|
|
22210
|
-
this.jsonParseReviver = undefined;
|
|
22211
22148
|
this.http = http ? http : window;
|
|
22212
22149
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
22213
22150
|
}
|
|
@@ -22368,7 +22305,6 @@ export class MeasurementFormSettingsClient extends AuthorizedApiBase {
|
|
|
22368
22305
|
export class MeasurementFormsInstancesAdminClient extends AuthorizedApiBase {
|
|
22369
22306
|
constructor(configuration, baseUrl, http) {
|
|
22370
22307
|
super(configuration);
|
|
22371
|
-
this.jsonParseReviver = undefined;
|
|
22372
22308
|
this.http = http ? http : window;
|
|
22373
22309
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
22374
22310
|
}
|
|
@@ -22493,7 +22429,6 @@ export class MeasurementFormsInstancesAdminClient extends AuthorizedApiBase {
|
|
|
22493
22429
|
export class MeasurementFormsInstancesClient extends AuthorizedApiBase {
|
|
22494
22430
|
constructor(configuration, baseUrl, http) {
|
|
22495
22431
|
super(configuration);
|
|
22496
|
-
this.jsonParseReviver = undefined;
|
|
22497
22432
|
this.http = http ? http : window;
|
|
22498
22433
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
22499
22434
|
}
|
|
@@ -23392,7 +23327,6 @@ export class MeasurementFormsInstancesClient extends AuthorizedApiBase {
|
|
|
23392
23327
|
export class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiBase {
|
|
23393
23328
|
constructor(configuration, baseUrl, http) {
|
|
23394
23329
|
super(configuration);
|
|
23395
|
-
this.jsonParseReviver = undefined;
|
|
23396
23330
|
this.http = http ? http : window;
|
|
23397
23331
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
23398
23332
|
}
|
|
@@ -23771,7 +23705,6 @@ export class MeasurementFormsInstancesInstanceAdminClient extends AuthorizedApiB
|
|
|
23771
23705
|
export class CompaniesClient extends AuthorizedApiBase {
|
|
23772
23706
|
constructor(configuration, baseUrl, http) {
|
|
23773
23707
|
super(configuration);
|
|
23774
|
-
this.jsonParseReviver = undefined;
|
|
23775
23708
|
this.http = http ? http : window;
|
|
23776
23709
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
23777
23710
|
}
|
|
@@ -23854,7 +23787,6 @@ export class CompaniesClient extends AuthorizedApiBase {
|
|
|
23854
23787
|
export class CustomerOrdersClient extends AuthorizedApiBase {
|
|
23855
23788
|
constructor(configuration, baseUrl, http) {
|
|
23856
23789
|
super(configuration);
|
|
23857
|
-
this.jsonParseReviver = undefined;
|
|
23858
23790
|
this.http = http ? http : window;
|
|
23859
23791
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
23860
23792
|
}
|
|
@@ -24130,7 +24062,6 @@ export class CustomerOrdersClient extends AuthorizedApiBase {
|
|
|
24130
24062
|
export class ErpUsersClient extends AuthorizedApiBase {
|
|
24131
24063
|
constructor(configuration, baseUrl, http) {
|
|
24132
24064
|
super(configuration);
|
|
24133
|
-
this.jsonParseReviver = undefined;
|
|
24134
24065
|
this.http = http ? http : window;
|
|
24135
24066
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
24136
24067
|
}
|
|
@@ -24177,7 +24108,6 @@ export class ErpUsersClient extends AuthorizedApiBase {
|
|
|
24177
24108
|
export class ProductionPoolsClient extends AuthorizedApiBase {
|
|
24178
24109
|
constructor(configuration, baseUrl, http) {
|
|
24179
24110
|
super(configuration);
|
|
24180
|
-
this.jsonParseReviver = undefined;
|
|
24181
24111
|
this.http = http ? http : window;
|
|
24182
24112
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
24183
24113
|
}
|
|
@@ -24257,7 +24187,6 @@ export class ProductionPoolsClient extends AuthorizedApiBase {
|
|
|
24257
24187
|
export class WorkordersClient extends AuthorizedApiBase {
|
|
24258
24188
|
constructor(configuration, baseUrl, http) {
|
|
24259
24189
|
super(configuration);
|
|
24260
|
-
this.jsonParseReviver = undefined;
|
|
24261
24190
|
this.http = http ? http : window;
|
|
24262
24191
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
24263
24192
|
}
|
|
@@ -25573,7 +25502,6 @@ export class WorkordersClient extends AuthorizedApiBase {
|
|
|
25573
25502
|
export class MaterialCertificateChecksClient extends AuthorizedApiBase {
|
|
25574
25503
|
constructor(configuration, baseUrl, http) {
|
|
25575
25504
|
super(configuration);
|
|
25576
|
-
this.jsonParseReviver = undefined;
|
|
25577
25505
|
this.http = http ? http : window;
|
|
25578
25506
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
25579
25507
|
}
|
|
@@ -25734,7 +25662,6 @@ export class MaterialCertificateChecksClient extends AuthorizedApiBase {
|
|
|
25734
25662
|
export class MaterialCertificateSpecificationsClient extends AuthorizedApiBase {
|
|
25735
25663
|
constructor(configuration, baseUrl, http) {
|
|
25736
25664
|
super(configuration);
|
|
25737
|
-
this.jsonParseReviver = undefined;
|
|
25738
25665
|
this.http = http ? http : window;
|
|
25739
25666
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
25740
25667
|
}
|
|
@@ -25936,7 +25863,6 @@ export class MaterialCertificateSpecificationsClient extends AuthorizedApiBase {
|
|
|
25936
25863
|
export class MaterialCertificateTypesClient extends AuthorizedApiBase {
|
|
25937
25864
|
constructor(configuration, baseUrl, http) {
|
|
25938
25865
|
super(configuration);
|
|
25939
|
-
this.jsonParseReviver = undefined;
|
|
25940
25866
|
this.http = http ? http : window;
|
|
25941
25867
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
25942
25868
|
}
|