@ignos/api-client 20260805.206.1 → 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 +9 -8
- package/package.json +1 -1
- package/src/ignosportal-api.ts +10 -9
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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;
|
|
@@ -8905,8 +8906,8 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
8905
8906
|
pren22?: ImaSpecificationLineDto | null;
|
|
8906
8907
|
pren30?: ImaSpecificationLineDto | null;
|
|
8907
8908
|
prenW?: ImaSpecificationLineDto | null;
|
|
8908
|
-
v_Nb_Ti?:
|
|
8909
|
-
ce?:
|
|
8909
|
+
v_Nb_Ti?: boolean | null;
|
|
8910
|
+
ce?: boolean | null;
|
|
8910
8911
|
}
|
|
8911
8912
|
export interface ImaMechanicalSpecificationDto {
|
|
8912
8913
|
yieldStrength?: ImaSpecificationLineDto | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -32762,6 +32762,7 @@ export interface MrbInstanceRevisionDto {
|
|
|
32762
32762
|
status: DocumentStatus;
|
|
32763
32763
|
statusDate: Date;
|
|
32764
32764
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
32765
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
32765
32766
|
}
|
|
32766
32767
|
|
|
32767
32768
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
@@ -32771,6 +32772,13 @@ export interface MrbSentInfoDto {
|
|
|
32771
32772
|
sentBy: UserDto;
|
|
32772
32773
|
}
|
|
32773
32774
|
|
|
32775
|
+
export interface MrbContentDocumentStatusDto {
|
|
32776
|
+
total: number;
|
|
32777
|
+
ready: number;
|
|
32778
|
+
missing: number;
|
|
32779
|
+
optional: number;
|
|
32780
|
+
}
|
|
32781
|
+
|
|
32774
32782
|
export interface MrbPartDto {
|
|
32775
32783
|
partNumber?: string | null;
|
|
32776
32784
|
partName?: string | null;
|
|
@@ -32831,13 +32839,6 @@ export interface MrbExtraDocumentDto {
|
|
|
32831
32839
|
documentType: string;
|
|
32832
32840
|
}
|
|
32833
32841
|
|
|
32834
|
-
export interface MrbContentDocumentStatusDto {
|
|
32835
|
-
total: number;
|
|
32836
|
-
ready: number;
|
|
32837
|
-
missing: number;
|
|
32838
|
-
optional: number;
|
|
32839
|
-
}
|
|
32840
|
-
|
|
32841
32842
|
export interface MrbPdfExportJobDto {
|
|
32842
32843
|
jobId: string;
|
|
32843
32844
|
mrbInstanceId: string;
|
|
@@ -37359,8 +37360,8 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
37359
37360
|
pren22?: ImaSpecificationLineDto | null;
|
|
37360
37361
|
pren30?: ImaSpecificationLineDto | null;
|
|
37361
37362
|
prenW?: ImaSpecificationLineDto | null;
|
|
37362
|
-
v_Nb_Ti?:
|
|
37363
|
-
ce?:
|
|
37363
|
+
v_Nb_Ti?: boolean | null;
|
|
37364
|
+
ce?: boolean | null;
|
|
37364
37365
|
}
|
|
37365
37366
|
|
|
37366
37367
|
export interface ImaMechanicalSpecificationDto {
|