ob-bms-sdk 0.0.42 → 0.0.44
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 +27 -7
- package/dist/api/api.d.ts +20 -4
- package/dist/api/api.js +14 -7
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -788,6 +788,12 @@ export interface MembersShowResponse {
|
|
|
788
788
|
* @memberof MembersShowResponse
|
|
789
789
|
*/
|
|
790
790
|
'towers': Array<TowerData>;
|
|
791
|
+
/**
|
|
792
|
+
*
|
|
793
|
+
* @type {boolean}
|
|
794
|
+
* @memberof MembersShowResponse
|
|
795
|
+
*/
|
|
796
|
+
'isExistTower': boolean;
|
|
791
797
|
}
|
|
792
798
|
/**
|
|
793
799
|
*
|
|
@@ -2158,6 +2164,12 @@ export interface WrappedResponseMembersShowResponseData {
|
|
|
2158
2164
|
* @memberof WrappedResponseMembersShowResponseData
|
|
2159
2165
|
*/
|
|
2160
2166
|
'towers': Array<TowerData>;
|
|
2167
|
+
/**
|
|
2168
|
+
*
|
|
2169
|
+
* @type {boolean}
|
|
2170
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
2171
|
+
*/
|
|
2172
|
+
'isExistTower': boolean;
|
|
2161
2173
|
}
|
|
2162
2174
|
/**
|
|
2163
2175
|
*
|
|
@@ -2781,10 +2793,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2781
2793
|
/**
|
|
2782
2794
|
*
|
|
2783
2795
|
* @param {string} id
|
|
2796
|
+
* @param {string} [locationId]
|
|
2784
2797
|
* @param {*} [options] Override http request option.
|
|
2785
2798
|
* @throws {RequiredError}
|
|
2786
2799
|
*/
|
|
2787
|
-
membersShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2800
|
+
membersShow: async (id: string, locationId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2788
2801
|
// verify required parameter 'id' is not null or undefined
|
|
2789
2802
|
assertParamExists('membersShow', 'id', id)
|
|
2790
2803
|
const localVarPath = `/members/{id}`
|
|
@@ -2800,6 +2813,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2800
2813
|
const localVarHeaderParameter = {} as any;
|
|
2801
2814
|
const localVarQueryParameter = {} as any;
|
|
2802
2815
|
|
|
2816
|
+
if (locationId !== undefined) {
|
|
2817
|
+
localVarQueryParameter['locationId'] = locationId;
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2803
2820
|
|
|
2804
2821
|
|
|
2805
2822
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3207,11 +3224,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3207
3224
|
/**
|
|
3208
3225
|
*
|
|
3209
3226
|
* @param {string} id
|
|
3227
|
+
* @param {string} [locationId]
|
|
3210
3228
|
* @param {*} [options] Override http request option.
|
|
3211
3229
|
* @throws {RequiredError}
|
|
3212
3230
|
*/
|
|
3213
|
-
async membersShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>> {
|
|
3214
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.membersShow(id, options);
|
|
3231
|
+
async membersShow(id: string, locationId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>> {
|
|
3232
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.membersShow(id, locationId, options);
|
|
3215
3233
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3216
3234
|
},
|
|
3217
3235
|
/**
|
|
@@ -3385,11 +3403,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3385
3403
|
/**
|
|
3386
3404
|
*
|
|
3387
3405
|
* @param {string} id
|
|
3406
|
+
* @param {string} [locationId]
|
|
3388
3407
|
* @param {*} [options] Override http request option.
|
|
3389
3408
|
* @throws {RequiredError}
|
|
3390
3409
|
*/
|
|
3391
|
-
membersShow(id: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse> {
|
|
3392
|
-
return localVarFp.membersShow(id, options).then((request) => request(axios, basePath));
|
|
3410
|
+
membersShow(id: string, locationId?: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse> {
|
|
3411
|
+
return localVarFp.membersShow(id, locationId, options).then((request) => request(axios, basePath));
|
|
3393
3412
|
},
|
|
3394
3413
|
/**
|
|
3395
3414
|
*
|
|
@@ -3567,12 +3586,13 @@ export class DefaultApi extends BaseAPI {
|
|
|
3567
3586
|
/**
|
|
3568
3587
|
*
|
|
3569
3588
|
* @param {string} id
|
|
3589
|
+
* @param {string} [locationId]
|
|
3570
3590
|
* @param {*} [options] Override http request option.
|
|
3571
3591
|
* @throws {RequiredError}
|
|
3572
3592
|
* @memberof DefaultApi
|
|
3573
3593
|
*/
|
|
3574
|
-
public membersShow(id: string, options?: AxiosRequestConfig) {
|
|
3575
|
-
return DefaultApiFp(this.configuration).membersShow(id, options).then((request) => request(this.axios, this.basePath));
|
|
3594
|
+
public membersShow(id: string, locationId?: string, options?: AxiosRequestConfig) {
|
|
3595
|
+
return DefaultApiFp(this.configuration).membersShow(id, locationId, options).then((request) => request(this.axios, this.basePath));
|
|
3576
3596
|
}
|
|
3577
3597
|
|
|
3578
3598
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -786,6 +786,12 @@ export interface MembersShowResponse {
|
|
|
786
786
|
* @memberof MembersShowResponse
|
|
787
787
|
*/
|
|
788
788
|
'towers': Array<TowerData>;
|
|
789
|
+
/**
|
|
790
|
+
*
|
|
791
|
+
* @type {boolean}
|
|
792
|
+
* @memberof MembersShowResponse
|
|
793
|
+
*/
|
|
794
|
+
'isExistTower': boolean;
|
|
789
795
|
}
|
|
790
796
|
/**
|
|
791
797
|
*
|
|
@@ -2147,6 +2153,12 @@ export interface WrappedResponseMembersShowResponseData {
|
|
|
2147
2153
|
* @memberof WrappedResponseMembersShowResponseData
|
|
2148
2154
|
*/
|
|
2149
2155
|
'towers': Array<TowerData>;
|
|
2156
|
+
/**
|
|
2157
|
+
*
|
|
2158
|
+
* @type {boolean}
|
|
2159
|
+
* @memberof WrappedResponseMembersShowResponseData
|
|
2160
|
+
*/
|
|
2161
|
+
'isExistTower': boolean;
|
|
2150
2162
|
}
|
|
2151
2163
|
/**
|
|
2152
2164
|
*
|
|
@@ -2555,10 +2567,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2555
2567
|
/**
|
|
2556
2568
|
*
|
|
2557
2569
|
* @param {string} id
|
|
2570
|
+
* @param {string} [locationId]
|
|
2558
2571
|
* @param {*} [options] Override http request option.
|
|
2559
2572
|
* @throws {RequiredError}
|
|
2560
2573
|
*/
|
|
2561
|
-
membersShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2574
|
+
membersShow: (id: string, locationId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2562
2575
|
/**
|
|
2563
2576
|
*
|
|
2564
2577
|
* @param {string} id
|
|
@@ -2685,10 +2698,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2685
2698
|
/**
|
|
2686
2699
|
*
|
|
2687
2700
|
* @param {string} id
|
|
2701
|
+
* @param {string} [locationId]
|
|
2688
2702
|
* @param {*} [options] Override http request option.
|
|
2689
2703
|
* @throws {RequiredError}
|
|
2690
2704
|
*/
|
|
2691
|
-
membersShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>>;
|
|
2705
|
+
membersShow(id: string, locationId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponse>>;
|
|
2692
2706
|
/**
|
|
2693
2707
|
*
|
|
2694
2708
|
* @param {string} id
|
|
@@ -2815,10 +2829,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2815
2829
|
/**
|
|
2816
2830
|
*
|
|
2817
2831
|
* @param {string} id
|
|
2832
|
+
* @param {string} [locationId]
|
|
2818
2833
|
* @param {*} [options] Override http request option.
|
|
2819
2834
|
* @throws {RequiredError}
|
|
2820
2835
|
*/
|
|
2821
|
-
membersShow(id: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse>;
|
|
2836
|
+
membersShow(id: string, locationId?: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponse>;
|
|
2822
2837
|
/**
|
|
2823
2838
|
*
|
|
2824
2839
|
* @param {string} id
|
|
@@ -2954,11 +2969,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2954
2969
|
/**
|
|
2955
2970
|
*
|
|
2956
2971
|
* @param {string} id
|
|
2972
|
+
* @param {string} [locationId]
|
|
2957
2973
|
* @param {*} [options] Override http request option.
|
|
2958
2974
|
* @throws {RequiredError}
|
|
2959
2975
|
* @memberof DefaultApi
|
|
2960
2976
|
*/
|
|
2961
|
-
membersShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseMembersShowResponse, any>>;
|
|
2977
|
+
membersShow(id: string, locationId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseMembersShowResponse, any>>;
|
|
2962
2978
|
/**
|
|
2963
2979
|
*
|
|
2964
2980
|
* @param {string} id
|
package/dist/api/api.js
CHANGED
|
@@ -276,10 +276,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
276
276
|
/**
|
|
277
277
|
*
|
|
278
278
|
* @param {string} id
|
|
279
|
+
* @param {string} [locationId]
|
|
279
280
|
* @param {*} [options] Override http request option.
|
|
280
281
|
* @throws {RequiredError}
|
|
281
282
|
*/
|
|
282
|
-
membersShow: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
283
|
+
membersShow: (id, locationId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
283
284
|
// verify required parameter 'id' is not null or undefined
|
|
284
285
|
(0, common_1.assertParamExists)('membersShow', 'id', id);
|
|
285
286
|
const localVarPath = `/members/{id}`
|
|
@@ -293,6 +294,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
293
294
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
294
295
|
const localVarHeaderParameter = {};
|
|
295
296
|
const localVarQueryParameter = {};
|
|
297
|
+
if (locationId !== undefined) {
|
|
298
|
+
localVarQueryParameter['locationId'] = locationId;
|
|
299
|
+
}
|
|
296
300
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
297
301
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
298
302
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -662,12 +666,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
662
666
|
/**
|
|
663
667
|
*
|
|
664
668
|
* @param {string} id
|
|
669
|
+
* @param {string} [locationId]
|
|
665
670
|
* @param {*} [options] Override http request option.
|
|
666
671
|
* @throws {RequiredError}
|
|
667
672
|
*/
|
|
668
|
-
membersShow(id, options) {
|
|
673
|
+
membersShow(id, locationId, options) {
|
|
669
674
|
return __awaiter(this, void 0, void 0, function* () {
|
|
670
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.membersShow(id, options);
|
|
675
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.membersShow(id, locationId, options);
|
|
671
676
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
672
677
|
});
|
|
673
678
|
},
|
|
@@ -860,11 +865,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
860
865
|
/**
|
|
861
866
|
*
|
|
862
867
|
* @param {string} id
|
|
868
|
+
* @param {string} [locationId]
|
|
863
869
|
* @param {*} [options] Override http request option.
|
|
864
870
|
* @throws {RequiredError}
|
|
865
871
|
*/
|
|
866
|
-
membersShow(id, options) {
|
|
867
|
-
return localVarFp.membersShow(id, options).then((request) => request(axios, basePath));
|
|
872
|
+
membersShow(id, locationId, options) {
|
|
873
|
+
return localVarFp.membersShow(id, locationId, options).then((request) => request(axios, basePath));
|
|
868
874
|
},
|
|
869
875
|
/**
|
|
870
876
|
*
|
|
@@ -1035,12 +1041,13 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1035
1041
|
/**
|
|
1036
1042
|
*
|
|
1037
1043
|
* @param {string} id
|
|
1044
|
+
* @param {string} [locationId]
|
|
1038
1045
|
* @param {*} [options] Override http request option.
|
|
1039
1046
|
* @throws {RequiredError}
|
|
1040
1047
|
* @memberof DefaultApi
|
|
1041
1048
|
*/
|
|
1042
|
-
membersShow(id, options) {
|
|
1043
|
-
return (0, exports.DefaultApiFp)(this.configuration).membersShow(id, options).then((request) => request(this.axios, this.basePath));
|
|
1049
|
+
membersShow(id, locationId, options) {
|
|
1050
|
+
return (0, exports.DefaultApiFp)(this.configuration).membersShow(id, locationId, options).then((request) => request(this.axios, this.basePath));
|
|
1044
1051
|
}
|
|
1045
1052
|
/**
|
|
1046
1053
|
*
|