reach-api-sdk 1.0.189 → 1.0.190

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.
@@ -13055,7 +13055,7 @@ type EndUserIdentitySecureToken = {
13055
13055
  /**
13056
13056
  * Gets or sets the activities Id.
13057
13057
  */
13058
- id?: number;
13058
+ id?: string;
13059
13059
  /**
13060
13060
  * Gets or sets the secure token.
13061
13061
  */
@@ -13101,7 +13101,7 @@ declare class EndUserIdentitySecureTokenService {
13101
13101
  /**
13102
13102
  * The Reach.Models.EndUserIdentitySecureToken id.
13103
13103
  */
13104
- id: number;
13104
+ id: string;
13105
13105
  }): CancelablePromise<EndUserIdentitySecureToken>;
13106
13106
  /**
13107
13107
  * Gets a Reach.Models.EndUserIdentitySecureToken by its secure token string.
package/dist/reach-sdk.js CHANGED
@@ -18649,7 +18649,7 @@ const request = (config, options, axiosClient = axios) => {
18649
18649
  }) {
18650
18650
  return this.httpRequest.request({
18651
18651
  method: "GET",
18652
- url: "/api/public/customers/accessible-tenants",
18652
+ url: "/api/public/customers/accessible-tenants/{endUserIdentityId}",
18653
18653
  path: {
18654
18654
  endUserIdentityId
18655
18655
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20404,8 +20404,8 @@ paths:
20404
20404
  description: The Reach.Models.EndUserIdentitySecureToken id.
20405
20405
  required: true
20406
20406
  schema:
20407
- type: integer
20408
- format: int32
20407
+ type: string
20408
+ format: uuid
20409
20409
  responses:
20410
20410
  '200':
20411
20411
  description: OK
@@ -54810,7 +54810,7 @@ paths:
54810
54810
  text/json:
54811
54811
  schema:
54812
54812
  $ref: '#/components/schemas/ValidationResultModel'
54813
- /api/public/customers/accessible-tenants:
54813
+ '/api/public/customers/accessible-tenants/{endUserIdentityId}':
54814
54814
  get:
54815
54815
  tags:
54816
54816
  - PublicCustomers
@@ -124021,10 +124021,9 @@ components:
124021
124021
  type: object
124022
124022
  properties:
124023
124023
  id:
124024
- type: integer
124024
+ type: string
124025
124025
  description: Gets or sets the activities Id.
124026
- format: int32
124027
- default: 0
124026
+ format: uuid
124028
124027
  token:
124029
124028
  type: string
124030
124029
  description: Gets or sets the secure token.
@@ -12,7 +12,7 @@ export type EndUserIdentitySecureToken = {
12
12
  /**
13
13
  * Gets or sets the activities Id.
14
14
  */
15
- id?: number;
15
+ id?: string;
16
16
  /**
17
17
  * Gets or sets the secure token.
18
18
  */
@@ -23,7 +23,7 @@ export class EndUserIdentitySecureTokenService {
23
23
  /**
24
24
  * The Reach.Models.EndUserIdentitySecureToken id.
25
25
  */
26
- id: number;
26
+ id: string;
27
27
  }): CancelablePromise<EndUserIdentitySecureToken> {
28
28
  return this.httpRequest.request({
29
29
  method: 'GET',
@@ -264,7 +264,7 @@ export class PublicCustomersService {
264
264
  }): CancelablePromise<any> {
265
265
  return this.httpRequest.request({
266
266
  method: 'GET',
267
- url: '/api/public/customers/accessible-tenants',
267
+ url: '/api/public/customers/accessible-tenants/{endUserIdentityId}',
268
268
  path: {
269
269
  endUserIdentityId: endUserIdentityId,
270
270
  },