@growsober/types 1.0.12 → 1.0.14
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 +365 -35
- package/dist/generated.js +1 -1
- package/package.json +1 -1
- package/src/generated.ts +365 -35
package/dist/generated.d.ts
CHANGED
|
@@ -2128,6 +2128,23 @@ export interface paths {
|
|
|
2128
2128
|
patch?: never;
|
|
2129
2129
|
trace?: never;
|
|
2130
2130
|
};
|
|
2131
|
+
"/venues/me": {
|
|
2132
|
+
parameters: {
|
|
2133
|
+
query?: never;
|
|
2134
|
+
header?: never;
|
|
2135
|
+
path?: never;
|
|
2136
|
+
cookie?: never;
|
|
2137
|
+
};
|
|
2138
|
+
/** Get venues owned/managed by current user */
|
|
2139
|
+
get: operations["VenuesController_getMyVenues"];
|
|
2140
|
+
put?: never;
|
|
2141
|
+
post?: never;
|
|
2142
|
+
delete?: never;
|
|
2143
|
+
options?: never;
|
|
2144
|
+
head?: never;
|
|
2145
|
+
patch?: never;
|
|
2146
|
+
trace?: never;
|
|
2147
|
+
};
|
|
2131
2148
|
"/venues": {
|
|
2132
2149
|
parameters: {
|
|
2133
2150
|
query?: never;
|
|
@@ -2138,39 +2155,42 @@ export interface paths {
|
|
|
2138
2155
|
/** Get all venues with pagination and filters */
|
|
2139
2156
|
get: operations["VenuesController_findAll"];
|
|
2140
2157
|
put?: never;
|
|
2141
|
-
|
|
2158
|
+
/** Create a new venue */
|
|
2159
|
+
post: operations["VenuesController_create"];
|
|
2142
2160
|
delete?: never;
|
|
2143
2161
|
options?: never;
|
|
2144
2162
|
head?: never;
|
|
2145
2163
|
patch?: never;
|
|
2146
2164
|
trace?: never;
|
|
2147
2165
|
};
|
|
2148
|
-
"/venues/
|
|
2166
|
+
"/venues/{id}": {
|
|
2149
2167
|
parameters: {
|
|
2150
2168
|
query?: never;
|
|
2151
2169
|
header?: never;
|
|
2152
2170
|
path?: never;
|
|
2153
2171
|
cookie?: never;
|
|
2154
2172
|
};
|
|
2155
|
-
/** Get
|
|
2156
|
-
get: operations["
|
|
2157
|
-
|
|
2173
|
+
/** Get venue details by ID */
|
|
2174
|
+
get: operations["VenuesController_findById"];
|
|
2175
|
+
/** Update a venue */
|
|
2176
|
+
put: operations["VenuesController_update"];
|
|
2158
2177
|
post?: never;
|
|
2159
|
-
|
|
2178
|
+
/** Delete a venue */
|
|
2179
|
+
delete: operations["VenuesController_delete"];
|
|
2160
2180
|
options?: never;
|
|
2161
2181
|
head?: never;
|
|
2162
2182
|
patch?: never;
|
|
2163
2183
|
trace?: never;
|
|
2164
2184
|
};
|
|
2165
|
-
"/venues/
|
|
2185
|
+
"/venues/featured": {
|
|
2166
2186
|
parameters: {
|
|
2167
2187
|
query?: never;
|
|
2168
2188
|
header?: never;
|
|
2169
2189
|
path?: never;
|
|
2170
2190
|
cookie?: never;
|
|
2171
2191
|
};
|
|
2172
|
-
/** Get venues
|
|
2173
|
-
get: operations["
|
|
2192
|
+
/** Get featured venues */
|
|
2193
|
+
get: operations["VenuesController_getFeatured"];
|
|
2174
2194
|
put?: never;
|
|
2175
2195
|
post?: never;
|
|
2176
2196
|
delete?: never;
|
|
@@ -2179,15 +2199,15 @@ export interface paths {
|
|
|
2179
2199
|
patch?: never;
|
|
2180
2200
|
trace?: never;
|
|
2181
2201
|
};
|
|
2182
|
-
"/venues/
|
|
2202
|
+
"/venues/nearby": {
|
|
2183
2203
|
parameters: {
|
|
2184
2204
|
query?: never;
|
|
2185
2205
|
header?: never;
|
|
2186
2206
|
path?: never;
|
|
2187
2207
|
cookie?: never;
|
|
2188
2208
|
};
|
|
2189
|
-
/** Get
|
|
2190
|
-
get: operations["
|
|
2209
|
+
/** Get venues near a location */
|
|
2210
|
+
get: operations["VenuesController_getNearby"];
|
|
2191
2211
|
put?: never;
|
|
2192
2212
|
post?: never;
|
|
2193
2213
|
delete?: never;
|
|
@@ -4748,6 +4768,40 @@ export interface paths {
|
|
|
4748
4768
|
patch?: never;
|
|
4749
4769
|
trace?: never;
|
|
4750
4770
|
};
|
|
4771
|
+
"/creators/{creatorId}/products/bookings/{bookingId}/confirm": {
|
|
4772
|
+
parameters: {
|
|
4773
|
+
query?: never;
|
|
4774
|
+
header?: never;
|
|
4775
|
+
path?: never;
|
|
4776
|
+
cookie?: never;
|
|
4777
|
+
};
|
|
4778
|
+
get?: never;
|
|
4779
|
+
put?: never;
|
|
4780
|
+
/** Confirm a pending booking */
|
|
4781
|
+
post: operations["CreatorProductsController_confirmBooking"];
|
|
4782
|
+
delete?: never;
|
|
4783
|
+
options?: never;
|
|
4784
|
+
head?: never;
|
|
4785
|
+
patch?: never;
|
|
4786
|
+
trace?: never;
|
|
4787
|
+
};
|
|
4788
|
+
"/creators/{creatorId}/products/bookings/{bookingId}/complete": {
|
|
4789
|
+
parameters: {
|
|
4790
|
+
query?: never;
|
|
4791
|
+
header?: never;
|
|
4792
|
+
path?: never;
|
|
4793
|
+
cookie?: never;
|
|
4794
|
+
};
|
|
4795
|
+
get?: never;
|
|
4796
|
+
put?: never;
|
|
4797
|
+
/** Mark a booking as complete */
|
|
4798
|
+
post: operations["CreatorProductsController_completeBooking"];
|
|
4799
|
+
delete?: never;
|
|
4800
|
+
options?: never;
|
|
4801
|
+
head?: never;
|
|
4802
|
+
patch?: never;
|
|
4803
|
+
trace?: never;
|
|
4804
|
+
};
|
|
4751
4805
|
"/products/{productId}/book": {
|
|
4752
4806
|
parameters: {
|
|
4753
4807
|
query?: never;
|
|
@@ -7069,6 +7123,120 @@ export interface components {
|
|
|
7069
7123
|
*/
|
|
7070
7124
|
updatedAt: string;
|
|
7071
7125
|
};
|
|
7126
|
+
CreateVenueDto: {
|
|
7127
|
+
/** @example The Sober Spot */
|
|
7128
|
+
name: string;
|
|
7129
|
+
/** @example the-sober-spot */
|
|
7130
|
+
slug: string;
|
|
7131
|
+
/** @example A cozy coffee shop with amazing mocktails */
|
|
7132
|
+
description?: string;
|
|
7133
|
+
/**
|
|
7134
|
+
* @example COFFEE_SHOP
|
|
7135
|
+
* @enum {string}
|
|
7136
|
+
*/
|
|
7137
|
+
type: "COFFEE_SHOP" | "RESTAURANT" | "BAR" | "WELLNESS" | "VENUE" | "ACTIVITY" | "RETAIL" | "OTHER";
|
|
7138
|
+
/** @example true */
|
|
7139
|
+
hasAfDrinks?: boolean;
|
|
7140
|
+
/** @example false */
|
|
7141
|
+
isAfVenue?: boolean;
|
|
7142
|
+
/**
|
|
7143
|
+
* @example [
|
|
7144
|
+
* "Great mocktail menu",
|
|
7145
|
+
* "Quiet atmosphere"
|
|
7146
|
+
* ]
|
|
7147
|
+
*/
|
|
7148
|
+
afHighlights?: string[];
|
|
7149
|
+
/** @example 123 Main Street, Lisbon */
|
|
7150
|
+
address?: string;
|
|
7151
|
+
/** @example city-uuid */
|
|
7152
|
+
cityId?: string;
|
|
7153
|
+
/** @example 38.7223 */
|
|
7154
|
+
locationLat?: number;
|
|
7155
|
+
/** @example -9.1393 */
|
|
7156
|
+
locationLong?: number;
|
|
7157
|
+
/** @example +351 21 123 4567 */
|
|
7158
|
+
phone?: string;
|
|
7159
|
+
/** @example hello@soberspot.com */
|
|
7160
|
+
email?: string;
|
|
7161
|
+
/** @example https://soberspot.com */
|
|
7162
|
+
website?: string;
|
|
7163
|
+
/** @example @soberspot */
|
|
7164
|
+
instagram?: string;
|
|
7165
|
+
/** @example https://example.com/logo.jpg */
|
|
7166
|
+
profileImage?: string;
|
|
7167
|
+
/** @example https://example.com/banner.jpg */
|
|
7168
|
+
bannerImage?: string;
|
|
7169
|
+
/**
|
|
7170
|
+
* @example [
|
|
7171
|
+
* "https://example.com/photo1.jpg"
|
|
7172
|
+
* ]
|
|
7173
|
+
*/
|
|
7174
|
+
photos?: string[];
|
|
7175
|
+
/**
|
|
7176
|
+
* @example {
|
|
7177
|
+
* "mon": "09:00-17:00",
|
|
7178
|
+
* "tue": "09:00-17:00"
|
|
7179
|
+
* }
|
|
7180
|
+
*/
|
|
7181
|
+
openingHours?: Record<string, never>;
|
|
7182
|
+
};
|
|
7183
|
+
UpdateVenueDto: {
|
|
7184
|
+
/** @example The Sober Spot */
|
|
7185
|
+
name?: string;
|
|
7186
|
+
/** @example the-sober-spot */
|
|
7187
|
+
slug?: string;
|
|
7188
|
+
/** @example A cozy coffee shop with amazing mocktails */
|
|
7189
|
+
description?: string;
|
|
7190
|
+
/**
|
|
7191
|
+
* @example COFFEE_SHOP
|
|
7192
|
+
* @enum {string}
|
|
7193
|
+
*/
|
|
7194
|
+
type?: "COFFEE_SHOP" | "RESTAURANT" | "BAR" | "WELLNESS" | "VENUE" | "ACTIVITY" | "RETAIL" | "OTHER";
|
|
7195
|
+
/** @example true */
|
|
7196
|
+
hasAfDrinks?: boolean;
|
|
7197
|
+
/** @example false */
|
|
7198
|
+
isAfVenue?: boolean;
|
|
7199
|
+
/**
|
|
7200
|
+
* @example [
|
|
7201
|
+
* "Great mocktail menu",
|
|
7202
|
+
* "Quiet atmosphere"
|
|
7203
|
+
* ]
|
|
7204
|
+
*/
|
|
7205
|
+
afHighlights?: string[];
|
|
7206
|
+
/** @example 123 Main Street, Lisbon */
|
|
7207
|
+
address?: string;
|
|
7208
|
+
/** @example city-uuid */
|
|
7209
|
+
cityId?: string;
|
|
7210
|
+
/** @example 38.7223 */
|
|
7211
|
+
locationLat?: number;
|
|
7212
|
+
/** @example -9.1393 */
|
|
7213
|
+
locationLong?: number;
|
|
7214
|
+
/** @example +351 21 123 4567 */
|
|
7215
|
+
phone?: string;
|
|
7216
|
+
/** @example hello@soberspot.com */
|
|
7217
|
+
email?: string;
|
|
7218
|
+
/** @example https://soberspot.com */
|
|
7219
|
+
website?: string;
|
|
7220
|
+
/** @example @soberspot */
|
|
7221
|
+
instagram?: string;
|
|
7222
|
+
/** @example https://example.com/logo.jpg */
|
|
7223
|
+
profileImage?: string;
|
|
7224
|
+
/** @example https://example.com/banner.jpg */
|
|
7225
|
+
bannerImage?: string;
|
|
7226
|
+
/**
|
|
7227
|
+
* @example [
|
|
7228
|
+
* "https://example.com/photo1.jpg"
|
|
7229
|
+
* ]
|
|
7230
|
+
*/
|
|
7231
|
+
photos?: string[];
|
|
7232
|
+
/**
|
|
7233
|
+
* @example {
|
|
7234
|
+
* "mon": "09:00-17:00",
|
|
7235
|
+
* "tue": "09:00-17:00"
|
|
7236
|
+
* }
|
|
7237
|
+
*/
|
|
7238
|
+
openingHours?: Record<string, never>;
|
|
7239
|
+
};
|
|
7072
7240
|
VenueOwnerUserDto: {
|
|
7073
7241
|
/** @example user-123 */
|
|
7074
7242
|
id: string;
|
|
@@ -9581,6 +9749,11 @@ export interface components {
|
|
|
9581
9749
|
deliveryMethod: "VIDEO_CALL" | "PHONE_CALL" | "IN_PERSON" | "HYBRID";
|
|
9582
9750
|
/** @example London, UK */
|
|
9583
9751
|
locationDetails?: string;
|
|
9752
|
+
/**
|
|
9753
|
+
* @description Venue that offers this product
|
|
9754
|
+
* @example venue-uuid
|
|
9755
|
+
*/
|
|
9756
|
+
venueId?: string;
|
|
9584
9757
|
};
|
|
9585
9758
|
UpdateProductDto: {
|
|
9586
9759
|
/** @example 1:1 Coaching Session */
|
|
@@ -9630,6 +9803,11 @@ export interface components {
|
|
|
9630
9803
|
deliveryMethod?: "VIDEO_CALL" | "PHONE_CALL" | "IN_PERSON" | "HYBRID";
|
|
9631
9804
|
/** @example London, UK */
|
|
9632
9805
|
locationDetails?: string;
|
|
9806
|
+
/**
|
|
9807
|
+
* @description Venue that offers this product
|
|
9808
|
+
* @example venue-uuid
|
|
9809
|
+
*/
|
|
9810
|
+
venueId?: string;
|
|
9633
9811
|
/** @example true */
|
|
9634
9812
|
isActive?: boolean;
|
|
9635
9813
|
/** @example false */
|
|
@@ -13746,6 +13924,26 @@ export interface operations {
|
|
|
13746
13924
|
};
|
|
13747
13925
|
};
|
|
13748
13926
|
};
|
|
13927
|
+
VenuesController_getMyVenues: {
|
|
13928
|
+
parameters: {
|
|
13929
|
+
query?: never;
|
|
13930
|
+
header?: never;
|
|
13931
|
+
path?: never;
|
|
13932
|
+
cookie?: never;
|
|
13933
|
+
};
|
|
13934
|
+
requestBody?: never;
|
|
13935
|
+
responses: {
|
|
13936
|
+
/** @description List of user venues */
|
|
13937
|
+
200: {
|
|
13938
|
+
headers: {
|
|
13939
|
+
[name: string]: unknown;
|
|
13940
|
+
};
|
|
13941
|
+
content: {
|
|
13942
|
+
"application/json": components["schemas"]["VenueResponseDto"][];
|
|
13943
|
+
};
|
|
13944
|
+
};
|
|
13945
|
+
};
|
|
13946
|
+
};
|
|
13749
13947
|
VenuesController_findAll: {
|
|
13750
13948
|
parameters: {
|
|
13751
13949
|
query?: {
|
|
@@ -13778,54 +13976,61 @@ export interface operations {
|
|
|
13778
13976
|
};
|
|
13779
13977
|
};
|
|
13780
13978
|
};
|
|
13781
|
-
|
|
13979
|
+
VenuesController_create: {
|
|
13782
13980
|
parameters: {
|
|
13783
|
-
query?:
|
|
13784
|
-
limit?: number;
|
|
13785
|
-
};
|
|
13981
|
+
query?: never;
|
|
13786
13982
|
header?: never;
|
|
13787
13983
|
path?: never;
|
|
13788
13984
|
cookie?: never;
|
|
13789
13985
|
};
|
|
13790
|
-
requestBody
|
|
13986
|
+
requestBody: {
|
|
13987
|
+
content: {
|
|
13988
|
+
"application/json": components["schemas"]["CreateVenueDto"];
|
|
13989
|
+
};
|
|
13990
|
+
};
|
|
13791
13991
|
responses: {
|
|
13792
|
-
/** @description
|
|
13793
|
-
|
|
13992
|
+
/** @description Venue created */
|
|
13993
|
+
201: {
|
|
13794
13994
|
headers: {
|
|
13795
13995
|
[name: string]: unknown;
|
|
13796
13996
|
};
|
|
13797
13997
|
content: {
|
|
13798
|
-
"application/json": components["schemas"]["VenueResponseDto"]
|
|
13998
|
+
"application/json": components["schemas"]["VenueResponseDto"];
|
|
13799
13999
|
};
|
|
13800
14000
|
};
|
|
13801
14001
|
};
|
|
13802
14002
|
};
|
|
13803
|
-
|
|
14003
|
+
VenuesController_findById: {
|
|
13804
14004
|
parameters: {
|
|
13805
|
-
query
|
|
13806
|
-
lat: number;
|
|
13807
|
-
long: number;
|
|
13808
|
-
radius?: number;
|
|
13809
|
-
limit?: number;
|
|
13810
|
-
};
|
|
14005
|
+
query?: never;
|
|
13811
14006
|
header?: never;
|
|
13812
|
-
path
|
|
14007
|
+
path: {
|
|
14008
|
+
/** @description Venue ID */
|
|
14009
|
+
id: string;
|
|
14010
|
+
};
|
|
13813
14011
|
cookie?: never;
|
|
13814
14012
|
};
|
|
13815
14013
|
requestBody?: never;
|
|
13816
14014
|
responses: {
|
|
13817
|
-
/** @description
|
|
14015
|
+
/** @description Venue details */
|
|
13818
14016
|
200: {
|
|
13819
14017
|
headers: {
|
|
13820
14018
|
[name: string]: unknown;
|
|
13821
14019
|
};
|
|
13822
14020
|
content: {
|
|
13823
|
-
"application/json": components["schemas"]["VenueResponseDto"]
|
|
14021
|
+
"application/json": components["schemas"]["VenueResponseDto"];
|
|
13824
14022
|
};
|
|
13825
14023
|
};
|
|
14024
|
+
/** @description Venue not found */
|
|
14025
|
+
404: {
|
|
14026
|
+
headers: {
|
|
14027
|
+
[name: string]: unknown;
|
|
14028
|
+
};
|
|
14029
|
+
content?: never;
|
|
14030
|
+
};
|
|
13826
14031
|
};
|
|
13827
14032
|
};
|
|
13828
|
-
|
|
14033
|
+
VenuesController_update: {
|
|
13829
14034
|
parameters: {
|
|
13830
14035
|
query?: never;
|
|
13831
14036
|
header?: never;
|
|
@@ -13835,9 +14040,13 @@ export interface operations {
|
|
|
13835
14040
|
};
|
|
13836
14041
|
cookie?: never;
|
|
13837
14042
|
};
|
|
13838
|
-
requestBody
|
|
14043
|
+
requestBody: {
|
|
14044
|
+
content: {
|
|
14045
|
+
"application/json": components["schemas"]["UpdateVenueDto"];
|
|
14046
|
+
};
|
|
14047
|
+
};
|
|
13839
14048
|
responses: {
|
|
13840
|
-
/** @description Venue
|
|
14049
|
+
/** @description Venue updated */
|
|
13841
14050
|
200: {
|
|
13842
14051
|
headers: {
|
|
13843
14052
|
[name: string]: unknown;
|
|
@@ -13846,8 +14055,8 @@ export interface operations {
|
|
|
13846
14055
|
"application/json": components["schemas"]["VenueResponseDto"];
|
|
13847
14056
|
};
|
|
13848
14057
|
};
|
|
13849
|
-
/** @description
|
|
13850
|
-
|
|
14058
|
+
/** @description Not a venue owner/manager */
|
|
14059
|
+
403: {
|
|
13851
14060
|
headers: {
|
|
13852
14061
|
[name: string]: unknown;
|
|
13853
14062
|
};
|
|
@@ -13855,6 +14064,81 @@ export interface operations {
|
|
|
13855
14064
|
};
|
|
13856
14065
|
};
|
|
13857
14066
|
};
|
|
14067
|
+
VenuesController_delete: {
|
|
14068
|
+
parameters: {
|
|
14069
|
+
query?: never;
|
|
14070
|
+
header?: never;
|
|
14071
|
+
path: {
|
|
14072
|
+
/** @description Venue ID */
|
|
14073
|
+
id: string;
|
|
14074
|
+
};
|
|
14075
|
+
cookie?: never;
|
|
14076
|
+
};
|
|
14077
|
+
requestBody?: never;
|
|
14078
|
+
responses: {
|
|
14079
|
+
/** @description Venue deleted */
|
|
14080
|
+
200: {
|
|
14081
|
+
headers: {
|
|
14082
|
+
[name: string]: unknown;
|
|
14083
|
+
};
|
|
14084
|
+
content?: never;
|
|
14085
|
+
};
|
|
14086
|
+
/** @description Only OWNER role can delete */
|
|
14087
|
+
403: {
|
|
14088
|
+
headers: {
|
|
14089
|
+
[name: string]: unknown;
|
|
14090
|
+
};
|
|
14091
|
+
content?: never;
|
|
14092
|
+
};
|
|
14093
|
+
};
|
|
14094
|
+
};
|
|
14095
|
+
VenuesController_getFeatured: {
|
|
14096
|
+
parameters: {
|
|
14097
|
+
query?: {
|
|
14098
|
+
limit?: number;
|
|
14099
|
+
};
|
|
14100
|
+
header?: never;
|
|
14101
|
+
path?: never;
|
|
14102
|
+
cookie?: never;
|
|
14103
|
+
};
|
|
14104
|
+
requestBody?: never;
|
|
14105
|
+
responses: {
|
|
14106
|
+
/** @description List of featured venues */
|
|
14107
|
+
200: {
|
|
14108
|
+
headers: {
|
|
14109
|
+
[name: string]: unknown;
|
|
14110
|
+
};
|
|
14111
|
+
content: {
|
|
14112
|
+
"application/json": components["schemas"]["VenueResponseDto"][];
|
|
14113
|
+
};
|
|
14114
|
+
};
|
|
14115
|
+
};
|
|
14116
|
+
};
|
|
14117
|
+
VenuesController_getNearby: {
|
|
14118
|
+
parameters: {
|
|
14119
|
+
query: {
|
|
14120
|
+
lat: number;
|
|
14121
|
+
long: number;
|
|
14122
|
+
radius?: number;
|
|
14123
|
+
limit?: number;
|
|
14124
|
+
};
|
|
14125
|
+
header?: never;
|
|
14126
|
+
path?: never;
|
|
14127
|
+
cookie?: never;
|
|
14128
|
+
};
|
|
14129
|
+
requestBody?: never;
|
|
14130
|
+
responses: {
|
|
14131
|
+
/** @description List of nearby venues */
|
|
14132
|
+
200: {
|
|
14133
|
+
headers: {
|
|
14134
|
+
[name: string]: unknown;
|
|
14135
|
+
};
|
|
14136
|
+
content: {
|
|
14137
|
+
"application/json": components["schemas"]["VenueResponseDto"][];
|
|
14138
|
+
};
|
|
14139
|
+
};
|
|
14140
|
+
};
|
|
14141
|
+
};
|
|
13858
14142
|
VenuesController_getOwners: {
|
|
13859
14143
|
parameters: {
|
|
13860
14144
|
query?: never;
|
|
@@ -18589,6 +18873,52 @@ export interface operations {
|
|
|
18589
18873
|
};
|
|
18590
18874
|
};
|
|
18591
18875
|
};
|
|
18876
|
+
CreatorProductsController_confirmBooking: {
|
|
18877
|
+
parameters: {
|
|
18878
|
+
query?: never;
|
|
18879
|
+
header?: never;
|
|
18880
|
+
path: {
|
|
18881
|
+
/** @description Booking ID */
|
|
18882
|
+
bookingId: string;
|
|
18883
|
+
/** @description Creator ID */
|
|
18884
|
+
creatorId: unknown;
|
|
18885
|
+
};
|
|
18886
|
+
cookie?: never;
|
|
18887
|
+
};
|
|
18888
|
+
requestBody?: never;
|
|
18889
|
+
responses: {
|
|
18890
|
+
/** @description Booking confirmed */
|
|
18891
|
+
200: {
|
|
18892
|
+
headers: {
|
|
18893
|
+
[name: string]: unknown;
|
|
18894
|
+
};
|
|
18895
|
+
content?: never;
|
|
18896
|
+
};
|
|
18897
|
+
};
|
|
18898
|
+
};
|
|
18899
|
+
CreatorProductsController_completeBooking: {
|
|
18900
|
+
parameters: {
|
|
18901
|
+
query?: never;
|
|
18902
|
+
header?: never;
|
|
18903
|
+
path: {
|
|
18904
|
+
/** @description Booking ID */
|
|
18905
|
+
bookingId: string;
|
|
18906
|
+
/** @description Creator ID */
|
|
18907
|
+
creatorId: unknown;
|
|
18908
|
+
};
|
|
18909
|
+
cookie?: never;
|
|
18910
|
+
};
|
|
18911
|
+
requestBody?: never;
|
|
18912
|
+
responses: {
|
|
18913
|
+
/** @description Booking completed */
|
|
18914
|
+
200: {
|
|
18915
|
+
headers: {
|
|
18916
|
+
[name: string]: unknown;
|
|
18917
|
+
};
|
|
18918
|
+
content?: never;
|
|
18919
|
+
};
|
|
18920
|
+
};
|
|
18921
|
+
};
|
|
18592
18922
|
ProductBookingController_book: {
|
|
18593
18923
|
parameters: {
|
|
18594
18924
|
query?: never;
|