@tennac-booking/sdk 1.0.266 → 1.0.268
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/README.md +2 -2
- package/api.ts +41 -9
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +41 -9
- package/dist/api.js +3 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +41 -9
- package/dist/esm/api.js +3 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BookingSummary.md +2 -0
- package/docs/ClientSubscription.md +4 -4
- package/docs/EventDetailResponse.md +4 -0
- package/docs/NotificationType.md +4 -0
- package/docs/PublishEventResponse.md +4 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.267
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @tennac-booking/sdk@1.0.
|
|
39
|
+
npm install @tennac-booking/sdk@1.0.267 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* openapi.json
|
|
5
5
|
* Pandook API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.267
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1290,6 +1290,12 @@ export interface BookingSummary {
|
|
|
1290
1290
|
* @memberof BookingSummary
|
|
1291
1291
|
*/
|
|
1292
1292
|
'minLevel'?: string | null;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @type {number}
|
|
1296
|
+
* @memberof BookingSummary
|
|
1297
|
+
*/
|
|
1298
|
+
'maxPlayersDesired'?: number | null;
|
|
1293
1299
|
/**
|
|
1294
1300
|
*
|
|
1295
1301
|
* @type {Array<BookingPlayerInfo>}
|
|
@@ -2252,16 +2258,16 @@ export interface ClientSubscription {
|
|
|
2252
2258
|
'status': string;
|
|
2253
2259
|
/**
|
|
2254
2260
|
*
|
|
2255
|
-
* @type {
|
|
2261
|
+
* @type {string}
|
|
2256
2262
|
* @memberof ClientSubscription
|
|
2257
2263
|
*/
|
|
2258
|
-
'currentPeriodStart':
|
|
2264
|
+
'currentPeriodStart': string;
|
|
2259
2265
|
/**
|
|
2260
2266
|
*
|
|
2261
|
-
* @type {
|
|
2267
|
+
* @type {string}
|
|
2262
2268
|
* @memberof ClientSubscription
|
|
2263
2269
|
*/
|
|
2264
|
-
'currentPeriodEnd':
|
|
2270
|
+
'currentPeriodEnd': string;
|
|
2265
2271
|
/**
|
|
2266
2272
|
*
|
|
2267
2273
|
* @type {boolean}
|
|
@@ -2282,16 +2288,16 @@ export interface ClientSubscription {
|
|
|
2282
2288
|
'price'?: ClientSubscriptionPrice | null;
|
|
2283
2289
|
/**
|
|
2284
2290
|
*
|
|
2285
|
-
* @type {
|
|
2291
|
+
* @type {string}
|
|
2286
2292
|
* @memberof ClientSubscription
|
|
2287
2293
|
*/
|
|
2288
|
-
'dueDate'?:
|
|
2294
|
+
'dueDate'?: string | null;
|
|
2289
2295
|
/**
|
|
2290
2296
|
*
|
|
2291
|
-
* @type {
|
|
2297
|
+
* @type {string}
|
|
2292
2298
|
* @memberof ClientSubscription
|
|
2293
2299
|
*/
|
|
2294
|
-
'nextPaymentDate'?:
|
|
2300
|
+
'nextPaymentDate'?: string | null;
|
|
2295
2301
|
/**
|
|
2296
2302
|
*
|
|
2297
2303
|
* @type {ClientSubscriptionPaymentMethod}
|
|
@@ -7182,6 +7188,18 @@ export interface EventDetailResponse {
|
|
|
7182
7188
|
* @memberof EventDetailResponse
|
|
7183
7189
|
*/
|
|
7184
7190
|
'myPaymentLink'?: string | null;
|
|
7191
|
+
/**
|
|
7192
|
+
*
|
|
7193
|
+
* @type {string}
|
|
7194
|
+
* @memberof EventDetailResponse
|
|
7195
|
+
*/
|
|
7196
|
+
'paymentUrl'?: string | null;
|
|
7197
|
+
/**
|
|
7198
|
+
*
|
|
7199
|
+
* @type {string}
|
|
7200
|
+
* @memberof EventDetailResponse
|
|
7201
|
+
*/
|
|
7202
|
+
'paymentInvoiceId'?: string | null;
|
|
7185
7203
|
/**
|
|
7186
7204
|
*
|
|
7187
7205
|
* @type {string}
|
|
@@ -10809,6 +10827,8 @@ export const NotificationType = {
|
|
|
10809
10827
|
EventCancelled: 'event_cancelled',
|
|
10810
10828
|
OpenBookingJoined: 'open_booking_joined',
|
|
10811
10829
|
OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
|
|
10830
|
+
OpenBookingLeft: 'open_booking_left',
|
|
10831
|
+
OpenBookingCompleted: 'open_booking_completed',
|
|
10812
10832
|
WaitlistSpotAvailable: 'waitlist_spot_available',
|
|
10813
10833
|
WaitlistConfirmed: 'waitlist_confirmed',
|
|
10814
10834
|
SubscriptionConfirmed: 'subscription_confirmed',
|
|
@@ -12523,6 +12543,18 @@ export interface PublishEventResponse {
|
|
|
12523
12543
|
* @memberof PublishEventResponse
|
|
12524
12544
|
*/
|
|
12525
12545
|
'myPaymentLink'?: string;
|
|
12546
|
+
/**
|
|
12547
|
+
*
|
|
12548
|
+
* @type {string}
|
|
12549
|
+
* @memberof PublishEventResponse
|
|
12550
|
+
*/
|
|
12551
|
+
'paymentUrl'?: string | null;
|
|
12552
|
+
/**
|
|
12553
|
+
*
|
|
12554
|
+
* @type {string}
|
|
12555
|
+
* @memberof PublishEventResponse
|
|
12556
|
+
*/
|
|
12557
|
+
'paymentInvoiceId'?: string | null;
|
|
12526
12558
|
}
|
|
12527
12559
|
/**
|
|
12528
12560
|
*
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.267
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1261,6 +1261,12 @@ export interface BookingSummary {
|
|
|
1261
1261
|
* @memberof BookingSummary
|
|
1262
1262
|
*/
|
|
1263
1263
|
'minLevel'?: string | null;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {number}
|
|
1267
|
+
* @memberof BookingSummary
|
|
1268
|
+
*/
|
|
1269
|
+
'maxPlayersDesired'?: number | null;
|
|
1264
1270
|
/**
|
|
1265
1271
|
*
|
|
1266
1272
|
* @type {Array<BookingPlayerInfo>}
|
|
@@ -2205,16 +2211,16 @@ export interface ClientSubscription {
|
|
|
2205
2211
|
'status': string;
|
|
2206
2212
|
/**
|
|
2207
2213
|
*
|
|
2208
|
-
* @type {
|
|
2214
|
+
* @type {string}
|
|
2209
2215
|
* @memberof ClientSubscription
|
|
2210
2216
|
*/
|
|
2211
|
-
'currentPeriodStart':
|
|
2217
|
+
'currentPeriodStart': string;
|
|
2212
2218
|
/**
|
|
2213
2219
|
*
|
|
2214
|
-
* @type {
|
|
2220
|
+
* @type {string}
|
|
2215
2221
|
* @memberof ClientSubscription
|
|
2216
2222
|
*/
|
|
2217
|
-
'currentPeriodEnd':
|
|
2223
|
+
'currentPeriodEnd': string;
|
|
2218
2224
|
/**
|
|
2219
2225
|
*
|
|
2220
2226
|
* @type {boolean}
|
|
@@ -2235,16 +2241,16 @@ export interface ClientSubscription {
|
|
|
2235
2241
|
'price'?: ClientSubscriptionPrice | null;
|
|
2236
2242
|
/**
|
|
2237
2243
|
*
|
|
2238
|
-
* @type {
|
|
2244
|
+
* @type {string}
|
|
2239
2245
|
* @memberof ClientSubscription
|
|
2240
2246
|
*/
|
|
2241
|
-
'dueDate'?:
|
|
2247
|
+
'dueDate'?: string | null;
|
|
2242
2248
|
/**
|
|
2243
2249
|
*
|
|
2244
|
-
* @type {
|
|
2250
|
+
* @type {string}
|
|
2245
2251
|
* @memberof ClientSubscription
|
|
2246
2252
|
*/
|
|
2247
|
-
'nextPaymentDate'?:
|
|
2253
|
+
'nextPaymentDate'?: string | null;
|
|
2248
2254
|
/**
|
|
2249
2255
|
*
|
|
2250
2256
|
* @type {ClientSubscriptionPaymentMethod}
|
|
@@ -7077,6 +7083,18 @@ export interface EventDetailResponse {
|
|
|
7077
7083
|
* @memberof EventDetailResponse
|
|
7078
7084
|
*/
|
|
7079
7085
|
'myPaymentLink'?: string | null;
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {string}
|
|
7089
|
+
* @memberof EventDetailResponse
|
|
7090
|
+
*/
|
|
7091
|
+
'paymentUrl'?: string | null;
|
|
7092
|
+
/**
|
|
7093
|
+
*
|
|
7094
|
+
* @type {string}
|
|
7095
|
+
* @memberof EventDetailResponse
|
|
7096
|
+
*/
|
|
7097
|
+
'paymentInvoiceId'?: string | null;
|
|
7080
7098
|
/**
|
|
7081
7099
|
*
|
|
7082
7100
|
* @type {string}
|
|
@@ -10659,6 +10677,8 @@ export declare const NotificationType: {
|
|
|
10659
10677
|
readonly EventCancelled: "event_cancelled";
|
|
10660
10678
|
readonly OpenBookingJoined: "open_booking_joined";
|
|
10661
10679
|
readonly OpenBookingJoinConfirmed: "open_booking_join_confirmed";
|
|
10680
|
+
readonly OpenBookingLeft: "open_booking_left";
|
|
10681
|
+
readonly OpenBookingCompleted: "open_booking_completed";
|
|
10662
10682
|
readonly WaitlistSpotAvailable: "waitlist_spot_available";
|
|
10663
10683
|
readonly WaitlistConfirmed: "waitlist_confirmed";
|
|
10664
10684
|
readonly SubscriptionConfirmed: "subscription_confirmed";
|
|
@@ -12323,6 +12343,18 @@ export interface PublishEventResponse {
|
|
|
12323
12343
|
* @memberof PublishEventResponse
|
|
12324
12344
|
*/
|
|
12325
12345
|
'myPaymentLink'?: string;
|
|
12346
|
+
/**
|
|
12347
|
+
*
|
|
12348
|
+
* @type {string}
|
|
12349
|
+
* @memberof PublishEventResponse
|
|
12350
|
+
*/
|
|
12351
|
+
'paymentUrl'?: string | null;
|
|
12352
|
+
/**
|
|
12353
|
+
*
|
|
12354
|
+
* @type {string}
|
|
12355
|
+
* @memberof PublishEventResponse
|
|
12356
|
+
*/
|
|
12357
|
+
'paymentInvoiceId'?: string | null;
|
|
12326
12358
|
}
|
|
12327
12359
|
/**
|
|
12328
12360
|
*
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* openapi.json
|
|
6
6
|
* Pandook API Documentation
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.267
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -315,6 +315,8 @@ exports.NotificationType = {
|
|
|
315
315
|
EventCancelled: 'event_cancelled',
|
|
316
316
|
OpenBookingJoined: 'open_booking_joined',
|
|
317
317
|
OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
|
|
318
|
+
OpenBookingLeft: 'open_booking_left',
|
|
319
|
+
OpenBookingCompleted: 'open_booking_completed',
|
|
318
320
|
WaitlistSpotAvailable: 'waitlist_spot_available',
|
|
319
321
|
WaitlistConfirmed: 'waitlist_confirmed',
|
|
320
322
|
SubscriptionConfirmed: 'subscription_confirmed',
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.267
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1261,6 +1261,12 @@ export interface BookingSummary {
|
|
|
1261
1261
|
* @memberof BookingSummary
|
|
1262
1262
|
*/
|
|
1263
1263
|
'minLevel'?: string | null;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {number}
|
|
1267
|
+
* @memberof BookingSummary
|
|
1268
|
+
*/
|
|
1269
|
+
'maxPlayersDesired'?: number | null;
|
|
1264
1270
|
/**
|
|
1265
1271
|
*
|
|
1266
1272
|
* @type {Array<BookingPlayerInfo>}
|
|
@@ -2205,16 +2211,16 @@ export interface ClientSubscription {
|
|
|
2205
2211
|
'status': string;
|
|
2206
2212
|
/**
|
|
2207
2213
|
*
|
|
2208
|
-
* @type {
|
|
2214
|
+
* @type {string}
|
|
2209
2215
|
* @memberof ClientSubscription
|
|
2210
2216
|
*/
|
|
2211
|
-
'currentPeriodStart':
|
|
2217
|
+
'currentPeriodStart': string;
|
|
2212
2218
|
/**
|
|
2213
2219
|
*
|
|
2214
|
-
* @type {
|
|
2220
|
+
* @type {string}
|
|
2215
2221
|
* @memberof ClientSubscription
|
|
2216
2222
|
*/
|
|
2217
|
-
'currentPeriodEnd':
|
|
2223
|
+
'currentPeriodEnd': string;
|
|
2218
2224
|
/**
|
|
2219
2225
|
*
|
|
2220
2226
|
* @type {boolean}
|
|
@@ -2235,16 +2241,16 @@ export interface ClientSubscription {
|
|
|
2235
2241
|
'price'?: ClientSubscriptionPrice | null;
|
|
2236
2242
|
/**
|
|
2237
2243
|
*
|
|
2238
|
-
* @type {
|
|
2244
|
+
* @type {string}
|
|
2239
2245
|
* @memberof ClientSubscription
|
|
2240
2246
|
*/
|
|
2241
|
-
'dueDate'?:
|
|
2247
|
+
'dueDate'?: string | null;
|
|
2242
2248
|
/**
|
|
2243
2249
|
*
|
|
2244
|
-
* @type {
|
|
2250
|
+
* @type {string}
|
|
2245
2251
|
* @memberof ClientSubscription
|
|
2246
2252
|
*/
|
|
2247
|
-
'nextPaymentDate'?:
|
|
2253
|
+
'nextPaymentDate'?: string | null;
|
|
2248
2254
|
/**
|
|
2249
2255
|
*
|
|
2250
2256
|
* @type {ClientSubscriptionPaymentMethod}
|
|
@@ -7077,6 +7083,18 @@ export interface EventDetailResponse {
|
|
|
7077
7083
|
* @memberof EventDetailResponse
|
|
7078
7084
|
*/
|
|
7079
7085
|
'myPaymentLink'?: string | null;
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {string}
|
|
7089
|
+
* @memberof EventDetailResponse
|
|
7090
|
+
*/
|
|
7091
|
+
'paymentUrl'?: string | null;
|
|
7092
|
+
/**
|
|
7093
|
+
*
|
|
7094
|
+
* @type {string}
|
|
7095
|
+
* @memberof EventDetailResponse
|
|
7096
|
+
*/
|
|
7097
|
+
'paymentInvoiceId'?: string | null;
|
|
7080
7098
|
/**
|
|
7081
7099
|
*
|
|
7082
7100
|
* @type {string}
|
|
@@ -10659,6 +10677,8 @@ export declare const NotificationType: {
|
|
|
10659
10677
|
readonly EventCancelled: "event_cancelled";
|
|
10660
10678
|
readonly OpenBookingJoined: "open_booking_joined";
|
|
10661
10679
|
readonly OpenBookingJoinConfirmed: "open_booking_join_confirmed";
|
|
10680
|
+
readonly OpenBookingLeft: "open_booking_left";
|
|
10681
|
+
readonly OpenBookingCompleted: "open_booking_completed";
|
|
10662
10682
|
readonly WaitlistSpotAvailable: "waitlist_spot_available";
|
|
10663
10683
|
readonly WaitlistConfirmed: "waitlist_confirmed";
|
|
10664
10684
|
readonly SubscriptionConfirmed: "subscription_confirmed";
|
|
@@ -12323,6 +12343,18 @@ export interface PublishEventResponse {
|
|
|
12323
12343
|
* @memberof PublishEventResponse
|
|
12324
12344
|
*/
|
|
12325
12345
|
'myPaymentLink'?: string;
|
|
12346
|
+
/**
|
|
12347
|
+
*
|
|
12348
|
+
* @type {string}
|
|
12349
|
+
* @memberof PublishEventResponse
|
|
12350
|
+
*/
|
|
12351
|
+
'paymentUrl'?: string | null;
|
|
12352
|
+
/**
|
|
12353
|
+
*
|
|
12354
|
+
* @type {string}
|
|
12355
|
+
* @memberof PublishEventResponse
|
|
12356
|
+
*/
|
|
12357
|
+
'paymentInvoiceId'?: string | null;
|
|
12326
12358
|
}
|
|
12327
12359
|
/**
|
|
12328
12360
|
*
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* openapi.json
|
|
5
5
|
* Pandook API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.267
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -308,6 +308,8 @@ export const NotificationType = {
|
|
|
308
308
|
EventCancelled: 'event_cancelled',
|
|
309
309
|
OpenBookingJoined: 'open_booking_joined',
|
|
310
310
|
OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
|
|
311
|
+
OpenBookingLeft: 'open_booking_left',
|
|
312
|
+
OpenBookingCompleted: 'open_booking_completed',
|
|
311
313
|
WaitlistSpotAvailable: 'waitlist_spot_available',
|
|
312
314
|
WaitlistConfirmed: 'waitlist_confirmed',
|
|
313
315
|
SubscriptionConfirmed: 'subscription_confirmed',
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/docs/BookingSummary.md
CHANGED
|
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
|
|
|
18
18
|
**isOpen** | **boolean** | | [default to undefined]
|
|
19
19
|
**description** | **string** | | [optional] [default to undefined]
|
|
20
20
|
**minLevel** | **string** | | [optional] [default to undefined]
|
|
21
|
+
**maxPlayersDesired** | **number** | | [optional] [default to undefined]
|
|
21
22
|
**initialPlayers** | [**Array<BookingPlayerInfo>**](BookingPlayerInfo.md) | | [optional] [default to undefined]
|
|
22
23
|
**requestingUserId** | **string** | | [default to undefined]
|
|
23
24
|
**creatorPaymentMethodId** | **string** | | [optional] [default to undefined]
|
|
@@ -73,6 +74,7 @@ const instance: BookingSummary = {
|
|
|
73
74
|
isOpen,
|
|
74
75
|
description,
|
|
75
76
|
minLevel,
|
|
77
|
+
maxPlayersDesired,
|
|
76
78
|
initialPlayers,
|
|
77
79
|
requestingUserId,
|
|
78
80
|
creatorPaymentMethodId,
|
|
@@ -8,13 +8,13 @@ Name | Type | Description | Notes
|
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**id** | **string** | | [default to undefined]
|
|
10
10
|
**status** | **string** | | [default to undefined]
|
|
11
|
-
**currentPeriodStart** | **
|
|
12
|
-
**currentPeriodEnd** | **
|
|
11
|
+
**currentPeriodStart** | **string** | | [default to undefined]
|
|
12
|
+
**currentPeriodEnd** | **string** | | [default to undefined]
|
|
13
13
|
**cancelAtPeriodEnd** | **boolean** | | [default to undefined]
|
|
14
14
|
**items** | [**Array<ClientSubscriptionItem>**](ClientSubscriptionItem.md) | | [default to undefined]
|
|
15
15
|
**price** | [**ClientSubscriptionPrice**](ClientSubscriptionPrice.md) | | [optional] [default to undefined]
|
|
16
|
-
**dueDate** | **
|
|
17
|
-
**nextPaymentDate** | **
|
|
16
|
+
**dueDate** | **string** | | [optional] [default to undefined]
|
|
17
|
+
**nextPaymentDate** | **string** | | [optional] [default to undefined]
|
|
18
18
|
**paymentMethod** | [**ClientSubscriptionPaymentMethod**](ClientSubscriptionPaymentMethod.md) | | [optional] [default to undefined]
|
|
19
19
|
|
|
20
20
|
## Example
|
|
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**sponsors** | [**Array<EventDetailSponsor>**](EventDetailSponsor.md) | | [optional] [default to undefined]
|
|
18
18
|
**needsToSetupPaymentMethod** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**myPaymentLink** | **string** | | [optional] [default to undefined]
|
|
20
|
+
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
21
|
+
**paymentInvoiceId** | **string** | | [optional] [default to undefined]
|
|
20
22
|
**setupNoShowPaymentUrl** | **string** | | [optional] [default to undefined]
|
|
21
23
|
**userBooking** | [**EventBookingResponse**](EventBookingResponse.md) | | [optional] [default to undefined]
|
|
22
24
|
|
|
@@ -38,6 +40,8 @@ const instance: EventDetailResponse = {
|
|
|
38
40
|
sponsors,
|
|
39
41
|
needsToSetupPaymentMethod,
|
|
40
42
|
myPaymentLink,
|
|
43
|
+
paymentUrl,
|
|
44
|
+
paymentInvoiceId,
|
|
41
45
|
setupNoShowPaymentUrl,
|
|
42
46
|
userBooking,
|
|
43
47
|
};
|
package/docs/NotificationType.md
CHANGED
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
|
|
28
28
|
* `OpenBookingJoinConfirmed` (value: `'open_booking_join_confirmed'`)
|
|
29
29
|
|
|
30
|
+
* `OpenBookingLeft` (value: `'open_booking_left'`)
|
|
31
|
+
|
|
32
|
+
* `OpenBookingCompleted` (value: `'open_booking_completed'`)
|
|
33
|
+
|
|
30
34
|
* `WaitlistSpotAvailable` (value: `'waitlist_spot_available'`)
|
|
31
35
|
|
|
32
36
|
* `WaitlistConfirmed` (value: `'waitlist_confirmed'`)
|
|
@@ -10,6 +10,8 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**userBooking** | [**EventBookingResponse**](EventBookingResponse.md) | | [optional] [default to undefined]
|
|
11
11
|
**needsToSetupPaymentMethod** | **boolean** | | [optional] [default to undefined]
|
|
12
12
|
**myPaymentLink** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**paymentInvoiceId** | **string** | | [optional] [default to undefined]
|
|
13
15
|
|
|
14
16
|
## Example
|
|
15
17
|
|
|
@@ -22,6 +24,8 @@ const instance: PublishEventResponse = {
|
|
|
22
24
|
userBooking,
|
|
23
25
|
needsToSetupPaymentMethod,
|
|
24
26
|
myPaymentLink,
|
|
27
|
+
paymentUrl,
|
|
28
|
+
paymentInvoiceId,
|
|
25
29
|
};
|
|
26
30
|
```
|
|
27
31
|
|
package/index.ts
CHANGED