@growsober/types 1.0.8 → 1.0.9
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 +40 -7
- package/dist/generated.js +1 -1
- package/package.json +1 -1
- package/src/generated.ts +40 -7
package/package.json
CHANGED
package/src/generated.ts
CHANGED
|
@@ -6685,8 +6685,8 @@ export interface components {
|
|
|
6685
6685
|
userId: string;
|
|
6686
6686
|
slug: string;
|
|
6687
6687
|
displayName: string;
|
|
6688
|
-
bio?:
|
|
6689
|
-
avatarUrl?:
|
|
6688
|
+
bio?: string | null;
|
|
6689
|
+
avatarUrl?: string | null;
|
|
6690
6690
|
cityIds: string[];
|
|
6691
6691
|
canFacilitate: boolean;
|
|
6692
6692
|
canCreateContent: boolean;
|
|
@@ -7297,7 +7297,7 @@ export interface components {
|
|
|
7297
7297
|
*/
|
|
7298
7298
|
name: string;
|
|
7299
7299
|
/** @description Description of the gathering */
|
|
7300
|
-
description?:
|
|
7300
|
+
description?: string | null;
|
|
7301
7301
|
/**
|
|
7302
7302
|
* @description Duration in minutes
|
|
7303
7303
|
* @example 60
|
|
@@ -7310,8 +7310,21 @@ export interface components {
|
|
|
7310
7310
|
* @enum {string|null}
|
|
7311
7311
|
*/
|
|
7312
7312
|
category?: "WALK" | "COFFEE" | "MOVEMENT" | "CONVERSATION" | "CREATIVE" | "COWORKING" | null;
|
|
7313
|
-
/**
|
|
7314
|
-
|
|
7313
|
+
/**
|
|
7314
|
+
* @description Preferred time of day
|
|
7315
|
+
* @example Saturday morning (10am-12pm)
|
|
7316
|
+
*/
|
|
7317
|
+
timeOfDay?: string | null;
|
|
7318
|
+
/**
|
|
7319
|
+
* @description Suggested venue type
|
|
7320
|
+
* @example Cozy studio with natural light
|
|
7321
|
+
*/
|
|
7322
|
+
venueType?: string | null;
|
|
7323
|
+
/**
|
|
7324
|
+
* @description Suggested price (null = free)
|
|
7325
|
+
* @example 15
|
|
7326
|
+
*/
|
|
7327
|
+
suggestedPrice?: number | null;
|
|
7315
7328
|
/**
|
|
7316
7329
|
* @description Currency
|
|
7317
7330
|
* @example EUR
|
|
@@ -7322,9 +7335,9 @@ export interface components {
|
|
|
7322
7335
|
/** @description Whether the facilitator approved this */
|
|
7323
7336
|
isApproved: boolean;
|
|
7324
7337
|
/** @description AI prompt context for debugging */
|
|
7325
|
-
aiPromptContext?:
|
|
7338
|
+
aiPromptContext?: string | null;
|
|
7326
7339
|
/** @description Default venue ID */
|
|
7327
|
-
defaultVenueId?:
|
|
7340
|
+
defaultVenueId?: string | null;
|
|
7328
7341
|
/** @description Default venue details */
|
|
7329
7342
|
defaultVenue?: Record<string, never> | null;
|
|
7330
7343
|
/**
|
|
@@ -7359,6 +7372,16 @@ export interface components {
|
|
|
7359
7372
|
* @enum {string}
|
|
7360
7373
|
*/
|
|
7361
7374
|
category?: "WALK" | "COFFEE" | "MOVEMENT" | "CONVERSATION" | "CREATIVE" | "COWORKING";
|
|
7375
|
+
/**
|
|
7376
|
+
* @description Preferred time of day
|
|
7377
|
+
* @example Saturday morning (10am-12pm)
|
|
7378
|
+
*/
|
|
7379
|
+
timeOfDay?: string;
|
|
7380
|
+
/**
|
|
7381
|
+
* @description Suggested venue type
|
|
7382
|
+
* @example Cozy studio with natural light
|
|
7383
|
+
*/
|
|
7384
|
+
venueType?: string;
|
|
7362
7385
|
/** @description Suggested price (null = free) */
|
|
7363
7386
|
suggestedPrice?: number;
|
|
7364
7387
|
/**
|
|
@@ -7391,6 +7414,16 @@ export interface components {
|
|
|
7391
7414
|
* @enum {string}
|
|
7392
7415
|
*/
|
|
7393
7416
|
category?: "WALK" | "COFFEE" | "MOVEMENT" | "CONVERSATION" | "CREATIVE" | "COWORKING";
|
|
7417
|
+
/**
|
|
7418
|
+
* @description Preferred time of day
|
|
7419
|
+
* @example Saturday morning (10am-12pm)
|
|
7420
|
+
*/
|
|
7421
|
+
timeOfDay?: string;
|
|
7422
|
+
/**
|
|
7423
|
+
* @description Suggested venue type
|
|
7424
|
+
* @example Cozy studio with natural light
|
|
7425
|
+
*/
|
|
7426
|
+
venueType?: string;
|
|
7394
7427
|
/** @description Suggested price (null = free) */
|
|
7395
7428
|
suggestedPrice?: number;
|
|
7396
7429
|
/**
|