reach-api-sdk 1.0.176 → 1.0.177
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
CHANGED
|
@@ -2319,7 +2319,8 @@ type CancellationPolicy = {
|
|
|
2319
2319
|
*/
|
|
2320
2320
|
declare enum CheckoutPlatform {
|
|
2321
2321
|
PLAYED = "Played",
|
|
2322
|
-
EXTERNAL = "External"
|
|
2322
|
+
EXTERNAL = "External",
|
|
2323
|
+
EMAIL_PHONE = "EmailPhone"
|
|
2323
2324
|
}
|
|
2324
2325
|
|
|
2325
2326
|
/**
|
|
@@ -44127,6 +44128,7 @@ type TemplateDetail = {
|
|
|
44127
44128
|
*/
|
|
44128
44129
|
reminderHoursBeforeStart?: number | null;
|
|
44129
44130
|
bookingCutoff?: CourseBookingCutoff;
|
|
44131
|
+
checkoutPlatform?: CheckoutPlatform;
|
|
44130
44132
|
/**
|
|
44131
44133
|
* Gets or sets the booking link override if checkout will occur externally.
|
|
44132
44134
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -40384,6 +40384,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40384
40384
|
})(BookingStatus || {});var CheckoutPlatform = /* @__PURE__ */ ((CheckoutPlatform2) => {
|
|
40385
40385
|
CheckoutPlatform2["PLAYED"] = "Played";
|
|
40386
40386
|
CheckoutPlatform2["EXTERNAL"] = "External";
|
|
40387
|
+
CheckoutPlatform2["EMAIL_PHONE"] = "EmailPhone";
|
|
40387
40388
|
return CheckoutPlatform2;
|
|
40388
40389
|
})(CheckoutPlatform || {});var ContactOnConfirmation = /* @__PURE__ */ ((ContactOnConfirmation2) => {
|
|
40389
40390
|
ContactOnConfirmation2["ORGANISATION"] = "Organisation";
|
package/package.json
CHANGED
|
@@ -119019,6 +119019,7 @@ components:
|
|
|
119019
119019
|
enum:
|
|
119020
119020
|
- Played
|
|
119021
119021
|
- External
|
|
119022
|
+
- EmailPhone
|
|
119022
119023
|
type: string
|
|
119023
119024
|
description: The Checkout platform.
|
|
119024
119025
|
ChoiceMessage:
|
|
@@ -130261,6 +130262,8 @@ components:
|
|
|
130261
130262
|
nullable: true
|
|
130262
130263
|
bookingCutoff:
|
|
130263
130264
|
$ref: '#/components/schemas/CourseBookingCutoff'
|
|
130265
|
+
checkoutPlatform:
|
|
130266
|
+
$ref: '#/components/schemas/CheckoutPlatform'
|
|
130264
130267
|
bookingLinkOverride:
|
|
130265
130268
|
type: string
|
|
130266
130269
|
description: Gets or sets the booking link override if checkout will occur externally.
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { CheckoutPlatform } from './CheckoutPlatform';
|
|
6
7
|
import type { CourseBookingCutoff } from './CourseBookingCutoff';
|
|
7
8
|
import type { Deal } from './Deal';
|
|
8
9
|
import type { Gender } from './Gender';
|
|
@@ -151,6 +152,7 @@ export type TemplateDetail = {
|
|
|
151
152
|
*/
|
|
152
153
|
reminderHoursBeforeStart?: number | null;
|
|
153
154
|
bookingCutoff?: CourseBookingCutoff;
|
|
155
|
+
checkoutPlatform?: CheckoutPlatform;
|
|
154
156
|
/**
|
|
155
157
|
* Gets or sets the booking link override if checkout will occur externally.
|
|
156
158
|
*/
|