@gooday_corp/gooday-api-client 1.2.102 → 1.2.103
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/api.ts +27 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1033,6 +1033,31 @@ export interface BookingRulesPayloadDTO {
|
|
|
1033
1033
|
*/
|
|
1034
1034
|
'finalBookingTimeAbsolute': string;
|
|
1035
1035
|
}
|
|
1036
|
+
/**
|
|
1037
|
+
*
|
|
1038
|
+
* @export
|
|
1039
|
+
* @interface BookingServicePayload
|
|
1040
|
+
*/
|
|
1041
|
+
export interface BookingServicePayload {
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @type {string}
|
|
1045
|
+
* @memberof BookingServicePayload
|
|
1046
|
+
*/
|
|
1047
|
+
'selectedStaff': string;
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @type {number}
|
|
1051
|
+
* @memberof BookingServicePayload
|
|
1052
|
+
*/
|
|
1053
|
+
'quantity': number;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {string}
|
|
1057
|
+
* @memberof BookingServicePayload
|
|
1058
|
+
*/
|
|
1059
|
+
'serviceId': string;
|
|
1060
|
+
}
|
|
1036
1061
|
/**
|
|
1037
1062
|
*
|
|
1038
1063
|
* @export
|
|
@@ -5892,10 +5917,10 @@ export interface StripePlanUpsertResponseDTO {
|
|
|
5892
5917
|
export interface StripeSetupIntentPaymentPayloadDTO {
|
|
5893
5918
|
/**
|
|
5894
5919
|
*
|
|
5895
|
-
* @type {
|
|
5920
|
+
* @type {BookingServicePayload}
|
|
5896
5921
|
* @memberof StripeSetupIntentPaymentPayloadDTO
|
|
5897
5922
|
*/
|
|
5898
|
-
'service'?:
|
|
5923
|
+
'service'?: BookingServicePayload;
|
|
5899
5924
|
/**
|
|
5900
5925
|
*
|
|
5901
5926
|
* @type {string}
|