@s-corp-biz/biz-entity-api 1.7.0 → 1.8.0-staging.1
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/lib/api/auth-api.d.ts +0 -30
- package/lib/api/auth-api.js +0 -84
- package/lib/api/family-api.d.ts +97 -0
- package/lib/api/family-api.js +264 -0
- package/lib/api/test-api.d.ts +188 -0
- package/lib/api/test-api.js +539 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.js +1 -0
- package/lib/models/add-family-members-batch-request.d.ts +31 -0
- package/lib/models/add-family-members-batch-request.js +15 -0
- package/lib/models/authenticated-user-in-ui.d.ts +6 -0
- package/lib/models/company-response.d.ts +8 -2
- package/lib/models/company-update-request.d.ts +12 -0
- package/lib/models/database-inspection-response.d.ts +33 -0
- package/lib/models/database-inspection-response.js +15 -0
- package/lib/models/entity-data.d.ts +32 -0
- package/lib/models/entity-data.js +15 -0
- package/lib/models/index.d.ts +9 -0
- package/lib/models/index.js +9 -0
- package/lib/models/single-entity-response.d.ts +38 -0
- package/lib/models/single-entity-response.js +15 -0
- package/lib/models/state-response.d.ts +12 -0
- package/lib/models/suggested-family-member-dto.d.ts +36 -0
- package/lib/models/suggested-family-member-dto.js +15 -0
- package/lib/models/test-add-to-company-request.d.ts +104 -0
- package/lib/models/test-add-to-company-request.js +15 -0
- package/lib/models/test-add-to-company-response.d.ts +32 -0
- package/lib/models/test-add-to-company-response.js +15 -0
- package/lib/models/test-quick-books-callback-request.d.ts +42 -0
- package/lib/models/test-quick-books-callback-request.js +15 -0
- package/lib/models/test-quick-books-callback-response.d.ts +30 -0
- package/lib/models/test-quick-books-callback-response.js +15 -0
- package/lib/models/user-response.d.ts +6 -0
- package/lib/models/user-update-request.d.ts +6 -0
- package/package.json +1 -1
package/lib/api/auth-api.d.ts
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
import type { Configuration } from '../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import type { AuthenticatedUserInUi } from '../models';
|
|
16
15
|
import type { LoginRequest } from '../models';
|
|
17
16
|
import type { OpenIdClaimResponse } from '../models';
|
|
18
17
|
import type { OpenIdOptionsResult } from '../models';
|
|
@@ -23,13 +22,6 @@ import type { SignUpRequest } from '../models';
|
|
|
23
22
|
* @export
|
|
24
23
|
*/
|
|
25
24
|
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @param {string} creds
|
|
29
|
-
* @param {*} [options] Override http request option.
|
|
30
|
-
* @throws {RequiredError}
|
|
31
|
-
*/
|
|
32
|
-
apiAuthGenerateTestJWTCredsGet: (creds: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
25
|
/**
|
|
34
26
|
*
|
|
35
27
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -65,13 +57,6 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
65
57
|
* @export
|
|
66
58
|
*/
|
|
67
59
|
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @param {string} creds
|
|
71
|
-
* @param {*} [options] Override http request option.
|
|
72
|
-
* @throws {RequiredError}
|
|
73
|
-
*/
|
|
74
|
-
apiAuthGenerateTestJWTCredsGet(creds: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticatedUserInUi>>;
|
|
75
60
|
/**
|
|
76
61
|
*
|
|
77
62
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -107,13 +92,6 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
107
92
|
* @export
|
|
108
93
|
*/
|
|
109
94
|
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
110
|
-
/**
|
|
111
|
-
*
|
|
112
|
-
* @param {string} creds
|
|
113
|
-
* @param {*} [options] Override http request option.
|
|
114
|
-
* @throws {RequiredError}
|
|
115
|
-
*/
|
|
116
|
-
apiAuthGenerateTestJWTCredsGet(creds: string, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticatedUserInUi>;
|
|
117
95
|
/**
|
|
118
96
|
*
|
|
119
97
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -151,14 +129,6 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
151
129
|
* @extends {BaseAPI}
|
|
152
130
|
*/
|
|
153
131
|
export declare class AuthApi extends BaseAPI {
|
|
154
|
-
/**
|
|
155
|
-
*
|
|
156
|
-
* @param {string} creds
|
|
157
|
-
* @param {*} [options] Override http request option.
|
|
158
|
-
* @throws {RequiredError}
|
|
159
|
-
* @memberof AuthApi
|
|
160
|
-
*/
|
|
161
|
-
apiAuthGenerateTestJWTCredsGet(creds: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticatedUserInUi, any, {}>>;
|
|
162
132
|
/**
|
|
163
133
|
*
|
|
164
134
|
* @param {LoginRequest} [loginRequest]
|
package/lib/api/auth-api.js
CHANGED
|
@@ -89,48 +89,6 @@ var base_1 = require("../base");
|
|
|
89
89
|
var AuthApiAxiosParamCreator = function (configuration) {
|
|
90
90
|
var _this = this;
|
|
91
91
|
return {
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @param {string} creds
|
|
95
|
-
* @param {*} [options] Override http request option.
|
|
96
|
-
* @throws {RequiredError}
|
|
97
|
-
*/
|
|
98
|
-
apiAuthGenerateTestJWTCredsGet: function (creds, options) {
|
|
99
|
-
if (options === void 0) { options = {}; }
|
|
100
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
101
|
-
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
102
|
-
return __generator(this, function (_a) {
|
|
103
|
-
switch (_a.label) {
|
|
104
|
-
case 0:
|
|
105
|
-
// verify required parameter 'creds' is not null or undefined
|
|
106
|
-
(0, common_1.assertParamExists)('apiAuthGenerateTestJWTCredsGet', 'creds', creds);
|
|
107
|
-
localVarPath = "/api/Auth/generateTestJWT/{creds}"
|
|
108
|
-
.replace("{".concat("creds", "}"), encodeURIComponent(String(creds)));
|
|
109
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
110
|
-
if (configuration) {
|
|
111
|
-
baseOptions = configuration.baseOptions;
|
|
112
|
-
}
|
|
113
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
114
|
-
localVarHeaderParameter = {};
|
|
115
|
-
localVarQueryParameter = {};
|
|
116
|
-
// authentication Bearer required
|
|
117
|
-
// http bearer authentication required
|
|
118
|
-
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
119
|
-
case 1:
|
|
120
|
-
// authentication Bearer required
|
|
121
|
-
// http bearer authentication required
|
|
122
|
-
_a.sent();
|
|
123
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
124
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
125
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
126
|
-
return [2 /*return*/, {
|
|
127
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
128
|
-
options: localVarRequestOptions,
|
|
129
|
-
}];
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
});
|
|
133
|
-
},
|
|
134
92
|
/**
|
|
135
93
|
*
|
|
136
94
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -310,28 +268,6 @@ exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator;
|
|
|
310
268
|
var AuthApiFp = function (configuration) {
|
|
311
269
|
var localVarAxiosParamCreator = (0, exports.AuthApiAxiosParamCreator)(configuration);
|
|
312
270
|
return {
|
|
313
|
-
/**
|
|
314
|
-
*
|
|
315
|
-
* @param {string} creds
|
|
316
|
-
* @param {*} [options] Override http request option.
|
|
317
|
-
* @throws {RequiredError}
|
|
318
|
-
*/
|
|
319
|
-
apiAuthGenerateTestJWTCredsGet: function (creds, options) {
|
|
320
|
-
var _a, _b, _c;
|
|
321
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
322
|
-
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
323
|
-
return __generator(this, function (_d) {
|
|
324
|
-
switch (_d.label) {
|
|
325
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiAuthGenerateTestJWTCredsGet(creds, options)];
|
|
326
|
-
case 1:
|
|
327
|
-
localVarAxiosArgs = _d.sent();
|
|
328
|
-
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
329
|
-
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.apiAuthGenerateTestJWTCredsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
330
|
-
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
331
|
-
}
|
|
332
|
-
});
|
|
333
|
-
});
|
|
334
|
-
},
|
|
335
271
|
/**
|
|
336
272
|
*
|
|
337
273
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -431,15 +367,6 @@ exports.AuthApiFp = AuthApiFp;
|
|
|
431
367
|
var AuthApiFactory = function (configuration, basePath, axios) {
|
|
432
368
|
var localVarFp = (0, exports.AuthApiFp)(configuration);
|
|
433
369
|
return {
|
|
434
|
-
/**
|
|
435
|
-
*
|
|
436
|
-
* @param {string} creds
|
|
437
|
-
* @param {*} [options] Override http request option.
|
|
438
|
-
* @throws {RequiredError}
|
|
439
|
-
*/
|
|
440
|
-
apiAuthGenerateTestJWTCredsGet: function (creds, options) {
|
|
441
|
-
return localVarFp.apiAuthGenerateTestJWTCredsGet(creds, options).then(function (request) { return request(axios, basePath); });
|
|
442
|
-
},
|
|
443
370
|
/**
|
|
444
371
|
*
|
|
445
372
|
* @param {LoginRequest} [loginRequest]
|
|
@@ -491,17 +418,6 @@ var AuthApi = /** @class */ (function (_super) {
|
|
|
491
418
|
function AuthApi() {
|
|
492
419
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
493
420
|
}
|
|
494
|
-
/**
|
|
495
|
-
*
|
|
496
|
-
* @param {string} creds
|
|
497
|
-
* @param {*} [options] Override http request option.
|
|
498
|
-
* @throws {RequiredError}
|
|
499
|
-
* @memberof AuthApi
|
|
500
|
-
*/
|
|
501
|
-
AuthApi.prototype.apiAuthGenerateTestJWTCredsGet = function (creds, options) {
|
|
502
|
-
var _this = this;
|
|
503
|
-
return (0, exports.AuthApiFp)(this.configuration).apiAuthGenerateTestJWTCredsGet(creds, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
504
|
-
};
|
|
505
421
|
/**
|
|
506
422
|
*
|
|
507
423
|
* @param {LoginRequest} [loginRequest]
|
package/lib/api/family-api.d.ts
CHANGED
|
@@ -13,9 +13,11 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { AddFamilyMemberRequest } from '../models';
|
|
16
|
+
import type { AddFamilyMembersBatchRequest } from '../models';
|
|
16
17
|
import type { FamilyMemberResponse } from '../models';
|
|
17
18
|
import type { JoinFamilyByCompanyRequest } from '../models';
|
|
18
19
|
import type { SharedFamilyInfoResponse } from '../models';
|
|
20
|
+
import type { SuggestedFamilyMemberDto } from '../models';
|
|
19
21
|
/**
|
|
20
22
|
* FamilyApi - axios parameter creator
|
|
21
23
|
* @export
|
|
@@ -36,6 +38,22 @@ export declare const FamilyApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
36
38
|
* @throws {RequiredError}
|
|
37
39
|
*/
|
|
38
40
|
apiFamilyFamilyMembersUserIdGet: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @param {string} headUserId
|
|
44
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
apiFamilyHeadUserIdMembersBatchPost: (headUserId: string, addFamilyMembersBatchRequest?: AddFamilyMembersBatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @param {string} headUserId
|
|
52
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
53
|
+
* @param {*} [options] Override http request option.
|
|
54
|
+
* @throws {RequiredError}
|
|
55
|
+
*/
|
|
56
|
+
apiFamilyHeadUserIdMembersPermissionPut: (headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
57
|
/**
|
|
40
58
|
*
|
|
41
59
|
* @param {string} headUserId
|
|
@@ -44,6 +62,13 @@ export declare const FamilyApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
44
62
|
* @throws {RequiredError}
|
|
45
63
|
*/
|
|
46
64
|
apiFamilyHeadUserIdMembersPost: (headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @param {string} headUserId
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
apiFamilyHeadUserIdSuggestedMembersGet: (headUserId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47
72
|
/**
|
|
48
73
|
*
|
|
49
74
|
* @param {string} headUserId
|
|
@@ -99,6 +124,22 @@ export declare const FamilyApiFp: (configuration?: Configuration) => {
|
|
|
99
124
|
* @throws {RequiredError}
|
|
100
125
|
*/
|
|
101
126
|
apiFamilyFamilyMembersUserIdGet(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FamilyMemberResponse>>>;
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @param {string} headUserId
|
|
130
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
apiFamilyHeadUserIdMembersBatchPost(headUserId: string, addFamilyMembersBatchRequest?: AddFamilyMembersBatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FamilyMemberResponse>>>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @param {string} headUserId
|
|
138
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
apiFamilyHeadUserIdMembersPermissionPut(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FamilyMemberResponse>>;
|
|
102
143
|
/**
|
|
103
144
|
*
|
|
104
145
|
* @param {string} headUserId
|
|
@@ -107,6 +148,13 @@ export declare const FamilyApiFp: (configuration?: Configuration) => {
|
|
|
107
148
|
* @throws {RequiredError}
|
|
108
149
|
*/
|
|
109
150
|
apiFamilyHeadUserIdMembersPost(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FamilyMemberResponse>>;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @param {string} headUserId
|
|
154
|
+
* @param {*} [options] Override http request option.
|
|
155
|
+
* @throws {RequiredError}
|
|
156
|
+
*/
|
|
157
|
+
apiFamilyHeadUserIdSuggestedMembersGet(headUserId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedFamilyMemberDto>>>;
|
|
110
158
|
/**
|
|
111
159
|
*
|
|
112
160
|
* @param {string} headUserId
|
|
@@ -162,6 +210,22 @@ export declare const FamilyApiFactory: (configuration?: Configuration, basePath?
|
|
|
162
210
|
* @throws {RequiredError}
|
|
163
211
|
*/
|
|
164
212
|
apiFamilyFamilyMembersUserIdGet(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FamilyMemberResponse>>;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @param {string} headUserId
|
|
216
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
apiFamilyHeadUserIdMembersBatchPost(headUserId: string, addFamilyMembersBatchRequest?: AddFamilyMembersBatchRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<FamilyMemberResponse>>;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @param {string} headUserId
|
|
224
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
apiFamilyHeadUserIdMembersPermissionPut(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<FamilyMemberResponse>;
|
|
165
229
|
/**
|
|
166
230
|
*
|
|
167
231
|
* @param {string} headUserId
|
|
@@ -170,6 +234,13 @@ export declare const FamilyApiFactory: (configuration?: Configuration, basePath?
|
|
|
170
234
|
* @throws {RequiredError}
|
|
171
235
|
*/
|
|
172
236
|
apiFamilyHeadUserIdMembersPost(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<FamilyMemberResponse>;
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @param {string} headUserId
|
|
240
|
+
* @param {*} [options] Override http request option.
|
|
241
|
+
* @throws {RequiredError}
|
|
242
|
+
*/
|
|
243
|
+
apiFamilyHeadUserIdSuggestedMembersGet(headUserId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedFamilyMemberDto>>;
|
|
173
244
|
/**
|
|
174
245
|
*
|
|
175
246
|
* @param {string} headUserId
|
|
@@ -229,6 +300,24 @@ export declare class FamilyApi extends BaseAPI {
|
|
|
229
300
|
* @memberof FamilyApi
|
|
230
301
|
*/
|
|
231
302
|
apiFamilyFamilyMembersUserIdGet(userId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FamilyMemberResponse[], any, {}>>;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* @param {string} headUserId
|
|
306
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
307
|
+
* @param {*} [options] Override http request option.
|
|
308
|
+
* @throws {RequiredError}
|
|
309
|
+
* @memberof FamilyApi
|
|
310
|
+
*/
|
|
311
|
+
apiFamilyHeadUserIdMembersBatchPost(headUserId: string, addFamilyMembersBatchRequest?: AddFamilyMembersBatchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FamilyMemberResponse[], any, {}>>;
|
|
312
|
+
/**
|
|
313
|
+
*
|
|
314
|
+
* @param {string} headUserId
|
|
315
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
316
|
+
* @param {*} [options] Override http request option.
|
|
317
|
+
* @throws {RequiredError}
|
|
318
|
+
* @memberof FamilyApi
|
|
319
|
+
*/
|
|
320
|
+
apiFamilyHeadUserIdMembersPermissionPut(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FamilyMemberResponse, any, {}>>;
|
|
232
321
|
/**
|
|
233
322
|
*
|
|
234
323
|
* @param {string} headUserId
|
|
@@ -238,6 +327,14 @@ export declare class FamilyApi extends BaseAPI {
|
|
|
238
327
|
* @memberof FamilyApi
|
|
239
328
|
*/
|
|
240
329
|
apiFamilyHeadUserIdMembersPost(headUserId: string, addFamilyMemberRequest?: AddFamilyMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FamilyMemberResponse, any, {}>>;
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
* @param {string} headUserId
|
|
333
|
+
* @param {*} [options] Override http request option.
|
|
334
|
+
* @throws {RequiredError}
|
|
335
|
+
* @memberof FamilyApi
|
|
336
|
+
*/
|
|
337
|
+
apiFamilyHeadUserIdSuggestedMembersGet(headUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuggestedFamilyMemberDto[], any, {}>>;
|
|
241
338
|
/**
|
|
242
339
|
*
|
|
243
340
|
* @param {string} headUserId
|
package/lib/api/family-api.js
CHANGED
|
@@ -176,6 +176,96 @@ var FamilyApiAxiosParamCreator = function (configuration) {
|
|
|
176
176
|
});
|
|
177
177
|
});
|
|
178
178
|
},
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @param {string} headUserId
|
|
182
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
183
|
+
* @param {*} [options] Override http request option.
|
|
184
|
+
* @throws {RequiredError}
|
|
185
|
+
*/
|
|
186
|
+
apiFamilyHeadUserIdMembersBatchPost: function (headUserId, addFamilyMembersBatchRequest, options) {
|
|
187
|
+
if (options === void 0) { options = {}; }
|
|
188
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
189
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
190
|
+
return __generator(this, function (_a) {
|
|
191
|
+
switch (_a.label) {
|
|
192
|
+
case 0:
|
|
193
|
+
// verify required parameter 'headUserId' is not null or undefined
|
|
194
|
+
(0, common_1.assertParamExists)('apiFamilyHeadUserIdMembersBatchPost', 'headUserId', headUserId);
|
|
195
|
+
localVarPath = "/api/family/{headUserId}/members/batch"
|
|
196
|
+
.replace("{".concat("headUserId", "}"), encodeURIComponent(String(headUserId)));
|
|
197
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
198
|
+
if (configuration) {
|
|
199
|
+
baseOptions = configuration.baseOptions;
|
|
200
|
+
}
|
|
201
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
202
|
+
localVarHeaderParameter = {};
|
|
203
|
+
localVarQueryParameter = {};
|
|
204
|
+
// authentication Bearer required
|
|
205
|
+
// http bearer authentication required
|
|
206
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
207
|
+
case 1:
|
|
208
|
+
// authentication Bearer required
|
|
209
|
+
// http bearer authentication required
|
|
210
|
+
_a.sent();
|
|
211
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
212
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
213
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
214
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
215
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(addFamilyMembersBatchRequest, localVarRequestOptions, configuration);
|
|
216
|
+
return [2 /*return*/, {
|
|
217
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
218
|
+
options: localVarRequestOptions,
|
|
219
|
+
}];
|
|
220
|
+
}
|
|
221
|
+
});
|
|
222
|
+
});
|
|
223
|
+
},
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @param {string} headUserId
|
|
227
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
228
|
+
* @param {*} [options] Override http request option.
|
|
229
|
+
* @throws {RequiredError}
|
|
230
|
+
*/
|
|
231
|
+
apiFamilyHeadUserIdMembersPermissionPut: function (headUserId, addFamilyMemberRequest, options) {
|
|
232
|
+
if (options === void 0) { options = {}; }
|
|
233
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
234
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
235
|
+
return __generator(this, function (_a) {
|
|
236
|
+
switch (_a.label) {
|
|
237
|
+
case 0:
|
|
238
|
+
// verify required parameter 'headUserId' is not null or undefined
|
|
239
|
+
(0, common_1.assertParamExists)('apiFamilyHeadUserIdMembersPermissionPut', 'headUserId', headUserId);
|
|
240
|
+
localVarPath = "/api/family/{headUserId}/members/permission"
|
|
241
|
+
.replace("{".concat("headUserId", "}"), encodeURIComponent(String(headUserId)));
|
|
242
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
243
|
+
if (configuration) {
|
|
244
|
+
baseOptions = configuration.baseOptions;
|
|
245
|
+
}
|
|
246
|
+
localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
|
|
247
|
+
localVarHeaderParameter = {};
|
|
248
|
+
localVarQueryParameter = {};
|
|
249
|
+
// authentication Bearer required
|
|
250
|
+
// http bearer authentication required
|
|
251
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
252
|
+
case 1:
|
|
253
|
+
// authentication Bearer required
|
|
254
|
+
// http bearer authentication required
|
|
255
|
+
_a.sent();
|
|
256
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
257
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
258
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
259
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
260
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(addFamilyMemberRequest, localVarRequestOptions, configuration);
|
|
261
|
+
return [2 /*return*/, {
|
|
262
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
263
|
+
options: localVarRequestOptions,
|
|
264
|
+
}];
|
|
265
|
+
}
|
|
266
|
+
});
|
|
267
|
+
});
|
|
268
|
+
},
|
|
179
269
|
/**
|
|
180
270
|
*
|
|
181
271
|
* @param {string} headUserId
|
|
@@ -221,6 +311,48 @@ var FamilyApiAxiosParamCreator = function (configuration) {
|
|
|
221
311
|
});
|
|
222
312
|
});
|
|
223
313
|
},
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @param {string} headUserId
|
|
317
|
+
* @param {*} [options] Override http request option.
|
|
318
|
+
* @throws {RequiredError}
|
|
319
|
+
*/
|
|
320
|
+
apiFamilyHeadUserIdSuggestedMembersGet: function (headUserId, options) {
|
|
321
|
+
if (options === void 0) { options = {}; }
|
|
322
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
323
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
324
|
+
return __generator(this, function (_a) {
|
|
325
|
+
switch (_a.label) {
|
|
326
|
+
case 0:
|
|
327
|
+
// verify required parameter 'headUserId' is not null or undefined
|
|
328
|
+
(0, common_1.assertParamExists)('apiFamilyHeadUserIdSuggestedMembersGet', 'headUserId', headUserId);
|
|
329
|
+
localVarPath = "/api/family/{headUserId}/suggested-members"
|
|
330
|
+
.replace("{".concat("headUserId", "}"), encodeURIComponent(String(headUserId)));
|
|
331
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
332
|
+
if (configuration) {
|
|
333
|
+
baseOptions = configuration.baseOptions;
|
|
334
|
+
}
|
|
335
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
336
|
+
localVarHeaderParameter = {};
|
|
337
|
+
localVarQueryParameter = {};
|
|
338
|
+
// authentication Bearer required
|
|
339
|
+
// http bearer authentication required
|
|
340
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
341
|
+
case 1:
|
|
342
|
+
// authentication Bearer required
|
|
343
|
+
// http bearer authentication required
|
|
344
|
+
_a.sent();
|
|
345
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
346
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
347
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
348
|
+
return [2 /*return*/, {
|
|
349
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
350
|
+
options: localVarRequestOptions,
|
|
351
|
+
}];
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
});
|
|
355
|
+
},
|
|
224
356
|
/**
|
|
225
357
|
*
|
|
226
358
|
* @param {string} headUserId
|
|
@@ -480,6 +612,52 @@ var FamilyApiFp = function (configuration) {
|
|
|
480
612
|
});
|
|
481
613
|
});
|
|
482
614
|
},
|
|
615
|
+
/**
|
|
616
|
+
*
|
|
617
|
+
* @param {string} headUserId
|
|
618
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
619
|
+
* @param {*} [options] Override http request option.
|
|
620
|
+
* @throws {RequiredError}
|
|
621
|
+
*/
|
|
622
|
+
apiFamilyHeadUserIdMembersBatchPost: function (headUserId, addFamilyMembersBatchRequest, options) {
|
|
623
|
+
var _a, _b, _c;
|
|
624
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
625
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
626
|
+
return __generator(this, function (_d) {
|
|
627
|
+
switch (_d.label) {
|
|
628
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiFamilyHeadUserIdMembersBatchPost(headUserId, addFamilyMembersBatchRequest, options)];
|
|
629
|
+
case 1:
|
|
630
|
+
localVarAxiosArgs = _d.sent();
|
|
631
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
632
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['FamilyApi.apiFamilyHeadUserIdMembersBatchPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
633
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
634
|
+
}
|
|
635
|
+
});
|
|
636
|
+
});
|
|
637
|
+
},
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @param {string} headUserId
|
|
641
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
642
|
+
* @param {*} [options] Override http request option.
|
|
643
|
+
* @throws {RequiredError}
|
|
644
|
+
*/
|
|
645
|
+
apiFamilyHeadUserIdMembersPermissionPut: function (headUserId, addFamilyMemberRequest, options) {
|
|
646
|
+
var _a, _b, _c;
|
|
647
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
648
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
649
|
+
return __generator(this, function (_d) {
|
|
650
|
+
switch (_d.label) {
|
|
651
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiFamilyHeadUserIdMembersPermissionPut(headUserId, addFamilyMemberRequest, options)];
|
|
652
|
+
case 1:
|
|
653
|
+
localVarAxiosArgs = _d.sent();
|
|
654
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
655
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['FamilyApi.apiFamilyHeadUserIdMembersPermissionPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
656
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
657
|
+
}
|
|
658
|
+
});
|
|
659
|
+
});
|
|
660
|
+
},
|
|
483
661
|
/**
|
|
484
662
|
*
|
|
485
663
|
* @param {string} headUserId
|
|
@@ -503,6 +681,28 @@ var FamilyApiFp = function (configuration) {
|
|
|
503
681
|
});
|
|
504
682
|
});
|
|
505
683
|
},
|
|
684
|
+
/**
|
|
685
|
+
*
|
|
686
|
+
* @param {string} headUserId
|
|
687
|
+
* @param {*} [options] Override http request option.
|
|
688
|
+
* @throws {RequiredError}
|
|
689
|
+
*/
|
|
690
|
+
apiFamilyHeadUserIdSuggestedMembersGet: function (headUserId, options) {
|
|
691
|
+
var _a, _b, _c;
|
|
692
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
693
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
694
|
+
return __generator(this, function (_d) {
|
|
695
|
+
switch (_d.label) {
|
|
696
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiFamilyHeadUserIdSuggestedMembersGet(headUserId, options)];
|
|
697
|
+
case 1:
|
|
698
|
+
localVarAxiosArgs = _d.sent();
|
|
699
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
700
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['FamilyApi.apiFamilyHeadUserIdSuggestedMembersGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
701
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
702
|
+
}
|
|
703
|
+
});
|
|
704
|
+
});
|
|
705
|
+
},
|
|
506
706
|
/**
|
|
507
707
|
*
|
|
508
708
|
* @param {string} headUserId
|
|
@@ -641,6 +841,26 @@ var FamilyApiFactory = function (configuration, basePath, axios) {
|
|
|
641
841
|
apiFamilyFamilyMembersUserIdGet: function (userId, options) {
|
|
642
842
|
return localVarFp.apiFamilyFamilyMembersUserIdGet(userId, options).then(function (request) { return request(axios, basePath); });
|
|
643
843
|
},
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @param {string} headUserId
|
|
847
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
848
|
+
* @param {*} [options] Override http request option.
|
|
849
|
+
* @throws {RequiredError}
|
|
850
|
+
*/
|
|
851
|
+
apiFamilyHeadUserIdMembersBatchPost: function (headUserId, addFamilyMembersBatchRequest, options) {
|
|
852
|
+
return localVarFp.apiFamilyHeadUserIdMembersBatchPost(headUserId, addFamilyMembersBatchRequest, options).then(function (request) { return request(axios, basePath); });
|
|
853
|
+
},
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @param {string} headUserId
|
|
857
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
858
|
+
* @param {*} [options] Override http request option.
|
|
859
|
+
* @throws {RequiredError}
|
|
860
|
+
*/
|
|
861
|
+
apiFamilyHeadUserIdMembersPermissionPut: function (headUserId, addFamilyMemberRequest, options) {
|
|
862
|
+
return localVarFp.apiFamilyHeadUserIdMembersPermissionPut(headUserId, addFamilyMemberRequest, options).then(function (request) { return request(axios, basePath); });
|
|
863
|
+
},
|
|
644
864
|
/**
|
|
645
865
|
*
|
|
646
866
|
* @param {string} headUserId
|
|
@@ -651,6 +871,15 @@ var FamilyApiFactory = function (configuration, basePath, axios) {
|
|
|
651
871
|
apiFamilyHeadUserIdMembersPost: function (headUserId, addFamilyMemberRequest, options) {
|
|
652
872
|
return localVarFp.apiFamilyHeadUserIdMembersPost(headUserId, addFamilyMemberRequest, options).then(function (request) { return request(axios, basePath); });
|
|
653
873
|
},
|
|
874
|
+
/**
|
|
875
|
+
*
|
|
876
|
+
* @param {string} headUserId
|
|
877
|
+
* @param {*} [options] Override http request option.
|
|
878
|
+
* @throws {RequiredError}
|
|
879
|
+
*/
|
|
880
|
+
apiFamilyHeadUserIdSuggestedMembersGet: function (headUserId, options) {
|
|
881
|
+
return localVarFp.apiFamilyHeadUserIdSuggestedMembersGet(headUserId, options).then(function (request) { return request(axios, basePath); });
|
|
882
|
+
},
|
|
654
883
|
/**
|
|
655
884
|
*
|
|
656
885
|
* @param {string} headUserId
|
|
@@ -732,6 +961,30 @@ var FamilyApi = /** @class */ (function (_super) {
|
|
|
732
961
|
var _this = this;
|
|
733
962
|
return (0, exports.FamilyApiFp)(this.configuration).apiFamilyFamilyMembersUserIdGet(userId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
734
963
|
};
|
|
964
|
+
/**
|
|
965
|
+
*
|
|
966
|
+
* @param {string} headUserId
|
|
967
|
+
* @param {AddFamilyMembersBatchRequest} [addFamilyMembersBatchRequest]
|
|
968
|
+
* @param {*} [options] Override http request option.
|
|
969
|
+
* @throws {RequiredError}
|
|
970
|
+
* @memberof FamilyApi
|
|
971
|
+
*/
|
|
972
|
+
FamilyApi.prototype.apiFamilyHeadUserIdMembersBatchPost = function (headUserId, addFamilyMembersBatchRequest, options) {
|
|
973
|
+
var _this = this;
|
|
974
|
+
return (0, exports.FamilyApiFp)(this.configuration).apiFamilyHeadUserIdMembersBatchPost(headUserId, addFamilyMembersBatchRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
975
|
+
};
|
|
976
|
+
/**
|
|
977
|
+
*
|
|
978
|
+
* @param {string} headUserId
|
|
979
|
+
* @param {AddFamilyMemberRequest} [addFamilyMemberRequest]
|
|
980
|
+
* @param {*} [options] Override http request option.
|
|
981
|
+
* @throws {RequiredError}
|
|
982
|
+
* @memberof FamilyApi
|
|
983
|
+
*/
|
|
984
|
+
FamilyApi.prototype.apiFamilyHeadUserIdMembersPermissionPut = function (headUserId, addFamilyMemberRequest, options) {
|
|
985
|
+
var _this = this;
|
|
986
|
+
return (0, exports.FamilyApiFp)(this.configuration).apiFamilyHeadUserIdMembersPermissionPut(headUserId, addFamilyMemberRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
987
|
+
};
|
|
735
988
|
/**
|
|
736
989
|
*
|
|
737
990
|
* @param {string} headUserId
|
|
@@ -744,6 +997,17 @@ var FamilyApi = /** @class */ (function (_super) {
|
|
|
744
997
|
var _this = this;
|
|
745
998
|
return (0, exports.FamilyApiFp)(this.configuration).apiFamilyHeadUserIdMembersPost(headUserId, addFamilyMemberRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
746
999
|
};
|
|
1000
|
+
/**
|
|
1001
|
+
*
|
|
1002
|
+
* @param {string} headUserId
|
|
1003
|
+
* @param {*} [options] Override http request option.
|
|
1004
|
+
* @throws {RequiredError}
|
|
1005
|
+
* @memberof FamilyApi
|
|
1006
|
+
*/
|
|
1007
|
+
FamilyApi.prototype.apiFamilyHeadUserIdSuggestedMembersGet = function (headUserId, options) {
|
|
1008
|
+
var _this = this;
|
|
1009
|
+
return (0, exports.FamilyApiFp)(this.configuration).apiFamilyHeadUserIdSuggestedMembersGet(headUserId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1010
|
+
};
|
|
747
1011
|
/**
|
|
748
1012
|
*
|
|
749
1013
|
* @param {string} headUserId
|