@closerplatform/spinner-openapi 0.12.462 → 0.12.464
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/dist/api.d.ts +8 -8
- package/dist/api.js +5 -5
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -14840,11 +14840,11 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
14840
14840
|
/**
|
|
14841
14841
|
*
|
|
14842
14842
|
* @summary Replace or fully update preferences
|
|
14843
|
-
* @param {
|
|
14843
|
+
* @param {AgentPreferences} body
|
|
14844
14844
|
* @param {*} [options] Override http request option.
|
|
14845
14845
|
* @throws {RequiredError}
|
|
14846
14846
|
*/
|
|
14847
|
-
putAgentPreferences(body:
|
|
14847
|
+
putAgentPreferences(body: AgentPreferences, options?: any): FetchArgs;
|
|
14848
14848
|
/**
|
|
14849
14849
|
*
|
|
14850
14850
|
* @summary Reinit customer
|
|
@@ -15265,11 +15265,11 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15265
15265
|
/**
|
|
15266
15266
|
*
|
|
15267
15267
|
* @summary Replace or fully update preferences
|
|
15268
|
-
* @param {
|
|
15268
|
+
* @param {AgentPreferences} body
|
|
15269
15269
|
* @param {*} [options] Override http request option.
|
|
15270
15270
|
* @throws {RequiredError}
|
|
15271
15271
|
*/
|
|
15272
|
-
putAgentPreferences(body:
|
|
15272
|
+
putAgentPreferences(body: AgentPreferences, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
15273
15273
|
/**
|
|
15274
15274
|
*
|
|
15275
15275
|
* @summary Reinit customer
|
|
@@ -15690,11 +15690,11 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15690
15690
|
/**
|
|
15691
15691
|
*
|
|
15692
15692
|
* @summary Replace or fully update preferences
|
|
15693
|
-
* @param {
|
|
15693
|
+
* @param {AgentPreferences} body
|
|
15694
15694
|
* @param {*} [options] Override http request option.
|
|
15695
15695
|
* @throws {RequiredError}
|
|
15696
15696
|
*/
|
|
15697
|
-
putAgentPreferences(body:
|
|
15697
|
+
putAgentPreferences(body: AgentPreferences, options?: any): Promise<Response>;
|
|
15698
15698
|
/**
|
|
15699
15699
|
*
|
|
15700
15700
|
* @summary Reinit customer
|
|
@@ -16147,12 +16147,12 @@ export declare class UsersApi extends BaseAPI {
|
|
|
16147
16147
|
/**
|
|
16148
16148
|
*
|
|
16149
16149
|
* @summary Replace or fully update preferences
|
|
16150
|
-
* @param {
|
|
16150
|
+
* @param {AgentPreferences} body
|
|
16151
16151
|
* @param {*} [options] Override http request option.
|
|
16152
16152
|
* @throws {RequiredError}
|
|
16153
16153
|
* @memberof UsersApi
|
|
16154
16154
|
*/
|
|
16155
|
-
putAgentPreferences(body:
|
|
16155
|
+
putAgentPreferences(body: AgentPreferences, options?: any): Promise<Response>;
|
|
16156
16156
|
/**
|
|
16157
16157
|
*
|
|
16158
16158
|
* @summary Reinit customer
|
package/dist/api.js
CHANGED
|
@@ -17377,7 +17377,7 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17377
17377
|
/**
|
|
17378
17378
|
*
|
|
17379
17379
|
* @summary Replace or fully update preferences
|
|
17380
|
-
* @param {
|
|
17380
|
+
* @param {AgentPreferences} body
|
|
17381
17381
|
* @param {*} [options] Override http request option.
|
|
17382
17382
|
* @throws {RequiredError}
|
|
17383
17383
|
*/
|
|
@@ -17403,7 +17403,7 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
17403
17403
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
17404
17404
|
delete localVarUrlObj.search;
|
|
17405
17405
|
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
17406
|
-
const needsSerialization = ("
|
|
17406
|
+
const needsSerialization = ("AgentPreferences" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
17407
17407
|
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
|
|
17408
17408
|
return {
|
|
17409
17409
|
url: url.format(localVarUrlObj),
|
|
@@ -18837,7 +18837,7 @@ const UsersApiFp = function (configuration) {
|
|
|
18837
18837
|
/**
|
|
18838
18838
|
*
|
|
18839
18839
|
* @summary Replace or fully update preferences
|
|
18840
|
-
* @param {
|
|
18840
|
+
* @param {AgentPreferences} body
|
|
18841
18841
|
* @param {*} [options] Override http request option.
|
|
18842
18842
|
* @throws {RequiredError}
|
|
18843
18843
|
*/
|
|
@@ -19589,7 +19589,7 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
|
|
|
19589
19589
|
/**
|
|
19590
19590
|
*
|
|
19591
19591
|
* @summary Replace or fully update preferences
|
|
19592
|
-
* @param {
|
|
19592
|
+
* @param {AgentPreferences} body
|
|
19593
19593
|
* @param {*} [options] Override http request option.
|
|
19594
19594
|
* @throws {RequiredError}
|
|
19595
19595
|
*/
|
|
@@ -20152,7 +20152,7 @@ class UsersApi extends BaseAPI {
|
|
|
20152
20152
|
/**
|
|
20153
20153
|
*
|
|
20154
20154
|
* @summary Replace or fully update preferences
|
|
20155
|
-
* @param {
|
|
20155
|
+
* @param {AgentPreferences} body
|
|
20156
20156
|
* @param {*} [options] Override http request option.
|
|
20157
20157
|
* @throws {RequiredError}
|
|
20158
20158
|
* @memberof UsersApi
|