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