@ignos/api-client 20240319.0.9018 → 20240319.0.9020

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.
@@ -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: string;
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: string;
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: string;
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: string;
4991
+ machineDescription?: string | null;
4992
4992
  machineType: string;
4993
4993
  manufacturer?: string | null;
4994
4994
  location?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240319.0.9018",
3
+ "version": "20240319.0.9020",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -27144,7 +27144,7 @@ export interface IEmployeeDto {
27144
27144
  export class CreateMachineWithoutResource implements ICreateMachineWithoutResource {
27145
27145
  id!: string;
27146
27146
  name!: string;
27147
- description!: string;
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: string;
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!: string;
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: string;
27343
+ machineDescription?: string | null;
27344
27344
  machineType: string;
27345
27345
  manufacturer?: string | null;
27346
27346
  location?: string | null;