@ignos/api-client 20250513.0.11706 → 20250516.0.11767
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/ignosportal-api.d.ts +112 -2
- package/lib/ignosportal-api.js +291 -4
- package/package.json +1 -1
- package/src/ignosportal-api.ts +384 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1955,9 +1955,21 @@ export interface IMeasurementFormSchemasClient {
|
|
|
1955
1955
|
revokeSchema(schemaId: string): Promise<MeasurementFormDto>;
|
|
1956
1956
|
createDraftVersion(schemaId: string): Promise<MeasurementFormDto>;
|
|
1957
1957
|
isMappingFromPreviousVersionRequired(schemaId: string): Promise<boolean>;
|
|
1958
|
+
/**
|
|
1959
|
+
* @deprecated
|
|
1960
|
+
*/
|
|
1958
1961
|
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
1962
|
+
/**
|
|
1963
|
+
* @deprecated
|
|
1964
|
+
*/
|
|
1959
1965
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
1966
|
+
/**
|
|
1967
|
+
* @deprecated
|
|
1968
|
+
*/
|
|
1960
1969
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
1970
|
+
/**
|
|
1971
|
+
* @deprecated
|
|
1972
|
+
*/
|
|
1961
1973
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
1962
1974
|
listMeasurementFormMappingsFromSchema(targetId: string | null | undefined): Promise<MeasurementFormMappingDto[]>;
|
|
1963
1975
|
createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
|
|
@@ -2044,12 +2056,24 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2044
2056
|
protected processCreateDraftVersion(response: Response): Promise<MeasurementFormDto>;
|
|
2045
2057
|
isMappingFromPreviousVersionRequired(schemaId: string): Promise<boolean>;
|
|
2046
2058
|
protected processIsMappingFromPreviousVersionRequired(response: Response): Promise<boolean>;
|
|
2059
|
+
/**
|
|
2060
|
+
* @deprecated
|
|
2061
|
+
*/
|
|
2047
2062
|
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2048
2063
|
protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2064
|
+
/**
|
|
2065
|
+
* @deprecated
|
|
2066
|
+
*/
|
|
2049
2067
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2050
2068
|
protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2069
|
+
/**
|
|
2070
|
+
* @deprecated
|
|
2071
|
+
*/
|
|
2051
2072
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2052
2073
|
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2074
|
+
/**
|
|
2075
|
+
* @deprecated
|
|
2076
|
+
*/
|
|
2053
2077
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2054
2078
|
protected processUpdateMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2055
2079
|
listMeasurementFormMappingsFromSchema(targetId: string | null | undefined): Promise<MeasurementFormMappingDto[]>;
|
|
@@ -2112,6 +2136,28 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2112
2136
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2113
2137
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2114
2138
|
}
|
|
2139
|
+
export interface IMeasurementFormSettingsClient {
|
|
2140
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2141
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2142
|
+
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2143
|
+
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2144
|
+
}
|
|
2145
|
+
export declare class MeasurementFormSettingsClient extends AuthorizedApiBase implements IMeasurementFormSettingsClient {
|
|
2146
|
+
private http;
|
|
2147
|
+
private baseUrl;
|
|
2148
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2149
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2150
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2151
|
+
});
|
|
2152
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2153
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2154
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2155
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2156
|
+
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2157
|
+
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2158
|
+
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2159
|
+
protected processUpdateMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2160
|
+
}
|
|
2115
2161
|
export interface IMeasurementFormsInstancesClient {
|
|
2116
2162
|
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2117
2163
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
@@ -8146,7 +8192,6 @@ export declare class FixtureDto implements IFixtureDto {
|
|
|
8146
8192
|
name?: string | null;
|
|
8147
8193
|
fullName: string;
|
|
8148
8194
|
fullNameWithId: string;
|
|
8149
|
-
instance: number;
|
|
8150
8195
|
fixtureGroupId: string;
|
|
8151
8196
|
deleted?: boolean;
|
|
8152
8197
|
approved?: boolean;
|
|
@@ -8176,7 +8221,6 @@ export interface IFixtureDto {
|
|
|
8176
8221
|
name?: string | null;
|
|
8177
8222
|
fullName: string;
|
|
8178
8223
|
fullNameWithId: string;
|
|
8179
|
-
instance: number;
|
|
8180
8224
|
fixtureGroupId: string;
|
|
8181
8225
|
deleted?: boolean;
|
|
8182
8226
|
approved?: boolean;
|
|
@@ -8224,6 +8268,19 @@ export declare class ListFixtures implements IListFixtures {
|
|
|
8224
8268
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
8225
8269
|
deletedFilter?: FixtureDeletedDto | null;
|
|
8226
8270
|
approvedFilter?: FixtureApprovedDto | null;
|
|
8271
|
+
nameFilter?: FixtureStringFilterDto | null;
|
|
8272
|
+
sourceMachineFilter?: FixtureStringFilterDto | null;
|
|
8273
|
+
locationFilter?: FixtureStringFilterDto | null;
|
|
8274
|
+
interfaceFilter?: FixtureStringFilterDto | null;
|
|
8275
|
+
descriptionFilter?: FixtureStringFilterDto | null;
|
|
8276
|
+
lastUsedFilter?: FixtureDateFilterDto | null;
|
|
8277
|
+
diameterFilter?: FixtureDecimalFilterDto | null;
|
|
8278
|
+
outerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
8279
|
+
innerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
8280
|
+
totalHeightFilter?: FixtureDecimalFilterDto | null;
|
|
8281
|
+
widthFilter?: FixtureDecimalFilterDto | null;
|
|
8282
|
+
totalLengthFilter?: FixtureDecimalFilterDto | null;
|
|
8283
|
+
gripSideFilter?: FixtureStringFilterDto | null;
|
|
8227
8284
|
continuationToken?: string | null;
|
|
8228
8285
|
constructor(data?: IListFixtures);
|
|
8229
8286
|
init(_data?: any): void;
|
|
@@ -8237,10 +8294,63 @@ export interface IListFixtures {
|
|
|
8237
8294
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
8238
8295
|
deletedFilter?: FixtureDeletedDto | null;
|
|
8239
8296
|
approvedFilter?: FixtureApprovedDto | null;
|
|
8297
|
+
nameFilter?: FixtureStringFilterDto | null;
|
|
8298
|
+
sourceMachineFilter?: FixtureStringFilterDto | null;
|
|
8299
|
+
locationFilter?: FixtureStringFilterDto | null;
|
|
8300
|
+
interfaceFilter?: FixtureStringFilterDto | null;
|
|
8301
|
+
descriptionFilter?: FixtureStringFilterDto | null;
|
|
8302
|
+
lastUsedFilter?: FixtureDateFilterDto | null;
|
|
8303
|
+
diameterFilter?: FixtureDecimalFilterDto | null;
|
|
8304
|
+
outerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
8305
|
+
innerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
8306
|
+
totalHeightFilter?: FixtureDecimalFilterDto | null;
|
|
8307
|
+
widthFilter?: FixtureDecimalFilterDto | null;
|
|
8308
|
+
totalLengthFilter?: FixtureDecimalFilterDto | null;
|
|
8309
|
+
gripSideFilter?: FixtureStringFilterDto | null;
|
|
8240
8310
|
continuationToken?: string | null;
|
|
8241
8311
|
}
|
|
8242
8312
|
export type FixtureDeletedDto = "NotDeleted" | "Deleted";
|
|
8243
8313
|
export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
8314
|
+
export declare class FixtureStringFilterDto implements IFixtureStringFilterDto {
|
|
8315
|
+
conditional: FixtureStringFilterCriteriaDto;
|
|
8316
|
+
term1?: string | null;
|
|
8317
|
+
constructor(data?: IFixtureStringFilterDto);
|
|
8318
|
+
init(_data?: any): void;
|
|
8319
|
+
static fromJS(data: any): FixtureStringFilterDto;
|
|
8320
|
+
toJSON(data?: any): any;
|
|
8321
|
+
}
|
|
8322
|
+
export interface IFixtureStringFilterDto {
|
|
8323
|
+
conditional: FixtureStringFilterCriteriaDto;
|
|
8324
|
+
term1?: string | null;
|
|
8325
|
+
}
|
|
8326
|
+
export type FixtureStringFilterCriteriaDto = "Equals" | "NotEquals" | "Contains" | "NotContains" | "Empty";
|
|
8327
|
+
export declare class FixtureDateFilterDto implements IFixtureDateFilterDto {
|
|
8328
|
+
term1?: Date | null;
|
|
8329
|
+
term2?: Date | null;
|
|
8330
|
+
constructor(data?: IFixtureDateFilterDto);
|
|
8331
|
+
init(_data?: any): void;
|
|
8332
|
+
static fromJS(data: any): FixtureDateFilterDto;
|
|
8333
|
+
toJSON(data?: any): any;
|
|
8334
|
+
}
|
|
8335
|
+
export interface IFixtureDateFilterDto {
|
|
8336
|
+
term1?: Date | null;
|
|
8337
|
+
term2?: Date | null;
|
|
8338
|
+
}
|
|
8339
|
+
export declare class FixtureDecimalFilterDto implements IFixtureDecimalFilterDto {
|
|
8340
|
+
conditional: FixtureDecimalFilterCriteriaDto;
|
|
8341
|
+
term1?: number | null;
|
|
8342
|
+
term2?: number | null;
|
|
8343
|
+
constructor(data?: IFixtureDecimalFilterDto);
|
|
8344
|
+
init(_data?: any): void;
|
|
8345
|
+
static fromJS(data: any): FixtureDecimalFilterDto;
|
|
8346
|
+
toJSON(data?: any): any;
|
|
8347
|
+
}
|
|
8348
|
+
export interface IFixtureDecimalFilterDto {
|
|
8349
|
+
conditional: FixtureDecimalFilterCriteriaDto;
|
|
8350
|
+
term1?: number | null;
|
|
8351
|
+
term2?: number | null;
|
|
8352
|
+
}
|
|
8353
|
+
export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterThan" | "GreaterThanEquals" | "LessThan" | "LessThanEquals" | "Empty" | "Between";
|
|
8244
8354
|
export declare class FixtureCreateDto implements IFixtureCreateDto {
|
|
8245
8355
|
name?: string | null;
|
|
8246
8356
|
fixtureGroupId?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.
|
|
3
|
+
// Generated using the NSwag toolchain v14.4.0.0 (NJsonSchema v11.3.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
/* tslint:disable */
|
|
@@ -16720,6 +16720,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
16720
16720
|
}
|
|
16721
16721
|
return Promise.resolve(null);
|
|
16722
16722
|
}
|
|
16723
|
+
/**
|
|
16724
|
+
* @deprecated
|
|
16725
|
+
*/
|
|
16723
16726
|
getMeasurementFormSettings() {
|
|
16724
16727
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings";
|
|
16725
16728
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -16757,6 +16760,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
16757
16760
|
}
|
|
16758
16761
|
return Promise.resolve(null);
|
|
16759
16762
|
}
|
|
16763
|
+
/**
|
|
16764
|
+
* @deprecated
|
|
16765
|
+
*/
|
|
16760
16766
|
updateMeasurementFormSettings(request) {
|
|
16761
16767
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings";
|
|
16762
16768
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -16797,6 +16803,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
16797
16803
|
}
|
|
16798
16804
|
return Promise.resolve(null);
|
|
16799
16805
|
}
|
|
16806
|
+
/**
|
|
16807
|
+
* @deprecated
|
|
16808
|
+
*/
|
|
16800
16809
|
getMeasurementFormCustomerSettings(id) {
|
|
16801
16810
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings/customers/{id}";
|
|
16802
16811
|
if (id === undefined || id === null)
|
|
@@ -16837,6 +16846,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
16837
16846
|
}
|
|
16838
16847
|
return Promise.resolve(null);
|
|
16839
16848
|
}
|
|
16849
|
+
/**
|
|
16850
|
+
* @deprecated
|
|
16851
|
+
*/
|
|
16840
16852
|
updateMeasurementFormCustomerSettings(request) {
|
|
16841
16853
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings/customers";
|
|
16842
16854
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -17705,7 +17717,7 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
17705
17717
|
url_ = url_.replace("{resourceType}", encodeURIComponent("" + resourceType));
|
|
17706
17718
|
url_ = url_.replace(/[?&]$/, "");
|
|
17707
17719
|
let options_ = {
|
|
17708
|
-
method: "
|
|
17720
|
+
method: "DELETE",
|
|
17709
17721
|
headers: {}
|
|
17710
17722
|
};
|
|
17711
17723
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
@@ -18069,6 +18081,171 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase {
|
|
|
18069
18081
|
return Promise.resolve(null);
|
|
18070
18082
|
}
|
|
18071
18083
|
}
|
|
18084
|
+
export class MeasurementFormSettingsClient extends AuthorizedApiBase {
|
|
18085
|
+
constructor(configuration, baseUrl, http) {
|
|
18086
|
+
super(configuration);
|
|
18087
|
+
this.jsonParseReviver = undefined;
|
|
18088
|
+
this.http = http ? http : window;
|
|
18089
|
+
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
18090
|
+
}
|
|
18091
|
+
getMeasurementFormSettings() {
|
|
18092
|
+
let url_ = this.baseUrl + "/measurementforms/settings";
|
|
18093
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
18094
|
+
let options_ = {
|
|
18095
|
+
method: "GET",
|
|
18096
|
+
headers: {
|
|
18097
|
+
"Accept": "application/json"
|
|
18098
|
+
}
|
|
18099
|
+
};
|
|
18100
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
18101
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
18102
|
+
}).then((_response) => {
|
|
18103
|
+
return this.processGetMeasurementFormSettings(_response);
|
|
18104
|
+
});
|
|
18105
|
+
}
|
|
18106
|
+
processGetMeasurementFormSettings(response) {
|
|
18107
|
+
const status = response.status;
|
|
18108
|
+
let _headers = {};
|
|
18109
|
+
if (response.headers && response.headers.forEach) {
|
|
18110
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
18111
|
+
}
|
|
18112
|
+
;
|
|
18113
|
+
if (status === 200) {
|
|
18114
|
+
return response.text().then((_responseText) => {
|
|
18115
|
+
let result200 = null;
|
|
18116
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
18117
|
+
result200 = MeasurementFormSettingsDto.fromJS(resultData200);
|
|
18118
|
+
return result200;
|
|
18119
|
+
});
|
|
18120
|
+
}
|
|
18121
|
+
else if (status !== 200 && status !== 204) {
|
|
18122
|
+
return response.text().then((_responseText) => {
|
|
18123
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
18124
|
+
});
|
|
18125
|
+
}
|
|
18126
|
+
return Promise.resolve(null);
|
|
18127
|
+
}
|
|
18128
|
+
updateMeasurementFormSettings(request) {
|
|
18129
|
+
let url_ = this.baseUrl + "/measurementforms/settings";
|
|
18130
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
18131
|
+
const content_ = JSON.stringify(request);
|
|
18132
|
+
let options_ = {
|
|
18133
|
+
body: content_,
|
|
18134
|
+
method: "POST",
|
|
18135
|
+
headers: {
|
|
18136
|
+
"Content-Type": "application/json",
|
|
18137
|
+
"Accept": "application/json"
|
|
18138
|
+
}
|
|
18139
|
+
};
|
|
18140
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
18141
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
18142
|
+
}).then((_response) => {
|
|
18143
|
+
return this.processUpdateMeasurementFormSettings(_response);
|
|
18144
|
+
});
|
|
18145
|
+
}
|
|
18146
|
+
processUpdateMeasurementFormSettings(response) {
|
|
18147
|
+
const status = response.status;
|
|
18148
|
+
let _headers = {};
|
|
18149
|
+
if (response.headers && response.headers.forEach) {
|
|
18150
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
18151
|
+
}
|
|
18152
|
+
;
|
|
18153
|
+
if (status === 200) {
|
|
18154
|
+
return response.text().then((_responseText) => {
|
|
18155
|
+
let result200 = null;
|
|
18156
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
18157
|
+
result200 = MeasurementFormSettingsDto.fromJS(resultData200);
|
|
18158
|
+
return result200;
|
|
18159
|
+
});
|
|
18160
|
+
}
|
|
18161
|
+
else if (status !== 200 && status !== 204) {
|
|
18162
|
+
return response.text().then((_responseText) => {
|
|
18163
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
18164
|
+
});
|
|
18165
|
+
}
|
|
18166
|
+
return Promise.resolve(null);
|
|
18167
|
+
}
|
|
18168
|
+
getMeasurementFormCustomerSettings(id) {
|
|
18169
|
+
let url_ = this.baseUrl + "/measurementforms/settings/customers/{id}";
|
|
18170
|
+
if (id === undefined || id === null)
|
|
18171
|
+
throw new Error("The parameter 'id' must be defined.");
|
|
18172
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
18173
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
18174
|
+
let options_ = {
|
|
18175
|
+
method: "GET",
|
|
18176
|
+
headers: {
|
|
18177
|
+
"Accept": "application/json"
|
|
18178
|
+
}
|
|
18179
|
+
};
|
|
18180
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
18181
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
18182
|
+
}).then((_response) => {
|
|
18183
|
+
return this.processGetMeasurementFormCustomerSettings(_response);
|
|
18184
|
+
});
|
|
18185
|
+
}
|
|
18186
|
+
processGetMeasurementFormCustomerSettings(response) {
|
|
18187
|
+
const status = response.status;
|
|
18188
|
+
let _headers = {};
|
|
18189
|
+
if (response.headers && response.headers.forEach) {
|
|
18190
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
18191
|
+
}
|
|
18192
|
+
;
|
|
18193
|
+
if (status === 200) {
|
|
18194
|
+
return response.text().then((_responseText) => {
|
|
18195
|
+
let result200 = null;
|
|
18196
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
18197
|
+
result200 = MeasurementFormCustomerSettingsDto.fromJS(resultData200);
|
|
18198
|
+
return result200;
|
|
18199
|
+
});
|
|
18200
|
+
}
|
|
18201
|
+
else if (status !== 200 && status !== 204) {
|
|
18202
|
+
return response.text().then((_responseText) => {
|
|
18203
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
18204
|
+
});
|
|
18205
|
+
}
|
|
18206
|
+
return Promise.resolve(null);
|
|
18207
|
+
}
|
|
18208
|
+
updateMeasurementFormCustomerSettings(request) {
|
|
18209
|
+
let url_ = this.baseUrl + "/measurementforms/settings/customers";
|
|
18210
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
18211
|
+
const content_ = JSON.stringify(request);
|
|
18212
|
+
let options_ = {
|
|
18213
|
+
body: content_,
|
|
18214
|
+
method: "POST",
|
|
18215
|
+
headers: {
|
|
18216
|
+
"Content-Type": "application/json",
|
|
18217
|
+
"Accept": "application/json"
|
|
18218
|
+
}
|
|
18219
|
+
};
|
|
18220
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
18221
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
18222
|
+
}).then((_response) => {
|
|
18223
|
+
return this.processUpdateMeasurementFormCustomerSettings(_response);
|
|
18224
|
+
});
|
|
18225
|
+
}
|
|
18226
|
+
processUpdateMeasurementFormCustomerSettings(response) {
|
|
18227
|
+
const status = response.status;
|
|
18228
|
+
let _headers = {};
|
|
18229
|
+
if (response.headers && response.headers.forEach) {
|
|
18230
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
18231
|
+
}
|
|
18232
|
+
;
|
|
18233
|
+
if (status === 200) {
|
|
18234
|
+
return response.text().then((_responseText) => {
|
|
18235
|
+
let result200 = null;
|
|
18236
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
18237
|
+
result200 = MeasurementFormCustomerSettingsDto.fromJS(resultData200);
|
|
18238
|
+
return result200;
|
|
18239
|
+
});
|
|
18240
|
+
}
|
|
18241
|
+
else if (status !== 200 && status !== 204) {
|
|
18242
|
+
return response.text().then((_responseText) => {
|
|
18243
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
18244
|
+
});
|
|
18245
|
+
}
|
|
18246
|
+
return Promise.resolve(null);
|
|
18247
|
+
}
|
|
18248
|
+
}
|
|
18072
18249
|
export class MeasurementFormsInstancesClient extends AuthorizedApiBase {
|
|
18073
18250
|
constructor(configuration, baseUrl, http) {
|
|
18074
18251
|
super(configuration);
|
|
@@ -32881,7 +33058,6 @@ export class FixtureDto {
|
|
|
32881
33058
|
this.name = _data["name"];
|
|
32882
33059
|
this.fullName = _data["fullName"];
|
|
32883
33060
|
this.fullNameWithId = _data["fullNameWithId"];
|
|
32884
|
-
this.instance = _data["instance"];
|
|
32885
33061
|
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
32886
33062
|
this.deleted = _data["deleted"];
|
|
32887
33063
|
this.approved = _data["approved"];
|
|
@@ -32919,7 +33095,6 @@ export class FixtureDto {
|
|
|
32919
33095
|
data["name"] = this.name;
|
|
32920
33096
|
data["fullName"] = this.fullName;
|
|
32921
33097
|
data["fullNameWithId"] = this.fullNameWithId;
|
|
32922
|
-
data["instance"] = this.instance;
|
|
32923
33098
|
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
32924
33099
|
data["deleted"] = this.deleted;
|
|
32925
33100
|
data["approved"] = this.approved;
|
|
@@ -33009,6 +33184,19 @@ export class ListFixtures {
|
|
|
33009
33184
|
}
|
|
33010
33185
|
this.deletedFilter = _data["deletedFilter"];
|
|
33011
33186
|
this.approvedFilter = _data["approvedFilter"];
|
|
33187
|
+
this.nameFilter = _data["nameFilter"] ? FixtureStringFilterDto.fromJS(_data["nameFilter"]) : undefined;
|
|
33188
|
+
this.sourceMachineFilter = _data["sourceMachineFilter"] ? FixtureStringFilterDto.fromJS(_data["sourceMachineFilter"]) : undefined;
|
|
33189
|
+
this.locationFilter = _data["locationFilter"] ? FixtureStringFilterDto.fromJS(_data["locationFilter"]) : undefined;
|
|
33190
|
+
this.interfaceFilter = _data["interfaceFilter"] ? FixtureStringFilterDto.fromJS(_data["interfaceFilter"]) : undefined;
|
|
33191
|
+
this.descriptionFilter = _data["descriptionFilter"] ? FixtureStringFilterDto.fromJS(_data["descriptionFilter"]) : undefined;
|
|
33192
|
+
this.lastUsedFilter = _data["lastUsedFilter"] ? FixtureDateFilterDto.fromJS(_data["lastUsedFilter"]) : undefined;
|
|
33193
|
+
this.diameterFilter = _data["diameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["diameterFilter"]) : undefined;
|
|
33194
|
+
this.outerDiameterFilter = _data["outerDiameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["outerDiameterFilter"]) : undefined;
|
|
33195
|
+
this.innerDiameterFilter = _data["innerDiameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["innerDiameterFilter"]) : undefined;
|
|
33196
|
+
this.totalHeightFilter = _data["totalHeightFilter"] ? FixtureDecimalFilterDto.fromJS(_data["totalHeightFilter"]) : undefined;
|
|
33197
|
+
this.widthFilter = _data["widthFilter"] ? FixtureDecimalFilterDto.fromJS(_data["widthFilter"]) : undefined;
|
|
33198
|
+
this.totalLengthFilter = _data["totalLengthFilter"] ? FixtureDecimalFilterDto.fromJS(_data["totalLengthFilter"]) : undefined;
|
|
33199
|
+
this.gripSideFilter = _data["gripSideFilter"] ? FixtureStringFilterDto.fromJS(_data["gripSideFilter"]) : undefined;
|
|
33012
33200
|
this.continuationToken = _data["continuationToken"];
|
|
33013
33201
|
}
|
|
33014
33202
|
}
|
|
@@ -33038,10 +33226,109 @@ export class ListFixtures {
|
|
|
33038
33226
|
}
|
|
33039
33227
|
data["deletedFilter"] = this.deletedFilter;
|
|
33040
33228
|
data["approvedFilter"] = this.approvedFilter;
|
|
33229
|
+
data["nameFilter"] = this.nameFilter ? this.nameFilter.toJSON() : undefined;
|
|
33230
|
+
data["sourceMachineFilter"] = this.sourceMachineFilter ? this.sourceMachineFilter.toJSON() : undefined;
|
|
33231
|
+
data["locationFilter"] = this.locationFilter ? this.locationFilter.toJSON() : undefined;
|
|
33232
|
+
data["interfaceFilter"] = this.interfaceFilter ? this.interfaceFilter.toJSON() : undefined;
|
|
33233
|
+
data["descriptionFilter"] = this.descriptionFilter ? this.descriptionFilter.toJSON() : undefined;
|
|
33234
|
+
data["lastUsedFilter"] = this.lastUsedFilter ? this.lastUsedFilter.toJSON() : undefined;
|
|
33235
|
+
data["diameterFilter"] = this.diameterFilter ? this.diameterFilter.toJSON() : undefined;
|
|
33236
|
+
data["outerDiameterFilter"] = this.outerDiameterFilter ? this.outerDiameterFilter.toJSON() : undefined;
|
|
33237
|
+
data["innerDiameterFilter"] = this.innerDiameterFilter ? this.innerDiameterFilter.toJSON() : undefined;
|
|
33238
|
+
data["totalHeightFilter"] = this.totalHeightFilter ? this.totalHeightFilter.toJSON() : undefined;
|
|
33239
|
+
data["widthFilter"] = this.widthFilter ? this.widthFilter.toJSON() : undefined;
|
|
33240
|
+
data["totalLengthFilter"] = this.totalLengthFilter ? this.totalLengthFilter.toJSON() : undefined;
|
|
33241
|
+
data["gripSideFilter"] = this.gripSideFilter ? this.gripSideFilter.toJSON() : undefined;
|
|
33041
33242
|
data["continuationToken"] = this.continuationToken;
|
|
33042
33243
|
return data;
|
|
33043
33244
|
}
|
|
33044
33245
|
}
|
|
33246
|
+
export class FixtureStringFilterDto {
|
|
33247
|
+
constructor(data) {
|
|
33248
|
+
if (data) {
|
|
33249
|
+
for (var property in data) {
|
|
33250
|
+
if (data.hasOwnProperty(property))
|
|
33251
|
+
this[property] = data[property];
|
|
33252
|
+
}
|
|
33253
|
+
}
|
|
33254
|
+
}
|
|
33255
|
+
init(_data) {
|
|
33256
|
+
if (_data) {
|
|
33257
|
+
this.conditional = _data["conditional"];
|
|
33258
|
+
this.term1 = _data["term1"];
|
|
33259
|
+
}
|
|
33260
|
+
}
|
|
33261
|
+
static fromJS(data) {
|
|
33262
|
+
data = typeof data === 'object' ? data : {};
|
|
33263
|
+
let result = new FixtureStringFilterDto();
|
|
33264
|
+
result.init(data);
|
|
33265
|
+
return result;
|
|
33266
|
+
}
|
|
33267
|
+
toJSON(data) {
|
|
33268
|
+
data = typeof data === 'object' ? data : {};
|
|
33269
|
+
data["conditional"] = this.conditional;
|
|
33270
|
+
data["term1"] = this.term1;
|
|
33271
|
+
return data;
|
|
33272
|
+
}
|
|
33273
|
+
}
|
|
33274
|
+
export class FixtureDateFilterDto {
|
|
33275
|
+
constructor(data) {
|
|
33276
|
+
if (data) {
|
|
33277
|
+
for (var property in data) {
|
|
33278
|
+
if (data.hasOwnProperty(property))
|
|
33279
|
+
this[property] = data[property];
|
|
33280
|
+
}
|
|
33281
|
+
}
|
|
33282
|
+
}
|
|
33283
|
+
init(_data) {
|
|
33284
|
+
if (_data) {
|
|
33285
|
+
this.term1 = _data["term1"] ? new Date(_data["term1"].toString()) : undefined;
|
|
33286
|
+
this.term2 = _data["term2"] ? new Date(_data["term2"].toString()) : undefined;
|
|
33287
|
+
}
|
|
33288
|
+
}
|
|
33289
|
+
static fromJS(data) {
|
|
33290
|
+
data = typeof data === 'object' ? data : {};
|
|
33291
|
+
let result = new FixtureDateFilterDto();
|
|
33292
|
+
result.init(data);
|
|
33293
|
+
return result;
|
|
33294
|
+
}
|
|
33295
|
+
toJSON(data) {
|
|
33296
|
+
data = typeof data === 'object' ? data : {};
|
|
33297
|
+
data["term1"] = this.term1 ? this.term1.toISOString() : undefined;
|
|
33298
|
+
data["term2"] = this.term2 ? this.term2.toISOString() : undefined;
|
|
33299
|
+
return data;
|
|
33300
|
+
}
|
|
33301
|
+
}
|
|
33302
|
+
export class FixtureDecimalFilterDto {
|
|
33303
|
+
constructor(data) {
|
|
33304
|
+
if (data) {
|
|
33305
|
+
for (var property in data) {
|
|
33306
|
+
if (data.hasOwnProperty(property))
|
|
33307
|
+
this[property] = data[property];
|
|
33308
|
+
}
|
|
33309
|
+
}
|
|
33310
|
+
}
|
|
33311
|
+
init(_data) {
|
|
33312
|
+
if (_data) {
|
|
33313
|
+
this.conditional = _data["conditional"];
|
|
33314
|
+
this.term1 = _data["term1"];
|
|
33315
|
+
this.term2 = _data["term2"];
|
|
33316
|
+
}
|
|
33317
|
+
}
|
|
33318
|
+
static fromJS(data) {
|
|
33319
|
+
data = typeof data === 'object' ? data : {};
|
|
33320
|
+
let result = new FixtureDecimalFilterDto();
|
|
33321
|
+
result.init(data);
|
|
33322
|
+
return result;
|
|
33323
|
+
}
|
|
33324
|
+
toJSON(data) {
|
|
33325
|
+
data = typeof data === 'object' ? data : {};
|
|
33326
|
+
data["conditional"] = this.conditional;
|
|
33327
|
+
data["term1"] = this.term1;
|
|
33328
|
+
data["term2"] = this.term2;
|
|
33329
|
+
return data;
|
|
33330
|
+
}
|
|
33331
|
+
}
|
|
33045
33332
|
export class FixtureCreateDto {
|
|
33046
33333
|
constructor(data) {
|
|
33047
33334
|
if (data) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.
|
|
3
|
+
// Generated using the NSwag toolchain v14.4.0.0 (NJsonSchema v11.3.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
|
|
@@ -16888,12 +16888,24 @@ export interface IMeasurementFormSchemasClient {
|
|
|
16888
16888
|
|
|
16889
16889
|
isMappingFromPreviousVersionRequired(schemaId: string): Promise<boolean>;
|
|
16890
16890
|
|
|
16891
|
+
/**
|
|
16892
|
+
* @deprecated
|
|
16893
|
+
*/
|
|
16891
16894
|
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
16892
16895
|
|
|
16896
|
+
/**
|
|
16897
|
+
* @deprecated
|
|
16898
|
+
*/
|
|
16893
16899
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
16894
16900
|
|
|
16901
|
+
/**
|
|
16902
|
+
* @deprecated
|
|
16903
|
+
*/
|
|
16895
16904
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
16896
16905
|
|
|
16906
|
+
/**
|
|
16907
|
+
* @deprecated
|
|
16908
|
+
*/
|
|
16897
16909
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
16898
16910
|
|
|
16899
16911
|
listMeasurementFormMappingsFromSchema(targetId: string | null | undefined): Promise<MeasurementFormMappingDto[]>;
|
|
@@ -17928,6 +17940,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
17928
17940
|
return Promise.resolve<boolean>(null as any);
|
|
17929
17941
|
}
|
|
17930
17942
|
|
|
17943
|
+
/**
|
|
17944
|
+
* @deprecated
|
|
17945
|
+
*/
|
|
17931
17946
|
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto> {
|
|
17932
17947
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings";
|
|
17933
17948
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -17964,6 +17979,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
17964
17979
|
return Promise.resolve<MeasurementFormSettingsDto>(null as any);
|
|
17965
17980
|
}
|
|
17966
17981
|
|
|
17982
|
+
/**
|
|
17983
|
+
* @deprecated
|
|
17984
|
+
*/
|
|
17967
17985
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto> {
|
|
17968
17986
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings";
|
|
17969
17987
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -18004,6 +18022,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
18004
18022
|
return Promise.resolve<MeasurementFormSettingsDto>(null as any);
|
|
18005
18023
|
}
|
|
18006
18024
|
|
|
18025
|
+
/**
|
|
18026
|
+
* @deprecated
|
|
18027
|
+
*/
|
|
18007
18028
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto> {
|
|
18008
18029
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings/customers/{id}";
|
|
18009
18030
|
if (id === undefined || id === null)
|
|
@@ -18043,6 +18064,9 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
18043
18064
|
return Promise.resolve<MeasurementFormCustomerSettingsDto>(null as any);
|
|
18044
18065
|
}
|
|
18045
18066
|
|
|
18067
|
+
/**
|
|
18068
|
+
* @deprecated
|
|
18069
|
+
*/
|
|
18046
18070
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto> {
|
|
18047
18071
|
let url_ = this.baseUrl + "/measurementforms/schemas/settings/customers";
|
|
18048
18072
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -18903,7 +18927,7 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
18903
18927
|
url_ = url_.replace(/[?&]$/, "");
|
|
18904
18928
|
|
|
18905
18929
|
let options_: RequestInit = {
|
|
18906
|
-
method: "
|
|
18930
|
+
method: "DELETE",
|
|
18907
18931
|
headers: {
|
|
18908
18932
|
}
|
|
18909
18933
|
};
|
|
@@ -19262,6 +19286,184 @@ export class MeasurementFormSchemasClient extends AuthorizedApiBase implements I
|
|
|
19262
19286
|
}
|
|
19263
19287
|
}
|
|
19264
19288
|
|
|
19289
|
+
export interface IMeasurementFormSettingsClient {
|
|
19290
|
+
|
|
19291
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
19292
|
+
|
|
19293
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
19294
|
+
|
|
19295
|
+
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
19296
|
+
|
|
19297
|
+
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
19298
|
+
}
|
|
19299
|
+
|
|
19300
|
+
export class MeasurementFormSettingsClient extends AuthorizedApiBase implements IMeasurementFormSettingsClient {
|
|
19301
|
+
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
19302
|
+
private baseUrl: string;
|
|
19303
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined;
|
|
19304
|
+
|
|
19305
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
19306
|
+
super(configuration);
|
|
19307
|
+
this.http = http ? http : window as any;
|
|
19308
|
+
this.baseUrl = baseUrl ?? "";
|
|
19309
|
+
}
|
|
19310
|
+
|
|
19311
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto> {
|
|
19312
|
+
let url_ = this.baseUrl + "/measurementforms/settings";
|
|
19313
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
19314
|
+
|
|
19315
|
+
let options_: RequestInit = {
|
|
19316
|
+
method: "GET",
|
|
19317
|
+
headers: {
|
|
19318
|
+
"Accept": "application/json"
|
|
19319
|
+
}
|
|
19320
|
+
};
|
|
19321
|
+
|
|
19322
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
19323
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
19324
|
+
}).then((_response: Response) => {
|
|
19325
|
+
return this.processGetMeasurementFormSettings(_response);
|
|
19326
|
+
});
|
|
19327
|
+
}
|
|
19328
|
+
|
|
19329
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto> {
|
|
19330
|
+
const status = response.status;
|
|
19331
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
19332
|
+
if (status === 200) {
|
|
19333
|
+
return response.text().then((_responseText) => {
|
|
19334
|
+
let result200: any = null;
|
|
19335
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
19336
|
+
result200 = MeasurementFormSettingsDto.fromJS(resultData200);
|
|
19337
|
+
return result200;
|
|
19338
|
+
});
|
|
19339
|
+
} else if (status !== 200 && status !== 204) {
|
|
19340
|
+
return response.text().then((_responseText) => {
|
|
19341
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
19342
|
+
});
|
|
19343
|
+
}
|
|
19344
|
+
return Promise.resolve<MeasurementFormSettingsDto>(null as any);
|
|
19345
|
+
}
|
|
19346
|
+
|
|
19347
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto> {
|
|
19348
|
+
let url_ = this.baseUrl + "/measurementforms/settings";
|
|
19349
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
19350
|
+
|
|
19351
|
+
const content_ = JSON.stringify(request);
|
|
19352
|
+
|
|
19353
|
+
let options_: RequestInit = {
|
|
19354
|
+
body: content_,
|
|
19355
|
+
method: "POST",
|
|
19356
|
+
headers: {
|
|
19357
|
+
"Content-Type": "application/json",
|
|
19358
|
+
"Accept": "application/json"
|
|
19359
|
+
}
|
|
19360
|
+
};
|
|
19361
|
+
|
|
19362
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
19363
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
19364
|
+
}).then((_response: Response) => {
|
|
19365
|
+
return this.processUpdateMeasurementFormSettings(_response);
|
|
19366
|
+
});
|
|
19367
|
+
}
|
|
19368
|
+
|
|
19369
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto> {
|
|
19370
|
+
const status = response.status;
|
|
19371
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
19372
|
+
if (status === 200) {
|
|
19373
|
+
return response.text().then((_responseText) => {
|
|
19374
|
+
let result200: any = null;
|
|
19375
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
19376
|
+
result200 = MeasurementFormSettingsDto.fromJS(resultData200);
|
|
19377
|
+
return result200;
|
|
19378
|
+
});
|
|
19379
|
+
} else if (status !== 200 && status !== 204) {
|
|
19380
|
+
return response.text().then((_responseText) => {
|
|
19381
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
19382
|
+
});
|
|
19383
|
+
}
|
|
19384
|
+
return Promise.resolve<MeasurementFormSettingsDto>(null as any);
|
|
19385
|
+
}
|
|
19386
|
+
|
|
19387
|
+
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto> {
|
|
19388
|
+
let url_ = this.baseUrl + "/measurementforms/settings/customers/{id}";
|
|
19389
|
+
if (id === undefined || id === null)
|
|
19390
|
+
throw new Error("The parameter 'id' must be defined.");
|
|
19391
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
19392
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
19393
|
+
|
|
19394
|
+
let options_: RequestInit = {
|
|
19395
|
+
method: "GET",
|
|
19396
|
+
headers: {
|
|
19397
|
+
"Accept": "application/json"
|
|
19398
|
+
}
|
|
19399
|
+
};
|
|
19400
|
+
|
|
19401
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
19402
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
19403
|
+
}).then((_response: Response) => {
|
|
19404
|
+
return this.processGetMeasurementFormCustomerSettings(_response);
|
|
19405
|
+
});
|
|
19406
|
+
}
|
|
19407
|
+
|
|
19408
|
+
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto> {
|
|
19409
|
+
const status = response.status;
|
|
19410
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
19411
|
+
if (status === 200) {
|
|
19412
|
+
return response.text().then((_responseText) => {
|
|
19413
|
+
let result200: any = null;
|
|
19414
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
19415
|
+
result200 = MeasurementFormCustomerSettingsDto.fromJS(resultData200);
|
|
19416
|
+
return result200;
|
|
19417
|
+
});
|
|
19418
|
+
} else if (status !== 200 && status !== 204) {
|
|
19419
|
+
return response.text().then((_responseText) => {
|
|
19420
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
19421
|
+
});
|
|
19422
|
+
}
|
|
19423
|
+
return Promise.resolve<MeasurementFormCustomerSettingsDto>(null as any);
|
|
19424
|
+
}
|
|
19425
|
+
|
|
19426
|
+
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto> {
|
|
19427
|
+
let url_ = this.baseUrl + "/measurementforms/settings/customers";
|
|
19428
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
19429
|
+
|
|
19430
|
+
const content_ = JSON.stringify(request);
|
|
19431
|
+
|
|
19432
|
+
let options_: RequestInit = {
|
|
19433
|
+
body: content_,
|
|
19434
|
+
method: "POST",
|
|
19435
|
+
headers: {
|
|
19436
|
+
"Content-Type": "application/json",
|
|
19437
|
+
"Accept": "application/json"
|
|
19438
|
+
}
|
|
19439
|
+
};
|
|
19440
|
+
|
|
19441
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
19442
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
19443
|
+
}).then((_response: Response) => {
|
|
19444
|
+
return this.processUpdateMeasurementFormCustomerSettings(_response);
|
|
19445
|
+
});
|
|
19446
|
+
}
|
|
19447
|
+
|
|
19448
|
+
protected processUpdateMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto> {
|
|
19449
|
+
const status = response.status;
|
|
19450
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
19451
|
+
if (status === 200) {
|
|
19452
|
+
return response.text().then((_responseText) => {
|
|
19453
|
+
let result200: any = null;
|
|
19454
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
19455
|
+
result200 = MeasurementFormCustomerSettingsDto.fromJS(resultData200);
|
|
19456
|
+
return result200;
|
|
19457
|
+
});
|
|
19458
|
+
} else if (status !== 200 && status !== 204) {
|
|
19459
|
+
return response.text().then((_responseText) => {
|
|
19460
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
19461
|
+
});
|
|
19462
|
+
}
|
|
19463
|
+
return Promise.resolve<MeasurementFormCustomerSettingsDto>(null as any);
|
|
19464
|
+
}
|
|
19465
|
+
}
|
|
19466
|
+
|
|
19265
19467
|
export interface IMeasurementFormsInstancesClient {
|
|
19266
19468
|
|
|
19267
19469
|
listMeasurementForms(pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined, tenantId: string | null | undefined, inactive: boolean | null | undefined, includeInactiveSupplierAccess: boolean | null | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
@@ -39905,7 +40107,6 @@ export class FixtureDto implements IFixtureDto {
|
|
|
39905
40107
|
name?: string | null;
|
|
39906
40108
|
fullName!: string;
|
|
39907
40109
|
fullNameWithId!: string;
|
|
39908
|
-
instance!: number;
|
|
39909
40110
|
fixtureGroupId!: string;
|
|
39910
40111
|
deleted?: boolean;
|
|
39911
40112
|
approved?: boolean;
|
|
@@ -39944,7 +40145,6 @@ export class FixtureDto implements IFixtureDto {
|
|
|
39944
40145
|
this.name = _data["name"];
|
|
39945
40146
|
this.fullName = _data["fullName"];
|
|
39946
40147
|
this.fullNameWithId = _data["fullNameWithId"];
|
|
39947
|
-
this.instance = _data["instance"];
|
|
39948
40148
|
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
39949
40149
|
this.deleted = _data["deleted"];
|
|
39950
40150
|
this.approved = _data["approved"];
|
|
@@ -39984,7 +40184,6 @@ export class FixtureDto implements IFixtureDto {
|
|
|
39984
40184
|
data["name"] = this.name;
|
|
39985
40185
|
data["fullName"] = this.fullName;
|
|
39986
40186
|
data["fullNameWithId"] = this.fullNameWithId;
|
|
39987
|
-
data["instance"] = this.instance;
|
|
39988
40187
|
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
39989
40188
|
data["deleted"] = this.deleted;
|
|
39990
40189
|
data["approved"] = this.approved;
|
|
@@ -40017,7 +40216,6 @@ export interface IFixtureDto {
|
|
|
40017
40216
|
name?: string | null;
|
|
40018
40217
|
fullName: string;
|
|
40019
40218
|
fullNameWithId: string;
|
|
40020
|
-
instance: number;
|
|
40021
40219
|
fixtureGroupId: string;
|
|
40022
40220
|
deleted?: boolean;
|
|
40023
40221
|
approved?: boolean;
|
|
@@ -40102,6 +40300,19 @@ export class ListFixtures implements IListFixtures {
|
|
|
40102
40300
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
40103
40301
|
deletedFilter?: FixtureDeletedDto | null;
|
|
40104
40302
|
approvedFilter?: FixtureApprovedDto | null;
|
|
40303
|
+
nameFilter?: FixtureStringFilterDto | null;
|
|
40304
|
+
sourceMachineFilter?: FixtureStringFilterDto | null;
|
|
40305
|
+
locationFilter?: FixtureStringFilterDto | null;
|
|
40306
|
+
interfaceFilter?: FixtureStringFilterDto | null;
|
|
40307
|
+
descriptionFilter?: FixtureStringFilterDto | null;
|
|
40308
|
+
lastUsedFilter?: FixtureDateFilterDto | null;
|
|
40309
|
+
diameterFilter?: FixtureDecimalFilterDto | null;
|
|
40310
|
+
outerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
40311
|
+
innerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
40312
|
+
totalHeightFilter?: FixtureDecimalFilterDto | null;
|
|
40313
|
+
widthFilter?: FixtureDecimalFilterDto | null;
|
|
40314
|
+
totalLengthFilter?: FixtureDecimalFilterDto | null;
|
|
40315
|
+
gripSideFilter?: FixtureStringFilterDto | null;
|
|
40105
40316
|
continuationToken?: string | null;
|
|
40106
40317
|
|
|
40107
40318
|
constructor(data?: IListFixtures) {
|
|
@@ -40133,6 +40344,19 @@ export class ListFixtures implements IListFixtures {
|
|
|
40133
40344
|
}
|
|
40134
40345
|
this.deletedFilter = _data["deletedFilter"];
|
|
40135
40346
|
this.approvedFilter = _data["approvedFilter"];
|
|
40347
|
+
this.nameFilter = _data["nameFilter"] ? FixtureStringFilterDto.fromJS(_data["nameFilter"]) : <any>undefined;
|
|
40348
|
+
this.sourceMachineFilter = _data["sourceMachineFilter"] ? FixtureStringFilterDto.fromJS(_data["sourceMachineFilter"]) : <any>undefined;
|
|
40349
|
+
this.locationFilter = _data["locationFilter"] ? FixtureStringFilterDto.fromJS(_data["locationFilter"]) : <any>undefined;
|
|
40350
|
+
this.interfaceFilter = _data["interfaceFilter"] ? FixtureStringFilterDto.fromJS(_data["interfaceFilter"]) : <any>undefined;
|
|
40351
|
+
this.descriptionFilter = _data["descriptionFilter"] ? FixtureStringFilterDto.fromJS(_data["descriptionFilter"]) : <any>undefined;
|
|
40352
|
+
this.lastUsedFilter = _data["lastUsedFilter"] ? FixtureDateFilterDto.fromJS(_data["lastUsedFilter"]) : <any>undefined;
|
|
40353
|
+
this.diameterFilter = _data["diameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["diameterFilter"]) : <any>undefined;
|
|
40354
|
+
this.outerDiameterFilter = _data["outerDiameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["outerDiameterFilter"]) : <any>undefined;
|
|
40355
|
+
this.innerDiameterFilter = _data["innerDiameterFilter"] ? FixtureDecimalFilterDto.fromJS(_data["innerDiameterFilter"]) : <any>undefined;
|
|
40356
|
+
this.totalHeightFilter = _data["totalHeightFilter"] ? FixtureDecimalFilterDto.fromJS(_data["totalHeightFilter"]) : <any>undefined;
|
|
40357
|
+
this.widthFilter = _data["widthFilter"] ? FixtureDecimalFilterDto.fromJS(_data["widthFilter"]) : <any>undefined;
|
|
40358
|
+
this.totalLengthFilter = _data["totalLengthFilter"] ? FixtureDecimalFilterDto.fromJS(_data["totalLengthFilter"]) : <any>undefined;
|
|
40359
|
+
this.gripSideFilter = _data["gripSideFilter"] ? FixtureStringFilterDto.fromJS(_data["gripSideFilter"]) : <any>undefined;
|
|
40136
40360
|
this.continuationToken = _data["continuationToken"];
|
|
40137
40361
|
}
|
|
40138
40362
|
}
|
|
@@ -40164,6 +40388,19 @@ export class ListFixtures implements IListFixtures {
|
|
|
40164
40388
|
}
|
|
40165
40389
|
data["deletedFilter"] = this.deletedFilter;
|
|
40166
40390
|
data["approvedFilter"] = this.approvedFilter;
|
|
40391
|
+
data["nameFilter"] = this.nameFilter ? this.nameFilter.toJSON() : <any>undefined;
|
|
40392
|
+
data["sourceMachineFilter"] = this.sourceMachineFilter ? this.sourceMachineFilter.toJSON() : <any>undefined;
|
|
40393
|
+
data["locationFilter"] = this.locationFilter ? this.locationFilter.toJSON() : <any>undefined;
|
|
40394
|
+
data["interfaceFilter"] = this.interfaceFilter ? this.interfaceFilter.toJSON() : <any>undefined;
|
|
40395
|
+
data["descriptionFilter"] = this.descriptionFilter ? this.descriptionFilter.toJSON() : <any>undefined;
|
|
40396
|
+
data["lastUsedFilter"] = this.lastUsedFilter ? this.lastUsedFilter.toJSON() : <any>undefined;
|
|
40397
|
+
data["diameterFilter"] = this.diameterFilter ? this.diameterFilter.toJSON() : <any>undefined;
|
|
40398
|
+
data["outerDiameterFilter"] = this.outerDiameterFilter ? this.outerDiameterFilter.toJSON() : <any>undefined;
|
|
40399
|
+
data["innerDiameterFilter"] = this.innerDiameterFilter ? this.innerDiameterFilter.toJSON() : <any>undefined;
|
|
40400
|
+
data["totalHeightFilter"] = this.totalHeightFilter ? this.totalHeightFilter.toJSON() : <any>undefined;
|
|
40401
|
+
data["widthFilter"] = this.widthFilter ? this.widthFilter.toJSON() : <any>undefined;
|
|
40402
|
+
data["totalLengthFilter"] = this.totalLengthFilter ? this.totalLengthFilter.toJSON() : <any>undefined;
|
|
40403
|
+
data["gripSideFilter"] = this.gripSideFilter ? this.gripSideFilter.toJSON() : <any>undefined;
|
|
40167
40404
|
data["continuationToken"] = this.continuationToken;
|
|
40168
40405
|
return data;
|
|
40169
40406
|
}
|
|
@@ -40176,6 +40413,19 @@ export interface IListFixtures {
|
|
|
40176
40413
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
40177
40414
|
deletedFilter?: FixtureDeletedDto | null;
|
|
40178
40415
|
approvedFilter?: FixtureApprovedDto | null;
|
|
40416
|
+
nameFilter?: FixtureStringFilterDto | null;
|
|
40417
|
+
sourceMachineFilter?: FixtureStringFilterDto | null;
|
|
40418
|
+
locationFilter?: FixtureStringFilterDto | null;
|
|
40419
|
+
interfaceFilter?: FixtureStringFilterDto | null;
|
|
40420
|
+
descriptionFilter?: FixtureStringFilterDto | null;
|
|
40421
|
+
lastUsedFilter?: FixtureDateFilterDto | null;
|
|
40422
|
+
diameterFilter?: FixtureDecimalFilterDto | null;
|
|
40423
|
+
outerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
40424
|
+
innerDiameterFilter?: FixtureDecimalFilterDto | null;
|
|
40425
|
+
totalHeightFilter?: FixtureDecimalFilterDto | null;
|
|
40426
|
+
widthFilter?: FixtureDecimalFilterDto | null;
|
|
40427
|
+
totalLengthFilter?: FixtureDecimalFilterDto | null;
|
|
40428
|
+
gripSideFilter?: FixtureStringFilterDto | null;
|
|
40179
40429
|
continuationToken?: string | null;
|
|
40180
40430
|
}
|
|
40181
40431
|
|
|
@@ -40183,6 +40433,134 @@ export type FixtureDeletedDto = "NotDeleted" | "Deleted";
|
|
|
40183
40433
|
|
|
40184
40434
|
export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
40185
40435
|
|
|
40436
|
+
export class FixtureStringFilterDto implements IFixtureStringFilterDto {
|
|
40437
|
+
conditional!: FixtureStringFilterCriteriaDto;
|
|
40438
|
+
term1?: string | null;
|
|
40439
|
+
|
|
40440
|
+
constructor(data?: IFixtureStringFilterDto) {
|
|
40441
|
+
if (data) {
|
|
40442
|
+
for (var property in data) {
|
|
40443
|
+
if (data.hasOwnProperty(property))
|
|
40444
|
+
(<any>this)[property] = (<any>data)[property];
|
|
40445
|
+
}
|
|
40446
|
+
}
|
|
40447
|
+
}
|
|
40448
|
+
|
|
40449
|
+
init(_data?: any) {
|
|
40450
|
+
if (_data) {
|
|
40451
|
+
this.conditional = _data["conditional"];
|
|
40452
|
+
this.term1 = _data["term1"];
|
|
40453
|
+
}
|
|
40454
|
+
}
|
|
40455
|
+
|
|
40456
|
+
static fromJS(data: any): FixtureStringFilterDto {
|
|
40457
|
+
data = typeof data === 'object' ? data : {};
|
|
40458
|
+
let result = new FixtureStringFilterDto();
|
|
40459
|
+
result.init(data);
|
|
40460
|
+
return result;
|
|
40461
|
+
}
|
|
40462
|
+
|
|
40463
|
+
toJSON(data?: any) {
|
|
40464
|
+
data = typeof data === 'object' ? data : {};
|
|
40465
|
+
data["conditional"] = this.conditional;
|
|
40466
|
+
data["term1"] = this.term1;
|
|
40467
|
+
return data;
|
|
40468
|
+
}
|
|
40469
|
+
}
|
|
40470
|
+
|
|
40471
|
+
export interface IFixtureStringFilterDto {
|
|
40472
|
+
conditional: FixtureStringFilterCriteriaDto;
|
|
40473
|
+
term1?: string | null;
|
|
40474
|
+
}
|
|
40475
|
+
|
|
40476
|
+
export type FixtureStringFilterCriteriaDto = "Equals" | "NotEquals" | "Contains" | "NotContains" | "Empty";
|
|
40477
|
+
|
|
40478
|
+
export class FixtureDateFilterDto implements IFixtureDateFilterDto {
|
|
40479
|
+
term1?: Date | null;
|
|
40480
|
+
term2?: Date | null;
|
|
40481
|
+
|
|
40482
|
+
constructor(data?: IFixtureDateFilterDto) {
|
|
40483
|
+
if (data) {
|
|
40484
|
+
for (var property in data) {
|
|
40485
|
+
if (data.hasOwnProperty(property))
|
|
40486
|
+
(<any>this)[property] = (<any>data)[property];
|
|
40487
|
+
}
|
|
40488
|
+
}
|
|
40489
|
+
}
|
|
40490
|
+
|
|
40491
|
+
init(_data?: any) {
|
|
40492
|
+
if (_data) {
|
|
40493
|
+
this.term1 = _data["term1"] ? new Date(_data["term1"].toString()) : <any>undefined;
|
|
40494
|
+
this.term2 = _data["term2"] ? new Date(_data["term2"].toString()) : <any>undefined;
|
|
40495
|
+
}
|
|
40496
|
+
}
|
|
40497
|
+
|
|
40498
|
+
static fromJS(data: any): FixtureDateFilterDto {
|
|
40499
|
+
data = typeof data === 'object' ? data : {};
|
|
40500
|
+
let result = new FixtureDateFilterDto();
|
|
40501
|
+
result.init(data);
|
|
40502
|
+
return result;
|
|
40503
|
+
}
|
|
40504
|
+
|
|
40505
|
+
toJSON(data?: any) {
|
|
40506
|
+
data = typeof data === 'object' ? data : {};
|
|
40507
|
+
data["term1"] = this.term1 ? this.term1.toISOString() : <any>undefined;
|
|
40508
|
+
data["term2"] = this.term2 ? this.term2.toISOString() : <any>undefined;
|
|
40509
|
+
return data;
|
|
40510
|
+
}
|
|
40511
|
+
}
|
|
40512
|
+
|
|
40513
|
+
export interface IFixtureDateFilterDto {
|
|
40514
|
+
term1?: Date | null;
|
|
40515
|
+
term2?: Date | null;
|
|
40516
|
+
}
|
|
40517
|
+
|
|
40518
|
+
export class FixtureDecimalFilterDto implements IFixtureDecimalFilterDto {
|
|
40519
|
+
conditional!: FixtureDecimalFilterCriteriaDto;
|
|
40520
|
+
term1?: number | null;
|
|
40521
|
+
term2?: number | null;
|
|
40522
|
+
|
|
40523
|
+
constructor(data?: IFixtureDecimalFilterDto) {
|
|
40524
|
+
if (data) {
|
|
40525
|
+
for (var property in data) {
|
|
40526
|
+
if (data.hasOwnProperty(property))
|
|
40527
|
+
(<any>this)[property] = (<any>data)[property];
|
|
40528
|
+
}
|
|
40529
|
+
}
|
|
40530
|
+
}
|
|
40531
|
+
|
|
40532
|
+
init(_data?: any) {
|
|
40533
|
+
if (_data) {
|
|
40534
|
+
this.conditional = _data["conditional"];
|
|
40535
|
+
this.term1 = _data["term1"];
|
|
40536
|
+
this.term2 = _data["term2"];
|
|
40537
|
+
}
|
|
40538
|
+
}
|
|
40539
|
+
|
|
40540
|
+
static fromJS(data: any): FixtureDecimalFilterDto {
|
|
40541
|
+
data = typeof data === 'object' ? data : {};
|
|
40542
|
+
let result = new FixtureDecimalFilterDto();
|
|
40543
|
+
result.init(data);
|
|
40544
|
+
return result;
|
|
40545
|
+
}
|
|
40546
|
+
|
|
40547
|
+
toJSON(data?: any) {
|
|
40548
|
+
data = typeof data === 'object' ? data : {};
|
|
40549
|
+
data["conditional"] = this.conditional;
|
|
40550
|
+
data["term1"] = this.term1;
|
|
40551
|
+
data["term2"] = this.term2;
|
|
40552
|
+
return data;
|
|
40553
|
+
}
|
|
40554
|
+
}
|
|
40555
|
+
|
|
40556
|
+
export interface IFixtureDecimalFilterDto {
|
|
40557
|
+
conditional: FixtureDecimalFilterCriteriaDto;
|
|
40558
|
+
term1?: number | null;
|
|
40559
|
+
term2?: number | null;
|
|
40560
|
+
}
|
|
40561
|
+
|
|
40562
|
+
export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterThan" | "GreaterThanEquals" | "LessThan" | "LessThanEquals" | "Empty" | "Between";
|
|
40563
|
+
|
|
40186
40564
|
export class FixtureCreateDto implements IFixtureCreateDto {
|
|
40187
40565
|
name?: string | null;
|
|
40188
40566
|
fixtureGroupId?: string | null;
|