@gooday_corp/gooday-api-client 1.1.42 → 1.1.47
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/api.ts +259 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2622,8 +2622,10 @@ export const NotificationEntityTypeEnum = {
|
|
|
2622
2622
|
BookingCreate: 'BOOKING_CREATE',
|
|
2623
2623
|
BookingCreateForUser: 'BOOKING_CREATE_FOR_USER',
|
|
2624
2624
|
BookingCancel: 'BOOKING_CANCEL',
|
|
2625
|
+
BookingUserLeave: 'BOOKING_USER_LEAVE',
|
|
2626
|
+
BookingUserLeaveToBusiness: 'BOOKING_USER_LEAVE_TO_BUSINESS',
|
|
2625
2627
|
BusinessBookingCancelBusiness: 'BUSINESS_BOOKING_CANCEL_BUSINESS',
|
|
2626
|
-
|
|
2628
|
+
BusinessBookingCancelUserToBusiness: 'BUSINESS_BOOKING_CANCEL_USER_TO_BUSINESS',
|
|
2627
2629
|
BokingAccept: 'BOKING_ACCEPT',
|
|
2628
2630
|
BookingReject: 'BOOKING_REJECT',
|
|
2629
2631
|
InviteTodo: 'INVITE_TODO',
|
|
@@ -3692,6 +3694,12 @@ export interface UserEntity {
|
|
|
3692
3694
|
* @memberof UserEntity
|
|
3693
3695
|
*/
|
|
3694
3696
|
'permissions': UserPermissionDTO;
|
|
3697
|
+
/**
|
|
3698
|
+
* User daily streak
|
|
3699
|
+
* @type {number}
|
|
3700
|
+
* @memberof UserEntity
|
|
3701
|
+
*/
|
|
3702
|
+
'streak': number;
|
|
3695
3703
|
/**
|
|
3696
3704
|
* Action user has to perform
|
|
3697
3705
|
* @type {Array<string>}
|
|
@@ -3833,6 +3841,56 @@ export interface UserSyncDTO {
|
|
|
3833
3841
|
*/
|
|
3834
3842
|
'timezone'?: string;
|
|
3835
3843
|
}
|
|
3844
|
+
/**
|
|
3845
|
+
*
|
|
3846
|
+
* @export
|
|
3847
|
+
* @interface UserWaitingListPayloadDTO
|
|
3848
|
+
*/
|
|
3849
|
+
export interface UserWaitingListPayloadDTO {
|
|
3850
|
+
/**
|
|
3851
|
+
* The first name of the user joining the waitlist
|
|
3852
|
+
* @type {string}
|
|
3853
|
+
* @memberof UserWaitingListPayloadDTO
|
|
3854
|
+
*/
|
|
3855
|
+
'firstName': string;
|
|
3856
|
+
/**
|
|
3857
|
+
* The last name of the user joining the waitlist
|
|
3858
|
+
* @type {string}
|
|
3859
|
+
* @memberof UserWaitingListPayloadDTO
|
|
3860
|
+
*/
|
|
3861
|
+
'lastName': string;
|
|
3862
|
+
/**
|
|
3863
|
+
* Name of business which you wish to join
|
|
3864
|
+
* @type {string}
|
|
3865
|
+
* @memberof UserWaitingListPayloadDTO
|
|
3866
|
+
*/
|
|
3867
|
+
'businessName': string;
|
|
3868
|
+
/**
|
|
3869
|
+
* The unique email of the user joining the waitlist
|
|
3870
|
+
* @type {string}
|
|
3871
|
+
* @memberof UserWaitingListPayloadDTO
|
|
3872
|
+
*/
|
|
3873
|
+
'email': string;
|
|
3874
|
+
}
|
|
3875
|
+
/**
|
|
3876
|
+
*
|
|
3877
|
+
* @export
|
|
3878
|
+
* @interface UserWaitingListResponseDTO
|
|
3879
|
+
*/
|
|
3880
|
+
export interface UserWaitingListResponseDTO {
|
|
3881
|
+
/**
|
|
3882
|
+
* statusCode
|
|
3883
|
+
* @type {number}
|
|
3884
|
+
* @memberof UserWaitingListResponseDTO
|
|
3885
|
+
*/
|
|
3886
|
+
'statusCode': number;
|
|
3887
|
+
/**
|
|
3888
|
+
* Assistant
|
|
3889
|
+
* @type {UserWaitingListPayloadDTO}
|
|
3890
|
+
* @memberof UserWaitingListResponseDTO
|
|
3891
|
+
*/
|
|
3892
|
+
'data': UserWaitingListPayloadDTO;
|
|
3893
|
+
}
|
|
3836
3894
|
/**
|
|
3837
3895
|
*
|
|
3838
3896
|
* @export
|
|
@@ -8963,6 +9021,41 @@ export type NotificationControllerGetNotificationCategoryEnum = typeof Notificat
|
|
|
8963
9021
|
*/
|
|
8964
9022
|
export const OAuthApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
8965
9023
|
return {
|
|
9024
|
+
/**
|
|
9025
|
+
*
|
|
9026
|
+
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
9027
|
+
* @param {*} [options] Override http request option.
|
|
9028
|
+
* @throws {RequiredError}
|
|
9029
|
+
*/
|
|
9030
|
+
oAuthControllerValidateAppleBusinessToken: async (appleVerificationPayloadDTO: AppleVerificationPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9031
|
+
// verify required parameter 'appleVerificationPayloadDTO' is not null or undefined
|
|
9032
|
+
assertParamExists('oAuthControllerValidateAppleBusinessToken', 'appleVerificationPayloadDTO', appleVerificationPayloadDTO)
|
|
9033
|
+
const localVarPath = `/v1/oauth/apple/business`;
|
|
9034
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9035
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9036
|
+
let baseOptions;
|
|
9037
|
+
if (configuration) {
|
|
9038
|
+
baseOptions = configuration.baseOptions;
|
|
9039
|
+
}
|
|
9040
|
+
|
|
9041
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
9042
|
+
const localVarHeaderParameter = {} as any;
|
|
9043
|
+
const localVarQueryParameter = {} as any;
|
|
9044
|
+
|
|
9045
|
+
|
|
9046
|
+
|
|
9047
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9048
|
+
|
|
9049
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9050
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9051
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9052
|
+
localVarRequestOptions.data = serializeDataIfNeeded(appleVerificationPayloadDTO, localVarRequestOptions, configuration)
|
|
9053
|
+
|
|
9054
|
+
return {
|
|
9055
|
+
url: toPathString(localVarUrlObj),
|
|
9056
|
+
options: localVarRequestOptions,
|
|
9057
|
+
};
|
|
9058
|
+
},
|
|
8966
9059
|
/**
|
|
8967
9060
|
*
|
|
8968
9061
|
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
@@ -9078,6 +9171,18 @@ export const OAuthApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
9078
9171
|
export const OAuthApiFp = function(configuration?: Configuration) {
|
|
9079
9172
|
const localVarAxiosParamCreator = OAuthApiAxiosParamCreator(configuration)
|
|
9080
9173
|
return {
|
|
9174
|
+
/**
|
|
9175
|
+
*
|
|
9176
|
+
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
9177
|
+
* @param {*} [options] Override http request option.
|
|
9178
|
+
* @throws {RequiredError}
|
|
9179
|
+
*/
|
|
9180
|
+
async oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO: AppleVerificationPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppleOAuthResponseDTO>> {
|
|
9181
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO, options);
|
|
9182
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9183
|
+
const localVarOperationServerBasePath = operationServerMap['OAuthApi.oAuthControllerValidateAppleBusinessToken']?.[localVarOperationServerIndex]?.url;
|
|
9184
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9185
|
+
},
|
|
9081
9186
|
/**
|
|
9082
9187
|
*
|
|
9083
9188
|
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
@@ -9124,6 +9229,15 @@ export const OAuthApiFp = function(configuration?: Configuration) {
|
|
|
9124
9229
|
export const OAuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
9125
9230
|
const localVarFp = OAuthApiFp(configuration)
|
|
9126
9231
|
return {
|
|
9232
|
+
/**
|
|
9233
|
+
*
|
|
9234
|
+
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
9235
|
+
* @param {*} [options] Override http request option.
|
|
9236
|
+
* @throws {RequiredError}
|
|
9237
|
+
*/
|
|
9238
|
+
oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO: AppleVerificationPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<AppleOAuthResponseDTO> {
|
|
9239
|
+
return localVarFp.oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO, options).then((request) => request(axios, basePath));
|
|
9240
|
+
},
|
|
9127
9241
|
/**
|
|
9128
9242
|
*
|
|
9129
9243
|
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
@@ -9161,6 +9275,17 @@ export const OAuthApiFactory = function (configuration?: Configuration, basePath
|
|
|
9161
9275
|
* @extends {BaseAPI}
|
|
9162
9276
|
*/
|
|
9163
9277
|
export class OAuthApi extends BaseAPI {
|
|
9278
|
+
/**
|
|
9279
|
+
*
|
|
9280
|
+
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
9281
|
+
* @param {*} [options] Override http request option.
|
|
9282
|
+
* @throws {RequiredError}
|
|
9283
|
+
* @memberof OAuthApi
|
|
9284
|
+
*/
|
|
9285
|
+
public oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO: AppleVerificationPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
9286
|
+
return OAuthApiFp(this.configuration).oAuthControllerValidateAppleBusinessToken(appleVerificationPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
9287
|
+
}
|
|
9288
|
+
|
|
9164
9289
|
/**
|
|
9165
9290
|
*
|
|
9166
9291
|
* @param {AppleVerificationPayloadDTO} appleVerificationPayloadDTO
|
|
@@ -10533,6 +10658,45 @@ export class TodoApi extends BaseAPI {
|
|
|
10533
10658
|
*/
|
|
10534
10659
|
export const UsersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
10535
10660
|
return {
|
|
10661
|
+
/**
|
|
10662
|
+
*
|
|
10663
|
+
* @param {UserWaitingListPayloadDTO} userWaitingListPayloadDTO
|
|
10664
|
+
* @param {*} [options] Override http request option.
|
|
10665
|
+
* @throws {RequiredError}
|
|
10666
|
+
*/
|
|
10667
|
+
usersControllerAddToWaitingList: async (userWaitingListPayloadDTO: UserWaitingListPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10668
|
+
// verify required parameter 'userWaitingListPayloadDTO' is not null or undefined
|
|
10669
|
+
assertParamExists('usersControllerAddToWaitingList', 'userWaitingListPayloadDTO', userWaitingListPayloadDTO)
|
|
10670
|
+
const localVarPath = `/v1/user/joining-list`;
|
|
10671
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10672
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10673
|
+
let baseOptions;
|
|
10674
|
+
if (configuration) {
|
|
10675
|
+
baseOptions = configuration.baseOptions;
|
|
10676
|
+
}
|
|
10677
|
+
|
|
10678
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
10679
|
+
const localVarHeaderParameter = {} as any;
|
|
10680
|
+
const localVarQueryParameter = {} as any;
|
|
10681
|
+
|
|
10682
|
+
// authentication bearer required
|
|
10683
|
+
// http bearer authentication required
|
|
10684
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
10685
|
+
|
|
10686
|
+
|
|
10687
|
+
|
|
10688
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10689
|
+
|
|
10690
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10691
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10692
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10693
|
+
localVarRequestOptions.data = serializeDataIfNeeded(userWaitingListPayloadDTO, localVarRequestOptions, configuration)
|
|
10694
|
+
|
|
10695
|
+
return {
|
|
10696
|
+
url: toPathString(localVarUrlObj),
|
|
10697
|
+
options: localVarRequestOptions,
|
|
10698
|
+
};
|
|
10699
|
+
},
|
|
10536
10700
|
/**
|
|
10537
10701
|
*
|
|
10538
10702
|
* @param {*} [options] Override http request option.
|
|
@@ -10677,6 +10841,39 @@ export const UsersApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
10677
10841
|
options: localVarRequestOptions,
|
|
10678
10842
|
};
|
|
10679
10843
|
},
|
|
10844
|
+
/**
|
|
10845
|
+
*
|
|
10846
|
+
* @param {*} [options] Override http request option.
|
|
10847
|
+
* @throws {RequiredError}
|
|
10848
|
+
*/
|
|
10849
|
+
usersControllerStreak: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10850
|
+
const localVarPath = `/v1/user/streak`;
|
|
10851
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10852
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10853
|
+
let baseOptions;
|
|
10854
|
+
if (configuration) {
|
|
10855
|
+
baseOptions = configuration.baseOptions;
|
|
10856
|
+
}
|
|
10857
|
+
|
|
10858
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
10859
|
+
const localVarHeaderParameter = {} as any;
|
|
10860
|
+
const localVarQueryParameter = {} as any;
|
|
10861
|
+
|
|
10862
|
+
// authentication bearer required
|
|
10863
|
+
// http bearer authentication required
|
|
10864
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
10865
|
+
|
|
10866
|
+
|
|
10867
|
+
|
|
10868
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10869
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10870
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10871
|
+
|
|
10872
|
+
return {
|
|
10873
|
+
url: toPathString(localVarUrlObj),
|
|
10874
|
+
options: localVarRequestOptions,
|
|
10875
|
+
};
|
|
10876
|
+
},
|
|
10680
10877
|
/**
|
|
10681
10878
|
*
|
|
10682
10879
|
* @param {UserSyncDTO} userSyncDTO
|
|
@@ -10798,6 +10995,18 @@ export const UsersApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
10798
10995
|
export const UsersApiFp = function(configuration?: Configuration) {
|
|
10799
10996
|
const localVarAxiosParamCreator = UsersApiAxiosParamCreator(configuration)
|
|
10800
10997
|
return {
|
|
10998
|
+
/**
|
|
10999
|
+
*
|
|
11000
|
+
* @param {UserWaitingListPayloadDTO} userWaitingListPayloadDTO
|
|
11001
|
+
* @param {*} [options] Override http request option.
|
|
11002
|
+
* @throws {RequiredError}
|
|
11003
|
+
*/
|
|
11004
|
+
async usersControllerAddToWaitingList(userWaitingListPayloadDTO: UserWaitingListPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserWaitingListResponseDTO>> {
|
|
11005
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.usersControllerAddToWaitingList(userWaitingListPayloadDTO, options);
|
|
11006
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
11007
|
+
const localVarOperationServerBasePath = operationServerMap['UsersApi.usersControllerAddToWaitingList']?.[localVarOperationServerIndex]?.url;
|
|
11008
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11009
|
+
},
|
|
10801
11010
|
/**
|
|
10802
11011
|
*
|
|
10803
11012
|
* @param {*} [options] Override http request option.
|
|
@@ -10844,6 +11053,17 @@ export const UsersApiFp = function(configuration?: Configuration) {
|
|
|
10844
11053
|
const localVarOperationServerBasePath = operationServerMap['UsersApi.usersControllerOnBoarded']?.[localVarOperationServerIndex]?.url;
|
|
10845
11054
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
10846
11055
|
},
|
|
11056
|
+
/**
|
|
11057
|
+
*
|
|
11058
|
+
* @param {*} [options] Override http request option.
|
|
11059
|
+
* @throws {RequiredError}
|
|
11060
|
+
*/
|
|
11061
|
+
async usersControllerStreak(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserMeDTO>> {
|
|
11062
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.usersControllerStreak(options);
|
|
11063
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
11064
|
+
const localVarOperationServerBasePath = operationServerMap['UsersApi.usersControllerStreak']?.[localVarOperationServerIndex]?.url;
|
|
11065
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11066
|
+
},
|
|
10847
11067
|
/**
|
|
10848
11068
|
*
|
|
10849
11069
|
* @param {UserSyncDTO} userSyncDTO
|
|
@@ -10889,6 +11109,15 @@ export const UsersApiFp = function(configuration?: Configuration) {
|
|
|
10889
11109
|
export const UsersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
10890
11110
|
const localVarFp = UsersApiFp(configuration)
|
|
10891
11111
|
return {
|
|
11112
|
+
/**
|
|
11113
|
+
*
|
|
11114
|
+
* @param {UserWaitingListPayloadDTO} userWaitingListPayloadDTO
|
|
11115
|
+
* @param {*} [options] Override http request option.
|
|
11116
|
+
* @throws {RequiredError}
|
|
11117
|
+
*/
|
|
11118
|
+
usersControllerAddToWaitingList(userWaitingListPayloadDTO: UserWaitingListPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserWaitingListResponseDTO> {
|
|
11119
|
+
return localVarFp.usersControllerAddToWaitingList(userWaitingListPayloadDTO, options).then((request) => request(axios, basePath));
|
|
11120
|
+
},
|
|
10892
11121
|
/**
|
|
10893
11122
|
*
|
|
10894
11123
|
* @param {*} [options] Override http request option.
|
|
@@ -10923,6 +11152,14 @@ export const UsersApiFactory = function (configuration?: Configuration, basePath
|
|
|
10923
11152
|
usersControllerOnBoarded(onBoardingDTO: OnBoardingDTO, options?: RawAxiosRequestConfig): AxiosPromise<OnBoardingResponseDTO> {
|
|
10924
11153
|
return localVarFp.usersControllerOnBoarded(onBoardingDTO, options).then((request) => request(axios, basePath));
|
|
10925
11154
|
},
|
|
11155
|
+
/**
|
|
11156
|
+
*
|
|
11157
|
+
* @param {*} [options] Override http request option.
|
|
11158
|
+
* @throws {RequiredError}
|
|
11159
|
+
*/
|
|
11160
|
+
usersControllerStreak(options?: RawAxiosRequestConfig): AxiosPromise<UserMeDTO> {
|
|
11161
|
+
return localVarFp.usersControllerStreak(options).then((request) => request(axios, basePath));
|
|
11162
|
+
},
|
|
10926
11163
|
/**
|
|
10927
11164
|
*
|
|
10928
11165
|
* @param {UserSyncDTO} userSyncDTO
|
|
@@ -10959,6 +11196,17 @@ export const UsersApiFactory = function (configuration?: Configuration, basePath
|
|
|
10959
11196
|
* @extends {BaseAPI}
|
|
10960
11197
|
*/
|
|
10961
11198
|
export class UsersApi extends BaseAPI {
|
|
11199
|
+
/**
|
|
11200
|
+
*
|
|
11201
|
+
* @param {UserWaitingListPayloadDTO} userWaitingListPayloadDTO
|
|
11202
|
+
* @param {*} [options] Override http request option.
|
|
11203
|
+
* @throws {RequiredError}
|
|
11204
|
+
* @memberof UsersApi
|
|
11205
|
+
*/
|
|
11206
|
+
public usersControllerAddToWaitingList(userWaitingListPayloadDTO: UserWaitingListPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
11207
|
+
return UsersApiFp(this.configuration).usersControllerAddToWaitingList(userWaitingListPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
11208
|
+
}
|
|
11209
|
+
|
|
10962
11210
|
/**
|
|
10963
11211
|
*
|
|
10964
11212
|
* @param {*} [options] Override http request option.
|
|
@@ -11001,6 +11249,16 @@ export class UsersApi extends BaseAPI {
|
|
|
11001
11249
|
return UsersApiFp(this.configuration).usersControllerOnBoarded(onBoardingDTO, options).then((request) => request(this.axios, this.basePath));
|
|
11002
11250
|
}
|
|
11003
11251
|
|
|
11252
|
+
/**
|
|
11253
|
+
*
|
|
11254
|
+
* @param {*} [options] Override http request option.
|
|
11255
|
+
* @throws {RequiredError}
|
|
11256
|
+
* @memberof UsersApi
|
|
11257
|
+
*/
|
|
11258
|
+
public usersControllerStreak(options?: RawAxiosRequestConfig) {
|
|
11259
|
+
return UsersApiFp(this.configuration).usersControllerStreak(options).then((request) => request(this.axios, this.basePath));
|
|
11260
|
+
}
|
|
11261
|
+
|
|
11004
11262
|
/**
|
|
11005
11263
|
*
|
|
11006
11264
|
* @param {UserSyncDTO} userSyncDTO
|