@gooday_corp/gooday-api-client 1.3.49 → 1.3.52

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/docs/AIApi.md CHANGED
@@ -5,6 +5,7 @@ All URIs are relative to *http://localhost:8080*
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
7
  |[**assistantControllerAiSuggestionList**](#assistantcontrolleraisuggestionlist) | **GET** /v1/ai/suggestion/list | |
8
+ |[**assistantControllerGenerateCategoriesFeed**](#assistantcontrollergeneratecategoriesfeed) | **GET** /v1/ai/category-feed | |
8
9
  |[**assistantControllerGenerateHomeFeed**](#assistantcontrollergeneratehomefeed) | **GET** /v1/ai/home-feed | |
9
10
  |[**assistantControllerListAssistants**](#assistantcontrollerlistassistants) | **GET** /v1/assistant/list | |
10
11
  |[**assistantControllerMyAssistant**](#assistantcontrollermyassistant) | **GET** /v1/assistant/me | |
@@ -55,6 +56,62 @@ const { status, data } = await apiInstance.assistantControllerAiSuggestionList(
55
56
  - **Accept**: application/json
56
57
 
57
58
 
59
+ ### HTTP response details
60
+ | Status code | Description | Response headers |
61
+ |-------------|-------------|------------------|
62
+ |**200** | | - |
63
+
64
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
65
+
66
+ # **assistantControllerGenerateCategoriesFeed**
67
+ > HomeFeedListResponseDTO assistantControllerGenerateCategoriesFeed()
68
+
69
+
70
+ ### Example
71
+
72
+ ```typescript
73
+ import {
74
+ AIApi,
75
+ Configuration
76
+ } from './api';
77
+
78
+ const configuration = new Configuration();
79
+ const apiInstance = new AIApi(configuration);
80
+
81
+ let page: number; // (optional) (default to 1)
82
+ let pageSize: number; // (optional) (default to 10)
83
+ let identifier: string; // (optional) (default to undefined)
84
+
85
+ const { status, data } = await apiInstance.assistantControllerGenerateCategoriesFeed(
86
+ page,
87
+ pageSize,
88
+ identifier
89
+ );
90
+ ```
91
+
92
+ ### Parameters
93
+
94
+ |Name | Type | Description | Notes|
95
+ |------------- | ------------- | ------------- | -------------|
96
+ | **page** | [**number**] | | (optional) defaults to 1|
97
+ | **pageSize** | [**number**] | | (optional) defaults to 10|
98
+ | **identifier** | [**string**] | | (optional) defaults to undefined|
99
+
100
+
101
+ ### Return type
102
+
103
+ **HomeFeedListResponseDTO**
104
+
105
+ ### Authorization
106
+
107
+ [bearer](../README.md#bearer)
108
+
109
+ ### HTTP request headers
110
+
111
+ - **Content-Type**: Not defined
112
+ - **Accept**: application/json
113
+
114
+
58
115
  ### HTTP response details
59
116
  | Status code | Description | Response headers |
60
117
  |-------------|-------------|------------------|
@@ -77,8 +134,8 @@ import {
77
134
  const configuration = new Configuration();
78
135
  const apiInstance = new AIApi(configuration);
79
136
 
80
- let page: number; // (optional) (default to undefined)
81
- let pageSize: number; // (optional) (default to undefined)
137
+ let page: number; // (optional) (default to 1)
138
+ let pageSize: number; // (optional) (default to 10)
82
139
 
83
140
  const { status, data } = await apiInstance.assistantControllerGenerateHomeFeed(
84
141
  page,
@@ -90,8 +147,8 @@ const { status, data } = await apiInstance.assistantControllerGenerateHomeFeed(
90
147
 
91
148
  |Name | Type | Description | Notes|
92
149
  |------------- | ------------- | ------------- | -------------|
93
- | **page** | [**number**] | | (optional) defaults to undefined|
94
- | **pageSize** | [**number**] | | (optional) defaults to undefined|
150
+ | **page** | [**number**] | | (optional) defaults to 1|
151
+ | **pageSize** | [**number**] | | (optional) defaults to 10|
95
152
 
96
153
 
97
154
  ### Return type
@@ -737,7 +737,7 @@ const { status, data } = await apiInstance.bookingControllerRescheduleBooking(
737
737
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
738
738
 
739
739
  # **bookingControllerTrendingEvents**
740
- > FindBookingResponseDTO bookingControllerTrendingEvents()
740
+ > FindBookingResponseDTO bookingControllerTrendingEvents(trendingFilterDTO)
741
741
 
742
742
 
743
743
  ### Example
@@ -745,17 +745,25 @@ const { status, data } = await apiInstance.bookingControllerRescheduleBooking(
745
745
  ```typescript
746
746
  import {
747
747
  BookingApi,
748
- Configuration
748
+ Configuration,
749
+ TrendingFilterDTO
749
750
  } from './api';
750
751
 
751
752
  const configuration = new Configuration();
752
753
  const apiInstance = new BookingApi(configuration);
753
754
 
754
- const { status, data } = await apiInstance.bookingControllerTrendingEvents();
755
+ let trendingFilterDTO: TrendingFilterDTO; //
756
+
757
+ const { status, data } = await apiInstance.bookingControllerTrendingEvents(
758
+ trendingFilterDTO
759
+ );
755
760
  ```
756
761
 
757
762
  ### Parameters
758
- This endpoint does not have any parameters.
763
+
764
+ |Name | Type | Description | Notes|
765
+ |------------- | ------------- | ------------- | -------------|
766
+ | **trendingFilterDTO** | **TrendingFilterDTO**| | |
759
767
 
760
768
 
761
769
  ### Return type
@@ -768,7 +776,7 @@ This endpoint does not have any parameters.
768
776
 
769
777
  ### HTTP request headers
770
778
 
771
- - **Content-Type**: Not defined
779
+ - **Content-Type**: application/json
772
780
  - **Accept**: application/json
773
781
 
774
782
 
@@ -12,15 +12,12 @@ All URIs are relative to *http://localhost:8080*
12
12
  |[**businessStaffControllerDeleteStaff**](#businessstaffcontrollerdeletestaff) | **DELETE** /v1/business-staff/{id} | |
13
13
  |[**businessStaffControllerFindBusinessStaffs**](#businessstaffcontrollerfindbusinessstaffs) | **POST** /v1/business-staff/list | |
14
14
  |[**businessStaffControllerFindByIdBusinessStaff**](#businessstaffcontrollerfindbyidbusinessstaff) | **GET** /v1/business-staff/{id} | |
15
- |[**businessStaffControllerFindVenueStaffs**](#businessstaffcontrollerfindvenuestaffs) | **POST** /v1/business-staff/public-list | |
16
15
  |[**businessStaffControllerSaveBusinessStaff**](#businessstaffcontrollersavebusinessstaff) | **POST** /v1/business-staff | |
17
16
  |[**businessStaffControllerUpdateStaff**](#businessstaffcontrollerupdatestaff) | **PUT** /v1/business-staff/{id} | |
18
17
  |[**businessTypeControllerFindFavoriteBusinessVenue**](#businesstypecontrollerfindfavoritebusinessvenue) | **GET** /v1/business/favorite/{id} | |
19
18
  |[**businessTypeControllerFindFavoriteBusinessVenueCount**](#businesstypecontrollerfindfavoritebusinessvenuecount) | **GET** /v1/business/favorite/count/{id} | |
20
19
  |[**businessTypeControllerFindFriendsFavoriteBusinessVenueList**](#businesstypecontrollerfindfriendsfavoritebusinessvenuelist) | **POST** /v1/business/friends/favorite | |
21
- |[**businessTypeControllerGetAllVenue**](#businesstypecontrollergetallvenue) | **POST** /v1/business/venues | |
22
20
  |[**businessTypeControllerGetBusinessVenue**](#businesstypecontrollergetbusinessvenue) | **POST** /v1/business/business-venue | |
23
- |[**businessTypeControllerGetVenueById**](#businesstypecontrollergetvenuebyid) | **POST** /v1/business/venue/{id} | |
24
21
  |[**businessTypeControllerHighlyRecommended**](#businesstypecontrollerhighlyrecommended) | **GET** /v1/business/highlyRecommended | |
25
22
  |[**businessTypeControllerListAllCategories**](#businesstypecontrollerlistallcategories) | **GET** /v1/business/categories | |
26
23
  |[**businessTypeControllerListBookingDurations**](#businesstypecontrollerlistbookingdurations) | **GET** /v1/business/booking-durations | |
@@ -417,57 +414,6 @@ const { status, data } = await apiInstance.businessStaffControllerFindByIdBusine
417
414
  - **Accept**: application/json
418
415
 
419
416
 
420
- ### HTTP response details
421
- | Status code | Description | Response headers |
422
- |-------------|-------------|------------------|
423
- |**200** | | - |
424
-
425
- [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
426
-
427
- # **businessStaffControllerFindVenueStaffs**
428
- > BusinessStaffsResponseDTO businessStaffControllerFindVenueStaffs(findBusinessStaff)
429
-
430
-
431
- ### Example
432
-
433
- ```typescript
434
- import {
435
- BusinessApi,
436
- Configuration,
437
- FindBusinessStaff
438
- } from './api';
439
-
440
- const configuration = new Configuration();
441
- const apiInstance = new BusinessApi(configuration);
442
-
443
- let findBusinessStaff: FindBusinessStaff; //
444
-
445
- const { status, data } = await apiInstance.businessStaffControllerFindVenueStaffs(
446
- findBusinessStaff
447
- );
448
- ```
449
-
450
- ### Parameters
451
-
452
- |Name | Type | Description | Notes|
453
- |------------- | ------------- | ------------- | -------------|
454
- | **findBusinessStaff** | **FindBusinessStaff**| | |
455
-
456
-
457
- ### Return type
458
-
459
- **BusinessStaffsResponseDTO**
460
-
461
- ### Authorization
462
-
463
- No authorization required
464
-
465
- ### HTTP request headers
466
-
467
- - **Content-Type**: application/json
468
- - **Accept**: application/json
469
-
470
-
471
417
  ### HTTP response details
472
418
  | Status code | Description | Response headers |
473
419
  |-------------|-------------|------------------|
@@ -724,57 +670,6 @@ const { status, data } = await apiInstance.businessTypeControllerFindFriendsFavo
724
670
  - **Accept**: application/json
725
671
 
726
672
 
727
- ### HTTP response details
728
- | Status code | Description | Response headers |
729
- |-------------|-------------|------------------|
730
- |**200** | | - |
731
-
732
- [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
733
-
734
- # **businessTypeControllerGetAllVenue**
735
- > BusinessVenueResponseDTO businessTypeControllerGetAllVenue(getAllVenueDto)
736
-
737
-
738
- ### Example
739
-
740
- ```typescript
741
- import {
742
- BusinessApi,
743
- Configuration,
744
- GetAllVenueDto
745
- } from './api';
746
-
747
- const configuration = new Configuration();
748
- const apiInstance = new BusinessApi(configuration);
749
-
750
- let getAllVenueDto: GetAllVenueDto; //
751
-
752
- const { status, data } = await apiInstance.businessTypeControllerGetAllVenue(
753
- getAllVenueDto
754
- );
755
- ```
756
-
757
- ### Parameters
758
-
759
- |Name | Type | Description | Notes|
760
- |------------- | ------------- | ------------- | -------------|
761
- | **getAllVenueDto** | **GetAllVenueDto**| | |
762
-
763
-
764
- ### Return type
765
-
766
- **BusinessVenueResponseDTO**
767
-
768
- ### Authorization
769
-
770
- No authorization required
771
-
772
- ### HTTP request headers
773
-
774
- - **Content-Type**: application/json
775
- - **Accept**: application/json
776
-
777
-
778
673
  ### HTTP response details
779
674
  | Status code | Description | Response headers |
780
675
  |-------------|-------------|------------------|
@@ -826,56 +721,6 @@ const { status, data } = await apiInstance.businessTypeControllerGetBusinessVenu
826
721
  - **Accept**: application/json
827
722
 
828
723
 
829
- ### HTTP response details
830
- | Status code | Description | Response headers |
831
- |-------------|-------------|------------------|
832
- |**200** | | - |
833
-
834
- [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
835
-
836
- # **businessTypeControllerGetVenueById**
837
- > VenueResponseDTO businessTypeControllerGetVenueById()
838
-
839
-
840
- ### Example
841
-
842
- ```typescript
843
- import {
844
- BusinessApi,
845
- Configuration
846
- } from './api';
847
-
848
- const configuration = new Configuration();
849
- const apiInstance = new BusinessApi(configuration);
850
-
851
- let id: string; // (default to undefined)
852
-
853
- const { status, data } = await apiInstance.businessTypeControllerGetVenueById(
854
- id
855
- );
856
- ```
857
-
858
- ### Parameters
859
-
860
- |Name | Type | Description | Notes|
861
- |------------- | ------------- | ------------- | -------------|
862
- | **id** | [**string**] | | defaults to undefined|
863
-
864
-
865
- ### Return type
866
-
867
- **VenueResponseDTO**
868
-
869
- ### Authorization
870
-
871
- No authorization required
872
-
873
- ### HTTP request headers
874
-
875
- - **Content-Type**: Not defined
876
- - **Accept**: application/json
877
-
878
-
879
724
  ### HTTP response details
880
725
  | Status code | Description | Response headers |
881
726
  |-------------|-------------|------------------|
@@ -941,11 +786,18 @@ import {
941
786
  const configuration = new Configuration();
942
787
  const apiInstance = new BusinessApi(configuration);
943
788
 
944
- const { status, data } = await apiInstance.businessTypeControllerListAllCategories();
789
+ let id: string; //Unique identifier for the category (optional) (default to undefined)
790
+
791
+ const { status, data } = await apiInstance.businessTypeControllerListAllCategories(
792
+ id
793
+ );
945
794
  ```
946
795
 
947
796
  ### Parameters
948
- This endpoint does not have any parameters.
797
+
798
+ |Name | Type | Description | Notes|
799
+ |------------- | ------------- | ------------- | -------------|
800
+ | **id** | [**string**] | Unique identifier for the category | (optional) defaults to undefined|
949
801
 
950
802
 
951
803
  ### Return type
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **date** | **string** | The start date of the booking | [default to 2025-05-07T15:23:06+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-07T19:02:41+05:30]
10
10
  **from** | **string** | | [optional] [default to undefined]
11
11
  **to** | **string** | | [optional] [default to undefined]
12
12
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -5,7 +5,11 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **productID** | **string** | Product ID | [default to undefined]
8
+ **currency** | **string** | Currency in which the payment is made | [default to undefined]
9
+ **interval** | **string** | Recurring interval for the payment | [default to undefined]
10
+ **amount** | **number** | Amount to be charged in the smallest currency unit (e.g., cents for USD) | [default to undefined]
11
+ **name** | **string** | Name of the product or service for which payment is being made | [default to undefined]
12
+ **user** | **string** | User Id | [default to undefined]
9
13
 
10
14
  ## Example
11
15
 
@@ -13,7 +17,11 @@ Name | Type | Description | Notes
13
17
  import { CreatePaymentLinkDTO } from './api';
14
18
 
15
19
  const instance: CreatePaymentLinkDTO = {
16
- productID,
20
+ currency,
21
+ interval,
22
+ amount,
23
+ name,
24
+ user,
17
25
  };
18
26
  ```
19
27
 
package/docs/PlansApi.md CHANGED
@@ -11,7 +11,6 @@ All URIs are relative to *http://localhost:8080*
11
11
  |[**paymentControllerGetPlans**](#paymentcontrollergetplans) | **GET** /v1/payment/plans | |
12
12
  |[**paymentControllerRetrieveConnectedAccount**](#paymentcontrollerretrieveconnectedaccount) | **GET** /v1/payment/connected-account | |
13
13
  |[**paymentControllerRevenueCatWebhook**](#paymentcontrollerrevenuecatwebhook) | **POST** /v1/payment/revenuecat-webhook | |
14
- |[**paymentControllerServiceById**](#paymentcontrollerservicebyid) | **GET** /v1/payment/stripe-plan/{id} | |
15
14
  |[**paymentControllerSetupBookingPayment**](#paymentcontrollersetupbookingpayment) | **POST** /v1/payment/booking | |
16
15
  |[**paymentControllerStripeWebhook**](#paymentcontrollerstripewebhook) | **POST** /v1/payment/stripe-webhook | |
17
16
 
@@ -137,7 +136,7 @@ void (empty response body)
137
136
 
138
137
  ### Authorization
139
138
 
140
- [bearer](../README.md#bearer)
139
+ No authorization required
141
140
 
142
141
  ### HTTP request headers
143
142
 
@@ -324,56 +323,6 @@ No authorization required
324
323
 
325
324
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
326
325
 
327
- # **paymentControllerServiceById**
328
- > ProductResponseDTO paymentControllerServiceById()
329
-
330
-
331
- ### Example
332
-
333
- ```typescript
334
- import {
335
- PlansApi,
336
- Configuration
337
- } from './api';
338
-
339
- const configuration = new Configuration();
340
- const apiInstance = new PlansApi(configuration);
341
-
342
- let id: string; // (default to undefined)
343
-
344
- const { status, data } = await apiInstance.paymentControllerServiceById(
345
- id
346
- );
347
- ```
348
-
349
- ### Parameters
350
-
351
- |Name | Type | Description | Notes|
352
- |------------- | ------------- | ------------- | -------------|
353
- | **id** | [**string**] | | defaults to undefined|
354
-
355
-
356
- ### Return type
357
-
358
- **ProductResponseDTO**
359
-
360
- ### Authorization
361
-
362
- No authorization required
363
-
364
- ### HTTP request headers
365
-
366
- - **Content-Type**: Not defined
367
- - **Accept**: application/json
368
-
369
-
370
- ### HTTP response details
371
- | Status code | Description | Response headers |
372
- |-------------|-------------|------------------|
373
- |**200** | | - |
374
-
375
- [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
376
-
377
326
  # **paymentControllerSetupBookingPayment**
378
327
  > BookingPaymentCreateResponseDTO paymentControllerSetupBookingPayment(bookingPaymentPayloadDTO)
379
328
 
@@ -9,7 +9,6 @@ All URIs are relative to *http://localhost:8080*
9
9
  |[**prepaidServiceControllerDeleteService**](#prepaidservicecontrollerdeleteservice) | **PUT** /v1/prepaid-service/delete/{id} | |
10
10
  |[**prepaidServiceControllerDiscountCodeApply**](#prepaidservicecontrollerdiscountcodeapply) | **POST** /v1/prepaid-service/discount | |
11
11
  |[**prepaidServiceControllerFindService**](#prepaidservicecontrollerfindservice) | **POST** /v1/prepaid-service/list | |
12
- |[**prepaidServiceControllerFindServiceByVenue**](#prepaidservicecontrollerfindservicebyvenue) | **POST** /v1/prepaid-service/public-list | |
13
12
  |[**prepaidServiceControllerPrepaidServiceAvailability**](#prepaidservicecontrollerprepaidserviceavailability) | **POST** /v1/prepaid-service/availability | |
14
13
  |[**prepaidServiceControllerServiceById**](#prepaidservicecontrollerservicebyid) | **GET** /v1/prepaid-service/{id} | |
15
14
  |[**prepaidServiceControllerUpdateTagById**](#prepaidservicecontrollerupdatetagbyid) | **PUT** /v1/prepaid-service/{id} | |
@@ -253,57 +252,6 @@ const { status, data } = await apiInstance.prepaidServiceControllerFindService(
253
252
  - **Accept**: application/json
254
253
 
255
254
 
256
- ### HTTP response details
257
- | Status code | Description | Response headers |
258
- |-------------|-------------|------------------|
259
- |**200** | | - |
260
-
261
- [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
262
-
263
- # **prepaidServiceControllerFindServiceByVenue**
264
- > PrepaidServiceResponseDTO prepaidServiceControllerFindServiceByVenue(prepaidServiceFindDTO)
265
-
266
-
267
- ### Example
268
-
269
- ```typescript
270
- import {
271
- PrepaidServiceApi,
272
- Configuration,
273
- PrepaidServiceFindDTO
274
- } from './api';
275
-
276
- const configuration = new Configuration();
277
- const apiInstance = new PrepaidServiceApi(configuration);
278
-
279
- let prepaidServiceFindDTO: PrepaidServiceFindDTO; //
280
-
281
- const { status, data } = await apiInstance.prepaidServiceControllerFindServiceByVenue(
282
- prepaidServiceFindDTO
283
- );
284
- ```
285
-
286
- ### Parameters
287
-
288
- |Name | Type | Description | Notes|
289
- |------------- | ------------- | ------------- | -------------|
290
- | **prepaidServiceFindDTO** | **PrepaidServiceFindDTO**| | |
291
-
292
-
293
- ### Return type
294
-
295
- **PrepaidServiceResponseDTO**
296
-
297
- ### Authorization
298
-
299
- No authorization required
300
-
301
- ### HTTP request headers
302
-
303
- - **Content-Type**: application/json
304
- - **Accept**: application/json
305
-
306
-
307
255
  ### HTTP response details
308
256
  | Status code | Description | Response headers |
309
257
  |-------------|-------------|------------------|
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **date** | **string** | The start date of the booking | [default to 2025-05-07T15:23:06+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-07T19:02:41+05:30]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
 
@@ -1,21 +1,19 @@
1
- # ProductResponseDTO
1
+ # TrendingFilterDTO
2
2
 
3
3
 
4
4
  ## Properties
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **data** | **object** | | [default to undefined]
9
- **statusCode** | **number** | statusCode | [default to undefined]
8
+ **category** | **string** | | [optional] [default to undefined]
10
9
 
11
10
  ## Example
12
11
 
13
12
  ```typescript
14
- import { ProductResponseDTO } from './api';
13
+ import { TrendingFilterDTO } from './api';
15
14
 
16
- const instance: ProductResponseDTO = {
17
- data,
18
- statusCode,
15
+ const instance: TrendingFilterDTO = {
16
+ category,
19
17
  };
20
18
  ```
21
19
 
@@ -21,7 +21,6 @@ Name | Type | Description | Notes
21
21
  **mobileNumber** | **string** | Phone No | [optional] [default to undefined]
22
22
  **gender** | **string** | User gender | [optional] [default to undefined]
23
23
  **isEmailVerified** | **boolean** | Indicates whether the user\'s email has been verified | [default to undefined]
24
- **subscription** | **string** | Indicates whether the business owner subscription status | [default to undefined]
25
24
  **calendar** | **string** | Primary user calendar | [default to undefined]
26
25
  **role** | **string** | Role of the user in the system | [default to undefined]
27
26
  **goals** | **Array<string>** | Goals why user is using the product | [default to undefined]
@@ -54,7 +53,6 @@ const instance: UserEntity = {
54
53
  mobileNumber,
55
54
  gender,
56
55
  isEmailVerified,
57
- subscription,
58
56
  calendar,
59
57
  role,
60
58
  goals,
@@ -5,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **startDate** | **string** | The start date of the waitlist | [default to 2025-05-07T15:23:06+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-07T16:23:06+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-07T19:02:41+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-07T20:02:41+05:30]
10
10
  **venue** | **string** | The venue of the waitlist | [default to undefined]
11
11
  **business** | **string** | The business associated with the waitlist | [default to undefined]
12
12
  **collaborators** | [**Array<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]