@ignos/api-client 20240319.0.9018 → 20240320.0.9039
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
CHANGED
|
@@ -4919,7 +4919,7 @@ export interface IEmployeeDto {
|
|
|
4919
4919
|
export declare class CreateMachineWithoutResource implements ICreateMachineWithoutResource {
|
|
4920
4920
|
id: string;
|
|
4921
4921
|
name: string;
|
|
4922
|
-
description
|
|
4922
|
+
description?: string | null;
|
|
4923
4923
|
type: string;
|
|
4924
4924
|
displayName?: string | null;
|
|
4925
4925
|
manufacturer?: string | null;
|
|
@@ -4935,7 +4935,7 @@ export declare class CreateMachineWithoutResource implements ICreateMachineWitho
|
|
|
4935
4935
|
export interface ICreateMachineWithoutResource {
|
|
4936
4936
|
id: string;
|
|
4937
4937
|
name: string;
|
|
4938
|
-
description
|
|
4938
|
+
description?: string | null;
|
|
4939
4939
|
type: string;
|
|
4940
4940
|
displayName?: string | null;
|
|
4941
4941
|
manufacturer?: string | null;
|
|
@@ -4969,7 +4969,7 @@ export declare class CreateResourceWithMachine implements ICreateResourceWithMac
|
|
|
4969
4969
|
displayName?: string | null;
|
|
4970
4970
|
machineId: string;
|
|
4971
4971
|
machineName: string;
|
|
4972
|
-
machineDescription
|
|
4972
|
+
machineDescription?: string | null;
|
|
4973
4973
|
machineType: string;
|
|
4974
4974
|
manufacturer?: string | null;
|
|
4975
4975
|
location?: string | null;
|
|
@@ -4988,7 +4988,7 @@ export interface ICreateResourceWithMachine {
|
|
|
4988
4988
|
displayName?: string | null;
|
|
4989
4989
|
machineId: string;
|
|
4990
4990
|
machineName: string;
|
|
4991
|
-
machineDescription
|
|
4991
|
+
machineDescription?: string | null;
|
|
4992
4992
|
machineType: string;
|
|
4993
4993
|
manufacturer?: string | null;
|
|
4994
4994
|
location?: string | null;
|
|
@@ -5329,7 +5329,7 @@ export interface IDocumentTypeRuleDto {
|
|
|
5329
5329
|
}
|
|
5330
5330
|
export type DocumentMetadataRequirement = "NotAllowed" | "Optional" | "Required";
|
|
5331
5331
|
export type Mutability = "Immutable" | "Appendable" | "Mutable";
|
|
5332
|
-
export type DocumentRuleType = "Tag" | "
|
|
5332
|
+
export type DocumentRuleType = "Tag" | "Sequences" | "OrderLines" | "LotNumbers";
|
|
5333
5333
|
export declare class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto {
|
|
5334
5334
|
tag?: string | null;
|
|
5335
5335
|
ruleType?: DocumentRuleType;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -27144,7 +27144,7 @@ export interface IEmployeeDto {
|
|
|
27144
27144
|
export class CreateMachineWithoutResource implements ICreateMachineWithoutResource {
|
|
27145
27145
|
id!: string;
|
|
27146
27146
|
name!: string;
|
|
27147
|
-
description
|
|
27147
|
+
description?: string | null;
|
|
27148
27148
|
type!: string;
|
|
27149
27149
|
displayName?: string | null;
|
|
27150
27150
|
manufacturer?: string | null;
|
|
@@ -27203,7 +27203,7 @@ export class CreateMachineWithoutResource implements ICreateMachineWithoutResour
|
|
|
27203
27203
|
export interface ICreateMachineWithoutResource {
|
|
27204
27204
|
id: string;
|
|
27205
27205
|
name: string;
|
|
27206
|
-
description
|
|
27206
|
+
description?: string | null;
|
|
27207
27207
|
type: string;
|
|
27208
27208
|
displayName?: string | null;
|
|
27209
27209
|
manufacturer?: string | null;
|
|
@@ -27272,7 +27272,7 @@ export class CreateResourceWithMachine implements ICreateResourceWithMachine {
|
|
|
27272
27272
|
displayName?: string | null;
|
|
27273
27273
|
machineId!: string;
|
|
27274
27274
|
machineName!: string;
|
|
27275
|
-
machineDescription
|
|
27275
|
+
machineDescription?: string | null;
|
|
27276
27276
|
machineType!: string;
|
|
27277
27277
|
manufacturer?: string | null;
|
|
27278
27278
|
location?: string | null;
|
|
@@ -27340,7 +27340,7 @@ export interface ICreateResourceWithMachine {
|
|
|
27340
27340
|
displayName?: string | null;
|
|
27341
27341
|
machineId: string;
|
|
27342
27342
|
machineName: string;
|
|
27343
|
-
machineDescription
|
|
27343
|
+
machineDescription?: string | null;
|
|
27344
27344
|
machineType: string;
|
|
27345
27345
|
manufacturer?: string | null;
|
|
27346
27346
|
location?: string | null;
|
|
@@ -28304,7 +28304,7 @@ export type DocumentMetadataRequirement = "NotAllowed" | "Optional" | "Required"
|
|
|
28304
28304
|
|
|
28305
28305
|
export type Mutability = "Immutable" | "Appendable" | "Mutable";
|
|
28306
28306
|
|
|
28307
|
-
export type DocumentRuleType = "Tag" | "
|
|
28307
|
+
export type DocumentRuleType = "Tag" | "Sequences" | "OrderLines" | "LotNumbers";
|
|
28308
28308
|
|
|
28309
28309
|
export class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto {
|
|
28310
28310
|
tag?: string | null;
|