@connectedxm/admin-sdk 7.8.1 → 7.9.1
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/.openapi-generator/FILES +12 -1
- package/AdminApi.ts +3 -0
- package/README.md +17 -2
- package/api.ts +907 -106
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +512 -58
- package/dist/api.js +624 -107
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +512 -58
- package/dist/esm/api.js +592 -79
- package/docs/AccountsApi.md +0 -55
- package/docs/AddEventPassTypeExchangeTarget200Response.md +24 -0
- package/docs/BaseEventPassTypeExchangeTarget.md +38 -0
- package/docs/BasePassExchange.md +32 -0
- package/docs/Event.md +2 -0
- package/docs/EventCreateInputs.md +2 -0
- package/docs/EventPassTypeExchangeTarget.md +42 -0
- package/docs/EventUpdateInputs.md +2 -0
- package/docs/EventsPasstypesExchangetargetsApi.md +393 -0
- package/docs/ExchangeType.md +12 -0
- package/docs/GetEventPassTypeExchangeTargetExchanges200Response.md +26 -0
- package/docs/GetEventPassTypeExchangeTargets200Response.md +26 -0
- package/docs/{ImpersonateAccount200Response.md → JoinMeeting200Response.md} +3 -3
- package/docs/MeetingsApi.md +2 -2
- package/docs/PassExchange.md +38 -0
- package/docs/PassTypeExchangeTargetCreateInputs.md +30 -0
- package/docs/PassTypeExchangeTargetUpdateInputs.md +28 -0
- package/docs/Payment.md +2 -0
- package/package.json +1 -1
|
@@ -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
|
-
#
|
|
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 {
|
|
15
|
+
import { JoinMeeting200Response } from '@connectedxm/admin-sdk';
|
|
16
16
|
|
|
17
|
-
const instance:
|
|
17
|
+
const instance: JoinMeeting200Response = {
|
|
18
18
|
status,
|
|
19
19
|
message,
|
|
20
20
|
data,
|
package/docs/MeetingsApi.md
CHANGED
|
@@ -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
|
-
>
|
|
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
|
-
**
|
|
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
|
```
|