@ignos/api-client 20260804.205.1-alpha → 20260806.207.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 +26 -21
- package/lib/ignosportal-api.js +1 -5
- package/package.json +1 -1
- package/src/ignosportal-api.ts +28 -26
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2586,7 +2586,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2586
2586
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2587
2587
|
}
|
|
2588
2588
|
export interface IMesProductionScheduleClient {
|
|
2589
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined
|
|
2589
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2590
2590
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2591
2591
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2592
2592
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2600,7 +2600,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2600
2600
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2601
2601
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2602
2602
|
});
|
|
2603
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined
|
|
2603
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2604
2604
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2605
2605
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2606
2606
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -4837,12 +4837,19 @@ export interface MrbInstanceRevisionDto {
|
|
|
4837
4837
|
status: DocumentStatus;
|
|
4838
4838
|
statusDate: Date;
|
|
4839
4839
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
4840
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
4840
4841
|
}
|
|
4841
4842
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
4842
4843
|
export interface MrbSentInfoDto {
|
|
4843
4844
|
sentTime: Date;
|
|
4844
4845
|
sentBy: UserDto;
|
|
4845
4846
|
}
|
|
4847
|
+
export interface MrbContentDocumentStatusDto {
|
|
4848
|
+
total: number;
|
|
4849
|
+
ready: number;
|
|
4850
|
+
missing: number;
|
|
4851
|
+
optional: number;
|
|
4852
|
+
}
|
|
4846
4853
|
export interface MrbPartDto {
|
|
4847
4854
|
partNumber?: string | null;
|
|
4848
4855
|
partName?: string | null;
|
|
@@ -4895,12 +4902,6 @@ export interface MrbExtraDocumentDto {
|
|
|
4895
4902
|
url: string;
|
|
4896
4903
|
documentType: string;
|
|
4897
4904
|
}
|
|
4898
|
-
export interface MrbContentDocumentStatusDto {
|
|
4899
|
-
total: number;
|
|
4900
|
-
ready: number;
|
|
4901
|
-
missing: number;
|
|
4902
|
-
optional: number;
|
|
4903
|
-
}
|
|
4904
4905
|
export interface MrbPdfExportJobDto {
|
|
4905
4906
|
jobId: string;
|
|
4906
4907
|
mrbInstanceId: string;
|
|
@@ -7457,8 +7458,6 @@ export interface PlannerOperationDto {
|
|
|
7457
7458
|
isNewOperation: boolean;
|
|
7458
7459
|
weekGroup: string;
|
|
7459
7460
|
programStatus?: ProgramStatus | null;
|
|
7460
|
-
hasNotes?: boolean;
|
|
7461
|
-
notesUnread?: boolean;
|
|
7462
7461
|
}
|
|
7463
7462
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7464
7463
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
@@ -7766,8 +7765,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
7766
7765
|
productionStatus: OperationStatusDto;
|
|
7767
7766
|
setupStatus?: OperationStatusDto | null;
|
|
7768
7767
|
programStatus?: ProgramStatus | null;
|
|
7769
|
-
hasNotes: boolean;
|
|
7770
|
-
notesUnread: boolean;
|
|
7771
7768
|
}
|
|
7772
7769
|
export interface SurroundingOperationDto {
|
|
7773
7770
|
id: string;
|
|
@@ -7829,7 +7826,6 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7829
7826
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7830
7827
|
after?: Date | null;
|
|
7831
7828
|
before?: Date | null;
|
|
7832
|
-
includeDiscussionSummary?: boolean;
|
|
7833
7829
|
}
|
|
7834
7830
|
export interface ProductionScheduleFiltersDto {
|
|
7835
7831
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8416,12 +8412,21 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8416
8412
|
}
|
|
8417
8413
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8418
8414
|
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
8419
|
-
pren?:
|
|
8420
|
-
pren22?:
|
|
8421
|
-
pren30?:
|
|
8422
|
-
prenW?:
|
|
8423
|
-
v_Nb_Ti?:
|
|
8424
|
-
ce?:
|
|
8415
|
+
pren?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8416
|
+
pren22?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8417
|
+
pren30?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8418
|
+
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8419
|
+
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8420
|
+
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8421
|
+
}
|
|
8422
|
+
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8423
|
+
specificationMin?: number | null;
|
|
8424
|
+
specificationMax?: number | null;
|
|
8425
|
+
readValue?: string | null;
|
|
8426
|
+
calculatedValue?: string | null;
|
|
8427
|
+
errorString?: string | null;
|
|
8428
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8429
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8425
8430
|
}
|
|
8426
8431
|
export interface ImaTensileTestResultDto {
|
|
8427
8432
|
heatNumber?: string | null;
|
|
@@ -8901,8 +8906,8 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
8901
8906
|
pren22?: ImaSpecificationLineDto | null;
|
|
8902
8907
|
pren30?: ImaSpecificationLineDto | null;
|
|
8903
8908
|
prenW?: ImaSpecificationLineDto | null;
|
|
8904
|
-
v_Nb_Ti?:
|
|
8905
|
-
ce?:
|
|
8909
|
+
v_Nb_Ti?: boolean | null;
|
|
8910
|
+
ce?: boolean | null;
|
|
8906
8911
|
}
|
|
8907
8912
|
export interface ImaMechanicalSpecificationDto {
|
|
8908
8913
|
yieldStrength?: ImaSpecificationLineDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21601,7 +21601,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21601
21601
|
this.http = http ? http : window;
|
|
21602
21602
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
21603
21603
|
}
|
|
21604
|
-
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material
|
|
21604
|
+
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
|
|
21605
21605
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
21606
21606
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
21607
21607
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -21625,10 +21625,6 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21625
21625
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
21626
21626
|
if (material !== undefined && material !== null)
|
|
21627
21627
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
21628
|
-
if (includeDiscussionSummary === null)
|
|
21629
|
-
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
21630
|
-
else if (includeDiscussionSummary !== undefined)
|
|
21631
|
-
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
21632
21628
|
url_ = url_.replace(/[?&]$/, "");
|
|
21633
21629
|
let options_ = {
|
|
21634
21630
|
method: "GET",
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23071,7 +23071,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
|
|
|
23071
23071
|
|
|
23072
23072
|
export interface IMesProductionScheduleClient {
|
|
23073
23073
|
|
|
23074
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined
|
|
23074
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23075
23075
|
|
|
23076
23076
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23077
23077
|
|
|
@@ -23096,7 +23096,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23096
23096
|
this.baseUrl = baseUrl ?? "";
|
|
23097
23097
|
}
|
|
23098
23098
|
|
|
23099
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined
|
|
23099
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
|
|
23100
23100
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
23101
23101
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
23102
23102
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -23120,10 +23120,6 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23120
23120
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
23121
23121
|
if (material !== undefined && material !== null)
|
|
23122
23122
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
23123
|
-
if (includeDiscussionSummary === null)
|
|
23124
|
-
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
23125
|
-
else if (includeDiscussionSummary !== undefined)
|
|
23126
|
-
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
23127
23123
|
url_ = url_.replace(/[?&]$/, "");
|
|
23128
23124
|
|
|
23129
23125
|
let options_: RequestInit = {
|
|
@@ -32766,6 +32762,7 @@ export interface MrbInstanceRevisionDto {
|
|
|
32766
32762
|
status: DocumentStatus;
|
|
32767
32763
|
statusDate: Date;
|
|
32768
32764
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
32765
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
32769
32766
|
}
|
|
32770
32767
|
|
|
32771
32768
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
@@ -32775,6 +32772,13 @@ export interface MrbSentInfoDto {
|
|
|
32775
32772
|
sentBy: UserDto;
|
|
32776
32773
|
}
|
|
32777
32774
|
|
|
32775
|
+
export interface MrbContentDocumentStatusDto {
|
|
32776
|
+
total: number;
|
|
32777
|
+
ready: number;
|
|
32778
|
+
missing: number;
|
|
32779
|
+
optional: number;
|
|
32780
|
+
}
|
|
32781
|
+
|
|
32778
32782
|
export interface MrbPartDto {
|
|
32779
32783
|
partNumber?: string | null;
|
|
32780
32784
|
partName?: string | null;
|
|
@@ -32835,13 +32839,6 @@ export interface MrbExtraDocumentDto {
|
|
|
32835
32839
|
documentType: string;
|
|
32836
32840
|
}
|
|
32837
32841
|
|
|
32838
|
-
export interface MrbContentDocumentStatusDto {
|
|
32839
|
-
total: number;
|
|
32840
|
-
ready: number;
|
|
32841
|
-
missing: number;
|
|
32842
|
-
optional: number;
|
|
32843
|
-
}
|
|
32844
|
-
|
|
32845
32842
|
export interface MrbPdfExportJobDto {
|
|
32846
32843
|
jobId: string;
|
|
32847
32844
|
mrbInstanceId: string;
|
|
@@ -35755,8 +35752,6 @@ export interface PlannerOperationDto {
|
|
|
35755
35752
|
isNewOperation: boolean;
|
|
35756
35753
|
weekGroup: string;
|
|
35757
35754
|
programStatus?: ProgramStatus | null;
|
|
35758
|
-
hasNotes?: boolean;
|
|
35759
|
-
notesUnread?: boolean;
|
|
35760
35755
|
}
|
|
35761
35756
|
|
|
35762
35757
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
@@ -36092,8 +36087,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
36092
36087
|
productionStatus: OperationStatusDto;
|
|
36093
36088
|
setupStatus?: OperationStatusDto | null;
|
|
36094
36089
|
programStatus?: ProgramStatus | null;
|
|
36095
|
-
hasNotes: boolean;
|
|
36096
|
-
notesUnread: boolean;
|
|
36097
36090
|
}
|
|
36098
36091
|
|
|
36099
36092
|
export interface SurroundingOperationDto {
|
|
@@ -36161,7 +36154,6 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
36161
36154
|
operationStatuses?: OperationStatusDto[] | null;
|
|
36162
36155
|
after?: Date | null;
|
|
36163
36156
|
before?: Date | null;
|
|
36164
|
-
includeDiscussionSummary?: boolean;
|
|
36165
36157
|
}
|
|
36166
36158
|
|
|
36167
36159
|
export interface ProductionScheduleFiltersDto {
|
|
@@ -36823,12 +36815,22 @@ export interface ImaSpecificationResultLineDto {
|
|
|
36823
36815
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36824
36816
|
|
|
36825
36817
|
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
36826
|
-
pren?:
|
|
36827
|
-
pren22?:
|
|
36828
|
-
pren30?:
|
|
36829
|
-
prenW?:
|
|
36830
|
-
v_Nb_Ti?:
|
|
36831
|
-
ce?:
|
|
36818
|
+
pren?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36819
|
+
pren22?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36820
|
+
pren30?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36821
|
+
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36822
|
+
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36823
|
+
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36824
|
+
}
|
|
36825
|
+
|
|
36826
|
+
export interface ImaSpecificationCalculatedResultLineDto {
|
|
36827
|
+
specificationMin?: number | null;
|
|
36828
|
+
specificationMax?: number | null;
|
|
36829
|
+
readValue?: string | null;
|
|
36830
|
+
calculatedValue?: string | null;
|
|
36831
|
+
errorString?: string | null;
|
|
36832
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
36833
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36832
36834
|
}
|
|
36833
36835
|
|
|
36834
36836
|
export interface ImaTensileTestResultDto {
|
|
@@ -37358,8 +37360,8 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
37358
37360
|
pren22?: ImaSpecificationLineDto | null;
|
|
37359
37361
|
pren30?: ImaSpecificationLineDto | null;
|
|
37360
37362
|
prenW?: ImaSpecificationLineDto | null;
|
|
37361
|
-
v_Nb_Ti?:
|
|
37362
|
-
ce?:
|
|
37363
|
+
v_Nb_Ti?: boolean | null;
|
|
37364
|
+
ce?: boolean | null;
|
|
37363
37365
|
}
|
|
37364
37366
|
|
|
37365
37367
|
export interface ImaMechanicalSpecificationDto {
|