@gooday_corp/gooday-api-client 1.3.37 → 1.3.38
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/.openapi-generator/FILES +14 -1
- package/api.ts +1384 -158
- package/docs/AIApi.md +111 -0
- package/docs/BookingApi.md +13 -5
- package/docs/BusinessApi.md +215 -2
- package/docs/CreateBookingPayload.md +1 -1
- package/docs/CreatePaymentLinkDTO.md +2 -10
- package/docs/FavoriteResponseDTO.md +22 -0
- package/docs/FilterEntity.md +36 -0
- package/docs/FilterEntityResponseDTO.md +22 -0
- package/docs/FriendsApi.md +5 -53
- package/docs/GetAllVenueDto.md +28 -0
- package/docs/GetAllWhatsOnDTO.md +34 -0
- package/docs/HomeFeedEntity.md +26 -0
- package/docs/HomeFeedListResponse.md +22 -0
- package/docs/HomeFeedListResponseDTO.md +22 -0
- package/docs/PlansApi.md +52 -1
- package/docs/PrepaidServiceApi.md +52 -0
- package/docs/{FriendSuggestionResponseDTO.md → ProductResponseDTO.md} +5 -5
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SuggestionFriendResponseDTO.md +22 -0
- package/docs/TrendingFilterDTO.md +20 -0
- package/docs/UserEntity.md +2 -0
- package/docs/VenueFavoriteCount.md +22 -0
- package/docs/VenueResponseDTO.md +22 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/docs/WhatsOnApi.md +226 -3
- package/docs/WhatsOnFilterDTO.md +40 -0
- package/docs/WhatsOnFindDTO.md +2 -0
- package/package.json +1 -1
package/docs/AIApi.md
CHANGED
|
@@ -5,6 +5,8 @@ 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 | |
|
|
9
|
+
|[**assistantControllerGenerateHomeFeed**](#assistantcontrollergeneratehomefeed) | **GET** /v1/ai/home-feed | |
|
|
8
10
|
|[**assistantControllerListAssistants**](#assistantcontrollerlistassistants) | **GET** /v1/assistant/list | |
|
|
9
11
|
|[**assistantControllerMyAssistant**](#assistantcontrollermyassistant) | **GET** /v1/assistant/me | |
|
|
10
12
|
|
|
@@ -54,6 +56,115 @@ const { status, data } = await apiInstance.assistantControllerAiSuggestionList(
|
|
|
54
56
|
- **Accept**: application/json
|
|
55
57
|
|
|
56
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
|
+
|
|
115
|
+
### HTTP response details
|
|
116
|
+
| Status code | Description | Response headers |
|
|
117
|
+
|-------------|-------------|------------------|
|
|
118
|
+
|**200** | | - |
|
|
119
|
+
|
|
120
|
+
[[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)
|
|
121
|
+
|
|
122
|
+
# **assistantControllerGenerateHomeFeed**
|
|
123
|
+
> HomeFeedListResponseDTO assistantControllerGenerateHomeFeed()
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Example
|
|
127
|
+
|
|
128
|
+
```typescript
|
|
129
|
+
import {
|
|
130
|
+
AIApi,
|
|
131
|
+
Configuration
|
|
132
|
+
} from './api';
|
|
133
|
+
|
|
134
|
+
const configuration = new Configuration();
|
|
135
|
+
const apiInstance = new AIApi(configuration);
|
|
136
|
+
|
|
137
|
+
let page: number; // (optional) (default to 1)
|
|
138
|
+
let pageSize: number; // (optional) (default to 10)
|
|
139
|
+
|
|
140
|
+
const { status, data } = await apiInstance.assistantControllerGenerateHomeFeed(
|
|
141
|
+
page,
|
|
142
|
+
pageSize
|
|
143
|
+
);
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Parameters
|
|
147
|
+
|
|
148
|
+
|Name | Type | Description | Notes|
|
|
149
|
+
|------------- | ------------- | ------------- | -------------|
|
|
150
|
+
| **page** | [**number**] | | (optional) defaults to 1|
|
|
151
|
+
| **pageSize** | [**number**] | | (optional) defaults to 10|
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Return type
|
|
155
|
+
|
|
156
|
+
**HomeFeedListResponseDTO**
|
|
157
|
+
|
|
158
|
+
### Authorization
|
|
159
|
+
|
|
160
|
+
[bearer](../README.md#bearer)
|
|
161
|
+
|
|
162
|
+
### HTTP request headers
|
|
163
|
+
|
|
164
|
+
- **Content-Type**: Not defined
|
|
165
|
+
- **Accept**: application/json
|
|
166
|
+
|
|
167
|
+
|
|
57
168
|
### HTTP response details
|
|
58
169
|
| Status code | Description | Response headers |
|
|
59
170
|
|-------------|-------------|------------------|
|
package/docs/BookingApi.md
CHANGED
|
@@ -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
|
-
|
|
755
|
+
let trendingFilterDTO: TrendingFilterDTO; //
|
|
756
|
+
|
|
757
|
+
const { status, data } = await apiInstance.bookingControllerTrendingEvents(
|
|
758
|
+
trendingFilterDTO
|
|
759
|
+
);
|
|
755
760
|
```
|
|
756
761
|
|
|
757
762
|
### Parameters
|
|
758
|
-
|
|
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**:
|
|
779
|
+
- **Content-Type**: application/json
|
|
772
780
|
- **Accept**: application/json
|
|
773
781
|
|
|
774
782
|
|
package/docs/BusinessApi.md
CHANGED
|
@@ -12,12 +12,16 @@ 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 | |
|
|
15
16
|
|[**businessStaffControllerSaveBusinessStaff**](#businessstaffcontrollersavebusinessstaff) | **POST** /v1/business-staff | |
|
|
16
17
|
|[**businessStaffControllerUpdateStaff**](#businessstaffcontrollerupdatestaff) | **PUT** /v1/business-staff/{id} | |
|
|
17
18
|
|[**businessTypeControllerFindFavoriteBusinessVenue**](#businesstypecontrollerfindfavoritebusinessvenue) | **GET** /v1/business/favorite/{id} | |
|
|
18
19
|
|[**businessTypeControllerFindFavoriteBusinessVenueCount**](#businesstypecontrollerfindfavoritebusinessvenuecount) | **GET** /v1/business/favorite/count/{id} | |
|
|
19
20
|
|[**businessTypeControllerFindFriendsFavoriteBusinessVenueList**](#businesstypecontrollerfindfriendsfavoritebusinessvenuelist) | **POST** /v1/business/friends/favorite | |
|
|
21
|
+
|[**businessTypeControllerGetAllVenue**](#businesstypecontrollergetallvenue) | **POST** /v1/business/venues | |
|
|
20
22
|
|[**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} | |
|
|
21
25
|
|[**businessTypeControllerHighlyRecommended**](#businesstypecontrollerhighlyrecommended) | **GET** /v1/business/highlyRecommended | |
|
|
22
26
|
|[**businessTypeControllerListAllCategories**](#businesstypecontrollerlistallcategories) | **GET** /v1/business/categories | |
|
|
23
27
|
|[**businessTypeControllerListBookingDurations**](#businesstypecontrollerlistbookingdurations) | **GET** /v1/business/booking-durations | |
|
|
@@ -414,6 +418,57 @@ const { status, data } = await apiInstance.businessStaffControllerFindByIdBusine
|
|
|
414
418
|
- **Accept**: application/json
|
|
415
419
|
|
|
416
420
|
|
|
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
|
+
|
|
417
472
|
### HTTP response details
|
|
418
473
|
| Status code | Description | Response headers |
|
|
419
474
|
|-------------|-------------|------------------|
|
|
@@ -670,6 +725,57 @@ const { status, data } = await apiInstance.businessTypeControllerFindFriendsFavo
|
|
|
670
725
|
- **Accept**: application/json
|
|
671
726
|
|
|
672
727
|
|
|
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
|
+
|
|
673
779
|
### HTTP response details
|
|
674
780
|
| Status code | Description | Response headers |
|
|
675
781
|
|-------------|-------------|------------------|
|
|
@@ -721,6 +827,106 @@ const { status, data } = await apiInstance.businessTypeControllerGetBusinessVenu
|
|
|
721
827
|
- **Accept**: application/json
|
|
722
828
|
|
|
723
829
|
|
|
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
|
+
|
|
724
930
|
### HTTP response details
|
|
725
931
|
| Status code | Description | Response headers |
|
|
726
932
|
|-------------|-------------|------------------|
|
|
@@ -786,11 +992,18 @@ import {
|
|
|
786
992
|
const configuration = new Configuration();
|
|
787
993
|
const apiInstance = new BusinessApi(configuration);
|
|
788
994
|
|
|
789
|
-
|
|
995
|
+
let id: string; //Unique identifier for the category (optional) (default to undefined)
|
|
996
|
+
|
|
997
|
+
const { status, data } = await apiInstance.businessTypeControllerListAllCategories(
|
|
998
|
+
id
|
|
999
|
+
);
|
|
790
1000
|
```
|
|
791
1001
|
|
|
792
1002
|
### Parameters
|
|
793
|
-
|
|
1003
|
+
|
|
1004
|
+
|Name | Type | Description | Notes|
|
|
1005
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1006
|
+
| **id** | [**string**] | Unique identifier for the category | (optional) defaults to undefined|
|
|
794
1007
|
|
|
795
1008
|
|
|
796
1009
|
### 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-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-15T12:49:25Z]
|
|
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,11 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**
|
|
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]
|
|
8
|
+
**productID** | **string** | Product ID | [default to undefined]
|
|
13
9
|
|
|
14
10
|
## Example
|
|
15
11
|
|
|
@@ -17,11 +13,7 @@ Name | Type | Description | Notes
|
|
|
17
13
|
import { CreatePaymentLinkDTO } from './api';
|
|
18
14
|
|
|
19
15
|
const instance: CreatePaymentLinkDTO = {
|
|
20
|
-
|
|
21
|
-
interval,
|
|
22
|
-
amount,
|
|
23
|
-
name,
|
|
24
|
-
user,
|
|
16
|
+
productID,
|
|
25
17
|
};
|
|
26
18
|
```
|
|
27
19
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FavoriteResponseDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
9
|
+
**data** | [**VenueFavoriteCount**](VenueFavoriteCount.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { FavoriteResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: FavoriteResponseDTO = {
|
|
17
|
+
statusCode,
|
|
18
|
+
data,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# FilterEntity
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**_id** | **string** | Event id | [default to undefined]
|
|
9
|
+
**title** | **string** | Event name | [default to undefined]
|
|
10
|
+
**photos** | **Array<string>** | | [default to undefined]
|
|
11
|
+
**coverPhoto** | **Array<string>** | | [default to undefined]
|
|
12
|
+
**type** | **string** | | [default to undefined]
|
|
13
|
+
**startDate** | **string** | | [default to undefined]
|
|
14
|
+
**endDate** | **string** | | [default to undefined]
|
|
15
|
+
**tags** | [**Array<TagsResponse>**](TagsResponse.md) | | [default to undefined]
|
|
16
|
+
**keyword** | **Array<string>** | | [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { FilterEntity } from './api';
|
|
22
|
+
|
|
23
|
+
const instance: FilterEntity = {
|
|
24
|
+
_id,
|
|
25
|
+
title,
|
|
26
|
+
photos,
|
|
27
|
+
coverPhoto,
|
|
28
|
+
type,
|
|
29
|
+
startDate,
|
|
30
|
+
endDate,
|
|
31
|
+
tags,
|
|
32
|
+
keyword,
|
|
33
|
+
};
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FilterEntityResponseDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<FilterEntity>**](FilterEntity.md) | | [default to undefined]
|
|
9
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { FilterEntityResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: FilterEntityResponseDTO = {
|
|
17
|
+
data,
|
|
18
|
+
statusCode,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/FriendsApi.md
CHANGED
|
@@ -11,7 +11,6 @@ All URIs are relative to *http://localhost:8080*
|
|
|
11
11
|
|[**friendControllerFindMutualFriends**](#friendcontrollerfindmutualfriends) | **POST** /v1/friend/mutual/list | |
|
|
12
12
|
|[**friendControllerGetFriendshipStatus**](#friendcontrollergetfriendshipstatus) | **POST** /v1/friend/status | |
|
|
13
13
|
|[**friendControllerListMyFriends**](#friendcontrollerlistmyfriends) | **POST** /v1/friend/list | |
|
|
14
|
-
|[**friendControllerMutualFriendsCount**](#friendcontrollermutualfriendscount) | **GET** /v1/friend/mutual-friends-count/{id} | |
|
|
15
14
|
|[**friendControllerRemoveFriendById**](#friendcontrollerremovefriendbyid) | **POST** /v1/friend/remove | |
|
|
16
15
|
|[**friendControllerRemoveMutualFriend**](#friendcontrollerremovemutualfriend) | **DELETE** /v1/friend/mutual/{id} | |
|
|
17
16
|
|[**friendControllerSendFriendRequest**](#friendcontrollersendfriendrequest) | **POST** /v1/friend/send-request | |
|
|
@@ -373,56 +372,6 @@ const { status, data } = await apiInstance.friendControllerListMyFriends(
|
|
|
373
372
|
- **Accept**: application/json
|
|
374
373
|
|
|
375
374
|
|
|
376
|
-
### HTTP response details
|
|
377
|
-
| Status code | Description | Response headers |
|
|
378
|
-
|-------------|-------------|------------------|
|
|
379
|
-
|**200** | | - |
|
|
380
|
-
|
|
381
|
-
[[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)
|
|
382
|
-
|
|
383
|
-
# **friendControllerMutualFriendsCount**
|
|
384
|
-
> FriendSuggestionResponseDTO friendControllerMutualFriendsCount()
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
### Example
|
|
388
|
-
|
|
389
|
-
```typescript
|
|
390
|
-
import {
|
|
391
|
-
FriendsApi,
|
|
392
|
-
Configuration
|
|
393
|
-
} from './api';
|
|
394
|
-
|
|
395
|
-
const configuration = new Configuration();
|
|
396
|
-
const apiInstance = new FriendsApi(configuration);
|
|
397
|
-
|
|
398
|
-
let id: string; // (default to undefined)
|
|
399
|
-
|
|
400
|
-
const { status, data } = await apiInstance.friendControllerMutualFriendsCount(
|
|
401
|
-
id
|
|
402
|
-
);
|
|
403
|
-
```
|
|
404
|
-
|
|
405
|
-
### Parameters
|
|
406
|
-
|
|
407
|
-
|Name | Type | Description | Notes|
|
|
408
|
-
|------------- | ------------- | ------------- | -------------|
|
|
409
|
-
| **id** | [**string**] | | defaults to undefined|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
### Return type
|
|
413
|
-
|
|
414
|
-
**FriendSuggestionResponseDTO**
|
|
415
|
-
|
|
416
|
-
### Authorization
|
|
417
|
-
|
|
418
|
-
[bearer](../README.md#bearer)
|
|
419
|
-
|
|
420
|
-
### HTTP request headers
|
|
421
|
-
|
|
422
|
-
- **Content-Type**: Not defined
|
|
423
|
-
- **Accept**: application/json
|
|
424
|
-
|
|
425
|
-
|
|
426
375
|
### HTTP response details
|
|
427
376
|
| Status code | Description | Response headers |
|
|
428
377
|
|-------------|-------------|------------------|
|
|
@@ -583,7 +532,7 @@ const { status, data } = await apiInstance.friendControllerSendFriendRequest(
|
|
|
583
532
|
[[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)
|
|
584
533
|
|
|
585
534
|
# **friendControllerSuggestedFriendList**
|
|
586
|
-
>
|
|
535
|
+
> SuggestionFriendResponseDTO friendControllerSuggestedFriendList()
|
|
587
536
|
|
|
588
537
|
|
|
589
538
|
### Example
|
|
@@ -597,10 +546,12 @@ import {
|
|
|
597
546
|
const configuration = new Configuration();
|
|
598
547
|
const apiInstance = new FriendsApi(configuration);
|
|
599
548
|
|
|
549
|
+
let search: string; // (optional) (default to undefined)
|
|
600
550
|
let page: number; // (optional) (default to undefined)
|
|
601
551
|
let pageSize: number; // (optional) (default to undefined)
|
|
602
552
|
|
|
603
553
|
const { status, data } = await apiInstance.friendControllerSuggestedFriendList(
|
|
554
|
+
search,
|
|
604
555
|
page,
|
|
605
556
|
pageSize
|
|
606
557
|
);
|
|
@@ -610,13 +561,14 @@ const { status, data } = await apiInstance.friendControllerSuggestedFriendList(
|
|
|
610
561
|
|
|
611
562
|
|Name | Type | Description | Notes|
|
|
612
563
|
|------------- | ------------- | ------------- | -------------|
|
|
564
|
+
| **search** | [**string**] | | (optional) defaults to undefined|
|
|
613
565
|
| **page** | [**number**] | | (optional) defaults to undefined|
|
|
614
566
|
| **pageSize** | [**number**] | | (optional) defaults to undefined|
|
|
615
567
|
|
|
616
568
|
|
|
617
569
|
### Return type
|
|
618
570
|
|
|
619
|
-
**
|
|
571
|
+
**SuggestionFriendResponseDTO**
|
|
620
572
|
|
|
621
573
|
### Authorization
|
|
622
574
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# GetAllVenueDto
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**search** | **string** | Business name search | [optional] [default to undefined]
|
|
9
|
+
**page** | **number** | Page number for pagination | [optional] [default to undefined]
|
|
10
|
+
**limit** | **number** | Number of items per page for pagination | [optional] [default to undefined]
|
|
11
|
+
**people** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**coordinates** | **Array<number>** | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { GetAllVenueDto } from './api';
|
|
18
|
+
|
|
19
|
+
const instance: GetAllVenueDto = {
|
|
20
|
+
search,
|
|
21
|
+
page,
|
|
22
|
+
limit,
|
|
23
|
+
people,
|
|
24
|
+
coordinates,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|