@connectedxm/admin-sdk 7.8.1 → 7.9.2

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.
@@ -0,0 +1,26 @@
1
+ # GetEventPassTypeExchangeTargets200Response
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **status** | **string** | | [default to undefined]
9
+ **message** | **string** | | [default to undefined]
10
+ **data** | [**Array<EventPassTypeExchangeTarget>**](EventPassTypeExchangeTarget.md) | | [default to undefined]
11
+ **count** | **number** | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { GetEventPassTypeExchangeTargets200Response } from '@connectedxm/admin-sdk';
17
+
18
+ const instance: GetEventPassTypeExchangeTargets200Response = {
19
+ status,
20
+ message,
21
+ data,
22
+ count,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,4 +1,4 @@
1
- # ImpersonateAccount200Response
1
+ # JoinMeeting200Response
2
2
 
3
3
 
4
4
  ## Properties
@@ -12,9 +12,9 @@ Name | Type | Description | Notes
12
12
  ## Example
13
13
 
14
14
  ```typescript
15
- import { ImpersonateAccount200Response } from '@connectedxm/admin-sdk';
15
+ import { JoinMeeting200Response } from '@connectedxm/admin-sdk';
16
16
 
17
- const instance: ImpersonateAccount200Response = {
17
+ const instance: JoinMeeting200Response = {
18
18
  status,
19
19
  message,
20
20
  data,
@@ -278,7 +278,7 @@ const { status, data } = await apiInstance.getMeetings(
278
278
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
279
279
 
280
280
  # **joinMeeting**
281
- > ImpersonateAccount200Response joinMeeting()
281
+ > JoinMeeting200Response joinMeeting()
282
282
 
283
283
  Generates a join token for the authenticated admin user to enter the given meeting as a participant, requiring the \"read\" permission on meetings.
284
284
 
@@ -309,7 +309,7 @@ const { status, data } = await apiInstance.joinMeeting(
309
309
 
310
310
  ### Return type
311
311
 
312
- **ImpersonateAccount200Response**
312
+ **JoinMeeting200Response**
313
313
 
314
314
  ### Authorization
315
315
 
@@ -0,0 +1,38 @@
1
+ # PassExchange
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [default to undefined]
9
+ **accountId** | **string** | | [default to undefined]
10
+ **passId** | **string** | | [default to undefined]
11
+ **exchangeType** | [**ExchangeType**](ExchangeType.md) | | [default to undefined]
12
+ **exchangeTargetId** | **string** | | [default to undefined]
13
+ **exchangeTarget** | [**EventPassTypeExchangeTarget**](EventPassTypeExchangeTarget.md) | | [default to undefined]
14
+ **lineItem** | [**BasePaymentLineItem**](BasePaymentLineItem.md) | | [default to undefined]
15
+ **account** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
16
+ **pass** | [**BaseEventPass**](BaseEventPass.md) | | [default to undefined]
17
+ **createdAt** | **string** | | [default to undefined]
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import { PassExchange } from '@connectedxm/admin-sdk';
23
+
24
+ const instance: PassExchange = {
25
+ id,
26
+ accountId,
27
+ passId,
28
+ exchangeType,
29
+ exchangeTargetId,
30
+ exchangeTarget,
31
+ lineItem,
32
+ account,
33
+ pass,
34
+ createdAt,
35
+ };
36
+ ```
37
+
38
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,30 @@
1
+ # PassTypeExchangeTargetCreateInputs
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **enabled** | **boolean** | | [default to undefined]
9
+ **targetPassTypeId** | **string** | | [default to undefined]
10
+ **fixedPricing** | **boolean** | | [optional] [default to undefined]
11
+ **amount** | **number** | | [optional] [default to undefined]
12
+ **startDate** | **string** | | [optional] [default to undefined]
13
+ **endDate** | **string** | | [optional] [default to undefined]
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import { PassTypeExchangeTargetCreateInputs } from '@connectedxm/admin-sdk';
19
+
20
+ const instance: PassTypeExchangeTargetCreateInputs = {
21
+ enabled,
22
+ targetPassTypeId,
23
+ fixedPricing,
24
+ amount,
25
+ startDate,
26
+ endDate,
27
+ };
28
+ ```
29
+
30
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,28 @@
1
+ # PassTypeExchangeTargetUpdateInputs
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **enabled** | **boolean** | | [optional] [default to undefined]
9
+ **fixedPricing** | **boolean** | | [optional] [default to undefined]
10
+ **amount** | **number** | | [optional] [default to undefined]
11
+ **startDate** | **string** | | [optional] [default to undefined]
12
+ **endDate** | **string** | | [optional] [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { PassTypeExchangeTargetUpdateInputs } from '@connectedxm/admin-sdk';
18
+
19
+ const instance: PassTypeExchangeTargetUpdateInputs = {
20
+ enabled,
21
+ fixedPricing,
22
+ amount,
23
+ startDate,
24
+ endDate,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/Payment.md CHANGED
@@ -59,6 +59,7 @@ Name | Type | Description | Notes
59
59
  **coupon** | [**BaseCoupon**](BaseCoupon.md) | | [default to undefined]
60
60
  **invoice** | [**BaseInvoice**](BaseInvoice.md) | | [default to undefined]
61
61
  **series** | [**BaseSeries**](BaseSeries.md) | | [default to undefined]
62
+ **exchangeTarget** | [**BaseEventPassTypeExchangeTarget**](BaseEventPassTypeExchangeTarget.md) | | [default to undefined]
62
63
  **metadata** | **object** | | [optional] [default to undefined]
63
64
 
64
65
  ## Example
@@ -121,6 +122,7 @@ const instance: Payment = {
121
122
  coupon,
122
123
  invoice,
123
124
  series,
125
+ exchangeTarget,
124
126
  metadata,
125
127
  };
126
128
  ```
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **id** | **string** | | [default to undefined]
9
9
  **type** | [**TaxIntegrationType**](TaxIntegrationType.md) | | [default to undefined]
10
10
  **connectionId** | **string** | | [default to undefined]
11
+ **instanceUrl** | **string** | | [default to undefined]
11
12
  **sandbox** | **boolean** | | [default to undefined]
12
13
  **enabled** | **boolean** | | [default to undefined]
13
14
  **companyCode** | **string** | | [default to undefined]
@@ -33,6 +34,7 @@ const instance: TaxIntegration = {
33
34
  id,
34
35
  type,
35
36
  connectionId,
37
+ instanceUrl,
36
38
  sandbox,
37
39
  enabled,
38
40
  companyCode,
@@ -9,6 +9,10 @@ Name | Type | Description | Notes
9
9
  **apiKey** | **string** | | [optional] [default to undefined]
10
10
  **accountId** | **string** | | [optional] [default to undefined]
11
11
  **licenseKey** | **string** | | [optional] [default to undefined]
12
+ **clientId** | **string** | | [optional] [default to undefined]
13
+ **clientSecret** | **string** | | [optional] [default to undefined]
14
+ **instanceUrl** | **string** | | [optional] [default to undefined]
15
+ **companyCode** | **string** | | [optional] [default to undefined]
12
16
 
13
17
  ## Example
14
18
 
@@ -20,6 +24,10 @@ const instance: TaxIntegrationCreateInputs = {
20
24
  apiKey,
21
25
  accountId,
22
26
  licenseKey,
27
+ clientId,
28
+ clientSecret,
29
+ instanceUrl,
30
+ companyCode,
23
31
  };
24
32
  ```
25
33
 
@@ -6,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **companyCode** | **string** | | [optional] [default to undefined]
9
+ **instanceUrl** | **string** | | [optional] [default to undefined]
9
10
  **commit** | **boolean** | | [optional] [default to undefined]
10
11
  **logging** | **boolean** | | [optional] [default to undefined]
11
12
  **passTaxCode** | **string** | | [optional] [default to undefined]
@@ -24,6 +25,7 @@ import { TaxIntegrationUpdateInputs } from '@connectedxm/admin-sdk';
24
25
 
25
26
  const instance: TaxIntegrationUpdateInputs = {
26
27
  companyCode,
28
+ instanceUrl,
27
29
  commit,
28
30
  logging,
29
31
  passTaxCode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.8.1",
3
+ "version": "7.9.2",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {