@gooday_corp/gooday-api-client 1.1.53 → 1.1.55
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 +17 -9
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3118,10 +3118,10 @@ export interface ResetPasswordResponseDTO {
|
|
|
3118
3118
|
export interface SendCollaborateInvitePayload {
|
|
3119
3119
|
/**
|
|
3120
3120
|
* identifier of the collaborator
|
|
3121
|
-
* @type {string}
|
|
3121
|
+
* @type {Array<string>}
|
|
3122
3122
|
* @memberof SendCollaborateInvitePayload
|
|
3123
3123
|
*/
|
|
3124
|
-
'collaborator': string
|
|
3124
|
+
'collaborator': Array<string>;
|
|
3125
3125
|
/**
|
|
3126
3126
|
* The calendar identifier
|
|
3127
3127
|
* @type {string}
|
|
@@ -7748,10 +7748,11 @@ export const FriendsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7748
7748
|
* @param {number} page
|
|
7749
7749
|
* @param {number} pageSize
|
|
7750
7750
|
* @param {string} [search]
|
|
7751
|
+
* @param {string} [calendar]
|
|
7751
7752
|
* @param {*} [options] Override http request option.
|
|
7752
7753
|
* @throws {RequiredError}
|
|
7753
7754
|
*/
|
|
7754
|
-
friendControllerListMyFriends: async (page: number, pageSize: number, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7755
|
+
friendControllerListMyFriends: async (page: number, pageSize: number, search?: string, calendar?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7755
7756
|
// verify required parameter 'page' is not null or undefined
|
|
7756
7757
|
assertParamExists('friendControllerListMyFriends', 'page', page)
|
|
7757
7758
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -7784,6 +7785,10 @@ export const FriendsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7784
7785
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
7785
7786
|
}
|
|
7786
7787
|
|
|
7788
|
+
if (calendar !== undefined) {
|
|
7789
|
+
localVarQueryParameter['calendar'] = calendar;
|
|
7790
|
+
}
|
|
7791
|
+
|
|
7787
7792
|
|
|
7788
7793
|
|
|
7789
7794
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7938,11 +7943,12 @@ export const FriendsApiFp = function(configuration?: Configuration) {
|
|
|
7938
7943
|
* @param {number} page
|
|
7939
7944
|
* @param {number} pageSize
|
|
7940
7945
|
* @param {string} [search]
|
|
7946
|
+
* @param {string} [calendar]
|
|
7941
7947
|
* @param {*} [options] Override http request option.
|
|
7942
7948
|
* @throws {RequiredError}
|
|
7943
7949
|
*/
|
|
7944
|
-
async friendControllerListMyFriends(page: number, pageSize: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FriendsDTO>> {
|
|
7945
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.friendControllerListMyFriends(page, pageSize, search, options);
|
|
7950
|
+
async friendControllerListMyFriends(page: number, pageSize: number, search?: string, calendar?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FriendsDTO>> {
|
|
7951
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.friendControllerListMyFriends(page, pageSize, search, calendar, options);
|
|
7946
7952
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7947
7953
|
const localVarOperationServerBasePath = operationServerMap['FriendsApi.friendControllerListMyFriends']?.[localVarOperationServerIndex]?.url;
|
|
7948
7954
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -8024,11 +8030,12 @@ export const FriendsApiFactory = function (configuration?: Configuration, basePa
|
|
|
8024
8030
|
* @param {number} page
|
|
8025
8031
|
* @param {number} pageSize
|
|
8026
8032
|
* @param {string} [search]
|
|
8033
|
+
* @param {string} [calendar]
|
|
8027
8034
|
* @param {*} [options] Override http request option.
|
|
8028
8035
|
* @throws {RequiredError}
|
|
8029
8036
|
*/
|
|
8030
|
-
friendControllerListMyFriends(page: number, pageSize: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<FriendsDTO> {
|
|
8031
|
-
return localVarFp.friendControllerListMyFriends(page, pageSize, search, options).then((request) => request(axios, basePath));
|
|
8037
|
+
friendControllerListMyFriends(page: number, pageSize: number, search?: string, calendar?: string, options?: RawAxiosRequestConfig): AxiosPromise<FriendsDTO> {
|
|
8038
|
+
return localVarFp.friendControllerListMyFriends(page, pageSize, search, calendar, options).then((request) => request(axios, basePath));
|
|
8032
8039
|
},
|
|
8033
8040
|
/**
|
|
8034
8041
|
*
|
|
@@ -8109,12 +8116,13 @@ export class FriendsApi extends BaseAPI {
|
|
|
8109
8116
|
* @param {number} page
|
|
8110
8117
|
* @param {number} pageSize
|
|
8111
8118
|
* @param {string} [search]
|
|
8119
|
+
* @param {string} [calendar]
|
|
8112
8120
|
* @param {*} [options] Override http request option.
|
|
8113
8121
|
* @throws {RequiredError}
|
|
8114
8122
|
* @memberof FriendsApi
|
|
8115
8123
|
*/
|
|
8116
|
-
public friendControllerListMyFriends(page: number, pageSize: number, search?: string, options?: RawAxiosRequestConfig) {
|
|
8117
|
-
return FriendsApiFp(this.configuration).friendControllerListMyFriends(page, pageSize, search, options).then((request) => request(this.axios, this.basePath));
|
|
8124
|
+
public friendControllerListMyFriends(page: number, pageSize: number, search?: string, calendar?: string, options?: RawAxiosRequestConfig) {
|
|
8125
|
+
return FriendsApiFp(this.configuration).friendControllerListMyFriends(page, pageSize, search, calendar, options).then((request) => request(this.axios, this.basePath));
|
|
8118
8126
|
}
|
|
8119
8127
|
|
|
8120
8128
|
/**
|