@growsober/types 1.0.11 → 1.0.12
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/generated.d.ts +30 -10
- package/dist/generated.js +1 -1
- package/package.json +1 -1
- package/src/generated.ts +30 -10
package/dist/generated.d.ts
CHANGED
|
@@ -5956,7 +5956,7 @@ export interface components {
|
|
|
5956
5956
|
onboardedAt?: string;
|
|
5957
5957
|
/**
|
|
5958
5958
|
* @description Default payout currency
|
|
5959
|
-
* @example
|
|
5959
|
+
* @example EUR
|
|
5960
5960
|
*/
|
|
5961
5961
|
defaultPayoutCurrency: string;
|
|
5962
5962
|
/** @description Requirements that need to be addressed (if any) */
|
|
@@ -5987,7 +5987,7 @@ export interface components {
|
|
|
5987
5987
|
availableBalance: number;
|
|
5988
5988
|
/**
|
|
5989
5989
|
* @description Currency code
|
|
5990
|
-
* @example
|
|
5990
|
+
* @example EUR
|
|
5991
5991
|
*/
|
|
5992
5992
|
currency: string;
|
|
5993
5993
|
/**
|
|
@@ -6029,7 +6029,7 @@ export interface components {
|
|
|
6029
6029
|
platformFee: number;
|
|
6030
6030
|
/**
|
|
6031
6031
|
* @description Currency code
|
|
6032
|
-
* @example
|
|
6032
|
+
* @example EUR
|
|
6033
6033
|
*/
|
|
6034
6034
|
currency: string;
|
|
6035
6035
|
/**
|
|
@@ -7193,7 +7193,7 @@ export interface components {
|
|
|
7193
7193
|
*/
|
|
7194
7194
|
certifications?: string[];
|
|
7195
7195
|
/**
|
|
7196
|
-
* @description Session rate in
|
|
7196
|
+
* @description Session rate in EUR
|
|
7197
7197
|
* @example 75
|
|
7198
7198
|
*/
|
|
7199
7199
|
sessionRate?: number;
|
|
@@ -7248,7 +7248,7 @@ export interface components {
|
|
|
7248
7248
|
*/
|
|
7249
7249
|
certifications?: string[];
|
|
7250
7250
|
/**
|
|
7251
|
-
* @description Session rate in
|
|
7251
|
+
* @description Session rate in EUR
|
|
7252
7252
|
* @example 75
|
|
7253
7253
|
*/
|
|
7254
7254
|
sessionRate?: number;
|
|
@@ -9329,7 +9329,7 @@ export interface components {
|
|
|
9329
9329
|
price?: Record<string, never>;
|
|
9330
9330
|
/**
|
|
9331
9331
|
* @description Currency code
|
|
9332
|
-
* @example
|
|
9332
|
+
* @example EUR
|
|
9333
9333
|
*/
|
|
9334
9334
|
currency: string;
|
|
9335
9335
|
/**
|
|
@@ -9542,17 +9542,27 @@ export interface components {
|
|
|
9542
9542
|
description?: string;
|
|
9543
9543
|
/** @example https://example.com/image.jpg */
|
|
9544
9544
|
imageUrl?: string;
|
|
9545
|
+
/** @example Sobriety Coaching */
|
|
9546
|
+
category?: string;
|
|
9547
|
+
/**
|
|
9548
|
+
* @example [
|
|
9549
|
+
* "coaching",
|
|
9550
|
+
* "recovery",
|
|
9551
|
+
* "wellness"
|
|
9552
|
+
* ]
|
|
9553
|
+
*/
|
|
9554
|
+
tags?: string[];
|
|
9545
9555
|
/**
|
|
9546
9556
|
* @example SESSION_1ON1
|
|
9547
9557
|
* @enum {string}
|
|
9548
9558
|
*/
|
|
9549
9559
|
type: "SESSION_1ON1" | "SESSION_GROUP" | "PACKAGE" | "WORKSHOP" | "CONSULTATION";
|
|
9550
9560
|
/**
|
|
9551
|
-
* @description Price in
|
|
9561
|
+
* @description Price in cents (5000 = €50.00)
|
|
9552
9562
|
* @example 5000
|
|
9553
9563
|
*/
|
|
9554
9564
|
price: number;
|
|
9555
|
-
/** @example
|
|
9565
|
+
/** @example EUR */
|
|
9556
9566
|
currency?: string;
|
|
9557
9567
|
/**
|
|
9558
9568
|
* @description Duration in minutes
|
|
@@ -9581,17 +9591,27 @@ export interface components {
|
|
|
9581
9591
|
description?: string;
|
|
9582
9592
|
/** @example https://example.com/image.jpg */
|
|
9583
9593
|
imageUrl?: string;
|
|
9594
|
+
/** @example Sobriety Coaching */
|
|
9595
|
+
category?: string;
|
|
9596
|
+
/**
|
|
9597
|
+
* @example [
|
|
9598
|
+
* "coaching",
|
|
9599
|
+
* "recovery",
|
|
9600
|
+
* "wellness"
|
|
9601
|
+
* ]
|
|
9602
|
+
*/
|
|
9603
|
+
tags?: string[];
|
|
9584
9604
|
/**
|
|
9585
9605
|
* @example SESSION_1ON1
|
|
9586
9606
|
* @enum {string}
|
|
9587
9607
|
*/
|
|
9588
9608
|
type?: "SESSION_1ON1" | "SESSION_GROUP" | "PACKAGE" | "WORKSHOP" | "CONSULTATION";
|
|
9589
9609
|
/**
|
|
9590
|
-
* @description Price in
|
|
9610
|
+
* @description Price in cents (5000 = €50.00)
|
|
9591
9611
|
* @example 5000
|
|
9592
9612
|
*/
|
|
9593
9613
|
price?: number;
|
|
9594
|
-
/** @example
|
|
9614
|
+
/** @example EUR */
|
|
9595
9615
|
currency?: string;
|
|
9596
9616
|
/**
|
|
9597
9617
|
* @description Duration in minutes
|