ob-bms-sdk 0.0.72 → 0.0.73
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 +49 -21
- package/dist/api/api.d.ts +34 -14
- package/dist/api/api.js +28 -14
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -72,12 +72,6 @@ export interface ACRequestBody {
|
|
|
72
72
|
* @interface ACRequestQuery
|
|
73
73
|
*/
|
|
74
74
|
export interface ACRequestQuery {
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {string}
|
|
78
|
-
* @memberof ACRequestQuery
|
|
79
|
-
*/
|
|
80
|
-
'requester_id'?: string;
|
|
81
75
|
/**
|
|
82
76
|
*
|
|
83
77
|
* @type {string}
|
|
@@ -102,12 +96,30 @@ export interface ACRequestQuery {
|
|
|
102
96
|
* @memberof ACRequestQuery
|
|
103
97
|
*/
|
|
104
98
|
'page_size'?: number;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof ACRequestQuery
|
|
103
|
+
*/
|
|
104
|
+
'to.gte'?: string;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof ACRequestQuery
|
|
109
|
+
*/
|
|
110
|
+
'to.lte'?: string;
|
|
105
111
|
/**
|
|
106
112
|
*
|
|
107
113
|
* @type {ACRequestStatus}
|
|
108
114
|
* @memberof ACRequestQuery
|
|
109
115
|
*/
|
|
110
116
|
'status'?: ACRequestStatus;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof ACRequestQuery
|
|
121
|
+
*/
|
|
122
|
+
'requester_id'?: string;
|
|
111
123
|
}
|
|
112
124
|
|
|
113
125
|
|
|
@@ -3706,16 +3718,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3706
3718
|
},
|
|
3707
3719
|
/**
|
|
3708
3720
|
*
|
|
3709
|
-
* @param {string} [requesterId]
|
|
3710
3721
|
* @param {string} [orderBy]
|
|
3711
3722
|
* @param {string} [orderDirection]
|
|
3712
3723
|
* @param {number} [pageNumber]
|
|
3713
3724
|
* @param {number} [pageSize]
|
|
3725
|
+
* @param {string} [toGte]
|
|
3726
|
+
* @param {string} [toLte]
|
|
3714
3727
|
* @param {ACRequestStatus} [status]
|
|
3728
|
+
* @param {string} [requesterId]
|
|
3715
3729
|
* @param {*} [options] Override http request option.
|
|
3716
3730
|
* @throws {RequiredError}
|
|
3717
3731
|
*/
|
|
3718
|
-
acRequestIndex: async (
|
|
3732
|
+
acRequestIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3719
3733
|
const localVarPath = `/ac_request`;
|
|
3720
3734
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3721
3735
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3728,10 +3742,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3728
3742
|
const localVarHeaderParameter = {} as any;
|
|
3729
3743
|
const localVarQueryParameter = {} as any;
|
|
3730
3744
|
|
|
3731
|
-
if (requesterId !== undefined) {
|
|
3732
|
-
localVarQueryParameter['requester_id'] = requesterId;
|
|
3733
|
-
}
|
|
3734
|
-
|
|
3735
3745
|
if (orderBy !== undefined) {
|
|
3736
3746
|
localVarQueryParameter['order_by'] = orderBy;
|
|
3737
3747
|
}
|
|
@@ -3748,10 +3758,22 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3748
3758
|
localVarQueryParameter['page_size'] = pageSize;
|
|
3749
3759
|
}
|
|
3750
3760
|
|
|
3761
|
+
if (toGte !== undefined) {
|
|
3762
|
+
localVarQueryParameter['to.gte'] = toGte;
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
if (toLte !== undefined) {
|
|
3766
|
+
localVarQueryParameter['to.lte'] = toLte;
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3751
3769
|
if (status !== undefined) {
|
|
3752
3770
|
localVarQueryParameter['status'] = status;
|
|
3753
3771
|
}
|
|
3754
3772
|
|
|
3773
|
+
if (requesterId !== undefined) {
|
|
3774
|
+
localVarQueryParameter['requester_id'] = requesterId;
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3755
3777
|
|
|
3756
3778
|
|
|
3757
3779
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4907,17 +4929,19 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4907
4929
|
},
|
|
4908
4930
|
/**
|
|
4909
4931
|
*
|
|
4910
|
-
* @param {string} [requesterId]
|
|
4911
4932
|
* @param {string} [orderBy]
|
|
4912
4933
|
* @param {string} [orderDirection]
|
|
4913
4934
|
* @param {number} [pageNumber]
|
|
4914
4935
|
* @param {number} [pageSize]
|
|
4936
|
+
* @param {string} [toGte]
|
|
4937
|
+
* @param {string} [toLte]
|
|
4915
4938
|
* @param {ACRequestStatus} [status]
|
|
4939
|
+
* @param {string} [requesterId]
|
|
4916
4940
|
* @param {*} [options] Override http request option.
|
|
4917
4941
|
* @throws {RequiredError}
|
|
4918
4942
|
*/
|
|
4919
|
-
async acRequestIndex(
|
|
4920
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.acRequestIndex(
|
|
4943
|
+
async acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseACRequestResponse>> {
|
|
4944
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options);
|
|
4921
4945
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4922
4946
|
},
|
|
4923
4947
|
/**
|
|
@@ -5260,17 +5284,19 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
5260
5284
|
},
|
|
5261
5285
|
/**
|
|
5262
5286
|
*
|
|
5263
|
-
* @param {string} [requesterId]
|
|
5264
5287
|
* @param {string} [orderBy]
|
|
5265
5288
|
* @param {string} [orderDirection]
|
|
5266
5289
|
* @param {number} [pageNumber]
|
|
5267
5290
|
* @param {number} [pageSize]
|
|
5291
|
+
* @param {string} [toGte]
|
|
5292
|
+
* @param {string} [toLte]
|
|
5268
5293
|
* @param {ACRequestStatus} [status]
|
|
5294
|
+
* @param {string} [requesterId]
|
|
5269
5295
|
* @param {*} [options] Override http request option.
|
|
5270
5296
|
* @throws {RequiredError}
|
|
5271
5297
|
*/
|
|
5272
|
-
acRequestIndex(
|
|
5273
|
-
return localVarFp.acRequestIndex(
|
|
5298
|
+
acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: any): AxiosPromise<WrappedArrayResponseACRequestResponse> {
|
|
5299
|
+
return localVarFp.acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options).then((request) => request(axios, basePath));
|
|
5274
5300
|
},
|
|
5275
5301
|
/**
|
|
5276
5302
|
*
|
|
@@ -5584,18 +5610,20 @@ export class DefaultApi extends BaseAPI {
|
|
|
5584
5610
|
|
|
5585
5611
|
/**
|
|
5586
5612
|
*
|
|
5587
|
-
* @param {string} [requesterId]
|
|
5588
5613
|
* @param {string} [orderBy]
|
|
5589
5614
|
* @param {string} [orderDirection]
|
|
5590
5615
|
* @param {number} [pageNumber]
|
|
5591
5616
|
* @param {number} [pageSize]
|
|
5617
|
+
* @param {string} [toGte]
|
|
5618
|
+
* @param {string} [toLte]
|
|
5592
5619
|
* @param {ACRequestStatus} [status]
|
|
5620
|
+
* @param {string} [requesterId]
|
|
5593
5621
|
* @param {*} [options] Override http request option.
|
|
5594
5622
|
* @throws {RequiredError}
|
|
5595
5623
|
* @memberof DefaultApi
|
|
5596
5624
|
*/
|
|
5597
|
-
public acRequestIndex(
|
|
5598
|
-
return DefaultApiFp(this.configuration).acRequestIndex(
|
|
5625
|
+
public acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: AxiosRequestConfig) {
|
|
5626
|
+
return DefaultApiFp(this.configuration).acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options).then((request) => request(this.axios, this.basePath));
|
|
5599
5627
|
}
|
|
5600
5628
|
|
|
5601
5629
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -62,12 +62,6 @@ export interface ACRequestBody {
|
|
|
62
62
|
* @interface ACRequestQuery
|
|
63
63
|
*/
|
|
64
64
|
export interface ACRequestQuery {
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof ACRequestQuery
|
|
69
|
-
*/
|
|
70
|
-
'requester_id'?: string;
|
|
71
65
|
/**
|
|
72
66
|
*
|
|
73
67
|
* @type {string}
|
|
@@ -92,12 +86,30 @@ export interface ACRequestQuery {
|
|
|
92
86
|
* @memberof ACRequestQuery
|
|
93
87
|
*/
|
|
94
88
|
'page_size'?: number;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ACRequestQuery
|
|
93
|
+
*/
|
|
94
|
+
'to.gte'?: string;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ACRequestQuery
|
|
99
|
+
*/
|
|
100
|
+
'to.lte'?: string;
|
|
95
101
|
/**
|
|
96
102
|
*
|
|
97
103
|
* @type {ACRequestStatus}
|
|
98
104
|
* @memberof ACRequestQuery
|
|
99
105
|
*/
|
|
100
106
|
'status'?: ACRequestStatus;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof ACRequestQuery
|
|
111
|
+
*/
|
|
112
|
+
'requester_id'?: string;
|
|
101
113
|
}
|
|
102
114
|
/**
|
|
103
115
|
*
|
|
@@ -3622,16 +3634,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3622
3634
|
acRequestCreate: (aCRequestBody: ACRequestBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3623
3635
|
/**
|
|
3624
3636
|
*
|
|
3625
|
-
* @param {string} [requesterId]
|
|
3626
3637
|
* @param {string} [orderBy]
|
|
3627
3638
|
* @param {string} [orderDirection]
|
|
3628
3639
|
* @param {number} [pageNumber]
|
|
3629
3640
|
* @param {number} [pageSize]
|
|
3641
|
+
* @param {string} [toGte]
|
|
3642
|
+
* @param {string} [toLte]
|
|
3630
3643
|
* @param {ACRequestStatus} [status]
|
|
3644
|
+
* @param {string} [requesterId]
|
|
3631
3645
|
* @param {*} [options] Override http request option.
|
|
3632
3646
|
* @throws {RequiredError}
|
|
3633
3647
|
*/
|
|
3634
|
-
acRequestIndex: (
|
|
3648
|
+
acRequestIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3635
3649
|
/**
|
|
3636
3650
|
*
|
|
3637
3651
|
* @param {string} id
|
|
@@ -3876,16 +3890,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3876
3890
|
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseBoolean>>;
|
|
3877
3891
|
/**
|
|
3878
3892
|
*
|
|
3879
|
-
* @param {string} [requesterId]
|
|
3880
3893
|
* @param {string} [orderBy]
|
|
3881
3894
|
* @param {string} [orderDirection]
|
|
3882
3895
|
* @param {number} [pageNumber]
|
|
3883
3896
|
* @param {number} [pageSize]
|
|
3897
|
+
* @param {string} [toGte]
|
|
3898
|
+
* @param {string} [toLte]
|
|
3884
3899
|
* @param {ACRequestStatus} [status]
|
|
3900
|
+
* @param {string} [requesterId]
|
|
3885
3901
|
* @param {*} [options] Override http request option.
|
|
3886
3902
|
* @throws {RequiredError}
|
|
3887
3903
|
*/
|
|
3888
|
-
acRequestIndex(
|
|
3904
|
+
acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseACRequestResponse>>;
|
|
3889
3905
|
/**
|
|
3890
3906
|
*
|
|
3891
3907
|
* @param {string} id
|
|
@@ -4130,16 +4146,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4130
4146
|
acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<WrappedOneResponseBoolean>;
|
|
4131
4147
|
/**
|
|
4132
4148
|
*
|
|
4133
|
-
* @param {string} [requesterId]
|
|
4134
4149
|
* @param {string} [orderBy]
|
|
4135
4150
|
* @param {string} [orderDirection]
|
|
4136
4151
|
* @param {number} [pageNumber]
|
|
4137
4152
|
* @param {number} [pageSize]
|
|
4153
|
+
* @param {string} [toGte]
|
|
4154
|
+
* @param {string} [toLte]
|
|
4138
4155
|
* @param {ACRequestStatus} [status]
|
|
4156
|
+
* @param {string} [requesterId]
|
|
4139
4157
|
* @param {*} [options] Override http request option.
|
|
4140
4158
|
* @throws {RequiredError}
|
|
4141
4159
|
*/
|
|
4142
|
-
acRequestIndex(
|
|
4160
|
+
acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: any): AxiosPromise<WrappedArrayResponseACRequestResponse>;
|
|
4143
4161
|
/**
|
|
4144
4162
|
*
|
|
4145
4163
|
* @param {string} id
|
|
@@ -4387,17 +4405,19 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4387
4405
|
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseBoolean, any>>;
|
|
4388
4406
|
/**
|
|
4389
4407
|
*
|
|
4390
|
-
* @param {string} [requesterId]
|
|
4391
4408
|
* @param {string} [orderBy]
|
|
4392
4409
|
* @param {string} [orderDirection]
|
|
4393
4410
|
* @param {number} [pageNumber]
|
|
4394
4411
|
* @param {number} [pageSize]
|
|
4412
|
+
* @param {string} [toGte]
|
|
4413
|
+
* @param {string} [toLte]
|
|
4395
4414
|
* @param {ACRequestStatus} [status]
|
|
4415
|
+
* @param {string} [requesterId]
|
|
4396
4416
|
* @param {*} [options] Override http request option.
|
|
4397
4417
|
* @throws {RequiredError}
|
|
4398
4418
|
* @memberof DefaultApi
|
|
4399
4419
|
*/
|
|
4400
|
-
acRequestIndex(
|
|
4420
|
+
acRequestIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, toGte?: string, toLte?: string, status?: ACRequestStatus, requesterId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseACRequestResponse, any>>;
|
|
4401
4421
|
/**
|
|
4402
4422
|
*
|
|
4403
4423
|
* @param {string} id
|
package/dist/api/api.js
CHANGED
|
@@ -157,16 +157,18 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
157
157
|
}),
|
|
158
158
|
/**
|
|
159
159
|
*
|
|
160
|
-
* @param {string} [requesterId]
|
|
161
160
|
* @param {string} [orderBy]
|
|
162
161
|
* @param {string} [orderDirection]
|
|
163
162
|
* @param {number} [pageNumber]
|
|
164
163
|
* @param {number} [pageSize]
|
|
164
|
+
* @param {string} [toGte]
|
|
165
|
+
* @param {string} [toLte]
|
|
165
166
|
* @param {ACRequestStatus} [status]
|
|
167
|
+
* @param {string} [requesterId]
|
|
166
168
|
* @param {*} [options] Override http request option.
|
|
167
169
|
* @throws {RequiredError}
|
|
168
170
|
*/
|
|
169
|
-
acRequestIndex: (
|
|
171
|
+
acRequestIndex: (orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
170
172
|
const localVarPath = `/ac_request`;
|
|
171
173
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
172
174
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -177,9 +179,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
177
179
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
178
180
|
const localVarHeaderParameter = {};
|
|
179
181
|
const localVarQueryParameter = {};
|
|
180
|
-
if (requesterId !== undefined) {
|
|
181
|
-
localVarQueryParameter['requester_id'] = requesterId;
|
|
182
|
-
}
|
|
183
182
|
if (orderBy !== undefined) {
|
|
184
183
|
localVarQueryParameter['order_by'] = orderBy;
|
|
185
184
|
}
|
|
@@ -192,9 +191,18 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
192
191
|
if (pageSize !== undefined) {
|
|
193
192
|
localVarQueryParameter['page_size'] = pageSize;
|
|
194
193
|
}
|
|
194
|
+
if (toGte !== undefined) {
|
|
195
|
+
localVarQueryParameter['to.gte'] = toGte;
|
|
196
|
+
}
|
|
197
|
+
if (toLte !== undefined) {
|
|
198
|
+
localVarQueryParameter['to.lte'] = toLte;
|
|
199
|
+
}
|
|
195
200
|
if (status !== undefined) {
|
|
196
201
|
localVarQueryParameter['status'] = status;
|
|
197
202
|
}
|
|
203
|
+
if (requesterId !== undefined) {
|
|
204
|
+
localVarQueryParameter['requester_id'] = requesterId;
|
|
205
|
+
}
|
|
198
206
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
199
207
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
200
208
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1165,18 +1173,20 @@ const DefaultApiFp = function (configuration) {
|
|
|
1165
1173
|
},
|
|
1166
1174
|
/**
|
|
1167
1175
|
*
|
|
1168
|
-
* @param {string} [requesterId]
|
|
1169
1176
|
* @param {string} [orderBy]
|
|
1170
1177
|
* @param {string} [orderDirection]
|
|
1171
1178
|
* @param {number} [pageNumber]
|
|
1172
1179
|
* @param {number} [pageSize]
|
|
1180
|
+
* @param {string} [toGte]
|
|
1181
|
+
* @param {string} [toLte]
|
|
1173
1182
|
* @param {ACRequestStatus} [status]
|
|
1183
|
+
* @param {string} [requesterId]
|
|
1174
1184
|
* @param {*} [options] Override http request option.
|
|
1175
1185
|
* @throws {RequiredError}
|
|
1176
1186
|
*/
|
|
1177
|
-
acRequestIndex(
|
|
1187
|
+
acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options) {
|
|
1178
1188
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1179
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.acRequestIndex(
|
|
1189
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options);
|
|
1180
1190
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1181
1191
|
});
|
|
1182
1192
|
},
|
|
@@ -1580,17 +1590,19 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1580
1590
|
},
|
|
1581
1591
|
/**
|
|
1582
1592
|
*
|
|
1583
|
-
* @param {string} [requesterId]
|
|
1584
1593
|
* @param {string} [orderBy]
|
|
1585
1594
|
* @param {string} [orderDirection]
|
|
1586
1595
|
* @param {number} [pageNumber]
|
|
1587
1596
|
* @param {number} [pageSize]
|
|
1597
|
+
* @param {string} [toGte]
|
|
1598
|
+
* @param {string} [toLte]
|
|
1588
1599
|
* @param {ACRequestStatus} [status]
|
|
1600
|
+
* @param {string} [requesterId]
|
|
1589
1601
|
* @param {*} [options] Override http request option.
|
|
1590
1602
|
* @throws {RequiredError}
|
|
1591
1603
|
*/
|
|
1592
|
-
acRequestIndex(
|
|
1593
|
-
return localVarFp.acRequestIndex(
|
|
1604
|
+
acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options) {
|
|
1605
|
+
return localVarFp.acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options).then((request) => request(axios, basePath));
|
|
1594
1606
|
},
|
|
1595
1607
|
/**
|
|
1596
1608
|
*
|
|
@@ -1903,18 +1915,20 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1903
1915
|
}
|
|
1904
1916
|
/**
|
|
1905
1917
|
*
|
|
1906
|
-
* @param {string} [requesterId]
|
|
1907
1918
|
* @param {string} [orderBy]
|
|
1908
1919
|
* @param {string} [orderDirection]
|
|
1909
1920
|
* @param {number} [pageNumber]
|
|
1910
1921
|
* @param {number} [pageSize]
|
|
1922
|
+
* @param {string} [toGte]
|
|
1923
|
+
* @param {string} [toLte]
|
|
1911
1924
|
* @param {ACRequestStatus} [status]
|
|
1925
|
+
* @param {string} [requesterId]
|
|
1912
1926
|
* @param {*} [options] Override http request option.
|
|
1913
1927
|
* @throws {RequiredError}
|
|
1914
1928
|
* @memberof DefaultApi
|
|
1915
1929
|
*/
|
|
1916
|
-
acRequestIndex(
|
|
1917
|
-
return (0, exports.DefaultApiFp)(this.configuration).acRequestIndex(
|
|
1930
|
+
acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options) {
|
|
1931
|
+
return (0, exports.DefaultApiFp)(this.configuration).acRequestIndex(orderBy, orderDirection, pageNumber, pageSize, toGte, toLte, status, requesterId, options).then((request) => request(this.axios, this.basePath));
|
|
1918
1932
|
}
|
|
1919
1933
|
/**
|
|
1920
1934
|
*
|