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.
- package/dist/reach-sdk.d.ts +2 -2
- package/dist/reach-sdk.js +1 -1
- package/package.json +1 -1
- package/src/definition/swagger.yaml +5 -6
- package/src/models/EndUserIdentitySecureToken.ts +1 -1
- package/src/services/EndUserIdentitySecureTokenService.ts +1 -1
- package/src/services/PublicCustomersService.ts +1 -1
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -13055,7 +13055,7 @@ type EndUserIdentitySecureToken = {
|
|
|
13055
13055
|
/**
|
|
13056
13056
|
* Gets or sets the activities Id.
|
|
13057
13057
|
*/
|
|
13058
|
-
id?:
|
|
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:
|
|
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
|
@@ -20404,8 +20404,8 @@ paths:
|
|
|
20404
20404
|
description: The Reach.Models.EndUserIdentitySecureToken id.
|
|
20405
20405
|
required: true
|
|
20406
20406
|
schema:
|
|
20407
|
-
type:
|
|
20408
|
-
format:
|
|
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:
|
|
124024
|
+
type: string
|
|
124025
124025
|
description: Gets or sets the activities Id.
|
|
124026
|
-
format:
|
|
124027
|
-
default: 0
|
|
124026
|
+
format: uuid
|
|
124028
124027
|
token:
|
|
124029
124028
|
type: string
|
|
124030
124029
|
description: Gets or sets the secure token.
|
|
@@ -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
|
},
|