@growsober/types 1.0.15 → 1.0.16

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.
@@ -2216,6 +2216,23 @@ export interface paths {
2216
2216
  patch?: never;
2217
2217
  trace?: never;
2218
2218
  };
2219
+ "/venues/{idOrSlug}/offers": {
2220
+ parameters: {
2221
+ query?: never;
2222
+ header?: never;
2223
+ path?: never;
2224
+ cookie?: never;
2225
+ };
2226
+ /** Get active offers at a venue */
2227
+ get: operations["VenuesController_getVenueOffers"];
2228
+ put?: never;
2229
+ post?: never;
2230
+ delete?: never;
2231
+ options?: never;
2232
+ head?: never;
2233
+ patch?: never;
2234
+ trace?: never;
2235
+ };
2219
2236
  "/creators": {
2220
2237
  parameters: {
2221
2238
  query?: never;
@@ -7332,6 +7349,11 @@ export interface components {
7332
7349
  /** @example 2026-02-01 */
7333
7350
  date: string;
7334
7351
  slots: components["schemas"]["AvailableSlotDto"][];
7352
+ /**
7353
+ * @description Timezone of the slot times
7354
+ * @example Europe/London
7355
+ */
7356
+ timezone: string;
7335
7357
  };
7336
7358
  BrandResponseDto: {
7337
7359
  id: string;
@@ -7760,6 +7782,11 @@ export interface components {
7760
7782
  * @example EUR
7761
7783
  */
7762
7784
  currency: string;
7785
+ /**
7786
+ * @description Max participants
7787
+ * @example 20
7788
+ */
7789
+ maxParticipants?: number | null;
7763
7790
  /** @description Whether AI generated this suggestion */
7764
7791
  isAiGenerated: boolean;
7765
7792
  /** @description Whether the facilitator approved this */
@@ -7814,6 +7841,12 @@ export interface components {
7814
7841
  venueType?: string;
7815
7842
  /** @description Suggested price (null = free) */
7816
7843
  suggestedPrice?: number;
7844
+ /**
7845
+ * @description Max participants
7846
+ * @default 20
7847
+ * @example 20
7848
+ */
7849
+ maxParticipants: number;
7817
7850
  /**
7818
7851
  * @description Currency
7819
7852
  * @default EUR
@@ -7856,6 +7889,12 @@ export interface components {
7856
7889
  venueType?: string;
7857
7890
  /** @description Suggested price (null = free) */
7858
7891
  suggestedPrice?: number;
7892
+ /**
7893
+ * @description Max participants
7894
+ * @default 20
7895
+ * @example 20
7896
+ */
7897
+ maxParticipants: number;
7859
7898
  /**
7860
7899
  * @description Currency
7861
7900
  * @default EUR
@@ -13923,6 +13962,29 @@ export interface operations {
13923
13962
  };
13924
13963
  };
13925
13964
  };
13965
+ VenuesController_getVenueOffers: {
13966
+ parameters: {
13967
+ query?: never;
13968
+ header?: never;
13969
+ path: {
13970
+ /** @description Venue ID or slug */
13971
+ idOrSlug: string;
13972
+ };
13973
+ cookie?: never;
13974
+ };
13975
+ requestBody?: never;
13976
+ responses: {
13977
+ /** @description List of active offers */
13978
+ 200: {
13979
+ headers: {
13980
+ [name: string]: unknown;
13981
+ };
13982
+ content: {
13983
+ "application/json": components["schemas"]["OfferResponseDto"][];
13984
+ };
13985
+ };
13986
+ };
13987
+ };
13926
13988
  CreatorsController_findAll: {
13927
13989
  parameters: {
13928
13990
  query?: {