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