@gooday_corp/gooday-api-client 1.3.55 → 1.3.56

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,16 +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
- |[**businessTypeControllerGetFavoriteVenueCount**](#businesstypecontrollergetfavoritevenuecount) | **GET** /v1/business/public/favorite/count/{id} | |
24
- |[**businessTypeControllerGetVenueById**](#businesstypecontrollergetvenuebyid) | **POST** /v1/business/venue/{id} | |
25
21
  |[**businessTypeControllerHighlyRecommended**](#businesstypecontrollerhighlyrecommended) | **GET** /v1/business/highlyRecommended | |
26
22
  |[**businessTypeControllerListAllCategories**](#businesstypecontrollerlistallcategories) | **GET** /v1/business/categories | |
27
23
  |[**businessTypeControllerListBookingDurations**](#businesstypecontrollerlistbookingdurations) | **GET** /v1/business/booking-durations | |
@@ -418,57 +414,6 @@ const { status, data } = await apiInstance.businessStaffControllerFindByIdBusine
418
414
  - **Accept**: application/json
419
415
 
420
416
 
421
- ### HTTP response details
422
- | Status code | Description | Response headers |
423
- |-------------|-------------|------------------|
424
- |**200** | | - |
425
-
426
- [[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)
427
-
428
- # **businessStaffControllerFindVenueStaffs**
429
- > BusinessStaffsResponseDTO businessStaffControllerFindVenueStaffs(findBusinessStaff)
430
-
431
-
432
- ### Example
433
-
434
- ```typescript
435
- import {
436
- BusinessApi,
437
- Configuration,
438
- FindBusinessStaff
439
- } from './api';
440
-
441
- const configuration = new Configuration();
442
- const apiInstance = new BusinessApi(configuration);
443
-
444
- let findBusinessStaff: FindBusinessStaff; //
445
-
446
- const { status, data } = await apiInstance.businessStaffControllerFindVenueStaffs(
447
- findBusinessStaff
448
- );
449
- ```
450
-
451
- ### Parameters
452
-
453
- |Name | Type | Description | Notes|
454
- |------------- | ------------- | ------------- | -------------|
455
- | **findBusinessStaff** | **FindBusinessStaff**| | |
456
-
457
-
458
- ### Return type
459
-
460
- **BusinessStaffsResponseDTO**
461
-
462
- ### Authorization
463
-
464
- No authorization required
465
-
466
- ### HTTP request headers
467
-
468
- - **Content-Type**: application/json
469
- - **Accept**: application/json
470
-
471
-
472
417
  ### HTTP response details
473
418
  | Status code | Description | Response headers |
474
419
  |-------------|-------------|------------------|
@@ -725,57 +670,6 @@ const { status, data } = await apiInstance.businessTypeControllerFindFriendsFavo
725
670
  - **Accept**: application/json
726
671
 
727
672
 
728
- ### HTTP response details
729
- | Status code | Description | Response headers |
730
- |-------------|-------------|------------------|
731
- |**200** | | - |
732
-
733
- [[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)
734
-
735
- # **businessTypeControllerGetAllVenue**
736
- > BusinessVenueResponseDTO businessTypeControllerGetAllVenue(getAllVenueDto)
737
-
738
-
739
- ### Example
740
-
741
- ```typescript
742
- import {
743
- BusinessApi,
744
- Configuration,
745
- GetAllVenueDto
746
- } from './api';
747
-
748
- const configuration = new Configuration();
749
- const apiInstance = new BusinessApi(configuration);
750
-
751
- let getAllVenueDto: GetAllVenueDto; //
752
-
753
- const { status, data } = await apiInstance.businessTypeControllerGetAllVenue(
754
- getAllVenueDto
755
- );
756
- ```
757
-
758
- ### Parameters
759
-
760
- |Name | Type | Description | Notes|
761
- |------------- | ------------- | ------------- | -------------|
762
- | **getAllVenueDto** | **GetAllVenueDto**| | |
763
-
764
-
765
- ### Return type
766
-
767
- **BusinessVenueResponseDTO**
768
-
769
- ### Authorization
770
-
771
- No authorization required
772
-
773
- ### HTTP request headers
774
-
775
- - **Content-Type**: application/json
776
- - **Accept**: application/json
777
-
778
-
779
673
  ### HTTP response details
780
674
  | Status code | Description | Response headers |
781
675
  |-------------|-------------|------------------|
@@ -827,106 +721,6 @@ const { status, data } = await apiInstance.businessTypeControllerGetBusinessVenu
827
721
  - **Accept**: application/json
828
722
 
829
723
 
830
- ### HTTP response details
831
- | Status code | Description | Response headers |
832
- |-------------|-------------|------------------|
833
- |**200** | | - |
834
-
835
- [[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)
836
-
837
- # **businessTypeControllerGetFavoriteVenueCount**
838
- > FavoriteResponseDTO businessTypeControllerGetFavoriteVenueCount()
839
-
840
-
841
- ### Example
842
-
843
- ```typescript
844
- import {
845
- BusinessApi,
846
- Configuration
847
- } from './api';
848
-
849
- const configuration = new Configuration();
850
- const apiInstance = new BusinessApi(configuration);
851
-
852
- let id: string; // (default to undefined)
853
-
854
- const { status, data } = await apiInstance.businessTypeControllerGetFavoriteVenueCount(
855
- id
856
- );
857
- ```
858
-
859
- ### Parameters
860
-
861
- |Name | Type | Description | Notes|
862
- |------------- | ------------- | ------------- | -------------|
863
- | **id** | [**string**] | | defaults to undefined|
864
-
865
-
866
- ### Return type
867
-
868
- **FavoriteResponseDTO**
869
-
870
- ### Authorization
871
-
872
- No authorization required
873
-
874
- ### HTTP request headers
875
-
876
- - **Content-Type**: Not defined
877
- - **Accept**: application/json
878
-
879
-
880
- ### HTTP response details
881
- | Status code | Description | Response headers |
882
- |-------------|-------------|------------------|
883
- |**200** | | - |
884
-
885
- [[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)
886
-
887
- # **businessTypeControllerGetVenueById**
888
- > VenueResponseDTO businessTypeControllerGetVenueById()
889
-
890
-
891
- ### Example
892
-
893
- ```typescript
894
- import {
895
- BusinessApi,
896
- Configuration
897
- } from './api';
898
-
899
- const configuration = new Configuration();
900
- const apiInstance = new BusinessApi(configuration);
901
-
902
- let id: string; // (default to undefined)
903
-
904
- const { status, data } = await apiInstance.businessTypeControllerGetVenueById(
905
- id
906
- );
907
- ```
908
-
909
- ### Parameters
910
-
911
- |Name | Type | Description | Notes|
912
- |------------- | ------------- | ------------- | -------------|
913
- | **id** | [**string**] | | defaults to undefined|
914
-
915
-
916
- ### Return type
917
-
918
- **VenueResponseDTO**
919
-
920
- ### Authorization
921
-
922
- No authorization required
923
-
924
- ### HTTP request headers
925
-
926
- - **Content-Type**: Not defined
927
- - **Accept**: application/json
928
-
929
-
930
724
  ### HTTP response details
931
725
  | Status code | Description | Response headers |
932
726
  |-------------|-------------|------------------|
@@ -992,11 +786,18 @@ import {
992
786
  const configuration = new Configuration();
993
787
  const apiInstance = new BusinessApi(configuration);
994
788
 
995
- 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
+ );
996
794
  ```
997
795
 
998
796
  ### Parameters
999
- 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|
1000
801
 
1001
802
 
1002
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-08T17:21:15+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-08T17:34:59+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-08T17:21:15+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-08T17:34:59+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-08T17:21:15+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-08T18:21:15+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-08T17:34:59+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-08T18:34:59+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]