@ignos/api-client 20250513.0.11698-alpha → 20250513.0.11706

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.
@@ -8143,7 +8143,9 @@ export interface IFixtureListDto {
8143
8143
  }
8144
8144
  export declare class FixtureDto implements IFixtureDto {
8145
8145
  fixtureId: string;
8146
- name: string;
8146
+ name?: string | null;
8147
+ fullName: string;
8148
+ fullNameWithId: string;
8147
8149
  instance: number;
8148
8150
  fixtureGroupId: string;
8149
8151
  deleted?: boolean;
@@ -8171,7 +8173,9 @@ export declare class FixtureDto implements IFixtureDto {
8171
8173
  }
8172
8174
  export interface IFixtureDto {
8173
8175
  fixtureId: string;
8174
- name: string;
8176
+ name?: string | null;
8177
+ fullName: string;
8178
+ fullNameWithId: string;
8175
8179
  instance: number;
8176
8180
  fixtureGroupId: string;
8177
8181
  deleted?: boolean;
@@ -8238,7 +8242,7 @@ export interface IListFixtures {
8238
8242
  export type FixtureDeletedDto = "NotDeleted" | "Deleted";
8239
8243
  export type FixtureApprovedDto = "NotApproved" | "Approved";
8240
8244
  export declare class FixtureCreateDto implements IFixtureCreateDto {
8241
- name: string;
8245
+ name?: string | null;
8242
8246
  fixtureGroupId?: string | null;
8243
8247
  deleted?: boolean;
8244
8248
  approved?: boolean;
@@ -8263,7 +8267,7 @@ export declare class FixtureCreateDto implements IFixtureCreateDto {
8263
8267
  toJSON(data?: any): any;
8264
8268
  }
8265
8269
  export interface IFixtureCreateDto {
8266
- name: string;
8270
+ name?: string | null;
8267
8271
  fixtureGroupId?: string | null;
8268
8272
  deleted?: boolean;
8269
8273
  approved?: boolean;
@@ -8285,7 +8289,7 @@ export interface IFixtureCreateDto {
8285
8289
  }
8286
8290
  export declare class FixtureUpdateDto implements IFixtureUpdateDto {
8287
8291
  fixtureId: string;
8288
- name: string;
8292
+ name?: string | null;
8289
8293
  fixtureGroupId?: string | null;
8290
8294
  deleted?: boolean;
8291
8295
  approved?: boolean;
@@ -8311,7 +8315,7 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
8311
8315
  }
8312
8316
  export interface IFixtureUpdateDto {
8313
8317
  fixtureId: string;
8314
- name: string;
8318
+ name?: string | null;
8315
8319
  fixtureGroupId?: string | null;
8316
8320
  deleted?: boolean;
8317
8321
  approved?: boolean;
@@ -32879,6 +32879,8 @@ export class FixtureDto {
32879
32879
  if (_data) {
32880
32880
  this.fixtureId = _data["fixtureId"];
32881
32881
  this.name = _data["name"];
32882
+ this.fullName = _data["fullName"];
32883
+ this.fullNameWithId = _data["fullNameWithId"];
32882
32884
  this.instance = _data["instance"];
32883
32885
  this.fixtureGroupId = _data["fixtureGroupId"];
32884
32886
  this.deleted = _data["deleted"];
@@ -32915,6 +32917,8 @@ export class FixtureDto {
32915
32917
  data = typeof data === 'object' ? data : {};
32916
32918
  data["fixtureId"] = this.fixtureId;
32917
32919
  data["name"] = this.name;
32920
+ data["fullName"] = this.fullName;
32921
+ data["fullNameWithId"] = this.fullNameWithId;
32918
32922
  data["instance"] = this.instance;
32919
32923
  data["fixtureGroupId"] = this.fixtureGroupId;
32920
32924
  data["deleted"] = this.deleted;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250513.0.11698-alpha",
3
+ "version": "20250513.0.11706",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -39902,7 +39902,9 @@ export interface IFixtureListDto {
39902
39902
 
39903
39903
  export class FixtureDto implements IFixtureDto {
39904
39904
  fixtureId!: string;
39905
- name!: string;
39905
+ name?: string | null;
39906
+ fullName!: string;
39907
+ fullNameWithId!: string;
39906
39908
  instance!: number;
39907
39909
  fixtureGroupId!: string;
39908
39910
  deleted?: boolean;
@@ -39940,6 +39942,8 @@ export class FixtureDto implements IFixtureDto {
39940
39942
  if (_data) {
39941
39943
  this.fixtureId = _data["fixtureId"];
39942
39944
  this.name = _data["name"];
39945
+ this.fullName = _data["fullName"];
39946
+ this.fullNameWithId = _data["fullNameWithId"];
39943
39947
  this.instance = _data["instance"];
39944
39948
  this.fixtureGroupId = _data["fixtureGroupId"];
39945
39949
  this.deleted = _data["deleted"];
@@ -39978,6 +39982,8 @@ export class FixtureDto implements IFixtureDto {
39978
39982
  data = typeof data === 'object' ? data : {};
39979
39983
  data["fixtureId"] = this.fixtureId;
39980
39984
  data["name"] = this.name;
39985
+ data["fullName"] = this.fullName;
39986
+ data["fullNameWithId"] = this.fullNameWithId;
39981
39987
  data["instance"] = this.instance;
39982
39988
  data["fixtureGroupId"] = this.fixtureGroupId;
39983
39989
  data["deleted"] = this.deleted;
@@ -40008,7 +40014,9 @@ export class FixtureDto implements IFixtureDto {
40008
40014
 
40009
40015
  export interface IFixtureDto {
40010
40016
  fixtureId: string;
40011
- name: string;
40017
+ name?: string | null;
40018
+ fullName: string;
40019
+ fullNameWithId: string;
40012
40020
  instance: number;
40013
40021
  fixtureGroupId: string;
40014
40022
  deleted?: boolean;
@@ -40176,7 +40184,7 @@ export type FixtureDeletedDto = "NotDeleted" | "Deleted";
40176
40184
  export type FixtureApprovedDto = "NotApproved" | "Approved";
40177
40185
 
40178
40186
  export class FixtureCreateDto implements IFixtureCreateDto {
40179
- name!: string;
40187
+ name?: string | null;
40180
40188
  fixtureGroupId?: string | null;
40181
40189
  deleted?: boolean;
40182
40190
  approved?: boolean;
@@ -40262,7 +40270,7 @@ export class FixtureCreateDto implements IFixtureCreateDto {
40262
40270
  }
40263
40271
 
40264
40272
  export interface IFixtureCreateDto {
40265
- name: string;
40273
+ name?: string | null;
40266
40274
  fixtureGroupId?: string | null;
40267
40275
  deleted?: boolean;
40268
40276
  approved?: boolean;
@@ -40285,7 +40293,7 @@ export interface IFixtureCreateDto {
40285
40293
 
40286
40294
  export class FixtureUpdateDto implements IFixtureUpdateDto {
40287
40295
  fixtureId!: string;
40288
- name!: string;
40296
+ name?: string | null;
40289
40297
  fixtureGroupId?: string | null;
40290
40298
  deleted?: boolean;
40291
40299
  approved?: boolean;
@@ -40374,7 +40382,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
40374
40382
 
40375
40383
  export interface IFixtureUpdateDto {
40376
40384
  fixtureId: string;
40377
- name: string;
40385
+ name?: string | null;
40378
40386
  fixtureGroupId?: string | null;
40379
40387
  deleted?: boolean;
40380
40388
  approved?: boolean;