@gooday_corp/gooday-api-client 1.2.100 → 1.2.101

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.
Files changed (2) hide show
  1. package/api.ts +27 -2
  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
@@ -5842,10 +5867,10 @@ export interface StripePlanUpsertResponseDTO {
5842
5867
  export interface StripeSetupIntentPaymentPayloadDTO {
5843
5868
  /**
5844
5869
  *
5845
- * @type {Array<string>}
5870
+ * @type {BookingServicePayload}
5846
5871
  * @memberof StripeSetupIntentPaymentPayloadDTO
5847
5872
  */
5848
- 'service'?: Array<string>;
5873
+ 'service'?: BookingServicePayload;
5849
5874
  /**
5850
5875
  *
5851
5876
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.2.100",
3
+ "version": "1.2.101",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},