@ignos/api-client 20260302.67.1 → 20260303.69.1
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 +54 -24
- package/lib/ignosportal-api.js +161 -2
- package/package.json +1 -1
- package/src/ignosportal-api.ts +208 -26
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1959,6 +1959,24 @@ export declare class CdfClient extends AuthorizedApiBase implements ICdfClient {
|
|
|
1959
1959
|
updateCdfConfig(request: UpdateCdfConfig): Promise<CdfConfigDto>;
|
|
1960
1960
|
protected processUpdateCdfConfig(response: Response): Promise<CdfConfigDto>;
|
|
1961
1961
|
}
|
|
1962
|
+
export interface IWorkspaceDefaultsAdminClient {
|
|
1963
|
+
getDefaults(): Promise<WorkspaceDefaultsDto>;
|
|
1964
|
+
setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
|
|
1965
|
+
deleteMachineDefault(machineId: string): Promise<void>;
|
|
1966
|
+
}
|
|
1967
|
+
export declare class WorkspaceDefaultsAdminClient extends AuthorizedApiBase implements IWorkspaceDefaultsAdminClient {
|
|
1968
|
+
private http;
|
|
1969
|
+
private baseUrl;
|
|
1970
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1971
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1972
|
+
});
|
|
1973
|
+
getDefaults(): Promise<WorkspaceDefaultsDto>;
|
|
1974
|
+
protected processGetDefaults(response: Response): Promise<WorkspaceDefaultsDto>;
|
|
1975
|
+
setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
|
|
1976
|
+
protected processSetMachineDefault(response: Response): Promise<WorkspaceDefaultsDto>;
|
|
1977
|
+
deleteMachineDefault(machineId: string): Promise<void>;
|
|
1978
|
+
protected processDeleteMachineDefault(response: Response): Promise<void>;
|
|
1979
|
+
}
|
|
1962
1980
|
export interface IWorkspacesClient {
|
|
1963
1981
|
getMyWorkspaces(): Promise<WorkspaceListDto[]>;
|
|
1964
1982
|
createWorkspace(createWorkspace: CreateWorkspace): Promise<WorkspaceDto>;
|
|
@@ -1969,6 +1987,7 @@ export interface IWorkspacesClient {
|
|
|
1969
1987
|
updateWorkspaceWidgets(id: string, request: UpdateWorkspaceWidgetsRequest): Promise<WorkspaceDto>;
|
|
1970
1988
|
updateWorkspaceWidgetSettings(id: string, widgetId: string, request: UpdateWorkspaceWidgetSettingsRequest): Promise<WorkspaceDto>;
|
|
1971
1989
|
deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
|
|
1990
|
+
resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
|
|
1972
1991
|
}
|
|
1973
1992
|
export declare class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
|
|
1974
1993
|
private http;
|
|
@@ -1994,6 +2013,8 @@ export declare class WorkspacesClient extends AuthorizedApiBase implements IWork
|
|
|
1994
2013
|
protected processUpdateWorkspaceWidgetSettings(response: Response): Promise<WorkspaceDto>;
|
|
1995
2014
|
deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
|
|
1996
2015
|
protected processDeleteWorkspaceWidget(response: Response): Promise<WorkspaceDto>;
|
|
2016
|
+
resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
|
|
2017
|
+
protected processResolveDefault(response: Response): Promise<ResolveDefaultWorkspaceDto>;
|
|
1997
2018
|
}
|
|
1998
2019
|
export interface IWorkspaceTemplatesAdminClient {
|
|
1999
2020
|
createWorkspaceTemplate(createWorkspaceTemplate: CreateWorkspaceTemplate): Promise<WorkspaceDto>;
|
|
@@ -3213,7 +3234,7 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
|
|
|
3213
3234
|
export interface IMaterialCertificateSpecificationsClient {
|
|
3214
3235
|
listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
|
|
3215
3236
|
getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
|
|
3216
|
-
createSpecifications(
|
|
3237
|
+
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3217
3238
|
updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3218
3239
|
deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
|
|
3219
3240
|
}
|
|
@@ -3227,7 +3248,7 @@ export declare class MaterialCertificateSpecificationsClient extends AuthorizedA
|
|
|
3227
3248
|
protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
|
|
3228
3249
|
getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
|
|
3229
3250
|
protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
|
|
3230
|
-
createSpecifications(
|
|
3251
|
+
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3231
3252
|
protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
3232
3253
|
updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3233
3254
|
protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
@@ -6298,6 +6319,11 @@ export interface UpdateCdfConfig {
|
|
|
6298
6319
|
clientId: string;
|
|
6299
6320
|
clientSecret?: string | null;
|
|
6300
6321
|
}
|
|
6322
|
+
export interface WorkspaceDefaultsDto {
|
|
6323
|
+
machineTemplateOverrides?: {
|
|
6324
|
+
[key: string]: string;
|
|
6325
|
+
};
|
|
6326
|
+
}
|
|
6301
6327
|
export interface WorkspaceListDto {
|
|
6302
6328
|
id: string;
|
|
6303
6329
|
name: string;
|
|
@@ -6347,6 +6373,12 @@ export interface UpdateWorkspaceWidgetsRequest {
|
|
|
6347
6373
|
export interface UpdateWorkspaceWidgetSettingsRequest {
|
|
6348
6374
|
settings: string;
|
|
6349
6375
|
}
|
|
6376
|
+
export interface ResolveDefaultWorkspaceDto {
|
|
6377
|
+
workspaceId?: string | null;
|
|
6378
|
+
}
|
|
6379
|
+
export interface ResolveDefaultWorkspaceRequestDto {
|
|
6380
|
+
machineId: string;
|
|
6381
|
+
}
|
|
6350
6382
|
export interface CreateWorkspaceTemplate {
|
|
6351
6383
|
name: string;
|
|
6352
6384
|
description?: string | null;
|
|
@@ -8499,7 +8531,7 @@ export interface AmcMaterialChecksPageRequestDto {
|
|
|
8499
8531
|
statusFilter: AmcMaterialCheckStatus[];
|
|
8500
8532
|
continuationToken?: string | null;
|
|
8501
8533
|
}
|
|
8502
|
-
export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
8534
|
+
export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
8503
8535
|
export interface AmcMaterialCheckDto {
|
|
8504
8536
|
materialCheckId: string;
|
|
8505
8537
|
originalMaterialCertificate: FileDto;
|
|
@@ -8674,8 +8706,8 @@ export interface AmcSpecificationHeatTreatmentsResultLineDto {
|
|
|
8674
8706
|
status: AmcSpecificationResultLineStatus;
|
|
8675
8707
|
override?: AmcResultLineOverrideDto | null;
|
|
8676
8708
|
}
|
|
8677
|
-
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
8678
|
-
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
8709
|
+
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8710
|
+
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
8679
8711
|
export interface ProcessAmcCheckRequestDto {
|
|
8680
8712
|
files: UploadFileDto[];
|
|
8681
8713
|
specificationId: string;
|
|
@@ -8800,7 +8832,9 @@ export interface AmcUpdateSpecificationFerriteResultsDto {
|
|
|
8800
8832
|
export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
|
|
8801
8833
|
heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
|
|
8802
8834
|
}
|
|
8803
|
-
export interface
|
|
8835
|
+
export interface AmcCdfEntityReadBase {
|
|
8836
|
+
}
|
|
8837
|
+
export interface AmcSpecificationLiteDto extends AmcCdfEntityReadBase {
|
|
8804
8838
|
specificationId: string;
|
|
8805
8839
|
version: number;
|
|
8806
8840
|
name: string;
|
|
@@ -8813,11 +8847,11 @@ export interface AmcSpecificationLiteDto {
|
|
|
8813
8847
|
created: Date;
|
|
8814
8848
|
createdBy: string;
|
|
8815
8849
|
createdById: string;
|
|
8816
|
-
updatedBy
|
|
8817
|
-
updatedById
|
|
8850
|
+
updatedBy: string;
|
|
8851
|
+
updatedById: string;
|
|
8818
8852
|
}
|
|
8819
8853
|
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8820
|
-
export interface AmcSpecificationDto {
|
|
8854
|
+
export interface AmcSpecificationDto extends AmcCdfEntityReadBase {
|
|
8821
8855
|
specificationId: string;
|
|
8822
8856
|
version: number;
|
|
8823
8857
|
allVersions: AmcSpecificationVersionDto[];
|
|
@@ -8831,12 +8865,13 @@ export interface AmcSpecificationDto {
|
|
|
8831
8865
|
created: Date;
|
|
8832
8866
|
createdBy: string;
|
|
8833
8867
|
createdById: string;
|
|
8834
|
-
updatedBy
|
|
8835
|
-
updatedById
|
|
8836
|
-
|
|
8837
|
-
|
|
8838
|
-
|
|
8839
|
-
|
|
8868
|
+
updatedBy: string;
|
|
8869
|
+
updatedById: string;
|
|
8870
|
+
updated: Date;
|
|
8871
|
+
chemistrySpecification?: AmcChemistrySpecificationDto | null;
|
|
8872
|
+
mechanicalSpecification?: AmcMechanicalSpecificationDto | null;
|
|
8873
|
+
ferriteSpecification?: AmcFerriteSpecificationDto | null;
|
|
8874
|
+
heatSpecification?: AmcHeatTreatmentSpecificationDto | null;
|
|
8840
8875
|
}
|
|
8841
8876
|
export interface AmcSpecificationVersionDto {
|
|
8842
8877
|
version?: number;
|
|
@@ -8856,14 +8891,14 @@ export interface AmcChemistrySpecificationDto {
|
|
|
8856
8891
|
wolfram?: AmcSpecificationLineDto | null;
|
|
8857
8892
|
iron?: AmcSpecificationLineDto | null;
|
|
8858
8893
|
}
|
|
8859
|
-
export interface AmcSpecificationLineDto {
|
|
8894
|
+
export interface AmcSpecificationLineDto extends AmcCdfEntityReadBase {
|
|
8860
8895
|
operator: AmcSpecificationOperator;
|
|
8861
8896
|
value1?: number | null;
|
|
8862
8897
|
value2?: number | null;
|
|
8863
8898
|
symbol: AmcSpecificationSymbol;
|
|
8864
8899
|
}
|
|
8865
8900
|
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
8866
|
-
export type AmcSpecificationSymbol = "
|
|
8901
|
+
export type AmcSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
8867
8902
|
export interface AmcMechanicalSpecificationDto {
|
|
8868
8903
|
yieldStrength?: AmcSpecificationLineDto | null;
|
|
8869
8904
|
tensileStrength?: AmcSpecificationLineDto | null;
|
|
@@ -8887,13 +8922,10 @@ export interface AmcHeatTreatmentsSpecificationDto {
|
|
|
8887
8922
|
coolingHoldingTime?: number | null;
|
|
8888
8923
|
}
|
|
8889
8924
|
export interface CreateAmcSpecificationDto {
|
|
8890
|
-
|
|
8891
|
-
|
|
8925
|
+
specificationName: string;
|
|
8926
|
+
specificationNumber: string;
|
|
8892
8927
|
revision: string;
|
|
8893
8928
|
date: Date;
|
|
8894
|
-
createCopy: boolean;
|
|
8895
|
-
specificationId?: string | null;
|
|
8896
|
-
specificationVersion?: string | null;
|
|
8897
8929
|
specificationFile?: UploadFileDto | null;
|
|
8898
8930
|
}
|
|
8899
8931
|
export interface UpdateAmcSpecificationDto {
|
|
@@ -8908,8 +8940,6 @@ export interface UpdateAmcSpecificationDto {
|
|
|
8908
8940
|
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
8909
8941
|
}
|
|
8910
8942
|
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8911
|
-
export interface AmcCdfEntityReadBase {
|
|
8912
|
-
}
|
|
8913
8943
|
export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
|
|
8914
8944
|
certificateTypeId: string;
|
|
8915
8945
|
version: number;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -15958,6 +15958,126 @@ export class CdfClient extends AuthorizedApiBase {
|
|
|
15958
15958
|
return Promise.resolve(null);
|
|
15959
15959
|
}
|
|
15960
15960
|
}
|
|
15961
|
+
export class WorkspaceDefaultsAdminClient extends AuthorizedApiBase {
|
|
15962
|
+
constructor(configuration, baseUrl, http) {
|
|
15963
|
+
super(configuration);
|
|
15964
|
+
this.http = http ? http : window;
|
|
15965
|
+
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
15966
|
+
}
|
|
15967
|
+
getDefaults() {
|
|
15968
|
+
let url_ = this.baseUrl + "/workspaces/defaults";
|
|
15969
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
15970
|
+
let options_ = {
|
|
15971
|
+
method: "GET",
|
|
15972
|
+
headers: {
|
|
15973
|
+
"Accept": "application/json"
|
|
15974
|
+
}
|
|
15975
|
+
};
|
|
15976
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
15977
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
15978
|
+
}).then((_response) => {
|
|
15979
|
+
return this.processGetDefaults(_response);
|
|
15980
|
+
});
|
|
15981
|
+
}
|
|
15982
|
+
processGetDefaults(response) {
|
|
15983
|
+
const status = response.status;
|
|
15984
|
+
let _headers = {};
|
|
15985
|
+
if (response.headers && response.headers.forEach) {
|
|
15986
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
15987
|
+
}
|
|
15988
|
+
;
|
|
15989
|
+
if (status === 200) {
|
|
15990
|
+
return response.text().then((_responseText) => {
|
|
15991
|
+
let result200 = null;
|
|
15992
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15993
|
+
return result200;
|
|
15994
|
+
});
|
|
15995
|
+
}
|
|
15996
|
+
else if (status !== 200 && status !== 204) {
|
|
15997
|
+
return response.text().then((_responseText) => {
|
|
15998
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15999
|
+
});
|
|
16000
|
+
}
|
|
16001
|
+
return Promise.resolve(null);
|
|
16002
|
+
}
|
|
16003
|
+
setMachineDefault(machineId, templateId) {
|
|
16004
|
+
let url_ = this.baseUrl + "/workspaces/defaults/machines/{machineId}/{templateId}";
|
|
16005
|
+
if (machineId === undefined || machineId === null)
|
|
16006
|
+
throw new globalThis.Error("The parameter 'machineId' must be defined.");
|
|
16007
|
+
url_ = url_.replace("{machineId}", encodeURIComponent("" + machineId));
|
|
16008
|
+
if (templateId === undefined || templateId === null)
|
|
16009
|
+
throw new globalThis.Error("The parameter 'templateId' must be defined.");
|
|
16010
|
+
url_ = url_.replace("{templateId}", encodeURIComponent("" + templateId));
|
|
16011
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
16012
|
+
let options_ = {
|
|
16013
|
+
method: "PUT",
|
|
16014
|
+
headers: {
|
|
16015
|
+
"Accept": "application/json"
|
|
16016
|
+
}
|
|
16017
|
+
};
|
|
16018
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
16019
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
16020
|
+
}).then((_response) => {
|
|
16021
|
+
return this.processSetMachineDefault(_response);
|
|
16022
|
+
});
|
|
16023
|
+
}
|
|
16024
|
+
processSetMachineDefault(response) {
|
|
16025
|
+
const status = response.status;
|
|
16026
|
+
let _headers = {};
|
|
16027
|
+
if (response.headers && response.headers.forEach) {
|
|
16028
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
16029
|
+
}
|
|
16030
|
+
;
|
|
16031
|
+
if (status === 200) {
|
|
16032
|
+
return response.text().then((_responseText) => {
|
|
16033
|
+
let result200 = null;
|
|
16034
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
16035
|
+
return result200;
|
|
16036
|
+
});
|
|
16037
|
+
}
|
|
16038
|
+
else if (status !== 200 && status !== 204) {
|
|
16039
|
+
return response.text().then((_responseText) => {
|
|
16040
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
16041
|
+
});
|
|
16042
|
+
}
|
|
16043
|
+
return Promise.resolve(null);
|
|
16044
|
+
}
|
|
16045
|
+
deleteMachineDefault(machineId) {
|
|
16046
|
+
let url_ = this.baseUrl + "/workspaces/defaults/machines/{machineId}";
|
|
16047
|
+
if (machineId === undefined || machineId === null)
|
|
16048
|
+
throw new globalThis.Error("The parameter 'machineId' must be defined.");
|
|
16049
|
+
url_ = url_.replace("{machineId}", encodeURIComponent("" + machineId));
|
|
16050
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
16051
|
+
let options_ = {
|
|
16052
|
+
method: "DELETE",
|
|
16053
|
+
headers: {}
|
|
16054
|
+
};
|
|
16055
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
16056
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
16057
|
+
}).then((_response) => {
|
|
16058
|
+
return this.processDeleteMachineDefault(_response);
|
|
16059
|
+
});
|
|
16060
|
+
}
|
|
16061
|
+
processDeleteMachineDefault(response) {
|
|
16062
|
+
const status = response.status;
|
|
16063
|
+
let _headers = {};
|
|
16064
|
+
if (response.headers && response.headers.forEach) {
|
|
16065
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
16066
|
+
}
|
|
16067
|
+
;
|
|
16068
|
+
if (status === 204) {
|
|
16069
|
+
return response.text().then((_responseText) => {
|
|
16070
|
+
return;
|
|
16071
|
+
});
|
|
16072
|
+
}
|
|
16073
|
+
else if (status !== 200 && status !== 204) {
|
|
16074
|
+
return response.text().then((_responseText) => {
|
|
16075
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
16076
|
+
});
|
|
16077
|
+
}
|
|
16078
|
+
return Promise.resolve(null);
|
|
16079
|
+
}
|
|
16080
|
+
}
|
|
15961
16081
|
export class WorkspacesClient extends AuthorizedApiBase {
|
|
15962
16082
|
constructor(configuration, baseUrl, http) {
|
|
15963
16083
|
super(configuration);
|
|
@@ -16323,6 +16443,45 @@ export class WorkspacesClient extends AuthorizedApiBase {
|
|
|
16323
16443
|
}
|
|
16324
16444
|
return Promise.resolve(null);
|
|
16325
16445
|
}
|
|
16446
|
+
resolveDefault(request) {
|
|
16447
|
+
let url_ = this.baseUrl + "/workspaces/resolve-default";
|
|
16448
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
16449
|
+
const content_ = JSON.stringify(request);
|
|
16450
|
+
let options_ = {
|
|
16451
|
+
body: content_,
|
|
16452
|
+
method: "POST",
|
|
16453
|
+
headers: {
|
|
16454
|
+
"Content-Type": "application/json",
|
|
16455
|
+
"Accept": "application/json"
|
|
16456
|
+
}
|
|
16457
|
+
};
|
|
16458
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
16459
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
16460
|
+
}).then((_response) => {
|
|
16461
|
+
return this.processResolveDefault(_response);
|
|
16462
|
+
});
|
|
16463
|
+
}
|
|
16464
|
+
processResolveDefault(response) {
|
|
16465
|
+
const status = response.status;
|
|
16466
|
+
let _headers = {};
|
|
16467
|
+
if (response.headers && response.headers.forEach) {
|
|
16468
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
16469
|
+
}
|
|
16470
|
+
;
|
|
16471
|
+
if (status === 200) {
|
|
16472
|
+
return response.text().then((_responseText) => {
|
|
16473
|
+
let result200 = null;
|
|
16474
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
16475
|
+
return result200;
|
|
16476
|
+
});
|
|
16477
|
+
}
|
|
16478
|
+
else if (status !== 200 && status !== 204) {
|
|
16479
|
+
return response.text().then((_responseText) => {
|
|
16480
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
16481
|
+
});
|
|
16482
|
+
}
|
|
16483
|
+
return Promise.resolve(null);
|
|
16484
|
+
}
|
|
16326
16485
|
}
|
|
16327
16486
|
export class WorkspaceTemplatesAdminClient extends AuthorizedApiBase {
|
|
16328
16487
|
constructor(configuration, baseUrl, http) {
|
|
@@ -25981,10 +26140,10 @@ export class MaterialCertificateSpecificationsClient extends AuthorizedApiBase {
|
|
|
25981
26140
|
}
|
|
25982
26141
|
return Promise.resolve(null);
|
|
25983
26142
|
}
|
|
25984
|
-
createSpecifications(
|
|
26143
|
+
createSpecifications(createDto) {
|
|
25985
26144
|
let url_ = this.baseUrl + "/material-certificate/specifications";
|
|
25986
26145
|
url_ = url_.replace(/[?&]$/, "");
|
|
25987
|
-
const content_ = JSON.stringify(
|
|
26146
|
+
const content_ = JSON.stringify(createDto);
|
|
25988
26147
|
let options_ = {
|
|
25989
26148
|
body: content_,
|
|
25990
26149
|
method: "POST",
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -17059,6 +17059,137 @@ export class CdfClient extends AuthorizedApiBase implements ICdfClient {
|
|
|
17059
17059
|
}
|
|
17060
17060
|
}
|
|
17061
17061
|
|
|
17062
|
+
export interface IWorkspaceDefaultsAdminClient {
|
|
17063
|
+
|
|
17064
|
+
getDefaults(): Promise<WorkspaceDefaultsDto>;
|
|
17065
|
+
|
|
17066
|
+
setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto>;
|
|
17067
|
+
|
|
17068
|
+
deleteMachineDefault(machineId: string): Promise<void>;
|
|
17069
|
+
}
|
|
17070
|
+
|
|
17071
|
+
export class WorkspaceDefaultsAdminClient extends AuthorizedApiBase implements IWorkspaceDefaultsAdminClient {
|
|
17072
|
+
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
17073
|
+
private baseUrl: string;
|
|
17074
|
+
|
|
17075
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
17076
|
+
super(configuration);
|
|
17077
|
+
this.http = http ? http : window as any;
|
|
17078
|
+
this.baseUrl = baseUrl ?? "";
|
|
17079
|
+
}
|
|
17080
|
+
|
|
17081
|
+
getDefaults(): Promise<WorkspaceDefaultsDto> {
|
|
17082
|
+
let url_ = this.baseUrl + "/workspaces/defaults";
|
|
17083
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
17084
|
+
|
|
17085
|
+
let options_: RequestInit = {
|
|
17086
|
+
method: "GET",
|
|
17087
|
+
headers: {
|
|
17088
|
+
"Accept": "application/json"
|
|
17089
|
+
}
|
|
17090
|
+
};
|
|
17091
|
+
|
|
17092
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
17093
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
17094
|
+
}).then((_response: Response) => {
|
|
17095
|
+
return this.processGetDefaults(_response);
|
|
17096
|
+
});
|
|
17097
|
+
}
|
|
17098
|
+
|
|
17099
|
+
protected processGetDefaults(response: Response): Promise<WorkspaceDefaultsDto> {
|
|
17100
|
+
const status = response.status;
|
|
17101
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
17102
|
+
if (status === 200) {
|
|
17103
|
+
return response.text().then((_responseText) => {
|
|
17104
|
+
let result200: any = null;
|
|
17105
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as WorkspaceDefaultsDto;
|
|
17106
|
+
return result200;
|
|
17107
|
+
});
|
|
17108
|
+
} else if (status !== 200 && status !== 204) {
|
|
17109
|
+
return response.text().then((_responseText) => {
|
|
17110
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
17111
|
+
});
|
|
17112
|
+
}
|
|
17113
|
+
return Promise.resolve<WorkspaceDefaultsDto>(null as any);
|
|
17114
|
+
}
|
|
17115
|
+
|
|
17116
|
+
setMachineDefault(machineId: string, templateId: string): Promise<WorkspaceDefaultsDto> {
|
|
17117
|
+
let url_ = this.baseUrl + "/workspaces/defaults/machines/{machineId}/{templateId}";
|
|
17118
|
+
if (machineId === undefined || machineId === null)
|
|
17119
|
+
throw new globalThis.Error("The parameter 'machineId' must be defined.");
|
|
17120
|
+
url_ = url_.replace("{machineId}", encodeURIComponent("" + machineId));
|
|
17121
|
+
if (templateId === undefined || templateId === null)
|
|
17122
|
+
throw new globalThis.Error("The parameter 'templateId' must be defined.");
|
|
17123
|
+
url_ = url_.replace("{templateId}", encodeURIComponent("" + templateId));
|
|
17124
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
17125
|
+
|
|
17126
|
+
let options_: RequestInit = {
|
|
17127
|
+
method: "PUT",
|
|
17128
|
+
headers: {
|
|
17129
|
+
"Accept": "application/json"
|
|
17130
|
+
}
|
|
17131
|
+
};
|
|
17132
|
+
|
|
17133
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
17134
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
17135
|
+
}).then((_response: Response) => {
|
|
17136
|
+
return this.processSetMachineDefault(_response);
|
|
17137
|
+
});
|
|
17138
|
+
}
|
|
17139
|
+
|
|
17140
|
+
protected processSetMachineDefault(response: Response): Promise<WorkspaceDefaultsDto> {
|
|
17141
|
+
const status = response.status;
|
|
17142
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
17143
|
+
if (status === 200) {
|
|
17144
|
+
return response.text().then((_responseText) => {
|
|
17145
|
+
let result200: any = null;
|
|
17146
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as WorkspaceDefaultsDto;
|
|
17147
|
+
return result200;
|
|
17148
|
+
});
|
|
17149
|
+
} else if (status !== 200 && status !== 204) {
|
|
17150
|
+
return response.text().then((_responseText) => {
|
|
17151
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
17152
|
+
});
|
|
17153
|
+
}
|
|
17154
|
+
return Promise.resolve<WorkspaceDefaultsDto>(null as any);
|
|
17155
|
+
}
|
|
17156
|
+
|
|
17157
|
+
deleteMachineDefault(machineId: string): Promise<void> {
|
|
17158
|
+
let url_ = this.baseUrl + "/workspaces/defaults/machines/{machineId}";
|
|
17159
|
+
if (machineId === undefined || machineId === null)
|
|
17160
|
+
throw new globalThis.Error("The parameter 'machineId' must be defined.");
|
|
17161
|
+
url_ = url_.replace("{machineId}", encodeURIComponent("" + machineId));
|
|
17162
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
17163
|
+
|
|
17164
|
+
let options_: RequestInit = {
|
|
17165
|
+
method: "DELETE",
|
|
17166
|
+
headers: {
|
|
17167
|
+
}
|
|
17168
|
+
};
|
|
17169
|
+
|
|
17170
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
17171
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
17172
|
+
}).then((_response: Response) => {
|
|
17173
|
+
return this.processDeleteMachineDefault(_response);
|
|
17174
|
+
});
|
|
17175
|
+
}
|
|
17176
|
+
|
|
17177
|
+
protected processDeleteMachineDefault(response: Response): Promise<void> {
|
|
17178
|
+
const status = response.status;
|
|
17179
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
17180
|
+
if (status === 204) {
|
|
17181
|
+
return response.text().then((_responseText) => {
|
|
17182
|
+
return;
|
|
17183
|
+
});
|
|
17184
|
+
} else if (status !== 200 && status !== 204) {
|
|
17185
|
+
return response.text().then((_responseText) => {
|
|
17186
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
17187
|
+
});
|
|
17188
|
+
}
|
|
17189
|
+
return Promise.resolve<void>(null as any);
|
|
17190
|
+
}
|
|
17191
|
+
}
|
|
17192
|
+
|
|
17062
17193
|
export interface IWorkspacesClient {
|
|
17063
17194
|
|
|
17064
17195
|
getMyWorkspaces(): Promise<WorkspaceListDto[]>;
|
|
@@ -17078,6 +17209,8 @@ export interface IWorkspacesClient {
|
|
|
17078
17209
|
updateWorkspaceWidgetSettings(id: string, widgetId: string, request: UpdateWorkspaceWidgetSettingsRequest): Promise<WorkspaceDto>;
|
|
17079
17210
|
|
|
17080
17211
|
deleteWorkspaceWidget(id: string, widgetId: string): Promise<WorkspaceDto>;
|
|
17212
|
+
|
|
17213
|
+
resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto>;
|
|
17081
17214
|
}
|
|
17082
17215
|
|
|
17083
17216
|
export class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesClient {
|
|
@@ -17445,6 +17578,45 @@ export class WorkspacesClient extends AuthorizedApiBase implements IWorkspacesCl
|
|
|
17445
17578
|
}
|
|
17446
17579
|
return Promise.resolve<WorkspaceDto>(null as any);
|
|
17447
17580
|
}
|
|
17581
|
+
|
|
17582
|
+
resolveDefault(request: ResolveDefaultWorkspaceRequestDto): Promise<ResolveDefaultWorkspaceDto> {
|
|
17583
|
+
let url_ = this.baseUrl + "/workspaces/resolve-default";
|
|
17584
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
17585
|
+
|
|
17586
|
+
const content_ = JSON.stringify(request);
|
|
17587
|
+
|
|
17588
|
+
let options_: RequestInit = {
|
|
17589
|
+
body: content_,
|
|
17590
|
+
method: "POST",
|
|
17591
|
+
headers: {
|
|
17592
|
+
"Content-Type": "application/json",
|
|
17593
|
+
"Accept": "application/json"
|
|
17594
|
+
}
|
|
17595
|
+
};
|
|
17596
|
+
|
|
17597
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
17598
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
17599
|
+
}).then((_response: Response) => {
|
|
17600
|
+
return this.processResolveDefault(_response);
|
|
17601
|
+
});
|
|
17602
|
+
}
|
|
17603
|
+
|
|
17604
|
+
protected processResolveDefault(response: Response): Promise<ResolveDefaultWorkspaceDto> {
|
|
17605
|
+
const status = response.status;
|
|
17606
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
17607
|
+
if (status === 200) {
|
|
17608
|
+
return response.text().then((_responseText) => {
|
|
17609
|
+
let result200: any = null;
|
|
17610
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ResolveDefaultWorkspaceDto;
|
|
17611
|
+
return result200;
|
|
17612
|
+
});
|
|
17613
|
+
} else if (status !== 200 && status !== 204) {
|
|
17614
|
+
return response.text().then((_responseText) => {
|
|
17615
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
17616
|
+
});
|
|
17617
|
+
}
|
|
17618
|
+
return Promise.resolve<ResolveDefaultWorkspaceDto>(null as any);
|
|
17619
|
+
}
|
|
17448
17620
|
}
|
|
17449
17621
|
|
|
17450
17622
|
export interface IWorkspaceTemplatesAdminClient {
|
|
@@ -27726,7 +27898,7 @@ export interface IMaterialCertificateSpecificationsClient {
|
|
|
27726
27898
|
|
|
27727
27899
|
getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
|
|
27728
27900
|
|
|
27729
|
-
createSpecifications(
|
|
27901
|
+
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
27730
27902
|
|
|
27731
27903
|
updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
27732
27904
|
|
|
@@ -27818,11 +27990,11 @@ export class MaterialCertificateSpecificationsClient extends AuthorizedApiBase i
|
|
|
27818
27990
|
return Promise.resolve<AmcSpecificationDto>(null as any);
|
|
27819
27991
|
}
|
|
27820
27992
|
|
|
27821
|
-
createSpecifications(
|
|
27993
|
+
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto> {
|
|
27822
27994
|
let url_ = this.baseUrl + "/material-certificate/specifications";
|
|
27823
27995
|
url_ = url_.replace(/[?&]$/, "");
|
|
27824
27996
|
|
|
27825
|
-
const content_ = JSON.stringify(
|
|
27997
|
+
const content_ = JSON.stringify(createDto);
|
|
27826
27998
|
|
|
27827
27999
|
let options_: RequestInit = {
|
|
27828
28000
|
body: content_,
|
|
@@ -31635,6 +31807,10 @@ export interface UpdateCdfConfig {
|
|
|
31635
31807
|
clientSecret?: string | null;
|
|
31636
31808
|
}
|
|
31637
31809
|
|
|
31810
|
+
export interface WorkspaceDefaultsDto {
|
|
31811
|
+
machineTemplateOverrides?: { [key: string]: string; };
|
|
31812
|
+
}
|
|
31813
|
+
|
|
31638
31814
|
export interface WorkspaceListDto {
|
|
31639
31815
|
id: string;
|
|
31640
31816
|
name: string;
|
|
@@ -31691,6 +31867,14 @@ export interface UpdateWorkspaceWidgetSettingsRequest {
|
|
|
31691
31867
|
settings: string;
|
|
31692
31868
|
}
|
|
31693
31869
|
|
|
31870
|
+
export interface ResolveDefaultWorkspaceDto {
|
|
31871
|
+
workspaceId?: string | null;
|
|
31872
|
+
}
|
|
31873
|
+
|
|
31874
|
+
export interface ResolveDefaultWorkspaceRequestDto {
|
|
31875
|
+
machineId: string;
|
|
31876
|
+
}
|
|
31877
|
+
|
|
31694
31878
|
export interface CreateWorkspaceTemplate {
|
|
31695
31879
|
name: string;
|
|
31696
31880
|
description?: string | null;
|
|
@@ -34122,7 +34306,7 @@ export interface AmcMaterialChecksPageRequestDto {
|
|
|
34122
34306
|
continuationToken?: string | null;
|
|
34123
34307
|
}
|
|
34124
34308
|
|
|
34125
|
-
export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
34309
|
+
export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
34126
34310
|
|
|
34127
34311
|
export interface AmcMaterialCheckDto {
|
|
34128
34312
|
materialCheckId: string;
|
|
@@ -34318,9 +34502,9 @@ export interface AmcSpecificationHeatTreatmentsResultLineDto {
|
|
|
34318
34502
|
override?: AmcResultLineOverrideDto | null;
|
|
34319
34503
|
}
|
|
34320
34504
|
|
|
34321
|
-
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
34505
|
+
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
34322
34506
|
|
|
34323
|
-
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
34507
|
+
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
34324
34508
|
|
|
34325
34509
|
export interface ProcessAmcCheckRequestDto {
|
|
34326
34510
|
files: UploadFileDto[];
|
|
@@ -34463,7 +34647,10 @@ export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
|
|
|
34463
34647
|
heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
|
|
34464
34648
|
}
|
|
34465
34649
|
|
|
34466
|
-
export interface
|
|
34650
|
+
export interface AmcCdfEntityReadBase {
|
|
34651
|
+
}
|
|
34652
|
+
|
|
34653
|
+
export interface AmcSpecificationLiteDto extends AmcCdfEntityReadBase {
|
|
34467
34654
|
specificationId: string;
|
|
34468
34655
|
version: number;
|
|
34469
34656
|
name: string;
|
|
@@ -34476,13 +34663,13 @@ export interface AmcSpecificationLiteDto {
|
|
|
34476
34663
|
created: Date;
|
|
34477
34664
|
createdBy: string;
|
|
34478
34665
|
createdById: string;
|
|
34479
|
-
updatedBy
|
|
34480
|
-
updatedById
|
|
34666
|
+
updatedBy: string;
|
|
34667
|
+
updatedById: string;
|
|
34481
34668
|
}
|
|
34482
34669
|
|
|
34483
34670
|
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
34484
34671
|
|
|
34485
|
-
export interface AmcSpecificationDto {
|
|
34672
|
+
export interface AmcSpecificationDto extends AmcCdfEntityReadBase {
|
|
34486
34673
|
specificationId: string;
|
|
34487
34674
|
version: number;
|
|
34488
34675
|
allVersions: AmcSpecificationVersionDto[];
|
|
@@ -34496,12 +34683,13 @@ export interface AmcSpecificationDto {
|
|
|
34496
34683
|
created: Date;
|
|
34497
34684
|
createdBy: string;
|
|
34498
34685
|
createdById: string;
|
|
34499
|
-
updatedBy
|
|
34500
|
-
updatedById
|
|
34501
|
-
|
|
34502
|
-
|
|
34503
|
-
|
|
34504
|
-
|
|
34686
|
+
updatedBy: string;
|
|
34687
|
+
updatedById: string;
|
|
34688
|
+
updated: Date;
|
|
34689
|
+
chemistrySpecification?: AmcChemistrySpecificationDto | null;
|
|
34690
|
+
mechanicalSpecification?: AmcMechanicalSpecificationDto | null;
|
|
34691
|
+
ferriteSpecification?: AmcFerriteSpecificationDto | null;
|
|
34692
|
+
heatSpecification?: AmcHeatTreatmentSpecificationDto | null;
|
|
34505
34693
|
}
|
|
34506
34694
|
|
|
34507
34695
|
export interface AmcSpecificationVersionDto {
|
|
@@ -34524,7 +34712,7 @@ export interface AmcChemistrySpecificationDto {
|
|
|
34524
34712
|
iron?: AmcSpecificationLineDto | null;
|
|
34525
34713
|
}
|
|
34526
34714
|
|
|
34527
|
-
export interface AmcSpecificationLineDto {
|
|
34715
|
+
export interface AmcSpecificationLineDto extends AmcCdfEntityReadBase {
|
|
34528
34716
|
operator: AmcSpecificationOperator;
|
|
34529
34717
|
value1?: number | null;
|
|
34530
34718
|
value2?: number | null;
|
|
@@ -34533,7 +34721,7 @@ export interface AmcSpecificationLineDto {
|
|
|
34533
34721
|
|
|
34534
34722
|
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
34535
34723
|
|
|
34536
|
-
export type AmcSpecificationSymbol = "
|
|
34724
|
+
export type AmcSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
34537
34725
|
|
|
34538
34726
|
export interface AmcMechanicalSpecificationDto {
|
|
34539
34727
|
yieldStrength?: AmcSpecificationLineDto | null;
|
|
@@ -34562,13 +34750,10 @@ export interface AmcHeatTreatmentsSpecificationDto {
|
|
|
34562
34750
|
}
|
|
34563
34751
|
|
|
34564
34752
|
export interface CreateAmcSpecificationDto {
|
|
34565
|
-
|
|
34566
|
-
|
|
34753
|
+
specificationName: string;
|
|
34754
|
+
specificationNumber: string;
|
|
34567
34755
|
revision: string;
|
|
34568
34756
|
date: Date;
|
|
34569
|
-
createCopy: boolean;
|
|
34570
|
-
specificationId?: string | null;
|
|
34571
|
-
specificationVersion?: string | null;
|
|
34572
34757
|
specificationFile?: UploadFileDto | null;
|
|
34573
34758
|
}
|
|
34574
34759
|
|
|
@@ -34586,9 +34771,6 @@ export interface UpdateAmcSpecificationDto {
|
|
|
34586
34771
|
|
|
34587
34772
|
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
34588
34773
|
|
|
34589
|
-
export interface AmcCdfEntityReadBase {
|
|
34590
|
-
}
|
|
34591
|
-
|
|
34592
34774
|
export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
|
|
34593
34775
|
certificateTypeId: string;
|
|
34594
34776
|
version: number;
|