@ignos/api-client 20240710.0.9775 → 20240711.0.9780

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.
@@ -7332,6 +7332,7 @@ export declare class IntegrationCredentialDto implements IIntegrationCredentialD
7332
7332
  type: CredentialTypeDto;
7333
7333
  id: string;
7334
7334
  name?: string;
7335
+ clientId?: string | null;
7335
7336
  expirationDate?: Date | null;
7336
7337
  activationDate?: Date | null;
7337
7338
  responsibleUser?: string | null;
@@ -7347,6 +7348,7 @@ export interface IIntegrationCredentialDto {
7347
7348
  type: CredentialTypeDto;
7348
7349
  id: string;
7349
7350
  name?: string;
7351
+ clientId?: string | null;
7350
7352
  expirationDate?: Date | null;
7351
7353
  activationDate?: Date | null;
7352
7354
  responsibleUser?: string | null;
@@ -28928,6 +28928,7 @@ export class IntegrationCredentialDto {
28928
28928
  this.type = _data["type"];
28929
28929
  this.id = _data["id"];
28930
28930
  this.name = _data["name"];
28931
+ this.clientId = _data["clientId"];
28931
28932
  this.expirationDate = _data["expirationDate"] ? new Date(_data["expirationDate"].toString()) : undefined;
28932
28933
  this.activationDate = _data["activationDate"] ? new Date(_data["activationDate"].toString()) : undefined;
28933
28934
  this.responsibleUser = _data["responsibleUser"];
@@ -28947,6 +28948,7 @@ export class IntegrationCredentialDto {
28947
28948
  data["type"] = this.type;
28948
28949
  data["id"] = this.id;
28949
28950
  data["name"] = this.name;
28951
+ data["clientId"] = this.clientId;
28950
28952
  data["expirationDate"] = this.expirationDate ? this.expirationDate.toISOString() : undefined;
28951
28953
  data["activationDate"] = this.activationDate ? this.activationDate.toISOString() : undefined;
28952
28954
  data["responsibleUser"] = this.responsibleUser;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240710.0.9775",
3
+ "version": "20240711.0.9780",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -35274,6 +35274,7 @@ export class IntegrationCredentialDto implements IIntegrationCredentialDto {
35274
35274
  type!: CredentialTypeDto;
35275
35275
  id!: string;
35276
35276
  name?: string;
35277
+ clientId?: string | null;
35277
35278
  expirationDate?: Date | null;
35278
35279
  activationDate?: Date | null;
35279
35280
  responsibleUser?: string | null;
@@ -35295,6 +35296,7 @@ export class IntegrationCredentialDto implements IIntegrationCredentialDto {
35295
35296
  this.type = _data["type"];
35296
35297
  this.id = _data["id"];
35297
35298
  this.name = _data["name"];
35299
+ this.clientId = _data["clientId"];
35298
35300
  this.expirationDate = _data["expirationDate"] ? new Date(_data["expirationDate"].toString()) : <any>undefined;
35299
35301
  this.activationDate = _data["activationDate"] ? new Date(_data["activationDate"].toString()) : <any>undefined;
35300
35302
  this.responsibleUser = _data["responsibleUser"];
@@ -35316,6 +35318,7 @@ export class IntegrationCredentialDto implements IIntegrationCredentialDto {
35316
35318
  data["type"] = this.type;
35317
35319
  data["id"] = this.id;
35318
35320
  data["name"] = this.name;
35321
+ data["clientId"] = this.clientId;
35319
35322
  data["expirationDate"] = this.expirationDate ? this.expirationDate.toISOString() : <any>undefined;
35320
35323
  data["activationDate"] = this.activationDate ? this.activationDate.toISOString() : <any>undefined;
35321
35324
  data["responsibleUser"] = this.responsibleUser;
@@ -35330,6 +35333,7 @@ export interface IIntegrationCredentialDto {
35330
35333
  type: CredentialTypeDto;
35331
35334
  id: string;
35332
35335
  name?: string;
35336
+ clientId?: string | null;
35333
35337
  expirationDate?: Date | null;
35334
35338
  activationDate?: Date | null;
35335
35339
  responsibleUser?: string | null;