ob-bms-sdk 0.0.5 → 0.0.7
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/api.ts +39 -39
- package/api/base.ts +1 -1
- package/api/common.ts +1 -1
- package/api/configuration.ts +1 -1
- package/api/index.ts +1 -1
- package/dist/api/api.d.ts +563 -0
- package/dist/api/api.js +483 -0
- package/dist/api/base.d.ts +54 -0
- package/dist/api/base.js +62 -0
- package/dist/api/common.d.ts +65 -0
- package/dist/api/common.js +160 -0
- package/dist/api/configuration.d.ts +83 -0
- package/dist/api/configuration.js +42 -0
- package/dist/api/index.d.ts +13 -0
- package/dist/api/index.js +31 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +16 -0
- package/dist/test.d.ts +1 -0
- package/dist/test.js +12 -0
- package/index.ts +9 -2
- package/package.json +1 -1
- package/test.ts +7 -0
- package/tsconfig.json +1 -1
package/api/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 0.0.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -355,14 +355,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
355
355
|
return {
|
|
356
356
|
/**
|
|
357
357
|
*
|
|
358
|
-
* @param {
|
|
358
|
+
* @param {any} body
|
|
359
359
|
* @param {*} [options] Override http request option.
|
|
360
360
|
* @throws {RequiredError}
|
|
361
361
|
*/
|
|
362
|
-
create: async (
|
|
363
|
-
// verify required parameter '
|
|
364
|
-
assertParamExists('create', '
|
|
365
|
-
const localVarPath = `/integrations/fs/
|
|
362
|
+
create: async (body: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
363
|
+
// verify required parameter 'body' is not null or undefined
|
|
364
|
+
assertParamExists('create', 'body', body)
|
|
365
|
+
const localVarPath = `/integrations/fs/webhook`;
|
|
366
366
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
367
367
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
368
368
|
let baseOptions;
|
|
@@ -381,7 +381,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
381
381
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
382
382
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
383
383
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
384
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
384
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
|
|
385
385
|
|
|
386
386
|
return {
|
|
387
387
|
url: toPathString(localVarUrlObj),
|
|
@@ -390,14 +390,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
390
390
|
},
|
|
391
391
|
/**
|
|
392
392
|
*
|
|
393
|
-
* @param {
|
|
393
|
+
* @param {CreateFSMembersBody} createFSMembersBody
|
|
394
394
|
* @param {*} [options] Override http request option.
|
|
395
395
|
* @throws {RequiredError}
|
|
396
396
|
*/
|
|
397
|
-
|
|
398
|
-
// verify required parameter '
|
|
399
|
-
assertParamExists('
|
|
400
|
-
const localVarPath = `/integrations/fs/
|
|
397
|
+
integrationsFsMembersCreate: async (createFSMembersBody: CreateFSMembersBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
398
|
+
// verify required parameter 'createFSMembersBody' is not null or undefined
|
|
399
|
+
assertParamExists('integrationsFsMembersCreate', 'createFSMembersBody', createFSMembersBody)
|
|
400
|
+
const localVarPath = `/integrations/fs/members`;
|
|
401
401
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
402
402
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
403
403
|
let baseOptions;
|
|
@@ -416,7 +416,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
416
416
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
417
417
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
418
418
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
419
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
419
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createFSMembersBody, localVarRequestOptions, configuration)
|
|
420
420
|
|
|
421
421
|
return {
|
|
422
422
|
url: toPathString(localVarUrlObj),
|
|
@@ -429,9 +429,9 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
429
429
|
* @param {*} [options] Override http request option.
|
|
430
430
|
* @throws {RequiredError}
|
|
431
431
|
*/
|
|
432
|
-
|
|
432
|
+
integrationsFsMembersDelete: async (destroyFSMembers: DestroyFSMembers, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
433
433
|
// verify required parameter 'destroyFSMembers' is not null or undefined
|
|
434
|
-
assertParamExists('
|
|
434
|
+
assertParamExists('integrationsFsMembersDelete', 'destroyFSMembers', destroyFSMembers)
|
|
435
435
|
const localVarPath = `/integrations/fs/members`;
|
|
436
436
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
437
437
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -602,22 +602,22 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
602
602
|
return {
|
|
603
603
|
/**
|
|
604
604
|
*
|
|
605
|
-
* @param {
|
|
605
|
+
* @param {any} body
|
|
606
606
|
* @param {*} [options] Override http request option.
|
|
607
607
|
* @throws {RequiredError}
|
|
608
608
|
*/
|
|
609
|
-
async create(
|
|
610
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.create(
|
|
609
|
+
async create(body: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
610
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.create(body, options);
|
|
611
611
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
612
612
|
},
|
|
613
613
|
/**
|
|
614
614
|
*
|
|
615
|
-
* @param {
|
|
615
|
+
* @param {CreateFSMembersBody} createFSMembersBody
|
|
616
616
|
* @param {*} [options] Override http request option.
|
|
617
617
|
* @throws {RequiredError}
|
|
618
618
|
*/
|
|
619
|
-
async
|
|
620
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
619
|
+
async integrationsFsMembersCreate(createFSMembersBody: CreateFSMembersBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMemberResult>> {
|
|
620
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersCreate(createFSMembersBody, options);
|
|
621
621
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
622
622
|
},
|
|
623
623
|
/**
|
|
@@ -626,8 +626,8 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
626
626
|
* @param {*} [options] Override http request option.
|
|
627
627
|
* @throws {RequiredError}
|
|
628
628
|
*/
|
|
629
|
-
async
|
|
630
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
629
|
+
async integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
630
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersDelete(destroyFSMembers, options);
|
|
631
631
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
632
632
|
},
|
|
633
633
|
/**
|
|
@@ -681,21 +681,21 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
681
681
|
return {
|
|
682
682
|
/**
|
|
683
683
|
*
|
|
684
|
-
* @param {
|
|
684
|
+
* @param {any} body
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
686
686
|
* @throws {RequiredError}
|
|
687
687
|
*/
|
|
688
|
-
create(
|
|
689
|
-
return localVarFp.create(
|
|
688
|
+
create(body: any, options?: any): AxiosPromise<void> {
|
|
689
|
+
return localVarFp.create(body, options).then((request) => request(axios, basePath));
|
|
690
690
|
},
|
|
691
691
|
/**
|
|
692
692
|
*
|
|
693
|
-
* @param {
|
|
693
|
+
* @param {CreateFSMembersBody} createFSMembersBody
|
|
694
694
|
* @param {*} [options] Override http request option.
|
|
695
695
|
* @throws {RequiredError}
|
|
696
696
|
*/
|
|
697
|
-
|
|
698
|
-
return localVarFp.
|
|
697
|
+
integrationsFsMembersCreate(createFSMembersBody: CreateFSMembersBody, options?: any): AxiosPromise<CreateMemberResult> {
|
|
698
|
+
return localVarFp.integrationsFsMembersCreate(createFSMembersBody, options).then((request) => request(axios, basePath));
|
|
699
699
|
},
|
|
700
700
|
/**
|
|
701
701
|
*
|
|
@@ -703,8 +703,8 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
703
703
|
* @param {*} [options] Override http request option.
|
|
704
704
|
* @throws {RequiredError}
|
|
705
705
|
*/
|
|
706
|
-
|
|
707
|
-
return localVarFp.
|
|
706
|
+
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<void> {
|
|
707
|
+
return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
|
|
708
708
|
},
|
|
709
709
|
/**
|
|
710
710
|
*
|
|
@@ -753,24 +753,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
753
753
|
export class DefaultApi extends BaseAPI {
|
|
754
754
|
/**
|
|
755
755
|
*
|
|
756
|
-
* @param {
|
|
756
|
+
* @param {any} body
|
|
757
757
|
* @param {*} [options] Override http request option.
|
|
758
758
|
* @throws {RequiredError}
|
|
759
759
|
* @memberof DefaultApi
|
|
760
760
|
*/
|
|
761
|
-
public create(
|
|
762
|
-
return DefaultApiFp(this.configuration).create(
|
|
761
|
+
public create(body: any, options?: AxiosRequestConfig) {
|
|
762
|
+
return DefaultApiFp(this.configuration).create(body, options).then((request) => request(this.axios, this.basePath));
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
/**
|
|
766
766
|
*
|
|
767
|
-
* @param {
|
|
767
|
+
* @param {CreateFSMembersBody} createFSMembersBody
|
|
768
768
|
* @param {*} [options] Override http request option.
|
|
769
769
|
* @throws {RequiredError}
|
|
770
770
|
* @memberof DefaultApi
|
|
771
771
|
*/
|
|
772
|
-
public
|
|
773
|
-
return DefaultApiFp(this.configuration).
|
|
772
|
+
public integrationsFsMembersCreate(createFSMembersBody: CreateFSMembersBody, options?: AxiosRequestConfig) {
|
|
773
|
+
return DefaultApiFp(this.configuration).integrationsFsMembersCreate(createFSMembersBody, options).then((request) => request(this.axios, this.basePath));
|
|
774
774
|
}
|
|
775
775
|
|
|
776
776
|
/**
|
|
@@ -780,8 +780,8 @@ export class DefaultApi extends BaseAPI {
|
|
|
780
780
|
* @throws {RequiredError}
|
|
781
781
|
* @memberof DefaultApi
|
|
782
782
|
*/
|
|
783
|
-
public
|
|
784
|
-
return DefaultApiFp(this.configuration).
|
|
783
|
+
public integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig) {
|
|
784
|
+
return DefaultApiFp(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
|
|
785
785
|
}
|
|
786
786
|
|
|
787
787
|
/**
|
package/api/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 0.0.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 0.0.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 0.0.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document:
|
|
7
|
+
* The version of the OpenAPI document: 0.0.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|