@ember-home/unbound-ts-client 0.0.92 → 0.0.93
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/index.d.mts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -327,7 +327,7 @@ var AuthApiAxiosParamCreator = function(configuration) {
|
|
|
327
327
|
* @param {*} [options] Override http request option.
|
|
328
328
|
* @throws {RequiredError}
|
|
329
329
|
*/
|
|
330
|
-
|
|
330
|
+
getMe: async (options = {}) => {
|
|
331
331
|
const localVarPath = `/v1/me`;
|
|
332
332
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
333
333
|
let baseOptions;
|
|
@@ -356,10 +356,10 @@ var AuthApiFp = function(configuration) {
|
|
|
356
356
|
* @param {*} [options] Override http request option.
|
|
357
357
|
* @throws {RequiredError}
|
|
358
358
|
*/
|
|
359
|
-
async
|
|
360
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
359
|
+
async getMe(options) {
|
|
360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMe(options);
|
|
361
361
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
362
|
-
const localVarOperationServerBasePath = operationServerMap["AuthApi.
|
|
362
|
+
const localVarOperationServerBasePath = operationServerMap["AuthApi.getMe"]?.[localVarOperationServerIndex]?.url;
|
|
363
363
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
364
364
|
}
|
|
365
365
|
};
|
|
@@ -373,8 +373,8 @@ var AuthApiFactory = function(configuration, basePath, axios) {
|
|
|
373
373
|
* @param {*} [options] Override http request option.
|
|
374
374
|
* @throws {RequiredError}
|
|
375
375
|
*/
|
|
376
|
-
|
|
377
|
-
return localVarFp.
|
|
376
|
+
getMe(options) {
|
|
377
|
+
return localVarFp.getMe(options).then((request) => request(axios, basePath));
|
|
378
378
|
}
|
|
379
379
|
};
|
|
380
380
|
};
|
|
@@ -386,8 +386,8 @@ var AuthApi = class extends BaseAPI {
|
|
|
386
386
|
* @throws {RequiredError}
|
|
387
387
|
* @memberof AuthApi
|
|
388
388
|
*/
|
|
389
|
-
|
|
390
|
-
return AuthApiFp(this.configuration).
|
|
389
|
+
getMe(options) {
|
|
390
|
+
return AuthApiFp(this.configuration).getMe(options).then((request) => request(this.axios, this.basePath));
|
|
391
391
|
}
|
|
392
392
|
};
|
|
393
393
|
var ContactsApiAxiosParamCreator = function(configuration) {
|
|
@@ -3784,7 +3784,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3784
3784
|
* @param {*} [options] Override http request option.
|
|
3785
3785
|
* @throws {RequiredError}
|
|
3786
3786
|
*/
|
|
3787
|
-
|
|
3787
|
+
getMe: async (options = {}) => {
|
|
3788
3788
|
const localVarPath = `/v1/me`;
|
|
3789
3789
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3790
3790
|
let baseOptions;
|
|
@@ -4755,10 +4755,10 @@ var UnboundApiFp = function(configuration) {
|
|
|
4755
4755
|
* @param {*} [options] Override http request option.
|
|
4756
4756
|
* @throws {RequiredError}
|
|
4757
4757
|
*/
|
|
4758
|
-
async
|
|
4759
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
4758
|
+
async getMe(options) {
|
|
4759
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMe(options);
|
|
4760
4760
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4761
|
-
const localVarOperationServerBasePath = operationServerMap["UnboundApi.
|
|
4761
|
+
const localVarOperationServerBasePath = operationServerMap["UnboundApi.getMe"]?.[localVarOperationServerIndex]?.url;
|
|
4762
4762
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios2, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4763
4763
|
},
|
|
4764
4764
|
/**
|
|
@@ -5291,8 +5291,8 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5291
5291
|
* @param {*} [options] Override http request option.
|
|
5292
5292
|
* @throws {RequiredError}
|
|
5293
5293
|
*/
|
|
5294
|
-
|
|
5295
|
-
return localVarFp.
|
|
5294
|
+
getMe(options) {
|
|
5295
|
+
return localVarFp.getMe(options).then((request) => request(axios, basePath));
|
|
5296
5296
|
},
|
|
5297
5297
|
/**
|
|
5298
5298
|
* Inboxes List
|
|
@@ -5780,8 +5780,8 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5780
5780
|
* @throws {RequiredError}
|
|
5781
5781
|
* @memberof UnboundApi
|
|
5782
5782
|
*/
|
|
5783
|
-
|
|
5784
|
-
return UnboundApiFp(this.configuration).
|
|
5783
|
+
getMe(options) {
|
|
5784
|
+
return UnboundApiFp(this.configuration).getMe(options).then((request) => request(this.axios, this.basePath));
|
|
5785
5785
|
}
|
|
5786
5786
|
/**
|
|
5787
5787
|
* Inboxes List
|