ob-bms-sdk 0.0.89 → 0.0.91
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 +70 -1
- 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 +39 -1
- package/dist/api/api.js +53 -1
- package/dist/api/base.d.ts +1 -1
- package/dist/api/base.js +1 -1
- package/dist/api/common.d.ts +1 -1
- package/dist/api/common.js +1 -1
- package/dist/api/configuration.d.ts +1 -1
- package/dist/api/configuration.js +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1 -1
- package/package.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: 1.5.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3679,6 +3679,19 @@ export interface WrappedArrayResponseACZoneData {
|
|
|
3679
3679
|
*/
|
|
3680
3680
|
'data': Array<ACZoneData>;
|
|
3681
3681
|
}
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @export
|
|
3685
|
+
* @interface WrappedArrayResponseFloorData
|
|
3686
|
+
*/
|
|
3687
|
+
export interface WrappedArrayResponseFloorData {
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {Array<FloorData>}
|
|
3691
|
+
* @memberof WrappedArrayResponseFloorData
|
|
3692
|
+
*/
|
|
3693
|
+
'data': Array<FloorData>;
|
|
3694
|
+
}
|
|
3682
3695
|
/**
|
|
3683
3696
|
*
|
|
3684
3697
|
* @export
|
|
@@ -4761,6 +4774,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4761
4774
|
|
|
4762
4775
|
|
|
4763
4776
|
|
|
4777
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4778
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4779
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4780
|
+
|
|
4781
|
+
return {
|
|
4782
|
+
url: toPathString(localVarUrlObj),
|
|
4783
|
+
options: localVarRequestOptions,
|
|
4784
|
+
};
|
|
4785
|
+
},
|
|
4786
|
+
/**
|
|
4787
|
+
*
|
|
4788
|
+
* @param {*} [options] Override http request option.
|
|
4789
|
+
* @throws {RequiredError}
|
|
4790
|
+
*/
|
|
4791
|
+
floorsIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4792
|
+
const localVarPath = `/floors`;
|
|
4793
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4794
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4795
|
+
let baseOptions;
|
|
4796
|
+
if (configuration) {
|
|
4797
|
+
baseOptions = configuration.baseOptions;
|
|
4798
|
+
}
|
|
4799
|
+
|
|
4800
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
4801
|
+
const localVarHeaderParameter = {} as any;
|
|
4802
|
+
const localVarQueryParameter = {} as any;
|
|
4803
|
+
|
|
4804
|
+
|
|
4805
|
+
|
|
4764
4806
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4765
4807
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4766
4808
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6048,6 +6090,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
6048
6090
|
const localVarAxiosArgs = await localVarAxiosParamCreator.fetch(options);
|
|
6049
6091
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6050
6092
|
},
|
|
6093
|
+
/**
|
|
6094
|
+
*
|
|
6095
|
+
* @param {*} [options] Override http request option.
|
|
6096
|
+
* @throws {RequiredError}
|
|
6097
|
+
*/
|
|
6098
|
+
async floorsIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseFloorData>> {
|
|
6099
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.floorsIndex(options);
|
|
6100
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6101
|
+
},
|
|
6051
6102
|
/**
|
|
6052
6103
|
*
|
|
6053
6104
|
* @param {*} [options] Override http request option.
|
|
@@ -6467,6 +6518,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6467
6518
|
fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult> {
|
|
6468
6519
|
return localVarFp.fetch(options).then((request) => request(axios, basePath));
|
|
6469
6520
|
},
|
|
6521
|
+
/**
|
|
6522
|
+
*
|
|
6523
|
+
* @param {*} [options] Override http request option.
|
|
6524
|
+
* @throws {RequiredError}
|
|
6525
|
+
*/
|
|
6526
|
+
floorsIndex(options?: any): AxiosPromise<WrappedArrayResponseFloorData> {
|
|
6527
|
+
return localVarFp.floorsIndex(options).then((request) => request(axios, basePath));
|
|
6528
|
+
},
|
|
6470
6529
|
/**
|
|
6471
6530
|
*
|
|
6472
6531
|
* @param {*} [options] Override http request option.
|
|
@@ -6868,6 +6927,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
6868
6927
|
return DefaultApiFp(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
|
|
6869
6928
|
}
|
|
6870
6929
|
|
|
6930
|
+
/**
|
|
6931
|
+
*
|
|
6932
|
+
* @param {*} [options] Override http request option.
|
|
6933
|
+
* @throws {RequiredError}
|
|
6934
|
+
* @memberof DefaultApi
|
|
6935
|
+
*/
|
|
6936
|
+
public floorsIndex(options?: AxiosRequestConfig) {
|
|
6937
|
+
return DefaultApiFp(this.configuration).floorsIndex(options).then((request) => request(this.axios, this.basePath));
|
|
6938
|
+
}
|
|
6939
|
+
|
|
6871
6940
|
/**
|
|
6872
6941
|
*
|
|
6873
6942
|
* @param {*} [options] Override http request option.
|
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: 1.5.0
|
|
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: 1.5.0
|
|
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: 1.5.0
|
|
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: 1.5.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document:
|
|
5
|
+
* The version of the OpenAPI document: 1.5.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3631,6 +3631,19 @@ export interface WrappedArrayResponseACZoneData {
|
|
|
3631
3631
|
*/
|
|
3632
3632
|
'data': Array<ACZoneData>;
|
|
3633
3633
|
}
|
|
3634
|
+
/**
|
|
3635
|
+
*
|
|
3636
|
+
* @export
|
|
3637
|
+
* @interface WrappedArrayResponseFloorData
|
|
3638
|
+
*/
|
|
3639
|
+
export interface WrappedArrayResponseFloorData {
|
|
3640
|
+
/**
|
|
3641
|
+
*
|
|
3642
|
+
* @type {Array<FloorData>}
|
|
3643
|
+
* @memberof WrappedArrayResponseFloorData
|
|
3644
|
+
*/
|
|
3645
|
+
'data': Array<FloorData>;
|
|
3646
|
+
}
|
|
3634
3647
|
/**
|
|
3635
3648
|
*
|
|
3636
3649
|
* @export
|
|
@@ -4497,6 +4510,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4497
4510
|
* @throws {RequiredError}
|
|
4498
4511
|
*/
|
|
4499
4512
|
fetch: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4513
|
+
/**
|
|
4514
|
+
*
|
|
4515
|
+
* @param {*} [options] Override http request option.
|
|
4516
|
+
* @throws {RequiredError}
|
|
4517
|
+
*/
|
|
4518
|
+
floorsIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4500
4519
|
/**
|
|
4501
4520
|
*
|
|
4502
4521
|
* @param {*} [options] Override http request option.
|
|
@@ -4802,6 +4821,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4802
4821
|
* @throws {RequiredError}
|
|
4803
4822
|
*/
|
|
4804
4823
|
fetch(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFetchParkingResult>>;
|
|
4824
|
+
/**
|
|
4825
|
+
*
|
|
4826
|
+
* @param {*} [options] Override http request option.
|
|
4827
|
+
* @throws {RequiredError}
|
|
4828
|
+
*/
|
|
4829
|
+
floorsIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseFloorData>>;
|
|
4805
4830
|
/**
|
|
4806
4831
|
*
|
|
4807
4832
|
* @param {*} [options] Override http request option.
|
|
@@ -5107,6 +5132,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
5107
5132
|
* @throws {RequiredError}
|
|
5108
5133
|
*/
|
|
5109
5134
|
fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult>;
|
|
5135
|
+
/**
|
|
5136
|
+
*
|
|
5137
|
+
* @param {*} [options] Override http request option.
|
|
5138
|
+
* @throws {RequiredError}
|
|
5139
|
+
*/
|
|
5140
|
+
floorsIndex(options?: any): AxiosPromise<WrappedArrayResponseFloorData>;
|
|
5110
5141
|
/**
|
|
5111
5142
|
*
|
|
5112
5143
|
* @param {*} [options] Override http request option.
|
|
@@ -5421,6 +5452,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5421
5452
|
* @memberof DefaultApi
|
|
5422
5453
|
*/
|
|
5423
5454
|
fetch(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFetchParkingResult, any>>;
|
|
5455
|
+
/**
|
|
5456
|
+
*
|
|
5457
|
+
* @param {*} [options] Override http request option.
|
|
5458
|
+
* @throws {RequiredError}
|
|
5459
|
+
* @memberof DefaultApi
|
|
5460
|
+
*/
|
|
5461
|
+
floorsIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseFloorData, any>>;
|
|
5424
5462
|
/**
|
|
5425
5463
|
*
|
|
5426
5464
|
* @param {*} [options] Override http request option.
|
package/dist/api/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document:
|
|
8
|
+
* The version of the OpenAPI document: 1.5.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -353,6 +353,30 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
353
353
|
options: localVarRequestOptions,
|
|
354
354
|
};
|
|
355
355
|
}),
|
|
356
|
+
/**
|
|
357
|
+
*
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
*/
|
|
361
|
+
floorsIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
362
|
+
const localVarPath = `/floors`;
|
|
363
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
364
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
365
|
+
let baseOptions;
|
|
366
|
+
if (configuration) {
|
|
367
|
+
baseOptions = configuration.baseOptions;
|
|
368
|
+
}
|
|
369
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
370
|
+
const localVarHeaderParameter = {};
|
|
371
|
+
const localVarQueryParameter = {};
|
|
372
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
373
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
374
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
375
|
+
return {
|
|
376
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
377
|
+
options: localVarRequestOptions,
|
|
378
|
+
};
|
|
379
|
+
}),
|
|
356
380
|
/**
|
|
357
381
|
*
|
|
358
382
|
* @param {*} [options] Override http request option.
|
|
@@ -1449,6 +1473,17 @@ const DefaultApiFp = function (configuration) {
|
|
|
1449
1473
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1450
1474
|
});
|
|
1451
1475
|
},
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @param {*} [options] Override http request option.
|
|
1479
|
+
* @throws {RequiredError}
|
|
1480
|
+
*/
|
|
1481
|
+
floorsIndex(options) {
|
|
1482
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1483
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.floorsIndex(options);
|
|
1484
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1485
|
+
});
|
|
1486
|
+
},
|
|
1452
1487
|
/**
|
|
1453
1488
|
*
|
|
1454
1489
|
* @param {*} [options] Override http request option.
|
|
@@ -1932,6 +1967,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1932
1967
|
fetch(options) {
|
|
1933
1968
|
return localVarFp.fetch(options).then((request) => request(axios, basePath));
|
|
1934
1969
|
},
|
|
1970
|
+
/**
|
|
1971
|
+
*
|
|
1972
|
+
* @param {*} [options] Override http request option.
|
|
1973
|
+
* @throws {RequiredError}
|
|
1974
|
+
*/
|
|
1975
|
+
floorsIndex(options) {
|
|
1976
|
+
return localVarFp.floorsIndex(options).then((request) => request(axios, basePath));
|
|
1977
|
+
},
|
|
1935
1978
|
/**
|
|
1936
1979
|
*
|
|
1937
1980
|
* @param {*} [options] Override http request option.
|
|
@@ -2326,6 +2369,15 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2326
2369
|
fetch(options) {
|
|
2327
2370
|
return (0, exports.DefaultApiFp)(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
|
|
2328
2371
|
}
|
|
2372
|
+
/**
|
|
2373
|
+
*
|
|
2374
|
+
* @param {*} [options] Override http request option.
|
|
2375
|
+
* @throws {RequiredError}
|
|
2376
|
+
* @memberof DefaultApi
|
|
2377
|
+
*/
|
|
2378
|
+
floorsIndex(options) {
|
|
2379
|
+
return (0, exports.DefaultApiFp)(this.configuration).floorsIndex(options).then((request) => request(this.axios, this.basePath));
|
|
2380
|
+
}
|
|
2329
2381
|
/**
|
|
2330
2382
|
*
|
|
2331
2383
|
* @param {*} [options] Override http request option.
|
package/dist/api/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document:
|
|
5
|
+
* The version of the OpenAPI document: 1.5.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document:
|
|
8
|
+
* The version of the OpenAPI document: 1.5.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document:
|
|
5
|
+
* The version of the OpenAPI document: 1.5.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document:
|
|
8
|
+
* The version of the OpenAPI document: 1.5.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document:
|
|
5
|
+
* The version of the OpenAPI document: 1.5.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document:
|
|
8
|
+
* The version of the OpenAPI document: 1.5.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document:
|
|
5
|
+
* The version of the OpenAPI document: 1.5.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document:
|
|
8
|
+
* The version of the OpenAPI document: 1.5.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|