ob-bms-sdk 0.0.19 → 0.0.20
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 -8
- package/dist/api/api.d.ts +28 -9
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -238,7 +238,7 @@ export interface FindMemberResult {
|
|
|
238
238
|
* @type {string}
|
|
239
239
|
* @memberof FindMemberResult
|
|
240
240
|
*/
|
|
241
|
-
'account_id'?: string;
|
|
241
|
+
'account_id'?: string | null;
|
|
242
242
|
/**
|
|
243
243
|
*
|
|
244
244
|
* @type {JsonValue}
|
|
@@ -499,6 +499,12 @@ export interface ShowMemberResult {
|
|
|
499
499
|
* @memberof ShowMemberResult
|
|
500
500
|
*/
|
|
501
501
|
'metadata': PrismaJsonValue | null;
|
|
502
|
+
/**
|
|
503
|
+
*
|
|
504
|
+
* @type {string}
|
|
505
|
+
* @memberof ShowMemberResult
|
|
506
|
+
*/
|
|
507
|
+
'account_id': string | null;
|
|
502
508
|
/**
|
|
503
509
|
*
|
|
504
510
|
* @type {Array<ShowMemberTower>}
|
|
@@ -880,15 +886,22 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
880
886
|
/**
|
|
881
887
|
*
|
|
882
888
|
* @export
|
|
883
|
-
* @interface
|
|
889
|
+
* @interface WrappedResponseFindMemberResultArrayOrNull
|
|
884
890
|
*/
|
|
885
|
-
export interface
|
|
891
|
+
export interface WrappedResponseFindMemberResultArrayOrNull {
|
|
886
892
|
/**
|
|
887
893
|
*
|
|
888
|
-
* @type {
|
|
889
|
-
* @memberof
|
|
894
|
+
* @type {WrappedResponseFindMemberResultArrayOrNullData}
|
|
895
|
+
* @memberof WrappedResponseFindMemberResultArrayOrNull
|
|
890
896
|
*/
|
|
891
|
-
'data':
|
|
897
|
+
'data': WrappedResponseFindMemberResultArrayOrNullData;
|
|
898
|
+
}
|
|
899
|
+
/**
|
|
900
|
+
*
|
|
901
|
+
* @export
|
|
902
|
+
* @interface WrappedResponseFindMemberResultArrayOrNullData
|
|
903
|
+
*/
|
|
904
|
+
export interface WrappedResponseFindMemberResultArrayOrNullData {
|
|
892
905
|
}
|
|
893
906
|
/**
|
|
894
907
|
*
|
|
@@ -947,6 +960,12 @@ export interface WrappedResponseShowMemberResultData {
|
|
|
947
960
|
* @memberof WrappedResponseShowMemberResultData
|
|
948
961
|
*/
|
|
949
962
|
'metadata': PrismaJsonValue | null;
|
|
963
|
+
/**
|
|
964
|
+
*
|
|
965
|
+
* @type {string}
|
|
966
|
+
* @memberof WrappedResponseShowMemberResultData
|
|
967
|
+
*/
|
|
968
|
+
'account_id': string | null;
|
|
950
969
|
/**
|
|
951
970
|
*
|
|
952
971
|
* @type {Array<ShowMemberTower>}
|
|
@@ -1419,7 +1438,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
1419
1438
|
* @param {*} [options] Override http request option.
|
|
1420
1439
|
* @throws {RequiredError}
|
|
1421
1440
|
*/
|
|
1422
|
-
async membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1441
|
+
async membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>> {
|
|
1423
1442
|
const localVarAxiosArgs = await localVarAxiosParamCreator.membersIndex(identifier, options);
|
|
1424
1443
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1425
1444
|
},
|
|
@@ -1515,7 +1534,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
1515
1534
|
* @param {*} [options] Override http request option.
|
|
1516
1535
|
* @throws {RequiredError}
|
|
1517
1536
|
*/
|
|
1518
|
-
membersIndex(identifier: string, options?: any): AxiosPromise<
|
|
1537
|
+
membersIndex(identifier: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArrayOrNull> {
|
|
1519
1538
|
return localVarFp.membersIndex(identifier, options).then((request) => request(axios, basePath));
|
|
1520
1539
|
},
|
|
1521
1540
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export interface FindMemberResult {
|
|
|
236
236
|
* @type {string}
|
|
237
237
|
* @memberof FindMemberResult
|
|
238
238
|
*/
|
|
239
|
-
'account_id'?: string;
|
|
239
|
+
'account_id'?: string | null;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
242
|
* @type {JsonValue}
|
|
@@ -497,6 +497,12 @@ export interface ShowMemberResult {
|
|
|
497
497
|
* @memberof ShowMemberResult
|
|
498
498
|
*/
|
|
499
499
|
'metadata': PrismaJsonValue | null;
|
|
500
|
+
/**
|
|
501
|
+
*
|
|
502
|
+
* @type {string}
|
|
503
|
+
* @memberof ShowMemberResult
|
|
504
|
+
*/
|
|
505
|
+
'account_id': string | null;
|
|
500
506
|
/**
|
|
501
507
|
*
|
|
502
508
|
* @type {Array<ShowMemberTower>}
|
|
@@ -878,15 +884,22 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
878
884
|
/**
|
|
879
885
|
*
|
|
880
886
|
* @export
|
|
881
|
-
* @interface
|
|
887
|
+
* @interface WrappedResponseFindMemberResultArrayOrNull
|
|
882
888
|
*/
|
|
883
|
-
export interface
|
|
889
|
+
export interface WrappedResponseFindMemberResultArrayOrNull {
|
|
884
890
|
/**
|
|
885
891
|
*
|
|
886
|
-
* @type {
|
|
887
|
-
* @memberof
|
|
892
|
+
* @type {WrappedResponseFindMemberResultArrayOrNullData}
|
|
893
|
+
* @memberof WrappedResponseFindMemberResultArrayOrNull
|
|
888
894
|
*/
|
|
889
|
-
'data':
|
|
895
|
+
'data': WrappedResponseFindMemberResultArrayOrNullData;
|
|
896
|
+
}
|
|
897
|
+
/**
|
|
898
|
+
*
|
|
899
|
+
* @export
|
|
900
|
+
* @interface WrappedResponseFindMemberResultArrayOrNullData
|
|
901
|
+
*/
|
|
902
|
+
export interface WrappedResponseFindMemberResultArrayOrNullData {
|
|
890
903
|
}
|
|
891
904
|
/**
|
|
892
905
|
*
|
|
@@ -942,6 +955,12 @@ export interface WrappedResponseShowMemberResultData {
|
|
|
942
955
|
* @memberof WrappedResponseShowMemberResultData
|
|
943
956
|
*/
|
|
944
957
|
'metadata': PrismaJsonValue | null;
|
|
958
|
+
/**
|
|
959
|
+
*
|
|
960
|
+
* @type {string}
|
|
961
|
+
* @memberof WrappedResponseShowMemberResultData
|
|
962
|
+
*/
|
|
963
|
+
'account_id': string | null;
|
|
945
964
|
/**
|
|
946
965
|
*
|
|
947
966
|
* @type {Array<ShowMemberTower>}
|
|
@@ -1149,7 +1168,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1149
1168
|
* @param {*} [options] Override http request option.
|
|
1150
1169
|
* @throws {RequiredError}
|
|
1151
1170
|
*/
|
|
1152
|
-
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1171
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>>;
|
|
1153
1172
|
/**
|
|
1154
1173
|
*
|
|
1155
1174
|
* @param {SyncBody} syncBody
|
|
@@ -1218,7 +1237,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1218
1237
|
* @param {*} [options] Override http request option.
|
|
1219
1238
|
* @throws {RequiredError}
|
|
1220
1239
|
*/
|
|
1221
|
-
membersIndex(identifier: string, options?: any): AxiosPromise<
|
|
1240
|
+
membersIndex(identifier: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArrayOrNull>;
|
|
1222
1241
|
/**
|
|
1223
1242
|
*
|
|
1224
1243
|
* @param {SyncBody} syncBody
|
|
@@ -1294,7 +1313,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
1294
1313
|
* @throws {RequiredError}
|
|
1295
1314
|
* @memberof DefaultApi
|
|
1296
1315
|
*/
|
|
1297
|
-
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1316
|
+
membersIndex(identifier: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFindMemberResultArrayOrNull, any>>;
|
|
1298
1317
|
/**
|
|
1299
1318
|
*
|
|
1300
1319
|
* @param {SyncBody} syncBody
|