@closerplatform/spinner-openapi 0.12.1079 → 0.12.1081

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 CHANGED
@@ -15139,13 +15139,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
15139
15139
  * @throws {RequiredError}
15140
15140
  */
15141
15141
  getLimitedAgentProfile(adviserId: string, options?: any): FetchArgs;
15142
- /**
15143
- *
15144
- * @summary Get limited advisers profiles within org.
15145
- * @param {*} [options] Override http request option.
15146
- * @throws {RequiredError}
15147
- */
15148
- getLimitedAgentsProfiles(options?: any): FetchArgs;
15149
15142
  /**
15150
15143
  *
15151
15144
  * @summary Get own agent context.
@@ -15472,13 +15465,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
15472
15465
  * @throws {RequiredError}
15473
15466
  */
15474
15467
  getLimitedAgentProfile(adviserId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<LimitedAgentProfile>;
15475
- /**
15476
- *
15477
- * @summary Get limited advisers profiles within org.
15478
- * @param {*} [options] Override http request option.
15479
- * @throws {RequiredError}
15480
- */
15481
- getLimitedAgentsProfiles(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<LimitedAgentProfile>>;
15482
15468
  /**
15483
15469
  *
15484
15470
  * @summary Get own agent context.
@@ -15805,13 +15791,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15805
15791
  * @throws {RequiredError}
15806
15792
  */
15807
15793
  getLimitedAgentProfile(adviserId: string, options?: any): Promise<LimitedAgentProfile>;
15808
- /**
15809
- *
15810
- * @summary Get limited advisers profiles within org.
15811
- * @param {*} [options] Override http request option.
15812
- * @throws {RequiredError}
15813
- */
15814
- getLimitedAgentsProfiles(options?: any): Promise<LimitedAgentProfile[]>;
15815
15794
  /**
15816
15795
  *
15817
15796
  * @summary Get own agent context.
@@ -16160,14 +16139,6 @@ export declare class UsersApi extends BaseAPI {
16160
16139
  * @memberof UsersApi
16161
16140
  */
16162
16141
  getLimitedAgentProfile(adviserId: string, options?: any): Promise<LimitedAgentProfile>;
16163
- /**
16164
- *
16165
- * @summary Get limited advisers profiles within org.
16166
- * @param {*} [options] Override http request option.
16167
- * @throws {RequiredError}
16168
- * @memberof UsersApi
16169
- */
16170
- getLimitedAgentsProfiles(options?: any): Promise<LimitedAgentProfile[]>;
16171
16142
  /**
16172
16143
  *
16173
16144
  * @summary Get own agent context.
package/dist/api.js CHANGED
@@ -17476,41 +17476,6 @@ const UsersApiFetchParamCreator = function (configuration) {
17476
17476
  options: localVarRequestOptions,
17477
17477
  };
17478
17478
  },
17479
- /**
17480
- *
17481
- * @summary Get limited advisers profiles within org.
17482
- * @param {*} [options] Override http request option.
17483
- * @throws {RequiredError}
17484
- */
17485
- getLimitedAgentsProfiles(options = {}) {
17486
- const localVarPath = `/users/agents/customer`;
17487
- const localVarUrlObj = url.parse(localVarPath, true);
17488
- const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
17489
- const localVarHeaderParameter = {};
17490
- const localVarQueryParameter = {};
17491
- // authentication apiKey required
17492
- if (configuration && configuration.apiKey) {
17493
- const localVarApiKeyValue = typeof configuration.apiKey === 'function'
17494
- ? configuration.apiKey("X-Api-Key")
17495
- : configuration.apiKey;
17496
- localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
17497
- }
17498
- // authentication fingerprintAuth required
17499
- if (configuration && configuration.apiKey) {
17500
- const localVarApiKeyValue = typeof configuration.apiKey === 'function'
17501
- ? configuration.apiKey("X-Fingerprint")
17502
- : configuration.apiKey;
17503
- localVarHeaderParameter["X-Fingerprint"] = localVarApiKeyValue;
17504
- }
17505
- localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
17506
- // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
17507
- delete localVarUrlObj.search;
17508
- localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
17509
- return {
17510
- url: url.format(localVarUrlObj),
17511
- options: localVarRequestOptions,
17512
- };
17513
- },
17514
17479
  /**
17515
17480
  *
17516
17481
  * @summary Get own agent context.
@@ -18688,25 +18653,6 @@ const UsersApiFp = function (configuration) {
18688
18653
  });
18689
18654
  };
18690
18655
  },
18691
- /**
18692
- *
18693
- * @summary Get limited advisers profiles within org.
18694
- * @param {*} [options] Override http request option.
18695
- * @throws {RequiredError}
18696
- */
18697
- getLimitedAgentsProfiles(options) {
18698
- const localVarFetchArgs = (0, exports.UsersApiFetchParamCreator)(configuration).getLimitedAgentsProfiles(options);
18699
- return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
18700
- return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
18701
- if (response.status >= 200 && response.status < 300) {
18702
- return response.json();
18703
- }
18704
- else {
18705
- throw response;
18706
- }
18707
- });
18708
- };
18709
- },
18710
18656
  /**
18711
18657
  *
18712
18658
  * @summary Get own agent context.
@@ -19328,15 +19274,6 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
19328
19274
  getLimitedAgentProfile(adviserId, options) {
19329
19275
  return (0, exports.UsersApiFp)(configuration).getLimitedAgentProfile(adviserId, options)(fetch, basePath);
19330
19276
  },
19331
- /**
19332
- *
19333
- * @summary Get limited advisers profiles within org.
19334
- * @param {*} [options] Override http request option.
19335
- * @throws {RequiredError}
19336
- */
19337
- getLimitedAgentsProfiles(options) {
19338
- return (0, exports.UsersApiFp)(configuration).getLimitedAgentsProfiles(options)(fetch, basePath);
19339
- },
19340
19277
  /**
19341
19278
  *
19342
19279
  * @summary Get own agent context.
@@ -19769,16 +19706,6 @@ class UsersApi extends BaseAPI {
19769
19706
  getLimitedAgentProfile(adviserId, options) {
19770
19707
  return (0, exports.UsersApiFp)(this.configuration).getLimitedAgentProfile(adviserId, options)(this.fetch, this.basePath);
19771
19708
  }
19772
- /**
19773
- *
19774
- * @summary Get limited advisers profiles within org.
19775
- * @param {*} [options] Override http request option.
19776
- * @throws {RequiredError}
19777
- * @memberof UsersApi
19778
- */
19779
- getLimitedAgentsProfiles(options) {
19780
- return (0, exports.UsersApiFp)(this.configuration).getLimitedAgentsProfiles(options)(this.fetch, this.basePath);
19781
- }
19782
19709
  /**
19783
19710
  *
19784
19711
  * @summary Get own agent context.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@closerplatform/spinner-openapi",
3
- "version": "0.12.1079",
3
+ "version": "0.12.1081",
4
4
  "description": "swagger client for @closerplatform/spinner-openapi",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [