@gewis/sudosos-client 0.0.0-develop.320225b → 0.0.0-develop.3311c6e
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/README.md +24 -18
- package/dist/api.d.ts +1825 -443
- package/dist/api.js +1528 -267
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +19918 -0
- package/dist/esm/api.js +16762 -0
- package/dist/esm/base.d.ts +66 -0
- package/dist/esm/base.js +59 -0
- package/dist/esm/common.d.ts +65 -0
- package/dist/esm/common.js +133 -0
- package/dist/esm/configuration.d.ts +91 -0
- package/dist/esm/configuration.js +39 -0
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/package.json +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +10 -9
package/dist/api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* sudosos-
|
|
2
|
+
* sudosos-backend
|
|
3
3
|
* SudoSOS
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0.1.0
|
|
@@ -25,6 +25,12 @@ export interface AcceptTosRequest {
|
|
|
25
25
|
* @memberof AcceptTosRequest
|
|
26
26
|
*/
|
|
27
27
|
'extensiveDataProcessing': boolean;
|
|
28
|
+
/**
|
|
29
|
+
* The TOS version being accepted.
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof AcceptTosRequest
|
|
32
|
+
*/
|
|
33
|
+
'version': string;
|
|
28
34
|
}
|
|
29
35
|
/**
|
|
30
36
|
*
|
|
@@ -58,6 +64,25 @@ export interface AddRoleRequest {
|
|
|
58
64
|
*/
|
|
59
65
|
'roleId': number;
|
|
60
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @export
|
|
70
|
+
* @interface AuthenticationEanRequest
|
|
71
|
+
*/
|
|
72
|
+
export interface AuthenticationEanRequest {
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof AuthenticationEanRequest
|
|
77
|
+
*/
|
|
78
|
+
'eanCode': string;
|
|
79
|
+
/**
|
|
80
|
+
* POS identifier
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof AuthenticationEanRequest
|
|
83
|
+
*/
|
|
84
|
+
'posId': number;
|
|
85
|
+
}
|
|
61
86
|
/**
|
|
62
87
|
*
|
|
63
88
|
* @export
|
|
@@ -134,6 +159,50 @@ export interface AuthenticationMockRequest {
|
|
|
134
159
|
*/
|
|
135
160
|
'nonce': string;
|
|
136
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @export
|
|
165
|
+
* @interface AuthenticationNfcRequest
|
|
166
|
+
*/
|
|
167
|
+
export interface AuthenticationNfcRequest {
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @type {string}
|
|
171
|
+
* @memberof AuthenticationNfcRequest
|
|
172
|
+
*/
|
|
173
|
+
'nfcCode': string;
|
|
174
|
+
/**
|
|
175
|
+
* POS identifier
|
|
176
|
+
* @type {number}
|
|
177
|
+
* @memberof AuthenticationNfcRequest
|
|
178
|
+
*/
|
|
179
|
+
'posId': number;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @export
|
|
184
|
+
* @interface AuthenticationPinRequest
|
|
185
|
+
*/
|
|
186
|
+
export interface AuthenticationPinRequest {
|
|
187
|
+
/**
|
|
188
|
+
*
|
|
189
|
+
* @type {number}
|
|
190
|
+
* @memberof AuthenticationPinRequest
|
|
191
|
+
*/
|
|
192
|
+
'userId': number;
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @type {string}
|
|
196
|
+
* @memberof AuthenticationPinRequest
|
|
197
|
+
*/
|
|
198
|
+
'pin': string;
|
|
199
|
+
/**
|
|
200
|
+
* POS identifier
|
|
201
|
+
* @type {number}
|
|
202
|
+
* @memberof AuthenticationPinRequest
|
|
203
|
+
*/
|
|
204
|
+
'posId': number;
|
|
205
|
+
}
|
|
137
206
|
/**
|
|
138
207
|
*
|
|
139
208
|
* @export
|
|
@@ -215,69 +284,6 @@ export interface AuthenticationResponse {
|
|
|
215
284
|
*/
|
|
216
285
|
'rolesWithPermissions': Array<RoleWithPermissionsResponse>;
|
|
217
286
|
}
|
|
218
|
-
/**
|
|
219
|
-
*
|
|
220
|
-
* @export
|
|
221
|
-
* @interface AuthenticationSecureEanRequest
|
|
222
|
-
*/
|
|
223
|
-
export interface AuthenticationSecureEanRequest {
|
|
224
|
-
/**
|
|
225
|
-
*
|
|
226
|
-
* @type {string}
|
|
227
|
-
* @memberof AuthenticationSecureEanRequest
|
|
228
|
-
*/
|
|
229
|
-
'eanCode': string;
|
|
230
|
-
/**
|
|
231
|
-
* POS identifier
|
|
232
|
-
* @type {number}
|
|
233
|
-
* @memberof AuthenticationSecureEanRequest
|
|
234
|
-
*/
|
|
235
|
-
'posId': number;
|
|
236
|
-
}
|
|
237
|
-
/**
|
|
238
|
-
*
|
|
239
|
-
* @export
|
|
240
|
-
* @interface AuthenticationSecureNfcRequest
|
|
241
|
-
*/
|
|
242
|
-
export interface AuthenticationSecureNfcRequest {
|
|
243
|
-
/**
|
|
244
|
-
*
|
|
245
|
-
* @type {string}
|
|
246
|
-
* @memberof AuthenticationSecureNfcRequest
|
|
247
|
-
*/
|
|
248
|
-
'nfcCode': string;
|
|
249
|
-
/**
|
|
250
|
-
* POS identifier
|
|
251
|
-
* @type {number}
|
|
252
|
-
* @memberof AuthenticationSecureNfcRequest
|
|
253
|
-
*/
|
|
254
|
-
'posId': number;
|
|
255
|
-
}
|
|
256
|
-
/**
|
|
257
|
-
*
|
|
258
|
-
* @export
|
|
259
|
-
* @interface AuthenticationSecurePinRequest
|
|
260
|
-
*/
|
|
261
|
-
export interface AuthenticationSecurePinRequest {
|
|
262
|
-
/**
|
|
263
|
-
*
|
|
264
|
-
* @type {number}
|
|
265
|
-
* @memberof AuthenticationSecurePinRequest
|
|
266
|
-
*/
|
|
267
|
-
'userId': number;
|
|
268
|
-
/**
|
|
269
|
-
*
|
|
270
|
-
* @type {string}
|
|
271
|
-
* @memberof AuthenticationSecurePinRequest
|
|
272
|
-
*/
|
|
273
|
-
'pin': string;
|
|
274
|
-
/**
|
|
275
|
-
* POS identifier (required for secure authentication)
|
|
276
|
-
* @type {number}
|
|
277
|
-
* @memberof AuthenticationSecurePinRequest
|
|
278
|
-
*/
|
|
279
|
-
'posId': number;
|
|
280
|
-
}
|
|
281
287
|
/**
|
|
282
288
|
*
|
|
283
289
|
* @export
|
|
@@ -901,6 +907,104 @@ export interface BaseInvoiceResponse {
|
|
|
901
907
|
*/
|
|
902
908
|
'totalInclVat': DineroObjectResponse;
|
|
903
909
|
}
|
|
910
|
+
/**
|
|
911
|
+
* PaymentRequest is UUID-keyed. To avoid overloading the `id` slot (which on other responses is the numeric DB id), the UUID is exposed under a semantically named field, mirroring how `QRAuthenticator` exposes its UUID as `sessionId`. The response therefore extends `BaseResponseWithoutId` (timestamps + version, no `id`) and declares a `uuid` of its own.
|
|
912
|
+
* @export
|
|
913
|
+
* @interface BasePaymentRequestResponse
|
|
914
|
+
*/
|
|
915
|
+
export interface BasePaymentRequestResponse {
|
|
916
|
+
/**
|
|
917
|
+
* UUID v4 identifier (also the public share-link id).
|
|
918
|
+
* @type {string}
|
|
919
|
+
* @memberof BasePaymentRequestResponse
|
|
920
|
+
*/
|
|
921
|
+
'uuid': string;
|
|
922
|
+
/**
|
|
923
|
+
* ISO-8601 creation timestamp.
|
|
924
|
+
* @type {string}
|
|
925
|
+
* @memberof BasePaymentRequestResponse
|
|
926
|
+
*/
|
|
927
|
+
'createdAt'?: string;
|
|
928
|
+
/**
|
|
929
|
+
* ISO-8601 last update timestamp.
|
|
930
|
+
* @type {string}
|
|
931
|
+
* @memberof BasePaymentRequestResponse
|
|
932
|
+
*/
|
|
933
|
+
'updatedAt'?: string;
|
|
934
|
+
/**
|
|
935
|
+
* Optimistic-locking version.
|
|
936
|
+
* @type {number}
|
|
937
|
+
* @memberof BasePaymentRequestResponse
|
|
938
|
+
*/
|
|
939
|
+
'version'?: number;
|
|
940
|
+
/**
|
|
941
|
+
*
|
|
942
|
+
* @type {BaseUserResponse}
|
|
943
|
+
* @memberof BasePaymentRequestResponse
|
|
944
|
+
*/
|
|
945
|
+
'for': BaseUserResponse;
|
|
946
|
+
/**
|
|
947
|
+
*
|
|
948
|
+
* @type {BaseUserResponse}
|
|
949
|
+
* @memberof BasePaymentRequestResponse
|
|
950
|
+
*/
|
|
951
|
+
'createdBy': BaseUserResponse;
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @type {DineroObjectResponse}
|
|
955
|
+
* @memberof BasePaymentRequestResponse
|
|
956
|
+
*/
|
|
957
|
+
'amount': DineroObjectResponse;
|
|
958
|
+
/**
|
|
959
|
+
* ISO-8601 timestamp after which payments stop being accepted.
|
|
960
|
+
* @type {string}
|
|
961
|
+
* @memberof BasePaymentRequestResponse
|
|
962
|
+
*/
|
|
963
|
+
'expiresAt': string;
|
|
964
|
+
/**
|
|
965
|
+
* ISO-8601 timestamp the request was marked paid (null if not paid).
|
|
966
|
+
* @type {string}
|
|
967
|
+
* @memberof BasePaymentRequestResponse
|
|
968
|
+
*/
|
|
969
|
+
'paidAt'?: string;
|
|
970
|
+
/**
|
|
971
|
+
* ISO-8601 timestamp the request was cancelled (null if not cancelled).
|
|
972
|
+
* @type {string}
|
|
973
|
+
* @memberof BasePaymentRequestResponse
|
|
974
|
+
*/
|
|
975
|
+
'cancelledAt'?: string;
|
|
976
|
+
/**
|
|
977
|
+
*
|
|
978
|
+
* @type {BaseUserResponse}
|
|
979
|
+
* @memberof BasePaymentRequestResponse
|
|
980
|
+
*/
|
|
981
|
+
'cancelledBy'?: BaseUserResponse;
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @type {BaseUserResponse}
|
|
985
|
+
* @memberof BasePaymentRequestResponse
|
|
986
|
+
*/
|
|
987
|
+
'fulfilledBy'?: BaseUserResponse;
|
|
988
|
+
/**
|
|
989
|
+
* Optional human-readable description.
|
|
990
|
+
* @type {string}
|
|
991
|
+
* @memberof BasePaymentRequestResponse
|
|
992
|
+
*/
|
|
993
|
+
'description'?: string;
|
|
994
|
+
/**
|
|
995
|
+
* Derived lifecycle status.
|
|
996
|
+
* @type {string}
|
|
997
|
+
* @memberof BasePaymentRequestResponse
|
|
998
|
+
*/
|
|
999
|
+
'status': BasePaymentRequestResponseStatusEnum;
|
|
1000
|
+
}
|
|
1001
|
+
export declare const BasePaymentRequestResponseStatusEnum: {
|
|
1002
|
+
readonly Pending: "PENDING";
|
|
1003
|
+
readonly Paid: "PAID";
|
|
1004
|
+
readonly Expired: "EXPIRED";
|
|
1005
|
+
readonly Cancelled: "CANCELLED";
|
|
1006
|
+
};
|
|
1007
|
+
export type BasePaymentRequestResponseStatusEnum = typeof BasePaymentRequestResponseStatusEnum[keyof typeof BasePaymentRequestResponseStatusEnum];
|
|
904
1008
|
/**
|
|
905
1009
|
*
|
|
906
1010
|
* @export
|
|
@@ -1141,6 +1245,31 @@ export interface BaseResponse {
|
|
|
1141
1245
|
*/
|
|
1142
1246
|
'version'?: number;
|
|
1143
1247
|
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Standard timestamp/version fields every response shares, without an `id`. Responses that key on a UUID (or any non-integer identifier) extend this and add their own `id` field. Responses keyed on an integer id extend `BaseResponse` instead, which adds `id: number`. Parallel to `BaseEntityWithoutId` on the entity side.
|
|
1250
|
+
* @export
|
|
1251
|
+
* @interface BaseResponseWithoutId
|
|
1252
|
+
*/
|
|
1253
|
+
export interface BaseResponseWithoutId {
|
|
1254
|
+
/**
|
|
1255
|
+
* The creation Date of the entity.
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof BaseResponseWithoutId
|
|
1258
|
+
*/
|
|
1259
|
+
'createdAt'?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* The last update Date of the entity.
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof BaseResponseWithoutId
|
|
1264
|
+
*/
|
|
1265
|
+
'updatedAt'?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* The version of the entity.
|
|
1268
|
+
* @type {number}
|
|
1269
|
+
* @memberof BaseResponseWithoutId
|
|
1270
|
+
*/
|
|
1271
|
+
'version'?: number;
|
|
1272
|
+
}
|
|
1144
1273
|
/**
|
|
1145
1274
|
*
|
|
1146
1275
|
* @export
|
|
@@ -1779,6 +1908,37 @@ export interface CreateInvoiceRequest {
|
|
|
1779
1908
|
*/
|
|
1780
1909
|
'amount': DineroObjectRequest;
|
|
1781
1910
|
}
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @export
|
|
1914
|
+
* @interface CreatePaymentRequestRequest
|
|
1915
|
+
*/
|
|
1916
|
+
export interface CreatePaymentRequestRequest {
|
|
1917
|
+
/**
|
|
1918
|
+
* The ID of the user whose balance will be credited on payment.
|
|
1919
|
+
* @type {number}
|
|
1920
|
+
* @memberof CreatePaymentRequestRequest
|
|
1921
|
+
*/
|
|
1922
|
+
'forId': number;
|
|
1923
|
+
/**
|
|
1924
|
+
*
|
|
1925
|
+
* @type {DineroObjectRequest}
|
|
1926
|
+
* @memberof CreatePaymentRequestRequest
|
|
1927
|
+
*/
|
|
1928
|
+
'amount': DineroObjectRequest;
|
|
1929
|
+
/**
|
|
1930
|
+
* ISO-8601 timestamp after which the request stops accepting payments.
|
|
1931
|
+
* @type {string}
|
|
1932
|
+
* @memberof CreatePaymentRequestRequest
|
|
1933
|
+
*/
|
|
1934
|
+
'expiresAt': string;
|
|
1935
|
+
/**
|
|
1936
|
+
* Optional human-readable description (e.g. invoice reference).
|
|
1937
|
+
* @type {string}
|
|
1938
|
+
* @memberof CreatePaymentRequestRequest
|
|
1939
|
+
*/
|
|
1940
|
+
'description'?: string;
|
|
1941
|
+
}
|
|
1782
1942
|
/**
|
|
1783
1943
|
*
|
|
1784
1944
|
* @export
|
|
@@ -1958,6 +2118,19 @@ export interface CreateShiftRequest {
|
|
|
1958
2118
|
*/
|
|
1959
2119
|
'roles': Array<string>;
|
|
1960
2120
|
}
|
|
2121
|
+
/**
|
|
2122
|
+
*
|
|
2123
|
+
* @export
|
|
2124
|
+
* @interface CreateTerminalPaymentRequest
|
|
2125
|
+
*/
|
|
2126
|
+
export interface CreateTerminalPaymentRequest {
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @type {TransactionRequest}
|
|
2130
|
+
* @memberof CreateTerminalPaymentRequest
|
|
2131
|
+
*/
|
|
2132
|
+
'transaction': TransactionRequest;
|
|
2133
|
+
}
|
|
1961
2134
|
/**
|
|
1962
2135
|
*
|
|
1963
2136
|
* @export
|
|
@@ -3109,25 +3282,38 @@ export interface InvoiceUserResponse {
|
|
|
3109
3282
|
/**
|
|
3110
3283
|
*
|
|
3111
3284
|
* @export
|
|
3112
|
-
* @interface
|
|
3285
|
+
* @interface MarkFulfilledExternallyRequest
|
|
3286
|
+
*/
|
|
3287
|
+
export interface MarkFulfilledExternallyRequest {
|
|
3288
|
+
/**
|
|
3289
|
+
* Why this request is being marked paid out-of-band (audit trail).
|
|
3290
|
+
* @type {string}
|
|
3291
|
+
* @memberof MarkFulfilledExternallyRequest
|
|
3292
|
+
*/
|
|
3293
|
+
'reason': string;
|
|
3294
|
+
}
|
|
3295
|
+
/**
|
|
3296
|
+
*
|
|
3297
|
+
* @export
|
|
3298
|
+
* @interface MemberAuthenticationPinRequest
|
|
3113
3299
|
*/
|
|
3114
|
-
export interface
|
|
3300
|
+
export interface MemberAuthenticationPinRequest {
|
|
3115
3301
|
/**
|
|
3116
3302
|
*
|
|
3117
3303
|
* @type {number}
|
|
3118
|
-
* @memberof
|
|
3304
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3119
3305
|
*/
|
|
3120
3306
|
'memberId': number;
|
|
3121
3307
|
/**
|
|
3122
3308
|
*
|
|
3123
3309
|
* @type {string}
|
|
3124
|
-
* @memberof
|
|
3310
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3125
3311
|
*/
|
|
3126
3312
|
'pin': string;
|
|
3127
3313
|
/**
|
|
3128
3314
|
* POS identifier
|
|
3129
3315
|
* @type {number}
|
|
3130
|
-
* @memberof
|
|
3316
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3131
3317
|
*/
|
|
3132
3318
|
'posId': number;
|
|
3133
3319
|
}
|
|
@@ -3201,6 +3387,25 @@ export interface PaginatedBaseEventResponse {
|
|
|
3201
3387
|
*/
|
|
3202
3388
|
'records': Array<BaseEventResponse>;
|
|
3203
3389
|
}
|
|
3390
|
+
/**
|
|
3391
|
+
*
|
|
3392
|
+
* @export
|
|
3393
|
+
* @interface PaginatedBasePaymentRequestResponse
|
|
3394
|
+
*/
|
|
3395
|
+
export interface PaginatedBasePaymentRequestResponse {
|
|
3396
|
+
/**
|
|
3397
|
+
*
|
|
3398
|
+
* @type {PaginationResult}
|
|
3399
|
+
* @memberof PaginatedBasePaymentRequestResponse
|
|
3400
|
+
*/
|
|
3401
|
+
'_pagination': PaginationResult;
|
|
3402
|
+
/**
|
|
3403
|
+
* Returned payment requests
|
|
3404
|
+
* @type {Array<BasePaymentRequestResponse>}
|
|
3405
|
+
* @memberof PaginatedBasePaymentRequestResponse
|
|
3406
|
+
*/
|
|
3407
|
+
'records': Array<BasePaymentRequestResponse>;
|
|
3408
|
+
}
|
|
3204
3409
|
/**
|
|
3205
3410
|
*
|
|
3206
3411
|
* @export
|
|
@@ -3631,6 +3836,31 @@ export interface PatchUserTypeRequest {
|
|
|
3631
3836
|
*/
|
|
3632
3837
|
'userType': string;
|
|
3633
3838
|
}
|
|
3839
|
+
/**
|
|
3840
|
+
* Response returned from the \"start payment\" endpoint. Contains just enough to let the browser redirect into the Stripe Payment Element.
|
|
3841
|
+
* @export
|
|
3842
|
+
* @interface PaymentRequestStartResponse
|
|
3843
|
+
*/
|
|
3844
|
+
export interface PaymentRequestStartResponse {
|
|
3845
|
+
/**
|
|
3846
|
+
* The PaymentRequest id the intent is linked to.
|
|
3847
|
+
* @type {string}
|
|
3848
|
+
* @memberof PaymentRequestStartResponse
|
|
3849
|
+
*/
|
|
3850
|
+
'paymentRequestId': string;
|
|
3851
|
+
/**
|
|
3852
|
+
* Stripe payment intent id.
|
|
3853
|
+
* @type {string}
|
|
3854
|
+
* @memberof PaymentRequestStartResponse
|
|
3855
|
+
*/
|
|
3856
|
+
'stripeId': string;
|
|
3857
|
+
/**
|
|
3858
|
+
* Stripe client secret for the intent.
|
|
3859
|
+
* @type {string}
|
|
3860
|
+
* @memberof PaymentRequestStartResponse
|
|
3861
|
+
*/
|
|
3862
|
+
'clientSecret': string;
|
|
3863
|
+
}
|
|
3634
3864
|
/**
|
|
3635
3865
|
*
|
|
3636
3866
|
* @export
|
|
@@ -3991,13 +4221,26 @@ export interface PointOfSaleWithContainersResponse {
|
|
|
3991
4221
|
'containers': Array<ContainerWithProductsResponse>;
|
|
3992
4222
|
}
|
|
3993
4223
|
/**
|
|
3994
|
-
*
|
|
4224
|
+
*
|
|
3995
4225
|
* @export
|
|
3996
|
-
* @interface
|
|
4226
|
+
* @interface ProcessTerminalPaymentRequest
|
|
3997
4227
|
*/
|
|
3998
|
-
export interface
|
|
4228
|
+
export interface ProcessTerminalPaymentRequest {
|
|
3999
4229
|
/**
|
|
4000
|
-
*
|
|
4230
|
+
* The ID of the Stripe terminal to perform the payment with
|
|
4231
|
+
* @type {string}
|
|
4232
|
+
* @memberof ProcessTerminalPaymentRequest
|
|
4233
|
+
*/
|
|
4234
|
+
'stripeTerminalId': string;
|
|
4235
|
+
}
|
|
4236
|
+
/**
|
|
4237
|
+
* API Request for creating or updating a `product category` entity.
|
|
4238
|
+
* @export
|
|
4239
|
+
* @interface ProductCategoryRequest
|
|
4240
|
+
*/
|
|
4241
|
+
export interface ProductCategoryRequest {
|
|
4242
|
+
/**
|
|
4243
|
+
* Name/label of the productCategory
|
|
4001
4244
|
* @type {string}
|
|
4002
4245
|
* @memberof ProductCategoryRequest
|
|
4003
4246
|
*/
|
|
@@ -4155,6 +4398,56 @@ export interface ProductResponse {
|
|
|
4155
4398
|
*/
|
|
4156
4399
|
'priceList': boolean;
|
|
4157
4400
|
}
|
|
4401
|
+
/**
|
|
4402
|
+
* Minimal response returned to unauthenticated callers of the public share link endpoint. It deliberately omits `createdBy`, `cancelledBy`, and other internal audit fields — anyone with the link can see it, so we leak as little user info as possible.
|
|
4403
|
+
* @export
|
|
4404
|
+
* @interface PublicPaymentRequestResponse
|
|
4405
|
+
*/
|
|
4406
|
+
export interface PublicPaymentRequestResponse {
|
|
4407
|
+
/**
|
|
4408
|
+
* UUID v4 identifier.
|
|
4409
|
+
* @type {string}
|
|
4410
|
+
* @memberof PublicPaymentRequestResponse
|
|
4411
|
+
*/
|
|
4412
|
+
'uuid': string;
|
|
4413
|
+
/**
|
|
4414
|
+
* Recipient display name (e.g. \"John D.\").
|
|
4415
|
+
* @type {string}
|
|
4416
|
+
* @memberof PublicPaymentRequestResponse
|
|
4417
|
+
*/
|
|
4418
|
+
'forDisplayName': string;
|
|
4419
|
+
/**
|
|
4420
|
+
*
|
|
4421
|
+
* @type {DineroObjectResponse}
|
|
4422
|
+
* @memberof PublicPaymentRequestResponse
|
|
4423
|
+
*/
|
|
4424
|
+
'amount': DineroObjectResponse;
|
|
4425
|
+
/**
|
|
4426
|
+
* ISO-8601 timestamp after which payments stop being accepted.
|
|
4427
|
+
* @type {string}
|
|
4428
|
+
* @memberof PublicPaymentRequestResponse
|
|
4429
|
+
*/
|
|
4430
|
+
'expiresAt': string;
|
|
4431
|
+
/**
|
|
4432
|
+
* Optional human-readable description.
|
|
4433
|
+
* @type {string}
|
|
4434
|
+
* @memberof PublicPaymentRequestResponse
|
|
4435
|
+
*/
|
|
4436
|
+
'description'?: string;
|
|
4437
|
+
/**
|
|
4438
|
+
* Derived lifecycle status.
|
|
4439
|
+
* @type {string}
|
|
4440
|
+
* @memberof PublicPaymentRequestResponse
|
|
4441
|
+
*/
|
|
4442
|
+
'status': PublicPaymentRequestResponseStatusEnum;
|
|
4443
|
+
}
|
|
4444
|
+
export declare const PublicPaymentRequestResponseStatusEnum: {
|
|
4445
|
+
readonly Pending: "PENDING";
|
|
4446
|
+
readonly Paid: "PAID";
|
|
4447
|
+
readonly Expired: "EXPIRED";
|
|
4448
|
+
readonly Cancelled: "CANCELLED";
|
|
4449
|
+
};
|
|
4450
|
+
export type PublicPaymentRequestResponseStatusEnum = typeof PublicPaymentRequestResponseStatusEnum[keyof typeof PublicPaymentRequestResponseStatusEnum];
|
|
4158
4451
|
/**
|
|
4159
4452
|
*
|
|
4160
4453
|
* @export
|
|
@@ -4832,6 +5125,37 @@ export interface StripePaymentIntentStatusResponse {
|
|
|
4832
5125
|
*/
|
|
4833
5126
|
'state': number;
|
|
4834
5127
|
}
|
|
5128
|
+
/**
|
|
5129
|
+
*
|
|
5130
|
+
* @export
|
|
5131
|
+
* @interface StripePaymentTerminalResponse
|
|
5132
|
+
*/
|
|
5133
|
+
export interface StripePaymentTerminalResponse {
|
|
5134
|
+
/**
|
|
5135
|
+
* The ID of the payment terminal
|
|
5136
|
+
* @type {string}
|
|
5137
|
+
* @memberof StripePaymentTerminalResponse
|
|
5138
|
+
*/
|
|
5139
|
+
'id': string;
|
|
5140
|
+
/**
|
|
5141
|
+
* The name of the payment terminal
|
|
5142
|
+
* @type {string}
|
|
5143
|
+
* @memberof StripePaymentTerminalResponse
|
|
5144
|
+
*/
|
|
5145
|
+
'name': string;
|
|
5146
|
+
/**
|
|
5147
|
+
* When the terminal was last seen. If more than 1 minute ago, the terminal might be offline. If more than 5 minutes ago, it is definitely offline.
|
|
5148
|
+
* @type {string}
|
|
5149
|
+
* @memberof StripePaymentTerminalResponse
|
|
5150
|
+
*/
|
|
5151
|
+
'lastSeenAt': string;
|
|
5152
|
+
/**
|
|
5153
|
+
* Whether the terminal is available to start processing a payment
|
|
5154
|
+
* @type {boolean}
|
|
5155
|
+
* @memberof StripePaymentTerminalResponse
|
|
5156
|
+
*/
|
|
5157
|
+
'available': boolean;
|
|
5158
|
+
}
|
|
4835
5159
|
/**
|
|
4836
5160
|
*
|
|
4837
5161
|
* @export
|
|
@@ -5024,6 +5348,67 @@ export interface SubTransactionRowResponse {
|
|
|
5024
5348
|
*/
|
|
5025
5349
|
'totalPriceInclVat': DineroObjectResponse;
|
|
5026
5350
|
}
|
|
5351
|
+
/**
|
|
5352
|
+
*
|
|
5353
|
+
* @export
|
|
5354
|
+
* @interface TerminalPaymentResponse
|
|
5355
|
+
*/
|
|
5356
|
+
export interface TerminalPaymentResponse {
|
|
5357
|
+
/**
|
|
5358
|
+
* The unique id of the entity.
|
|
5359
|
+
* @type {number}
|
|
5360
|
+
* @memberof TerminalPaymentResponse
|
|
5361
|
+
*/
|
|
5362
|
+
'id': number;
|
|
5363
|
+
/**
|
|
5364
|
+
* The creation Date of the entity.
|
|
5365
|
+
* @type {string}
|
|
5366
|
+
* @memberof TerminalPaymentResponse
|
|
5367
|
+
*/
|
|
5368
|
+
'createdAt'?: string;
|
|
5369
|
+
/**
|
|
5370
|
+
* The last update Date of the entity.
|
|
5371
|
+
* @type {string}
|
|
5372
|
+
* @memberof TerminalPaymentResponse
|
|
5373
|
+
*/
|
|
5374
|
+
'updatedAt'?: string;
|
|
5375
|
+
/**
|
|
5376
|
+
* The version of the entity.
|
|
5377
|
+
* @type {number}
|
|
5378
|
+
* @memberof TerminalPaymentResponse
|
|
5379
|
+
*/
|
|
5380
|
+
'version'?: number;
|
|
5381
|
+
/**
|
|
5382
|
+
*
|
|
5383
|
+
* @type {TransactionResponse}
|
|
5384
|
+
* @memberof TerminalPaymentResponse
|
|
5385
|
+
*/
|
|
5386
|
+
'transaction'?: TransactionResponse;
|
|
5387
|
+
/**
|
|
5388
|
+
*
|
|
5389
|
+
* @type {TransferResponse}
|
|
5390
|
+
* @memberof TerminalPaymentResponse
|
|
5391
|
+
*/
|
|
5392
|
+
'transfer'?: TransferResponse;
|
|
5393
|
+
/**
|
|
5394
|
+
*
|
|
5395
|
+
* @type {BaseUserResponse}
|
|
5396
|
+
* @memberof TerminalPaymentResponse
|
|
5397
|
+
*/
|
|
5398
|
+
'createdBy': BaseUserResponse;
|
|
5399
|
+
/**
|
|
5400
|
+
* The state of the terminal payment. One of \'created\', \'processing\', \'paid\' or \'cancelled\'.
|
|
5401
|
+
* @type {string}
|
|
5402
|
+
* @memberof TerminalPaymentResponse
|
|
5403
|
+
*/
|
|
5404
|
+
'state': string;
|
|
5405
|
+
/**
|
|
5406
|
+
*
|
|
5407
|
+
* @type {DineroObjectResponse}
|
|
5408
|
+
* @memberof TerminalPaymentResponse
|
|
5409
|
+
*/
|
|
5410
|
+
'amount': DineroObjectResponse;
|
|
5411
|
+
}
|
|
5027
5412
|
/**
|
|
5028
5413
|
*
|
|
5029
5414
|
* @export
|
|
@@ -5036,6 +5421,12 @@ export interface TermsOfServiceResponse {
|
|
|
5036
5421
|
* @memberof TermsOfServiceResponse
|
|
5037
5422
|
*/
|
|
5038
5423
|
'versionNumber': string;
|
|
5424
|
+
/**
|
|
5425
|
+
* The date this version took effect.
|
|
5426
|
+
* @type {string}
|
|
5427
|
+
* @memberof TermsOfServiceResponse
|
|
5428
|
+
*/
|
|
5429
|
+
'date': string;
|
|
5039
5430
|
/**
|
|
5040
5431
|
* The terms of service content.
|
|
5041
5432
|
* @type {string}
|
|
@@ -5043,6 +5434,17 @@ export interface TermsOfServiceResponse {
|
|
|
5043
5434
|
*/
|
|
5044
5435
|
'content': string;
|
|
5045
5436
|
}
|
|
5437
|
+
/**
|
|
5438
|
+
* The terms of service status of a user
|
|
5439
|
+
* @export
|
|
5440
|
+
* @enum {string}
|
|
5441
|
+
*/
|
|
5442
|
+
export declare const TermsOfServiceStatus: {
|
|
5443
|
+
readonly Accepted: "ACCEPTED";
|
|
5444
|
+
readonly NotAccepted: "NOT_ACCEPTED";
|
|
5445
|
+
readonly NotRequired: "NOT_REQUIRED";
|
|
5446
|
+
};
|
|
5447
|
+
export type TermsOfServiceStatus = typeof TermsOfServiceStatus[keyof typeof TermsOfServiceStatus];
|
|
5046
5448
|
/**
|
|
5047
5449
|
*
|
|
5048
5450
|
* @export
|
|
@@ -6109,6 +6511,18 @@ export interface UpdateUserRequest {
|
|
|
6109
6511
|
* @memberof UpdateUserRequest
|
|
6110
6512
|
*/
|
|
6111
6513
|
'inactiveNotificationSend'?: boolean;
|
|
6514
|
+
/**
|
|
6515
|
+
* ISO date at which the account expires; pass null to clear
|
|
6516
|
+
* @type {string}
|
|
6517
|
+
* @memberof UpdateUserRequest
|
|
6518
|
+
*/
|
|
6519
|
+
'expiryDate'?: string | null;
|
|
6520
|
+
/**
|
|
6521
|
+
* Whether organ members can manage this organ\'s products and containers without BAC/GEWIS PM. Only meaningful for organ users.
|
|
6522
|
+
* @type {boolean}
|
|
6523
|
+
* @memberof UpdateUserRequest
|
|
6524
|
+
*/
|
|
6525
|
+
'productSelfService'?: boolean;
|
|
6112
6526
|
}
|
|
6113
6527
|
/**
|
|
6114
6528
|
* API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
|
|
@@ -6284,11 +6698,17 @@ export interface UserResponse {
|
|
|
6284
6698
|
*/
|
|
6285
6699
|
'email'?: string;
|
|
6286
6700
|
/**
|
|
6287
|
-
* Whether this user
|
|
6288
|
-
* @type {
|
|
6701
|
+
* Whether this user is required to accept the TOS
|
|
6702
|
+
* @type {boolean}
|
|
6703
|
+
* @memberof UserResponse
|
|
6704
|
+
*/
|
|
6705
|
+
'tosRequired'?: boolean;
|
|
6706
|
+
/**
|
|
6707
|
+
*
|
|
6708
|
+
* @type {TermsOfServiceStatus}
|
|
6289
6709
|
* @memberof UserResponse
|
|
6290
6710
|
*/
|
|
6291
|
-
'acceptedToS'?:
|
|
6711
|
+
'acceptedToS'?: TermsOfServiceStatus;
|
|
6292
6712
|
/**
|
|
6293
6713
|
* Whether data about this user can be used (non-anonymously) for more data science!
|
|
6294
6714
|
* @type {boolean}
|
|
@@ -6325,6 +6745,12 @@ export interface UserResponse {
|
|
|
6325
6745
|
* @memberof UserResponse
|
|
6326
6746
|
*/
|
|
6327
6747
|
'pos'?: BasePointOfSaleInfoResponse;
|
|
6748
|
+
/**
|
|
6749
|
+
* ISO date at which the account expires (null for accounts without expiry)
|
|
6750
|
+
* @type {string}
|
|
6751
|
+
* @memberof UserResponse
|
|
6752
|
+
*/
|
|
6753
|
+
'expiryDate'?: string | null;
|
|
6328
6754
|
}
|
|
6329
6755
|
/**
|
|
6330
6756
|
*
|
|
@@ -6431,6 +6857,50 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6431
6857
|
*/
|
|
6432
6858
|
'nickname'?: string;
|
|
6433
6859
|
}
|
|
6860
|
+
/**
|
|
6861
|
+
*
|
|
6862
|
+
* @export
|
|
6863
|
+
* @interface UserTosAcceptanceResponse
|
|
6864
|
+
*/
|
|
6865
|
+
export interface UserTosAcceptanceResponse {
|
|
6866
|
+
/**
|
|
6867
|
+
* The accepted terms of service version number.
|
|
6868
|
+
* @type {string}
|
|
6869
|
+
* @memberof UserTosAcceptanceResponse
|
|
6870
|
+
*/
|
|
6871
|
+
'versionNumber': string;
|
|
6872
|
+
/**
|
|
6873
|
+
* The date at which this version was accepted.
|
|
6874
|
+
* @type {string}
|
|
6875
|
+
* @memberof UserTosAcceptanceResponse
|
|
6876
|
+
*/
|
|
6877
|
+
'acceptedAt': string;
|
|
6878
|
+
}
|
|
6879
|
+
/**
|
|
6880
|
+
*
|
|
6881
|
+
* @export
|
|
6882
|
+
* @interface UserTosResponse
|
|
6883
|
+
*/
|
|
6884
|
+
export interface UserTosResponse {
|
|
6885
|
+
/**
|
|
6886
|
+
*
|
|
6887
|
+
* @type {TermsOfServiceStatus}
|
|
6888
|
+
* @memberof UserTosResponse
|
|
6889
|
+
*/
|
|
6890
|
+
'status': TermsOfServiceStatus;
|
|
6891
|
+
/**
|
|
6892
|
+
* The current terms of service version number.
|
|
6893
|
+
* @type {string}
|
|
6894
|
+
* @memberof UserTosResponse
|
|
6895
|
+
*/
|
|
6896
|
+
'currentVersion': string;
|
|
6897
|
+
/**
|
|
6898
|
+
* All TOS versions the user has accepted.
|
|
6899
|
+
* @type {Array<UserTosAcceptanceResponse>}
|
|
6900
|
+
* @memberof UserTosResponse
|
|
6901
|
+
*/
|
|
6902
|
+
'acceptances': Array<UserTosAcceptanceResponse>;
|
|
6903
|
+
}
|
|
6434
6904
|
/**
|
|
6435
6905
|
* The type of a user
|
|
6436
6906
|
* @export
|
|
@@ -6996,6 +7466,14 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6996
7466
|
* @throws {RequiredError}
|
|
6997
7467
|
*/
|
|
6998
7468
|
confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7469
|
+
/**
|
|
7470
|
+
*
|
|
7471
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7472
|
+
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login request with posId
|
|
7473
|
+
* @param {*} [options] Override http request option.
|
|
7474
|
+
* @throws {RequiredError}
|
|
7475
|
+
*/
|
|
7476
|
+
eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6999
7477
|
/**
|
|
7000
7478
|
*
|
|
7001
7479
|
* @summary Generate a QR code for authentication
|
|
@@ -7067,67 +7545,59 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7067
7545
|
localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7068
7546
|
/**
|
|
7069
7547
|
*
|
|
7070
|
-
* @summary
|
|
7071
|
-
* @param {
|
|
7072
|
-
* @param {*} [options] Override http request option.
|
|
7073
|
-
* @throws {RequiredError}
|
|
7074
|
-
*/
|
|
7075
|
-
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7076
|
-
/**
|
|
7077
|
-
*
|
|
7078
|
-
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7548
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7549
|
+
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login request with posId
|
|
7079
7550
|
* @param {*} [options] Override http request option.
|
|
7080
7551
|
* @throws {RequiredError}
|
|
7081
7552
|
*/
|
|
7082
|
-
|
|
7553
|
+
memberPINAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7083
7554
|
/**
|
|
7084
7555
|
*
|
|
7085
|
-
* @summary
|
|
7086
|
-
* @param {
|
|
7556
|
+
* @summary Mock login and hand out token.
|
|
7557
|
+
* @param {AuthenticationMockRequest} authenticationMockRequest The mock login.
|
|
7087
7558
|
* @param {*} [options] Override http request option.
|
|
7088
7559
|
* @throws {RequiredError}
|
|
7089
7560
|
*/
|
|
7090
|
-
|
|
7561
|
+
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7091
7562
|
/**
|
|
7092
7563
|
*
|
|
7093
|
-
* @summary
|
|
7094
|
-
* @param {
|
|
7564
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7565
|
+
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login request with posId
|
|
7095
7566
|
* @param {*} [options] Override http request option.
|
|
7096
7567
|
* @throws {RequiredError}
|
|
7097
7568
|
*/
|
|
7098
|
-
|
|
7569
|
+
nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7099
7570
|
/**
|
|
7100
7571
|
*
|
|
7101
|
-
* @summary
|
|
7102
|
-
* @param {
|
|
7572
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7573
|
+
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login request with posId
|
|
7103
7574
|
* @param {*} [options] Override http request option.
|
|
7104
7575
|
* @throws {RequiredError}
|
|
7105
7576
|
*/
|
|
7106
|
-
|
|
7577
|
+
pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7107
7578
|
/**
|
|
7108
7579
|
*
|
|
7109
|
-
* @summary
|
|
7110
|
-
* @param {MemberAuthenticationSecurePinRequest} memberAuthenticationSecurePinRequest The PIN login request with posId
|
|
7580
|
+
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7111
7581
|
* @param {*} [options] Override http request option.
|
|
7112
7582
|
* @throws {RequiredError}
|
|
7113
7583
|
*/
|
|
7114
|
-
|
|
7584
|
+
refreshToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7115
7585
|
/**
|
|
7116
7586
|
*
|
|
7117
|
-
* @summary
|
|
7118
|
-
* @param {
|
|
7587
|
+
* @summary Creates a reset token for the local authentication
|
|
7588
|
+
* @param {ResetLocalRequest} resetLocalRequest The reset info.
|
|
7119
7589
|
* @param {*} [options] Override http request option.
|
|
7120
7590
|
* @throws {RequiredError}
|
|
7121
7591
|
*/
|
|
7122
|
-
|
|
7592
|
+
resetLocal: (resetLocalRequest: ResetLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7123
7593
|
/**
|
|
7124
7594
|
*
|
|
7125
|
-
* @summary
|
|
7126
|
-
* @param {
|
|
7595
|
+
* @summary Reset local authentication using the provided token
|
|
7596
|
+
* @param {AuthenticationResetTokenRequest} authenticationResetTokenRequest The reset token.
|
|
7127
7597
|
* @param {*} [options] Override http request option.
|
|
7128
7598
|
* @throws {RequiredError}
|
|
7129
7599
|
*/
|
|
7130
|
-
|
|
7600
|
+
resetLocalWithToken: (authenticationResetTokenRequest: AuthenticationResetTokenRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7131
7601
|
};
|
|
7132
7602
|
/**
|
|
7133
7603
|
* AuthenticateApi - functional programming interface
|
|
@@ -7158,6 +7628,14 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7158
7628
|
* @throws {RequiredError}
|
|
7159
7629
|
*/
|
|
7160
7630
|
confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7631
|
+
/**
|
|
7632
|
+
*
|
|
7633
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7634
|
+
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login request with posId
|
|
7635
|
+
* @param {*} [options] Override http request option.
|
|
7636
|
+
* @throws {RequiredError}
|
|
7637
|
+
*/
|
|
7638
|
+
eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7161
7639
|
/**
|
|
7162
7640
|
*
|
|
7163
7641
|
* @summary Generate a QR code for authentication
|
|
@@ -7229,67 +7707,59 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7229
7707
|
localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7230
7708
|
/**
|
|
7231
7709
|
*
|
|
7232
|
-
* @summary
|
|
7233
|
-
* @param {
|
|
7234
|
-
* @param {*} [options] Override http request option.
|
|
7235
|
-
* @throws {RequiredError}
|
|
7236
|
-
*/
|
|
7237
|
-
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7238
|
-
/**
|
|
7239
|
-
*
|
|
7240
|
-
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7710
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7711
|
+
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login request with posId
|
|
7241
7712
|
* @param {*} [options] Override http request option.
|
|
7242
7713
|
* @throws {RequiredError}
|
|
7243
7714
|
*/
|
|
7244
|
-
|
|
7715
|
+
memberPINAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7245
7716
|
/**
|
|
7246
7717
|
*
|
|
7247
|
-
* @summary
|
|
7248
|
-
* @param {
|
|
7718
|
+
* @summary Mock login and hand out token.
|
|
7719
|
+
* @param {AuthenticationMockRequest} authenticationMockRequest The mock login.
|
|
7249
7720
|
* @param {*} [options] Override http request option.
|
|
7250
7721
|
* @throws {RequiredError}
|
|
7251
7722
|
*/
|
|
7252
|
-
|
|
7723
|
+
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7253
7724
|
/**
|
|
7254
7725
|
*
|
|
7255
|
-
* @summary
|
|
7256
|
-
* @param {
|
|
7726
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7727
|
+
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login request with posId
|
|
7257
7728
|
* @param {*} [options] Override http request option.
|
|
7258
7729
|
* @throws {RequiredError}
|
|
7259
7730
|
*/
|
|
7260
|
-
|
|
7731
|
+
nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7261
7732
|
/**
|
|
7262
7733
|
*
|
|
7263
|
-
* @summary
|
|
7264
|
-
* @param {
|
|
7734
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7735
|
+
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login request with posId
|
|
7265
7736
|
* @param {*} [options] Override http request option.
|
|
7266
7737
|
* @throws {RequiredError}
|
|
7267
7738
|
*/
|
|
7268
|
-
|
|
7739
|
+
pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7269
7740
|
/**
|
|
7270
7741
|
*
|
|
7271
|
-
* @summary
|
|
7272
|
-
* @param {MemberAuthenticationSecurePinRequest} memberAuthenticationSecurePinRequest The PIN login request with posId
|
|
7742
|
+
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7273
7743
|
* @param {*} [options] Override http request option.
|
|
7274
7744
|
* @throws {RequiredError}
|
|
7275
7745
|
*/
|
|
7276
|
-
|
|
7746
|
+
refreshToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7277
7747
|
/**
|
|
7278
7748
|
*
|
|
7279
|
-
* @summary
|
|
7280
|
-
* @param {
|
|
7749
|
+
* @summary Creates a reset token for the local authentication
|
|
7750
|
+
* @param {ResetLocalRequest} resetLocalRequest The reset info.
|
|
7281
7751
|
* @param {*} [options] Override http request option.
|
|
7282
7752
|
* @throws {RequiredError}
|
|
7283
7753
|
*/
|
|
7284
|
-
|
|
7754
|
+
resetLocal(resetLocalRequest: ResetLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7285
7755
|
/**
|
|
7286
7756
|
*
|
|
7287
|
-
* @summary
|
|
7288
|
-
* @param {
|
|
7757
|
+
* @summary Reset local authentication using the provided token
|
|
7758
|
+
* @param {AuthenticationResetTokenRequest} authenticationResetTokenRequest The reset token.
|
|
7289
7759
|
* @param {*} [options] Override http request option.
|
|
7290
7760
|
* @throws {RequiredError}
|
|
7291
7761
|
*/
|
|
7292
|
-
|
|
7762
|
+
resetLocalWithToken(authenticationResetTokenRequest: AuthenticationResetTokenRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7293
7763
|
};
|
|
7294
7764
|
/**
|
|
7295
7765
|
* AuthenticateApi - factory interface
|
|
@@ -7320,6 +7790,14 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7320
7790
|
* @throws {RequiredError}
|
|
7321
7791
|
*/
|
|
7322
7792
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7793
|
+
/**
|
|
7794
|
+
*
|
|
7795
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7796
|
+
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7797
|
+
* @param {*} [options] Override http request option.
|
|
7798
|
+
* @throws {RequiredError}
|
|
7799
|
+
*/
|
|
7800
|
+
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7323
7801
|
/**
|
|
7324
7802
|
*
|
|
7325
7803
|
* @summary Generate a QR code for authentication
|
|
@@ -7391,67 +7869,59 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7391
7869
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7392
7870
|
/**
|
|
7393
7871
|
*
|
|
7394
|
-
* @summary
|
|
7395
|
-
* @param {
|
|
7396
|
-
* @param {*} [options] Override http request option.
|
|
7397
|
-
* @throws {RequiredError}
|
|
7398
|
-
*/
|
|
7399
|
-
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7400
|
-
/**
|
|
7401
|
-
*
|
|
7402
|
-
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7872
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7873
|
+
* @param {AuthenticateApiMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
7403
7874
|
* @param {*} [options] Override http request option.
|
|
7404
7875
|
* @throws {RequiredError}
|
|
7405
7876
|
*/
|
|
7406
|
-
|
|
7877
|
+
memberPINAuthentication(requestParameters: AuthenticateApiMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7407
7878
|
/**
|
|
7408
7879
|
*
|
|
7409
|
-
* @summary
|
|
7410
|
-
* @param {
|
|
7880
|
+
* @summary Mock login and hand out token.
|
|
7881
|
+
* @param {AuthenticateApiMockAuthenticationRequest} requestParameters Request parameters.
|
|
7411
7882
|
* @param {*} [options] Override http request option.
|
|
7412
7883
|
* @throws {RequiredError}
|
|
7413
7884
|
*/
|
|
7414
|
-
|
|
7885
|
+
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7415
7886
|
/**
|
|
7416
7887
|
*
|
|
7417
|
-
* @summary
|
|
7418
|
-
* @param {
|
|
7888
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7889
|
+
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7419
7890
|
* @param {*} [options] Override http request option.
|
|
7420
7891
|
* @throws {RequiredError}
|
|
7421
7892
|
*/
|
|
7422
|
-
|
|
7893
|
+
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7423
7894
|
/**
|
|
7424
7895
|
*
|
|
7425
|
-
* @summary
|
|
7426
|
-
* @param {
|
|
7896
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7897
|
+
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7427
7898
|
* @param {*} [options] Override http request option.
|
|
7428
7899
|
* @throws {RequiredError}
|
|
7429
7900
|
*/
|
|
7430
|
-
|
|
7901
|
+
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7431
7902
|
/**
|
|
7432
7903
|
*
|
|
7433
|
-
* @summary
|
|
7434
|
-
* @param {AuthenticateApiSecureMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
7904
|
+
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7435
7905
|
* @param {*} [options] Override http request option.
|
|
7436
7906
|
* @throws {RequiredError}
|
|
7437
7907
|
*/
|
|
7438
|
-
|
|
7908
|
+
refreshToken(options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7439
7909
|
/**
|
|
7440
7910
|
*
|
|
7441
|
-
* @summary
|
|
7442
|
-
* @param {
|
|
7911
|
+
* @summary Creates a reset token for the local authentication
|
|
7912
|
+
* @param {AuthenticateApiResetLocalRequest} requestParameters Request parameters.
|
|
7443
7913
|
* @param {*} [options] Override http request option.
|
|
7444
7914
|
* @throws {RequiredError}
|
|
7445
7915
|
*/
|
|
7446
|
-
|
|
7916
|
+
resetLocal(requestParameters: AuthenticateApiResetLocalRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7447
7917
|
/**
|
|
7448
7918
|
*
|
|
7449
|
-
* @summary
|
|
7450
|
-
* @param {
|
|
7919
|
+
* @summary Reset local authentication using the provided token
|
|
7920
|
+
* @param {AuthenticateApiResetLocalWithTokenRequest} requestParameters Request parameters.
|
|
7451
7921
|
* @param {*} [options] Override http request option.
|
|
7452
7922
|
* @throws {RequiredError}
|
|
7453
7923
|
*/
|
|
7454
|
-
|
|
7924
|
+
resetLocalWithToken(requestParameters: AuthenticateApiResetLocalWithTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7455
7925
|
};
|
|
7456
7926
|
/**
|
|
7457
7927
|
* Request parameters for authenticatePointOfSale operation in AuthenticateApi.
|
|
@@ -7492,6 +7962,19 @@ export interface AuthenticateApiConfirmQRCodeRequest {
|
|
|
7492
7962
|
*/
|
|
7493
7963
|
readonly sessionId: string;
|
|
7494
7964
|
}
|
|
7965
|
+
/**
|
|
7966
|
+
* Request parameters for eanAuthentication operation in AuthenticateApi.
|
|
7967
|
+
* @export
|
|
7968
|
+
* @interface AuthenticateApiEanAuthenticationRequest
|
|
7969
|
+
*/
|
|
7970
|
+
export interface AuthenticateApiEanAuthenticationRequest {
|
|
7971
|
+
/**
|
|
7972
|
+
* The EAN login request with posId
|
|
7973
|
+
* @type {AuthenticationEanRequest}
|
|
7974
|
+
* @memberof AuthenticateApiEanAuthentication
|
|
7975
|
+
*/
|
|
7976
|
+
readonly authenticationEanRequest: AuthenticationEanRequest;
|
|
7977
|
+
}
|
|
7495
7978
|
/**
|
|
7496
7979
|
* Request parameters for getQRStatus operation in AuthenticateApi.
|
|
7497
7980
|
* @export
|
|
@@ -7570,6 +8053,19 @@ export interface AuthenticateApiLocalAuthenticationRequest {
|
|
|
7570
8053
|
*/
|
|
7571
8054
|
readonly authenticationLocalRequest: AuthenticationLocalRequest;
|
|
7572
8055
|
}
|
|
8056
|
+
/**
|
|
8057
|
+
* Request parameters for memberPINAuthentication operation in AuthenticateApi.
|
|
8058
|
+
* @export
|
|
8059
|
+
* @interface AuthenticateApiMemberPINAuthenticationRequest
|
|
8060
|
+
*/
|
|
8061
|
+
export interface AuthenticateApiMemberPINAuthenticationRequest {
|
|
8062
|
+
/**
|
|
8063
|
+
* The PIN login request with posId
|
|
8064
|
+
* @type {MemberAuthenticationPinRequest}
|
|
8065
|
+
* @memberof AuthenticateApiMemberPINAuthentication
|
|
8066
|
+
*/
|
|
8067
|
+
readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
|
|
8068
|
+
}
|
|
7573
8069
|
/**
|
|
7574
8070
|
* Request parameters for mockAuthentication operation in AuthenticateApi.
|
|
7575
8071
|
* @export
|
|
@@ -7583,6 +8079,32 @@ export interface AuthenticateApiMockAuthenticationRequest {
|
|
|
7583
8079
|
*/
|
|
7584
8080
|
readonly authenticationMockRequest: AuthenticationMockRequest;
|
|
7585
8081
|
}
|
|
8082
|
+
/**
|
|
8083
|
+
* Request parameters for nfcAuthentication operation in AuthenticateApi.
|
|
8084
|
+
* @export
|
|
8085
|
+
* @interface AuthenticateApiNfcAuthenticationRequest
|
|
8086
|
+
*/
|
|
8087
|
+
export interface AuthenticateApiNfcAuthenticationRequest {
|
|
8088
|
+
/**
|
|
8089
|
+
* The NFC login request with posId
|
|
8090
|
+
* @type {AuthenticationNfcRequest}
|
|
8091
|
+
* @memberof AuthenticateApiNfcAuthentication
|
|
8092
|
+
*/
|
|
8093
|
+
readonly authenticationNfcRequest: AuthenticationNfcRequest;
|
|
8094
|
+
}
|
|
8095
|
+
/**
|
|
8096
|
+
* Request parameters for pinAuthentication operation in AuthenticateApi.
|
|
8097
|
+
* @export
|
|
8098
|
+
* @interface AuthenticateApiPinAuthenticationRequest
|
|
8099
|
+
*/
|
|
8100
|
+
export interface AuthenticateApiPinAuthenticationRequest {
|
|
8101
|
+
/**
|
|
8102
|
+
* The PIN login request with posId
|
|
8103
|
+
* @type {AuthenticationPinRequest}
|
|
8104
|
+
* @memberof AuthenticateApiPinAuthentication
|
|
8105
|
+
*/
|
|
8106
|
+
readonly authenticationPinRequest: AuthenticationPinRequest;
|
|
8107
|
+
}
|
|
7586
8108
|
/**
|
|
7587
8109
|
* Request parameters for resetLocal operation in AuthenticateApi.
|
|
7588
8110
|
* @export
|
|
@@ -7609,58 +8131,6 @@ export interface AuthenticateApiResetLocalWithTokenRequest {
|
|
|
7609
8131
|
*/
|
|
7610
8132
|
readonly authenticationResetTokenRequest: AuthenticationResetTokenRequest;
|
|
7611
8133
|
}
|
|
7612
|
-
/**
|
|
7613
|
-
* Request parameters for secureEanAuthentication operation in AuthenticateApi.
|
|
7614
|
-
* @export
|
|
7615
|
-
* @interface AuthenticateApiSecureEanAuthenticationRequest
|
|
7616
|
-
*/
|
|
7617
|
-
export interface AuthenticateApiSecureEanAuthenticationRequest {
|
|
7618
|
-
/**
|
|
7619
|
-
* The EAN login request with posId
|
|
7620
|
-
* @type {AuthenticationSecureEanRequest}
|
|
7621
|
-
* @memberof AuthenticateApiSecureEanAuthentication
|
|
7622
|
-
*/
|
|
7623
|
-
readonly authenticationSecureEanRequest: AuthenticationSecureEanRequest;
|
|
7624
|
-
}
|
|
7625
|
-
/**
|
|
7626
|
-
* Request parameters for secureMemberPINAuthentication operation in AuthenticateApi.
|
|
7627
|
-
* @export
|
|
7628
|
-
* @interface AuthenticateApiSecureMemberPINAuthenticationRequest
|
|
7629
|
-
*/
|
|
7630
|
-
export interface AuthenticateApiSecureMemberPINAuthenticationRequest {
|
|
7631
|
-
/**
|
|
7632
|
-
* The PIN login request with posId
|
|
7633
|
-
* @type {MemberAuthenticationSecurePinRequest}
|
|
7634
|
-
* @memberof AuthenticateApiSecureMemberPINAuthentication
|
|
7635
|
-
*/
|
|
7636
|
-
readonly memberAuthenticationSecurePinRequest: MemberAuthenticationSecurePinRequest;
|
|
7637
|
-
}
|
|
7638
|
-
/**
|
|
7639
|
-
* Request parameters for secureNfcAuthentication operation in AuthenticateApi.
|
|
7640
|
-
* @export
|
|
7641
|
-
* @interface AuthenticateApiSecureNfcAuthenticationRequest
|
|
7642
|
-
*/
|
|
7643
|
-
export interface AuthenticateApiSecureNfcAuthenticationRequest {
|
|
7644
|
-
/**
|
|
7645
|
-
* The NFC login request with posId
|
|
7646
|
-
* @type {AuthenticationSecureNfcRequest}
|
|
7647
|
-
* @memberof AuthenticateApiSecureNfcAuthentication
|
|
7648
|
-
*/
|
|
7649
|
-
readonly authenticationSecureNfcRequest: AuthenticationSecureNfcRequest;
|
|
7650
|
-
}
|
|
7651
|
-
/**
|
|
7652
|
-
* Request parameters for securePINAuthentication operation in AuthenticateApi.
|
|
7653
|
-
* @export
|
|
7654
|
-
* @interface AuthenticateApiSecurePINAuthenticationRequest
|
|
7655
|
-
*/
|
|
7656
|
-
export interface AuthenticateApiSecurePINAuthenticationRequest {
|
|
7657
|
-
/**
|
|
7658
|
-
* The PIN login request with posId
|
|
7659
|
-
* @type {AuthenticationSecurePinRequest}
|
|
7660
|
-
* @memberof AuthenticateApiSecurePINAuthentication
|
|
7661
|
-
*/
|
|
7662
|
-
readonly authenticationSecurePinRequest: AuthenticationSecurePinRequest;
|
|
7663
|
-
}
|
|
7664
8134
|
/**
|
|
7665
8135
|
* AuthenticateApi - object-oriented interface
|
|
7666
8136
|
* @export
|
|
@@ -7676,7 +8146,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7676
8146
|
* @throws {RequiredError}
|
|
7677
8147
|
* @memberof AuthenticateApi
|
|
7678
8148
|
*/
|
|
7679
|
-
authenticatePointOfSale(requestParameters: AuthenticateApiAuthenticatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8149
|
+
authenticatePointOfSale(requestParameters: AuthenticateApiAuthenticatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7680
8150
|
/**
|
|
7681
8151
|
*
|
|
7682
8152
|
* @summary Cancel QR code authentication
|
|
@@ -7685,7 +8155,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7685
8155
|
* @throws {RequiredError}
|
|
7686
8156
|
* @memberof AuthenticateApi
|
|
7687
8157
|
*/
|
|
7688
|
-
cancelQRCode(requestParameters: AuthenticateApiCancelQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8158
|
+
cancelQRCode(requestParameters: AuthenticateApiCancelQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
7689
8159
|
/**
|
|
7690
8160
|
*
|
|
7691
8161
|
* @summary Confirm QR code authentication from mobile app
|
|
@@ -7694,7 +8164,16 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7694
8164
|
* @throws {RequiredError}
|
|
7695
8165
|
* @memberof AuthenticateApi
|
|
7696
8166
|
*/
|
|
7697
|
-
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8167
|
+
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @summary EAN authentication that requires POS user authentication
|
|
8171
|
+
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
8172
|
+
* @param {*} [options] Override http request option.
|
|
8173
|
+
* @throws {RequiredError}
|
|
8174
|
+
* @memberof AuthenticateApi
|
|
8175
|
+
*/
|
|
8176
|
+
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7698
8177
|
/**
|
|
7699
8178
|
*
|
|
7700
8179
|
* @summary Generate a QR code for authentication
|
|
@@ -7702,7 +8181,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7702
8181
|
* @throws {RequiredError}
|
|
7703
8182
|
* @memberof AuthenticateApi
|
|
7704
8183
|
*/
|
|
7705
|
-
generateQRCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRCodeResponse, any, {}>>;
|
|
8184
|
+
generateQRCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRCodeResponse, any, {}, any>>;
|
|
7706
8185
|
/**
|
|
7707
8186
|
*
|
|
7708
8187
|
* @summary Get the GEWISWeb public token used by SudoSOS
|
|
@@ -7710,7 +8189,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7710
8189
|
* @throws {RequiredError}
|
|
7711
8190
|
* @memberof AuthenticateApi
|
|
7712
8191
|
*/
|
|
7713
|
-
getGEWISWebPublic(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
8192
|
+
getGEWISWebPublic(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
7714
8193
|
/**
|
|
7715
8194
|
*
|
|
7716
8195
|
* @summary Get the JWT public key used by SudoSOS
|
|
@@ -7718,7 +8197,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7718
8197
|
* @throws {RequiredError}
|
|
7719
8198
|
* @memberof AuthenticateApi
|
|
7720
8199
|
*/
|
|
7721
|
-
getJWTPublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
8200
|
+
getJWTPublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
7722
8201
|
/**
|
|
7723
8202
|
*
|
|
7724
8203
|
* @summary Get the status of a QR authentication session
|
|
@@ -7727,7 +8206,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7727
8206
|
* @throws {RequiredError}
|
|
7728
8207
|
* @memberof AuthenticateApi
|
|
7729
8208
|
*/
|
|
7730
|
-
getQRStatus(requestParameters: AuthenticateApiGetQRStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRStatusResponse, any, {}>>;
|
|
8209
|
+
getQRStatus(requestParameters: AuthenticateApiGetQRStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRStatusResponse, any, {}, any>>;
|
|
7731
8210
|
/**
|
|
7732
8211
|
*
|
|
7733
8212
|
* @summary LDAP login and hand out token If user has never signed in before this also creates an GEWIS account.
|
|
@@ -7736,7 +8215,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7736
8215
|
* @throws {RequiredError}
|
|
7737
8216
|
* @memberof AuthenticateApi
|
|
7738
8217
|
*/
|
|
7739
|
-
gewisLDAPAuthentication(requestParameters: AuthenticateApiGewisLDAPAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8218
|
+
gewisLDAPAuthentication(requestParameters: AuthenticateApiGewisLDAPAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7740
8219
|
/**
|
|
7741
8220
|
*
|
|
7742
8221
|
* @summary GEWIS login verification based on gewisweb JWT tokens. This method verifies the validity of the gewisweb JWT token, and returns a SudoSOS token if the GEWIS token is valid.
|
|
@@ -7745,7 +8224,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7745
8224
|
* @throws {RequiredError}
|
|
7746
8225
|
* @memberof AuthenticateApi
|
|
7747
8226
|
*/
|
|
7748
|
-
gewisWebAuthentication(requestParameters: AuthenticateApiGewisWebAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8227
|
+
gewisWebAuthentication(requestParameters: AuthenticateApiGewisWebAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7749
8228
|
/**
|
|
7750
8229
|
*
|
|
7751
8230
|
* @summary Key login and hand out token.
|
|
@@ -7754,7 +8233,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7754
8233
|
* @throws {RequiredError}
|
|
7755
8234
|
* @memberof AuthenticateApi
|
|
7756
8235
|
*/
|
|
7757
|
-
keyAuthentication(requestParameters: AuthenticateApiKeyAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8236
|
+
keyAuthentication(requestParameters: AuthenticateApiKeyAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7758
8237
|
/**
|
|
7759
8238
|
*
|
|
7760
8239
|
* @summary LDAP login and hand out token If user has never signed in before this also creates an account.
|
|
@@ -7763,7 +8242,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7763
8242
|
* @throws {RequiredError}
|
|
7764
8243
|
* @memberof AuthenticateApi
|
|
7765
8244
|
*/
|
|
7766
|
-
ldapAuthentication(requestParameters: AuthenticateApiLdapAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8245
|
+
ldapAuthentication(requestParameters: AuthenticateApiLdapAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7767
8246
|
/**
|
|
7768
8247
|
*
|
|
7769
8248
|
* @summary Local login and hand out token
|
|
@@ -7772,78 +8251,69 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7772
8251
|
* @throws {RequiredError}
|
|
7773
8252
|
* @memberof AuthenticateApi
|
|
7774
8253
|
*/
|
|
7775
|
-
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7776
|
-
/**
|
|
7777
|
-
*
|
|
7778
|
-
* @summary Mock login and hand out token.
|
|
7779
|
-
* @param {AuthenticateApiMockAuthenticationRequest} requestParameters Request parameters.
|
|
7780
|
-
* @param {*} [options] Override http request option.
|
|
7781
|
-
* @throws {RequiredError}
|
|
7782
|
-
* @memberof AuthenticateApi
|
|
7783
|
-
*/
|
|
7784
|
-
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8254
|
+
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7785
8255
|
/**
|
|
7786
8256
|
*
|
|
7787
|
-
* @summary
|
|
8257
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
8258
|
+
* @param {AuthenticateApiMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
7788
8259
|
* @param {*} [options] Override http request option.
|
|
7789
8260
|
* @throws {RequiredError}
|
|
7790
8261
|
* @memberof AuthenticateApi
|
|
7791
8262
|
*/
|
|
7792
|
-
|
|
8263
|
+
memberPINAuthentication(requestParameters: AuthenticateApiMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7793
8264
|
/**
|
|
7794
8265
|
*
|
|
7795
|
-
* @summary
|
|
7796
|
-
* @param {
|
|
8266
|
+
* @summary Mock login and hand out token.
|
|
8267
|
+
* @param {AuthenticateApiMockAuthenticationRequest} requestParameters Request parameters.
|
|
7797
8268
|
* @param {*} [options] Override http request option.
|
|
7798
8269
|
* @throws {RequiredError}
|
|
7799
8270
|
* @memberof AuthenticateApi
|
|
7800
8271
|
*/
|
|
7801
|
-
|
|
8272
|
+
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7802
8273
|
/**
|
|
7803
8274
|
*
|
|
7804
|
-
* @summary
|
|
7805
|
-
* @param {
|
|
8275
|
+
* @summary NFC authentication that requires POS user authentication
|
|
8276
|
+
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7806
8277
|
* @param {*} [options] Override http request option.
|
|
7807
8278
|
* @throws {RequiredError}
|
|
7808
8279
|
* @memberof AuthenticateApi
|
|
7809
8280
|
*/
|
|
7810
|
-
|
|
8281
|
+
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7811
8282
|
/**
|
|
7812
8283
|
*
|
|
7813
|
-
* @summary
|
|
7814
|
-
* @param {
|
|
8284
|
+
* @summary PIN authentication that requires POS user authentication
|
|
8285
|
+
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7815
8286
|
* @param {*} [options] Override http request option.
|
|
7816
8287
|
* @throws {RequiredError}
|
|
7817
8288
|
* @memberof AuthenticateApi
|
|
7818
8289
|
*/
|
|
7819
|
-
|
|
8290
|
+
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7820
8291
|
/**
|
|
7821
8292
|
*
|
|
7822
|
-
* @summary
|
|
7823
|
-
* @param {AuthenticateApiSecureMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
8293
|
+
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
7824
8294
|
* @param {*} [options] Override http request option.
|
|
7825
8295
|
* @throws {RequiredError}
|
|
7826
8296
|
* @memberof AuthenticateApi
|
|
7827
8297
|
*/
|
|
7828
|
-
|
|
8298
|
+
refreshToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7829
8299
|
/**
|
|
7830
8300
|
*
|
|
7831
|
-
* @summary
|
|
7832
|
-
* @param {
|
|
8301
|
+
* @summary Creates a reset token for the local authentication
|
|
8302
|
+
* @param {AuthenticateApiResetLocalRequest} requestParameters Request parameters.
|
|
7833
8303
|
* @param {*} [options] Override http request option.
|
|
7834
8304
|
* @throws {RequiredError}
|
|
7835
8305
|
* @memberof AuthenticateApi
|
|
7836
8306
|
*/
|
|
7837
|
-
|
|
8307
|
+
resetLocal(requestParameters: AuthenticateApiResetLocalRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
7838
8308
|
/**
|
|
7839
8309
|
*
|
|
7840
|
-
* @summary
|
|
7841
|
-
* @param {
|
|
8310
|
+
* @summary Reset local authentication using the provided token
|
|
8311
|
+
* @param {AuthenticateApiResetLocalWithTokenRequest} requestParameters Request parameters.
|
|
7842
8312
|
* @param {*} [options] Override http request option.
|
|
7843
8313
|
* @throws {RequiredError}
|
|
7844
8314
|
* @memberof AuthenticateApi
|
|
7845
8315
|
*/
|
|
7846
|
-
|
|
8316
|
+
resetLocalWithToken(requestParameters: AuthenticateApiResetLocalWithTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
7847
8317
|
}
|
|
7848
8318
|
/**
|
|
7849
8319
|
* BalanceApi - axios parameter creator
|
|
@@ -8114,7 +8584,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8114
8584
|
* @throws {RequiredError}
|
|
8115
8585
|
* @memberof BalanceApi
|
|
8116
8586
|
*/
|
|
8117
|
-
calculateTotalBalances(requestParameters: BalanceApiCalculateTotalBalancesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TotalBalanceResponse, any, {}>>;
|
|
8587
|
+
calculateTotalBalances(requestParameters: BalanceApiCalculateTotalBalancesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TotalBalanceResponse, any, {}, any>>;
|
|
8118
8588
|
/**
|
|
8119
8589
|
*
|
|
8120
8590
|
* @summary Get balance of all users
|
|
@@ -8123,7 +8593,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8123
8593
|
* @throws {RequiredError}
|
|
8124
8594
|
* @memberof BalanceApi
|
|
8125
8595
|
*/
|
|
8126
|
-
getAllBalance(requestParameters?: BalanceApiGetAllBalanceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBalanceResponse, any, {}>>;
|
|
8596
|
+
getAllBalance(requestParameters?: BalanceApiGetAllBalanceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBalanceResponse, any, {}, any>>;
|
|
8127
8597
|
/**
|
|
8128
8598
|
*
|
|
8129
8599
|
* @summary Retrieves the requested balance
|
|
@@ -8132,7 +8602,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8132
8602
|
* @throws {RequiredError}
|
|
8133
8603
|
* @memberof BalanceApi
|
|
8134
8604
|
*/
|
|
8135
|
-
getBalanceId(requestParameters: BalanceApiGetBalanceIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8605
|
+
getBalanceId(requestParameters: BalanceApiGetBalanceIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}, any>>;
|
|
8136
8606
|
/**
|
|
8137
8607
|
*
|
|
8138
8608
|
* @summary Get balance of the current user
|
|
@@ -8140,7 +8610,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8140
8610
|
* @throws {RequiredError}
|
|
8141
8611
|
* @memberof BalanceApi
|
|
8142
8612
|
*/
|
|
8143
|
-
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8613
|
+
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}, any>>;
|
|
8144
8614
|
}
|
|
8145
8615
|
/**
|
|
8146
8616
|
* @export
|
|
@@ -8543,7 +9013,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8543
9013
|
* @throws {RequiredError}
|
|
8544
9014
|
* @memberof BannersApi
|
|
8545
9015
|
*/
|
|
8546
|
-
_delete(requestParameters: BannersApiDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9016
|
+
_delete(requestParameters: BannersApiDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8547
9017
|
/**
|
|
8548
9018
|
*
|
|
8549
9019
|
* @summary Saves a banner to the database
|
|
@@ -8552,7 +9022,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8552
9022
|
* @throws {RequiredError}
|
|
8553
9023
|
* @memberof BannersApi
|
|
8554
9024
|
*/
|
|
8555
|
-
create(requestParameters: BannersApiCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9025
|
+
create(requestParameters: BannersApiCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8556
9026
|
/**
|
|
8557
9027
|
*
|
|
8558
9028
|
* @summary Returns all active banners
|
|
@@ -8561,7 +9031,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8561
9031
|
* @throws {RequiredError}
|
|
8562
9032
|
* @memberof BannersApi
|
|
8563
9033
|
*/
|
|
8564
|
-
getActive(requestParameters?: BannersApiGetActiveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9034
|
+
getActive(requestParameters?: BannersApiGetActiveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8565
9035
|
/**
|
|
8566
9036
|
*
|
|
8567
9037
|
* @summary Returns all existing banners
|
|
@@ -8570,7 +9040,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8570
9040
|
* @throws {RequiredError}
|
|
8571
9041
|
* @memberof BannersApi
|
|
8572
9042
|
*/
|
|
8573
|
-
getAllBanners(requestParameters?: BannersApiGetAllBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9043
|
+
getAllBanners(requestParameters?: BannersApiGetAllBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8574
9044
|
/**
|
|
8575
9045
|
*
|
|
8576
9046
|
* @summary Returns all existing banners
|
|
@@ -8579,7 +9049,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8579
9049
|
* @throws {RequiredError}
|
|
8580
9050
|
* @memberof BannersApi
|
|
8581
9051
|
*/
|
|
8582
|
-
getAllOpenBanners(requestParameters?: BannersApiGetAllOpenBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9052
|
+
getAllOpenBanners(requestParameters?: BannersApiGetAllOpenBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8583
9053
|
/**
|
|
8584
9054
|
*
|
|
8585
9055
|
* @summary Returns the requested banner
|
|
@@ -8588,7 +9058,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8588
9058
|
* @throws {RequiredError}
|
|
8589
9059
|
* @memberof BannersApi
|
|
8590
9060
|
*/
|
|
8591
|
-
getBanner(requestParameters: BannersApiGetBannerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9061
|
+
getBanner(requestParameters: BannersApiGetBannerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8592
9062
|
/**
|
|
8593
9063
|
*
|
|
8594
9064
|
* @summary Updates the requested banner
|
|
@@ -8597,7 +9067,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8597
9067
|
* @throws {RequiredError}
|
|
8598
9068
|
* @memberof BannersApi
|
|
8599
9069
|
*/
|
|
8600
|
-
update(requestParameters: BannersApiUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9070
|
+
update(requestParameters: BannersApiUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8601
9071
|
/**
|
|
8602
9072
|
*
|
|
8603
9073
|
* @summary Uploads a banner image to the given banner
|
|
@@ -8606,7 +9076,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8606
9076
|
* @throws {RequiredError}
|
|
8607
9077
|
* @memberof BannersApi
|
|
8608
9078
|
*/
|
|
8609
|
-
updateImage(requestParameters: BannersApiUpdateImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9079
|
+
updateImage(requestParameters: BannersApiUpdateImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8610
9080
|
}
|
|
8611
9081
|
/**
|
|
8612
9082
|
* ContainersApi - axios parameter creator
|
|
@@ -8924,7 +9394,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8924
9394
|
* @throws {RequiredError}
|
|
8925
9395
|
* @memberof ContainersApi
|
|
8926
9396
|
*/
|
|
8927
|
-
createContainer(requestParameters: ContainersApiCreateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9397
|
+
createContainer(requestParameters: ContainersApiCreateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
8928
9398
|
/**
|
|
8929
9399
|
*
|
|
8930
9400
|
* @summary (Soft) delete the given container. Cannot be undone.
|
|
@@ -8933,7 +9403,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8933
9403
|
* @throws {RequiredError}
|
|
8934
9404
|
* @memberof ContainersApi
|
|
8935
9405
|
*/
|
|
8936
|
-
deleteContainer(requestParameters: ContainersApiDeleteContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
9406
|
+
deleteContainer(requestParameters: ContainersApiDeleteContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
8937
9407
|
/**
|
|
8938
9408
|
*
|
|
8939
9409
|
* @summary Returns all existing containers
|
|
@@ -8942,7 +9412,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8942
9412
|
* @throws {RequiredError}
|
|
8943
9413
|
* @memberof ContainersApi
|
|
8944
9414
|
*/
|
|
8945
|
-
getAllContainers(requestParameters?: ContainersApiGetAllContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
9415
|
+
getAllContainers(requestParameters?: ContainersApiGetAllContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
8946
9416
|
/**
|
|
8947
9417
|
*
|
|
8948
9418
|
* @summary Returns all the products in the container
|
|
@@ -8951,7 +9421,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8951
9421
|
* @throws {RequiredError}
|
|
8952
9422
|
* @memberof ContainersApi
|
|
8953
9423
|
*/
|
|
8954
|
-
getProductsContainer(requestParameters: ContainersApiGetProductsContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}>>;
|
|
9424
|
+
getProductsContainer(requestParameters: ContainersApiGetProductsContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}, any>>;
|
|
8955
9425
|
/**
|
|
8956
9426
|
*
|
|
8957
9427
|
* @summary Returns all public container
|
|
@@ -8960,7 +9430,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8960
9430
|
* @throws {RequiredError}
|
|
8961
9431
|
* @memberof ContainersApi
|
|
8962
9432
|
*/
|
|
8963
|
-
getPublicContainers(requestParameters?: ContainersApiGetPublicContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
9433
|
+
getPublicContainers(requestParameters?: ContainersApiGetPublicContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
8964
9434
|
/**
|
|
8965
9435
|
*
|
|
8966
9436
|
* @summary Returns the requested container
|
|
@@ -8969,7 +9439,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8969
9439
|
* @throws {RequiredError}
|
|
8970
9440
|
* @memberof ContainersApi
|
|
8971
9441
|
*/
|
|
8972
|
-
getSingleContainer(requestParameters: ContainersApiGetSingleContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9442
|
+
getSingleContainer(requestParameters: ContainersApiGetSingleContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
8973
9443
|
/**
|
|
8974
9444
|
*
|
|
8975
9445
|
* @summary Update an existing container.
|
|
@@ -8978,7 +9448,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
8978
9448
|
* @throws {RequiredError}
|
|
8979
9449
|
* @memberof ContainersApi
|
|
8980
9450
|
*/
|
|
8981
|
-
updateContainer(requestParameters: ContainersApiUpdateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9451
|
+
updateContainer(requestParameters: ContainersApiUpdateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
8982
9452
|
}
|
|
8983
9453
|
/**
|
|
8984
9454
|
* DebtorsApi - axios parameter creator
|
|
@@ -9386,7 +9856,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9386
9856
|
* @throws {RequiredError}
|
|
9387
9857
|
* @memberof DebtorsApi
|
|
9388
9858
|
*/
|
|
9389
|
-
calculateFines(requestParameters: DebtorsApiCalculateFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToFineResponse[], any, {}>>;
|
|
9859
|
+
calculateFines(requestParameters: DebtorsApiCalculateFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToFineResponse[], any, {}, any>>;
|
|
9390
9860
|
/**
|
|
9391
9861
|
*
|
|
9392
9862
|
* @summary Delete a fine
|
|
@@ -9395,7 +9865,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9395
9865
|
* @throws {RequiredError}
|
|
9396
9866
|
* @memberof DebtorsApi
|
|
9397
9867
|
*/
|
|
9398
|
-
deleteFine(requestParameters: DebtorsApiDeleteFineRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9868
|
+
deleteFine(requestParameters: DebtorsApiDeleteFineRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9399
9869
|
/**
|
|
9400
9870
|
*
|
|
9401
9871
|
* @summary Delete a fine handout event
|
|
@@ -9404,7 +9874,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9404
9874
|
* @throws {RequiredError}
|
|
9405
9875
|
* @memberof DebtorsApi
|
|
9406
9876
|
*/
|
|
9407
|
-
deleteFineHandout(requestParameters: DebtorsApiDeleteFineHandoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9877
|
+
deleteFineHandout(requestParameters: DebtorsApiDeleteFineHandoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9408
9878
|
/**
|
|
9409
9879
|
*
|
|
9410
9880
|
* @summary Get a report of all fines
|
|
@@ -9413,7 +9883,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9413
9883
|
* @throws {RequiredError}
|
|
9414
9884
|
* @memberof DebtorsApi
|
|
9415
9885
|
*/
|
|
9416
|
-
getFineReport(requestParameters?: DebtorsApiGetFineReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineReportResponse, any, {}>>;
|
|
9886
|
+
getFineReport(requestParameters?: DebtorsApiGetFineReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineReportResponse, any, {}, any>>;
|
|
9417
9887
|
/**
|
|
9418
9888
|
*
|
|
9419
9889
|
* @summary Get a report of all fines in pdf format
|
|
@@ -9422,7 +9892,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9422
9892
|
* @throws {RequiredError}
|
|
9423
9893
|
* @memberof DebtorsApi
|
|
9424
9894
|
*/
|
|
9425
|
-
getFineReportPdf(requestParameters: DebtorsApiGetFineReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
9895
|
+
getFineReportPdf(requestParameters: DebtorsApiGetFineReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
9426
9896
|
/**
|
|
9427
9897
|
*
|
|
9428
9898
|
* @summary Handout fines to all given users. Fines will be handed out \"now\" to prevent rewriting history.
|
|
@@ -9431,7 +9901,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9431
9901
|
* @throws {RequiredError}
|
|
9432
9902
|
* @memberof DebtorsApi
|
|
9433
9903
|
*/
|
|
9434
|
-
handoutFines(requestParameters: DebtorsApiHandoutFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}>>;
|
|
9904
|
+
handoutFines(requestParameters: DebtorsApiHandoutFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}, any>>;
|
|
9435
9905
|
/**
|
|
9436
9906
|
*
|
|
9437
9907
|
* @summary Send an email to all given users about their possible future fine.
|
|
@@ -9440,7 +9910,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9440
9910
|
* @throws {RequiredError}
|
|
9441
9911
|
* @memberof DebtorsApi
|
|
9442
9912
|
*/
|
|
9443
|
-
notifyAboutFutureFines(requestParameters: DebtorsApiNotifyAboutFutureFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9913
|
+
notifyAboutFutureFines(requestParameters: DebtorsApiNotifyAboutFutureFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9444
9914
|
/**
|
|
9445
9915
|
*
|
|
9446
9916
|
* @summary Get all fine handout events
|
|
@@ -9449,7 +9919,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9449
9919
|
* @throws {RequiredError}
|
|
9450
9920
|
* @memberof DebtorsApi
|
|
9451
9921
|
*/
|
|
9452
|
-
returnAllFineHandoutEvents(requestParameters?: DebtorsApiReturnAllFineHandoutEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFineHandoutEventResponse, any, {}>>;
|
|
9922
|
+
returnAllFineHandoutEvents(requestParameters?: DebtorsApiReturnAllFineHandoutEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFineHandoutEventResponse, any, {}, any>>;
|
|
9453
9923
|
/**
|
|
9454
9924
|
*
|
|
9455
9925
|
* @summary Get all fine handout events
|
|
@@ -9458,7 +9928,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9458
9928
|
* @throws {RequiredError}
|
|
9459
9929
|
* @memberof DebtorsApi
|
|
9460
9930
|
*/
|
|
9461
|
-
returnSingleFineHandoutEvent(requestParameters: DebtorsApiReturnSingleFineHandoutEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}>>;
|
|
9931
|
+
returnSingleFineHandoutEvent(requestParameters: DebtorsApiReturnSingleFineHandoutEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}, any>>;
|
|
9462
9932
|
}
|
|
9463
9933
|
/**
|
|
9464
9934
|
* @export
|
|
@@ -10126,7 +10596,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10126
10596
|
* @throws {RequiredError}
|
|
10127
10597
|
* @memberof EventsApi
|
|
10128
10598
|
*/
|
|
10129
|
-
assignEventShift(requestParameters: EventsApiAssignEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}>>;
|
|
10599
|
+
assignEventShift(requestParameters: EventsApiAssignEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}, any>>;
|
|
10130
10600
|
/**
|
|
10131
10601
|
*
|
|
10132
10602
|
* @summary Create an event with its corresponding answers objects
|
|
@@ -10136,7 +10606,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10136
10606
|
* @throws {RequiredError}
|
|
10137
10607
|
* @memberof EventsApi
|
|
10138
10608
|
*/
|
|
10139
|
-
createEvent(requestParameters: EventsApiCreateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10609
|
+
createEvent(requestParameters: EventsApiCreateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10140
10610
|
/**
|
|
10141
10611
|
*
|
|
10142
10612
|
* @summary Create an event shift
|
|
@@ -10146,7 +10616,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10146
10616
|
* @throws {RequiredError}
|
|
10147
10617
|
* @memberof EventsApi
|
|
10148
10618
|
*/
|
|
10149
|
-
createEventShift(requestParameters: EventsApiCreateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}>>;
|
|
10619
|
+
createEventShift(requestParameters: EventsApiCreateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}, any>>;
|
|
10150
10620
|
/**
|
|
10151
10621
|
*
|
|
10152
10622
|
* @summary Delete an event with its answers
|
|
@@ -10156,7 +10626,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10156
10626
|
* @throws {RequiredError}
|
|
10157
10627
|
* @memberof EventsApi
|
|
10158
10628
|
*/
|
|
10159
|
-
deleteEvent(requestParameters: EventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10629
|
+
deleteEvent(requestParameters: EventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10160
10630
|
/**
|
|
10161
10631
|
*
|
|
10162
10632
|
* @summary Delete an event shift with its answers
|
|
@@ -10166,7 +10636,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10166
10636
|
* @throws {RequiredError}
|
|
10167
10637
|
* @memberof EventsApi
|
|
10168
10638
|
*/
|
|
10169
|
-
deleteEventShift(requestParameters: EventsApiDeleteEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10639
|
+
deleteEventShift(requestParameters: EventsApiDeleteEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10170
10640
|
/**
|
|
10171
10641
|
*
|
|
10172
10642
|
* @summary Get all event shifts
|
|
@@ -10176,7 +10646,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10176
10646
|
* @throws {RequiredError}
|
|
10177
10647
|
* @memberof EventsApi
|
|
10178
10648
|
*/
|
|
10179
|
-
getAllEventShifts(requestParameters?: EventsApiGetAllEventShiftsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse, any, {}>>;
|
|
10649
|
+
getAllEventShifts(requestParameters?: EventsApiGetAllEventShiftsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse, any, {}, any>>;
|
|
10180
10650
|
/**
|
|
10181
10651
|
*
|
|
10182
10652
|
* @summary Get all events
|
|
@@ -10186,7 +10656,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10186
10656
|
* @throws {RequiredError}
|
|
10187
10657
|
* @memberof EventsApi
|
|
10188
10658
|
*/
|
|
10189
|
-
getAllEvents(requestParameters?: EventsApiGetAllEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseEventResponse, any, {}>>;
|
|
10659
|
+
getAllEvents(requestParameters?: EventsApiGetAllEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseEventResponse, any, {}, any>>;
|
|
10190
10660
|
/**
|
|
10191
10661
|
*
|
|
10192
10662
|
* @summary Get the number of times a user has been selected for the given shift
|
|
@@ -10196,7 +10666,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10196
10666
|
* @throws {RequiredError}
|
|
10197
10667
|
* @memberof EventsApi
|
|
10198
10668
|
*/
|
|
10199
|
-
getEventShiftCount(requestParameters: EventsApiGetEventShiftCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse[], any, {}>>;
|
|
10669
|
+
getEventShiftCount(requestParameters: EventsApiGetEventShiftCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse[], any, {}, any>>;
|
|
10200
10670
|
/**
|
|
10201
10671
|
*
|
|
10202
10672
|
* @summary Get a single event with its answers and shifts
|
|
@@ -10206,7 +10676,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10206
10676
|
* @throws {RequiredError}
|
|
10207
10677
|
* @memberof EventsApi
|
|
10208
10678
|
*/
|
|
10209
|
-
getSingleEvent(requestParameters: EventsApiGetSingleEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10679
|
+
getSingleEvent(requestParameters: EventsApiGetSingleEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10210
10680
|
/**
|
|
10211
10681
|
*
|
|
10212
10682
|
* @summary Update an event with its corresponding answers objects
|
|
@@ -10216,7 +10686,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10216
10686
|
* @throws {RequiredError}
|
|
10217
10687
|
* @memberof EventsApi
|
|
10218
10688
|
*/
|
|
10219
|
-
updateEvent(requestParameters: EventsApiUpdateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10689
|
+
updateEvent(requestParameters: EventsApiUpdateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10220
10690
|
/**
|
|
10221
10691
|
*
|
|
10222
10692
|
* @summary Update an event shift
|
|
@@ -10226,7 +10696,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10226
10696
|
* @throws {RequiredError}
|
|
10227
10697
|
* @memberof EventsApi
|
|
10228
10698
|
*/
|
|
10229
|
-
updateEventShift(requestParameters: EventsApiUpdateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}>>;
|
|
10699
|
+
updateEventShift(requestParameters: EventsApiUpdateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}, any>>;
|
|
10230
10700
|
/**
|
|
10231
10701
|
*
|
|
10232
10702
|
* @summary Update the availability of a user for a shift in an event
|
|
@@ -10236,7 +10706,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10236
10706
|
* @throws {RequiredError}
|
|
10237
10707
|
* @memberof EventsApi
|
|
10238
10708
|
*/
|
|
10239
|
-
updateEventShiftAvailability(requestParameters: EventsApiUpdateEventShiftAvailabilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}>>;
|
|
10709
|
+
updateEventShiftAvailability(requestParameters: EventsApiUpdateEventShiftAvailabilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}, any>>;
|
|
10240
10710
|
}
|
|
10241
10711
|
/**
|
|
10242
10712
|
* FilesApi - axios parameter creator
|
|
@@ -10390,7 +10860,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10390
10860
|
* @throws {RequiredError}
|
|
10391
10861
|
* @memberof FilesApi
|
|
10392
10862
|
*/
|
|
10393
|
-
createFile(requestParameters: FilesApiCreateFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SimpleFileResponse, any, {}>>;
|
|
10863
|
+
createFile(requestParameters: FilesApiCreateFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SimpleFileResponse, any, {}, any>>;
|
|
10394
10864
|
/**
|
|
10395
10865
|
*
|
|
10396
10866
|
* @summary Delete the file with the given id.
|
|
@@ -10399,7 +10869,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10399
10869
|
* @throws {RequiredError}
|
|
10400
10870
|
* @memberof FilesApi
|
|
10401
10871
|
*/
|
|
10402
|
-
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10872
|
+
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10403
10873
|
/**
|
|
10404
10874
|
*
|
|
10405
10875
|
* @summary Download a file with the given id.
|
|
@@ -10408,7 +10878,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10408
10878
|
* @throws {RequiredError}
|
|
10409
10879
|
* @memberof FilesApi
|
|
10410
10880
|
*/
|
|
10411
|
-
getFile(requestParameters: FilesApiGetFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
10881
|
+
getFile(requestParameters: FilesApiGetFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
10412
10882
|
}
|
|
10413
10883
|
/**
|
|
10414
10884
|
* InactiveAdministrativeCostsApi - axios parameter creator
|
|
@@ -10800,7 +11270,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10800
11270
|
* @throws {RequiredError}
|
|
10801
11271
|
* @memberof InactiveAdministrativeCostsApi
|
|
10802
11272
|
*/
|
|
10803
|
-
createInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiCreateInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}>>;
|
|
11273
|
+
createInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiCreateInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}, any>>;
|
|
10804
11274
|
/**
|
|
10805
11275
|
*
|
|
10806
11276
|
* @summary Deletes an inactive administrative cost.
|
|
@@ -10809,7 +11279,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10809
11279
|
* @throws {RequiredError}
|
|
10810
11280
|
* @memberof InactiveAdministrativeCostsApi
|
|
10811
11281
|
*/
|
|
10812
|
-
deleteInactiveAdministrativeCost(requestParameters: InactiveAdministrativeCostsApiDeleteInactiveAdministrativeCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11282
|
+
deleteInactiveAdministrativeCost(requestParameters: InactiveAdministrativeCostsApiDeleteInactiveAdministrativeCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10813
11283
|
/**
|
|
10814
11284
|
*
|
|
10815
11285
|
* @summary Returns all inactive administrative costs in the system.
|
|
@@ -10818,7 +11288,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10818
11288
|
* @throws {RequiredError}
|
|
10819
11289
|
* @memberof InactiveAdministrativeCostsApi
|
|
10820
11290
|
*/
|
|
10821
|
-
getAllInactiveAdministrativeCosts(requestParameters?: InactiveAdministrativeCostsApiGetAllInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInactiveAdministrativeCostResponse, any, {}>>;
|
|
11291
|
+
getAllInactiveAdministrativeCosts(requestParameters?: InactiveAdministrativeCostsApiGetAllInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInactiveAdministrativeCostResponse, any, {}, any>>;
|
|
10822
11292
|
/**
|
|
10823
11293
|
*
|
|
10824
11294
|
* @summary Get a report of all inactive administrative costs
|
|
@@ -10827,7 +11297,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10827
11297
|
* @throws {RequiredError}
|
|
10828
11298
|
* @memberof InactiveAdministrativeCostsApi
|
|
10829
11299
|
*/
|
|
10830
|
-
getInactiveAdministrativeCostReport(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostReportResponse, any, {}>>;
|
|
11300
|
+
getInactiveAdministrativeCostReport(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostReportResponse, any, {}, any>>;
|
|
10831
11301
|
/**
|
|
10832
11302
|
*
|
|
10833
11303
|
* @summary Get a report of all inactive administrative costs in pdf format
|
|
@@ -10836,7 +11306,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10836
11306
|
* @throws {RequiredError}
|
|
10837
11307
|
* @memberof InactiveAdministrativeCostsApi
|
|
10838
11308
|
*/
|
|
10839
|
-
getInactiveAdministrativeCostReportPdf(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
11309
|
+
getInactiveAdministrativeCostReportPdf(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
10840
11310
|
/**
|
|
10841
11311
|
*
|
|
10842
11312
|
* @summary Returns a single inactive administrative cost entity
|
|
@@ -10845,7 +11315,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10845
11315
|
* @throws {RequiredError}
|
|
10846
11316
|
* @memberof InactiveAdministrativeCostsApi
|
|
10847
11317
|
*/
|
|
10848
|
-
getInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}>>;
|
|
11318
|
+
getInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}, any>>;
|
|
10849
11319
|
/**
|
|
10850
11320
|
*
|
|
10851
11321
|
* @summary Find all users who are eligible for notification or creation of inactive administrative cost
|
|
@@ -10854,7 +11324,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10854
11324
|
* @throws {RequiredError}
|
|
10855
11325
|
* @memberof InactiveAdministrativeCostsApi
|
|
10856
11326
|
*/
|
|
10857
|
-
getInactiveAdministrativeCostsEligibleUsers(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsEligibleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToInactiveAdministrativeCostResponse[], any, {}>>;
|
|
11327
|
+
getInactiveAdministrativeCostsEligibleUsers(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsEligibleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToInactiveAdministrativeCostResponse[], any, {}, any>>;
|
|
10858
11328
|
/**
|
|
10859
11329
|
*
|
|
10860
11330
|
* @summary Handout inactive administrative costs to all users who are eligible.
|
|
@@ -10863,7 +11333,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10863
11333
|
* @throws {RequiredError}
|
|
10864
11334
|
* @memberof InactiveAdministrativeCostsApi
|
|
10865
11335
|
*/
|
|
10866
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
|
|
11336
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}, any>>;
|
|
10867
11337
|
/**
|
|
10868
11338
|
*
|
|
10869
11339
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10872,7 +11342,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10872
11342
|
* @throws {RequiredError}
|
|
10873
11343
|
* @memberof InactiveAdministrativeCostsApi
|
|
10874
11344
|
*/
|
|
10875
|
-
notifyInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiNotifyInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11345
|
+
notifyInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiNotifyInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10876
11346
|
}
|
|
10877
11347
|
/**
|
|
10878
11348
|
* InvoicesApi - axios parameter creator
|
|
@@ -11035,7 +11505,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11035
11505
|
* @param {*} [options] Override http request option.
|
|
11036
11506
|
* @throws {RequiredError}
|
|
11037
11507
|
*/
|
|
11038
|
-
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse
|
|
11508
|
+
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransactionResponse>>>;
|
|
11039
11509
|
/**
|
|
11040
11510
|
*
|
|
11041
11511
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11132,7 +11602,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11132
11602
|
* @param {*} [options] Override http request option.
|
|
11133
11603
|
* @throws {RequiredError}
|
|
11134
11604
|
*/
|
|
11135
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse
|
|
11605
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransactionResponse>>;
|
|
11136
11606
|
/**
|
|
11137
11607
|
*
|
|
11138
11608
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11410,7 +11880,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11410
11880
|
* @throws {RequiredError}
|
|
11411
11881
|
* @memberof InvoicesApi
|
|
11412
11882
|
*/
|
|
11413
|
-
createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}>>;
|
|
11883
|
+
createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}, any>>;
|
|
11414
11884
|
/**
|
|
11415
11885
|
*
|
|
11416
11886
|
* @summary Deletes an invoice.
|
|
@@ -11419,7 +11889,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11419
11889
|
* @throws {RequiredError}
|
|
11420
11890
|
* @memberof InvoicesApi
|
|
11421
11891
|
*/
|
|
11422
|
-
deleteInvoice(requestParameters: InvoicesApiDeleteInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11892
|
+
deleteInvoice(requestParameters: InvoicesApiDeleteInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11423
11893
|
/**
|
|
11424
11894
|
*
|
|
11425
11895
|
* @summary Delete invoice user defaults.
|
|
@@ -11428,7 +11898,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11428
11898
|
* @throws {RequiredError}
|
|
11429
11899
|
* @memberof InvoicesApi
|
|
11430
11900
|
*/
|
|
11431
|
-
deleteInvoiceUser(requestParameters: InvoicesApiDeleteInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11901
|
+
deleteInvoiceUser(requestParameters: InvoicesApiDeleteInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11432
11902
|
/**
|
|
11433
11903
|
*
|
|
11434
11904
|
* @summary Returns all invoices in the system.
|
|
@@ -11437,7 +11907,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11437
11907
|
* @throws {RequiredError}
|
|
11438
11908
|
* @memberof InvoicesApi
|
|
11439
11909
|
*/
|
|
11440
|
-
getAllInvoices(requestParameters?: InvoicesApiGetAllInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInvoiceResponse, any, {}>>;
|
|
11910
|
+
getAllInvoices(requestParameters?: InvoicesApiGetAllInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInvoiceResponse, any, {}, any>>;
|
|
11441
11911
|
/**
|
|
11442
11912
|
*
|
|
11443
11913
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11446,7 +11916,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11446
11916
|
* @throws {RequiredError}
|
|
11447
11917
|
* @memberof InvoicesApi
|
|
11448
11918
|
*/
|
|
11449
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11919
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse[], any, {}, any>>;
|
|
11450
11920
|
/**
|
|
11451
11921
|
*
|
|
11452
11922
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11454,7 +11924,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11454
11924
|
* @throws {RequiredError}
|
|
11455
11925
|
* @memberof InvoicesApi
|
|
11456
11926
|
*/
|
|
11457
|
-
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11927
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}, any>>;
|
|
11458
11928
|
/**
|
|
11459
11929
|
*
|
|
11460
11930
|
* @summary Get an invoice pdf.
|
|
@@ -11463,7 +11933,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11463
11933
|
* @throws {RequiredError}
|
|
11464
11934
|
* @memberof InvoicesApi
|
|
11465
11935
|
*/
|
|
11466
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
11936
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
11467
11937
|
/**
|
|
11468
11938
|
*
|
|
11469
11939
|
* @summary Returns a single invoice in the system.
|
|
@@ -11472,7 +11942,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11472
11942
|
* @throws {RequiredError}
|
|
11473
11943
|
* @memberof InvoicesApi
|
|
11474
11944
|
*/
|
|
11475
|
-
getSingleInvoice(requestParameters: InvoicesApiGetSingleInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}>>;
|
|
11945
|
+
getSingleInvoice(requestParameters: InvoicesApiGetSingleInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}, any>>;
|
|
11476
11946
|
/**
|
|
11477
11947
|
*
|
|
11478
11948
|
* @summary Get invoice user defaults.
|
|
@@ -11481,7 +11951,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11481
11951
|
* @throws {RequiredError}
|
|
11482
11952
|
* @memberof InvoicesApi
|
|
11483
11953
|
*/
|
|
11484
|
-
getSingleInvoiceUser(requestParameters: InvoicesApiGetSingleInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}>>;
|
|
11954
|
+
getSingleInvoiceUser(requestParameters: InvoicesApiGetSingleInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}, any>>;
|
|
11485
11955
|
/**
|
|
11486
11956
|
*
|
|
11487
11957
|
* @summary Update or create invoice user defaults.
|
|
@@ -11490,7 +11960,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11490
11960
|
* @throws {RequiredError}
|
|
11491
11961
|
* @memberof InvoicesApi
|
|
11492
11962
|
*/
|
|
11493
|
-
putInvoiceUser(requestParameters: InvoicesApiPutInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}>>;
|
|
11963
|
+
putInvoiceUser(requestParameters: InvoicesApiPutInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}, any>>;
|
|
11494
11964
|
/**
|
|
11495
11965
|
*
|
|
11496
11966
|
* @summary Adds an invoice to the system.
|
|
@@ -11499,7 +11969,493 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11499
11969
|
* @throws {RequiredError}
|
|
11500
11970
|
* @memberof InvoicesApi
|
|
11501
11971
|
*/
|
|
11502
|
-
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
|
|
11972
|
+
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}, any>>;
|
|
11973
|
+
}
|
|
11974
|
+
/**
|
|
11975
|
+
* PaymentRequestsApi - axios parameter creator
|
|
11976
|
+
* @export
|
|
11977
|
+
*/
|
|
11978
|
+
export declare const PaymentRequestsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11979
|
+
/**
|
|
11980
|
+
*
|
|
11981
|
+
* @summary Cancel a PENDING PaymentRequest.
|
|
11982
|
+
* @param {string} id UUID v4 of the payment request.
|
|
11983
|
+
* @param {*} [options] Override http request option.
|
|
11984
|
+
* @throws {RequiredError}
|
|
11985
|
+
*/
|
|
11986
|
+
cancelPaymentRequest: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11987
|
+
/**
|
|
11988
|
+
*
|
|
11989
|
+
* @summary Create a new PaymentRequest.
|
|
11990
|
+
* @param {CreatePaymentRequestRequest} createPaymentRequestRequest The request to create
|
|
11991
|
+
* @param {*} [options] Override http request option.
|
|
11992
|
+
* @throws {RequiredError}
|
|
11993
|
+
*/
|
|
11994
|
+
createPaymentRequest: (createPaymentRequestRequest: CreatePaymentRequestRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11995
|
+
/**
|
|
11996
|
+
*
|
|
11997
|
+
* @summary List PaymentRequests (paginated, with filtering by beneficiary, creator, and status)
|
|
11998
|
+
* @param {number} [forId] Filter by beneficiary user id.
|
|
11999
|
+
* @param {number} [createdById] Filter by creator user id.
|
|
12000
|
+
* @param {GetAllPaymentRequestsStatusEnum} [status] Comma-separated list of derived statuses.
|
|
12001
|
+
* @param {string} [fromDate] Filter requests created on or after this ISO date (inclusive).
|
|
12002
|
+
* @param {string} [tillDate] Filter requests created strictly before this ISO date (exclusive).
|
|
12003
|
+
* @param {number} [take] How many rows the endpoint should return
|
|
12004
|
+
* @param {number} [skip] How many rows to skip (for pagination)
|
|
12005
|
+
* @param {*} [options] Override http request option.
|
|
12006
|
+
* @throws {RequiredError}
|
|
12007
|
+
*/
|
|
12008
|
+
getAllPaymentRequests: (forId?: number, createdById?: number, status?: GetAllPaymentRequestsStatusEnum, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12009
|
+
/**
|
|
12010
|
+
*
|
|
12011
|
+
* @summary Fetch a single PaymentRequest by id.
|
|
12012
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12013
|
+
* @param {*} [options] Override http request option.
|
|
12014
|
+
* @throws {RequiredError}
|
|
12015
|
+
*/
|
|
12016
|
+
getSinglePaymentRequest: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12017
|
+
/**
|
|
12018
|
+
*
|
|
12019
|
+
* @summary Admin escape hatch: mark a PaymentRequest paid out-of-band (e.g. bank transfer). Creates a void->user credit Transfer manually.
|
|
12020
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12021
|
+
* @param {MarkFulfilledExternallyRequest} markFulfilledExternallyRequest The audit reason
|
|
12022
|
+
* @param {*} [options] Override http request option.
|
|
12023
|
+
* @throws {RequiredError}
|
|
12024
|
+
*/
|
|
12025
|
+
markPaymentRequestFulfilledExternally: (id: string, markFulfilledExternallyRequest: MarkFulfilledExternallyRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12026
|
+
/**
|
|
12027
|
+
*
|
|
12028
|
+
* @summary Start a Stripe payment session for the given PaymentRequest while authenticated.
|
|
12029
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12030
|
+
* @param {*} [options] Override http request option.
|
|
12031
|
+
* @throws {RequiredError}
|
|
12032
|
+
*/
|
|
12033
|
+
startPaymentRequestAuthenticated: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12034
|
+
};
|
|
12035
|
+
/**
|
|
12036
|
+
* PaymentRequestsApi - functional programming interface
|
|
12037
|
+
* @export
|
|
12038
|
+
*/
|
|
12039
|
+
export declare const PaymentRequestsApiFp: (configuration?: Configuration) => {
|
|
12040
|
+
/**
|
|
12041
|
+
*
|
|
12042
|
+
* @summary Cancel a PENDING PaymentRequest.
|
|
12043
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12044
|
+
* @param {*} [options] Override http request option.
|
|
12045
|
+
* @throws {RequiredError}
|
|
12046
|
+
*/
|
|
12047
|
+
cancelPaymentRequest(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BasePaymentRequestResponse>>;
|
|
12048
|
+
/**
|
|
12049
|
+
*
|
|
12050
|
+
* @summary Create a new PaymentRequest.
|
|
12051
|
+
* @param {CreatePaymentRequestRequest} createPaymentRequestRequest The request to create
|
|
12052
|
+
* @param {*} [options] Override http request option.
|
|
12053
|
+
* @throws {RequiredError}
|
|
12054
|
+
*/
|
|
12055
|
+
createPaymentRequest(createPaymentRequestRequest: CreatePaymentRequestRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BasePaymentRequestResponse>>;
|
|
12056
|
+
/**
|
|
12057
|
+
*
|
|
12058
|
+
* @summary List PaymentRequests (paginated, with filtering by beneficiary, creator, and status)
|
|
12059
|
+
* @param {number} [forId] Filter by beneficiary user id.
|
|
12060
|
+
* @param {number} [createdById] Filter by creator user id.
|
|
12061
|
+
* @param {GetAllPaymentRequestsStatusEnum} [status] Comma-separated list of derived statuses.
|
|
12062
|
+
* @param {string} [fromDate] Filter requests created on or after this ISO date (inclusive).
|
|
12063
|
+
* @param {string} [tillDate] Filter requests created strictly before this ISO date (exclusive).
|
|
12064
|
+
* @param {number} [take] How many rows the endpoint should return
|
|
12065
|
+
* @param {number} [skip] How many rows to skip (for pagination)
|
|
12066
|
+
* @param {*} [options] Override http request option.
|
|
12067
|
+
* @throws {RequiredError}
|
|
12068
|
+
*/
|
|
12069
|
+
getAllPaymentRequests(forId?: number, createdById?: number, status?: GetAllPaymentRequestsStatusEnum, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedBasePaymentRequestResponse>>;
|
|
12070
|
+
/**
|
|
12071
|
+
*
|
|
12072
|
+
* @summary Fetch a single PaymentRequest by id.
|
|
12073
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12074
|
+
* @param {*} [options] Override http request option.
|
|
12075
|
+
* @throws {RequiredError}
|
|
12076
|
+
*/
|
|
12077
|
+
getSinglePaymentRequest(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BasePaymentRequestResponse>>;
|
|
12078
|
+
/**
|
|
12079
|
+
*
|
|
12080
|
+
* @summary Admin escape hatch: mark a PaymentRequest paid out-of-band (e.g. bank transfer). Creates a void->user credit Transfer manually.
|
|
12081
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12082
|
+
* @param {MarkFulfilledExternallyRequest} markFulfilledExternallyRequest The audit reason
|
|
12083
|
+
* @param {*} [options] Override http request option.
|
|
12084
|
+
* @throws {RequiredError}
|
|
12085
|
+
*/
|
|
12086
|
+
markPaymentRequestFulfilledExternally(id: string, markFulfilledExternallyRequest: MarkFulfilledExternallyRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BasePaymentRequestResponse>>;
|
|
12087
|
+
/**
|
|
12088
|
+
*
|
|
12089
|
+
* @summary Start a Stripe payment session for the given PaymentRequest while authenticated.
|
|
12090
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12091
|
+
* @param {*} [options] Override http request option.
|
|
12092
|
+
* @throws {RequiredError}
|
|
12093
|
+
*/
|
|
12094
|
+
startPaymentRequestAuthenticated(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentRequestStartResponse>>;
|
|
12095
|
+
};
|
|
12096
|
+
/**
|
|
12097
|
+
* PaymentRequestsApi - factory interface
|
|
12098
|
+
* @export
|
|
12099
|
+
*/
|
|
12100
|
+
export declare const PaymentRequestsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12101
|
+
/**
|
|
12102
|
+
*
|
|
12103
|
+
* @summary Cancel a PENDING PaymentRequest.
|
|
12104
|
+
* @param {PaymentRequestsApiCancelPaymentRequestRequest} requestParameters Request parameters.
|
|
12105
|
+
* @param {*} [options] Override http request option.
|
|
12106
|
+
* @throws {RequiredError}
|
|
12107
|
+
*/
|
|
12108
|
+
cancelPaymentRequest(requestParameters: PaymentRequestsApiCancelPaymentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<BasePaymentRequestResponse>;
|
|
12109
|
+
/**
|
|
12110
|
+
*
|
|
12111
|
+
* @summary Create a new PaymentRequest.
|
|
12112
|
+
* @param {PaymentRequestsApiCreatePaymentRequestRequest} requestParameters Request parameters.
|
|
12113
|
+
* @param {*} [options] Override http request option.
|
|
12114
|
+
* @throws {RequiredError}
|
|
12115
|
+
*/
|
|
12116
|
+
createPaymentRequest(requestParameters: PaymentRequestsApiCreatePaymentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<BasePaymentRequestResponse>;
|
|
12117
|
+
/**
|
|
12118
|
+
*
|
|
12119
|
+
* @summary List PaymentRequests (paginated, with filtering by beneficiary, creator, and status)
|
|
12120
|
+
* @param {PaymentRequestsApiGetAllPaymentRequestsRequest} requestParameters Request parameters.
|
|
12121
|
+
* @param {*} [options] Override http request option.
|
|
12122
|
+
* @throws {RequiredError}
|
|
12123
|
+
*/
|
|
12124
|
+
getAllPaymentRequests(requestParameters?: PaymentRequestsApiGetAllPaymentRequestsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedBasePaymentRequestResponse>;
|
|
12125
|
+
/**
|
|
12126
|
+
*
|
|
12127
|
+
* @summary Fetch a single PaymentRequest by id.
|
|
12128
|
+
* @param {PaymentRequestsApiGetSinglePaymentRequestRequest} requestParameters Request parameters.
|
|
12129
|
+
* @param {*} [options] Override http request option.
|
|
12130
|
+
* @throws {RequiredError}
|
|
12131
|
+
*/
|
|
12132
|
+
getSinglePaymentRequest(requestParameters: PaymentRequestsApiGetSinglePaymentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<BasePaymentRequestResponse>;
|
|
12133
|
+
/**
|
|
12134
|
+
*
|
|
12135
|
+
* @summary Admin escape hatch: mark a PaymentRequest paid out-of-band (e.g. bank transfer). Creates a void->user credit Transfer manually.
|
|
12136
|
+
* @param {PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest} requestParameters Request parameters.
|
|
12137
|
+
* @param {*} [options] Override http request option.
|
|
12138
|
+
* @throws {RequiredError}
|
|
12139
|
+
*/
|
|
12140
|
+
markPaymentRequestFulfilledExternally(requestParameters: PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest, options?: RawAxiosRequestConfig): AxiosPromise<BasePaymentRequestResponse>;
|
|
12141
|
+
/**
|
|
12142
|
+
*
|
|
12143
|
+
* @summary Start a Stripe payment session for the given PaymentRequest while authenticated.
|
|
12144
|
+
* @param {PaymentRequestsApiStartPaymentRequestAuthenticatedRequest} requestParameters Request parameters.
|
|
12145
|
+
* @param {*} [options] Override http request option.
|
|
12146
|
+
* @throws {RequiredError}
|
|
12147
|
+
*/
|
|
12148
|
+
startPaymentRequestAuthenticated(requestParameters: PaymentRequestsApiStartPaymentRequestAuthenticatedRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentRequestStartResponse>;
|
|
12149
|
+
};
|
|
12150
|
+
/**
|
|
12151
|
+
* Request parameters for cancelPaymentRequest operation in PaymentRequestsApi.
|
|
12152
|
+
* @export
|
|
12153
|
+
* @interface PaymentRequestsApiCancelPaymentRequestRequest
|
|
12154
|
+
*/
|
|
12155
|
+
export interface PaymentRequestsApiCancelPaymentRequestRequest {
|
|
12156
|
+
/**
|
|
12157
|
+
* UUID v4 of the payment request.
|
|
12158
|
+
* @type {string}
|
|
12159
|
+
* @memberof PaymentRequestsApiCancelPaymentRequest
|
|
12160
|
+
*/
|
|
12161
|
+
readonly id: string;
|
|
12162
|
+
}
|
|
12163
|
+
/**
|
|
12164
|
+
* Request parameters for createPaymentRequest operation in PaymentRequestsApi.
|
|
12165
|
+
* @export
|
|
12166
|
+
* @interface PaymentRequestsApiCreatePaymentRequestRequest
|
|
12167
|
+
*/
|
|
12168
|
+
export interface PaymentRequestsApiCreatePaymentRequestRequest {
|
|
12169
|
+
/**
|
|
12170
|
+
* The request to create
|
|
12171
|
+
* @type {CreatePaymentRequestRequest}
|
|
12172
|
+
* @memberof PaymentRequestsApiCreatePaymentRequest
|
|
12173
|
+
*/
|
|
12174
|
+
readonly createPaymentRequestRequest: CreatePaymentRequestRequest;
|
|
12175
|
+
}
|
|
12176
|
+
/**
|
|
12177
|
+
* Request parameters for getAllPaymentRequests operation in PaymentRequestsApi.
|
|
12178
|
+
* @export
|
|
12179
|
+
* @interface PaymentRequestsApiGetAllPaymentRequestsRequest
|
|
12180
|
+
*/
|
|
12181
|
+
export interface PaymentRequestsApiGetAllPaymentRequestsRequest {
|
|
12182
|
+
/**
|
|
12183
|
+
* Filter by beneficiary user id.
|
|
12184
|
+
* @type {number}
|
|
12185
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12186
|
+
*/
|
|
12187
|
+
readonly forId?: number;
|
|
12188
|
+
/**
|
|
12189
|
+
* Filter by creator user id.
|
|
12190
|
+
* @type {number}
|
|
12191
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12192
|
+
*/
|
|
12193
|
+
readonly createdById?: number;
|
|
12194
|
+
/**
|
|
12195
|
+
* Comma-separated list of derived statuses.
|
|
12196
|
+
* @type {'PENDING' | 'PAID' | 'EXPIRED' | 'CANCELLED'}
|
|
12197
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12198
|
+
*/
|
|
12199
|
+
readonly status?: GetAllPaymentRequestsStatusEnum;
|
|
12200
|
+
/**
|
|
12201
|
+
* Filter requests created on or after this ISO date (inclusive).
|
|
12202
|
+
* @type {string}
|
|
12203
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12204
|
+
*/
|
|
12205
|
+
readonly fromDate?: string;
|
|
12206
|
+
/**
|
|
12207
|
+
* Filter requests created strictly before this ISO date (exclusive).
|
|
12208
|
+
* @type {string}
|
|
12209
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12210
|
+
*/
|
|
12211
|
+
readonly tillDate?: string;
|
|
12212
|
+
/**
|
|
12213
|
+
* How many rows the endpoint should return
|
|
12214
|
+
* @type {number}
|
|
12215
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12216
|
+
*/
|
|
12217
|
+
readonly take?: number;
|
|
12218
|
+
/**
|
|
12219
|
+
* How many rows to skip (for pagination)
|
|
12220
|
+
* @type {number}
|
|
12221
|
+
* @memberof PaymentRequestsApiGetAllPaymentRequests
|
|
12222
|
+
*/
|
|
12223
|
+
readonly skip?: number;
|
|
12224
|
+
}
|
|
12225
|
+
/**
|
|
12226
|
+
* Request parameters for getSinglePaymentRequest operation in PaymentRequestsApi.
|
|
12227
|
+
* @export
|
|
12228
|
+
* @interface PaymentRequestsApiGetSinglePaymentRequestRequest
|
|
12229
|
+
*/
|
|
12230
|
+
export interface PaymentRequestsApiGetSinglePaymentRequestRequest {
|
|
12231
|
+
/**
|
|
12232
|
+
* UUID v4 of the payment request.
|
|
12233
|
+
* @type {string}
|
|
12234
|
+
* @memberof PaymentRequestsApiGetSinglePaymentRequest
|
|
12235
|
+
*/
|
|
12236
|
+
readonly id: string;
|
|
12237
|
+
}
|
|
12238
|
+
/**
|
|
12239
|
+
* Request parameters for markPaymentRequestFulfilledExternally operation in PaymentRequestsApi.
|
|
12240
|
+
* @export
|
|
12241
|
+
* @interface PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest
|
|
12242
|
+
*/
|
|
12243
|
+
export interface PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest {
|
|
12244
|
+
/**
|
|
12245
|
+
* UUID v4 of the payment request.
|
|
12246
|
+
* @type {string}
|
|
12247
|
+
* @memberof PaymentRequestsApiMarkPaymentRequestFulfilledExternally
|
|
12248
|
+
*/
|
|
12249
|
+
readonly id: string;
|
|
12250
|
+
/**
|
|
12251
|
+
* The audit reason
|
|
12252
|
+
* @type {MarkFulfilledExternallyRequest}
|
|
12253
|
+
* @memberof PaymentRequestsApiMarkPaymentRequestFulfilledExternally
|
|
12254
|
+
*/
|
|
12255
|
+
readonly markFulfilledExternallyRequest: MarkFulfilledExternallyRequest;
|
|
12256
|
+
}
|
|
12257
|
+
/**
|
|
12258
|
+
* Request parameters for startPaymentRequestAuthenticated operation in PaymentRequestsApi.
|
|
12259
|
+
* @export
|
|
12260
|
+
* @interface PaymentRequestsApiStartPaymentRequestAuthenticatedRequest
|
|
12261
|
+
*/
|
|
12262
|
+
export interface PaymentRequestsApiStartPaymentRequestAuthenticatedRequest {
|
|
12263
|
+
/**
|
|
12264
|
+
* UUID v4 of the payment request.
|
|
12265
|
+
* @type {string}
|
|
12266
|
+
* @memberof PaymentRequestsApiStartPaymentRequestAuthenticated
|
|
12267
|
+
*/
|
|
12268
|
+
readonly id: string;
|
|
12269
|
+
}
|
|
12270
|
+
/**
|
|
12271
|
+
* PaymentRequestsApi - object-oriented interface
|
|
12272
|
+
* @export
|
|
12273
|
+
* @class PaymentRequestsApi
|
|
12274
|
+
* @extends {BaseAPI}
|
|
12275
|
+
*/
|
|
12276
|
+
export declare class PaymentRequestsApi extends BaseAPI {
|
|
12277
|
+
/**
|
|
12278
|
+
*
|
|
12279
|
+
* @summary Cancel a PENDING PaymentRequest.
|
|
12280
|
+
* @param {PaymentRequestsApiCancelPaymentRequestRequest} requestParameters Request parameters.
|
|
12281
|
+
* @param {*} [options] Override http request option.
|
|
12282
|
+
* @throws {RequiredError}
|
|
12283
|
+
* @memberof PaymentRequestsApi
|
|
12284
|
+
*/
|
|
12285
|
+
cancelPaymentRequest(requestParameters: PaymentRequestsApiCancelPaymentRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasePaymentRequestResponse, any, {}, any>>;
|
|
12286
|
+
/**
|
|
12287
|
+
*
|
|
12288
|
+
* @summary Create a new PaymentRequest.
|
|
12289
|
+
* @param {PaymentRequestsApiCreatePaymentRequestRequest} requestParameters Request parameters.
|
|
12290
|
+
* @param {*} [options] Override http request option.
|
|
12291
|
+
* @throws {RequiredError}
|
|
12292
|
+
* @memberof PaymentRequestsApi
|
|
12293
|
+
*/
|
|
12294
|
+
createPaymentRequest(requestParameters: PaymentRequestsApiCreatePaymentRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasePaymentRequestResponse, any, {}, any>>;
|
|
12295
|
+
/**
|
|
12296
|
+
*
|
|
12297
|
+
* @summary List PaymentRequests (paginated, with filtering by beneficiary, creator, and status)
|
|
12298
|
+
* @param {PaymentRequestsApiGetAllPaymentRequestsRequest} requestParameters Request parameters.
|
|
12299
|
+
* @param {*} [options] Override http request option.
|
|
12300
|
+
* @throws {RequiredError}
|
|
12301
|
+
* @memberof PaymentRequestsApi
|
|
12302
|
+
*/
|
|
12303
|
+
getAllPaymentRequests(requestParameters?: PaymentRequestsApiGetAllPaymentRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePaymentRequestResponse, any, {}, any>>;
|
|
12304
|
+
/**
|
|
12305
|
+
*
|
|
12306
|
+
* @summary Fetch a single PaymentRequest by id.
|
|
12307
|
+
* @param {PaymentRequestsApiGetSinglePaymentRequestRequest} requestParameters Request parameters.
|
|
12308
|
+
* @param {*} [options] Override http request option.
|
|
12309
|
+
* @throws {RequiredError}
|
|
12310
|
+
* @memberof PaymentRequestsApi
|
|
12311
|
+
*/
|
|
12312
|
+
getSinglePaymentRequest(requestParameters: PaymentRequestsApiGetSinglePaymentRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasePaymentRequestResponse, any, {}, any>>;
|
|
12313
|
+
/**
|
|
12314
|
+
*
|
|
12315
|
+
* @summary Admin escape hatch: mark a PaymentRequest paid out-of-band (e.g. bank transfer). Creates a void->user credit Transfer manually.
|
|
12316
|
+
* @param {PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest} requestParameters Request parameters.
|
|
12317
|
+
* @param {*} [options] Override http request option.
|
|
12318
|
+
* @throws {RequiredError}
|
|
12319
|
+
* @memberof PaymentRequestsApi
|
|
12320
|
+
*/
|
|
12321
|
+
markPaymentRequestFulfilledExternally(requestParameters: PaymentRequestsApiMarkPaymentRequestFulfilledExternallyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasePaymentRequestResponse, any, {}, any>>;
|
|
12322
|
+
/**
|
|
12323
|
+
*
|
|
12324
|
+
* @summary Start a Stripe payment session for the given PaymentRequest while authenticated.
|
|
12325
|
+
* @param {PaymentRequestsApiStartPaymentRequestAuthenticatedRequest} requestParameters Request parameters.
|
|
12326
|
+
* @param {*} [options] Override http request option.
|
|
12327
|
+
* @throws {RequiredError}
|
|
12328
|
+
* @memberof PaymentRequestsApi
|
|
12329
|
+
*/
|
|
12330
|
+
startPaymentRequestAuthenticated(requestParameters: PaymentRequestsApiStartPaymentRequestAuthenticatedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentRequestStartResponse, any, {}, any>>;
|
|
12331
|
+
}
|
|
12332
|
+
/**
|
|
12333
|
+
* @export
|
|
12334
|
+
*/
|
|
12335
|
+
export declare const GetAllPaymentRequestsStatusEnum: {
|
|
12336
|
+
readonly Pending: "PENDING";
|
|
12337
|
+
readonly Paid: "PAID";
|
|
12338
|
+
readonly Expired: "EXPIRED";
|
|
12339
|
+
readonly Cancelled: "CANCELLED";
|
|
12340
|
+
};
|
|
12341
|
+
export type GetAllPaymentRequestsStatusEnum = typeof GetAllPaymentRequestsStatusEnum[keyof typeof GetAllPaymentRequestsStatusEnum];
|
|
12342
|
+
/**
|
|
12343
|
+
* PaymentRequestsPublicApi - axios parameter creator
|
|
12344
|
+
* @export
|
|
12345
|
+
*/
|
|
12346
|
+
export declare const PaymentRequestsPublicApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12347
|
+
/**
|
|
12348
|
+
*
|
|
12349
|
+
* @summary Fetch a PaymentRequest via the public share link. Returns a trimmed response that omits internal audit fields.
|
|
12350
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12351
|
+
* @param {*} [options] Override http request option.
|
|
12352
|
+
* @throws {RequiredError}
|
|
12353
|
+
*/
|
|
12354
|
+
getPublicPaymentRequest: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12355
|
+
/**
|
|
12356
|
+
*
|
|
12357
|
+
* @summary Start a Stripe payment session for the given PaymentRequest without authentication — the share link IS the credential.
|
|
12358
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12359
|
+
* @param {*} [options] Override http request option.
|
|
12360
|
+
* @throws {RequiredError}
|
|
12361
|
+
*/
|
|
12362
|
+
startPaymentRequestPublic: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12363
|
+
};
|
|
12364
|
+
/**
|
|
12365
|
+
* PaymentRequestsPublicApi - functional programming interface
|
|
12366
|
+
* @export
|
|
12367
|
+
*/
|
|
12368
|
+
export declare const PaymentRequestsPublicApiFp: (configuration?: Configuration) => {
|
|
12369
|
+
/**
|
|
12370
|
+
*
|
|
12371
|
+
* @summary Fetch a PaymentRequest via the public share link. Returns a trimmed response that omits internal audit fields.
|
|
12372
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12373
|
+
* @param {*} [options] Override http request option.
|
|
12374
|
+
* @throws {RequiredError}
|
|
12375
|
+
*/
|
|
12376
|
+
getPublicPaymentRequest(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PublicPaymentRequestResponse>>;
|
|
12377
|
+
/**
|
|
12378
|
+
*
|
|
12379
|
+
* @summary Start a Stripe payment session for the given PaymentRequest without authentication — the share link IS the credential.
|
|
12380
|
+
* @param {string} id UUID v4 of the payment request.
|
|
12381
|
+
* @param {*} [options] Override http request option.
|
|
12382
|
+
* @throws {RequiredError}
|
|
12383
|
+
*/
|
|
12384
|
+
startPaymentRequestPublic(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentRequestStartResponse>>;
|
|
12385
|
+
};
|
|
12386
|
+
/**
|
|
12387
|
+
* PaymentRequestsPublicApi - factory interface
|
|
12388
|
+
* @export
|
|
12389
|
+
*/
|
|
12390
|
+
export declare const PaymentRequestsPublicApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12391
|
+
/**
|
|
12392
|
+
*
|
|
12393
|
+
* @summary Fetch a PaymentRequest via the public share link. Returns a trimmed response that omits internal audit fields.
|
|
12394
|
+
* @param {PaymentRequestsPublicApiGetPublicPaymentRequestRequest} requestParameters Request parameters.
|
|
12395
|
+
* @param {*} [options] Override http request option.
|
|
12396
|
+
* @throws {RequiredError}
|
|
12397
|
+
*/
|
|
12398
|
+
getPublicPaymentRequest(requestParameters: PaymentRequestsPublicApiGetPublicPaymentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<PublicPaymentRequestResponse>;
|
|
12399
|
+
/**
|
|
12400
|
+
*
|
|
12401
|
+
* @summary Start a Stripe payment session for the given PaymentRequest without authentication — the share link IS the credential.
|
|
12402
|
+
* @param {PaymentRequestsPublicApiStartPaymentRequestPublicRequest} requestParameters Request parameters.
|
|
12403
|
+
* @param {*} [options] Override http request option.
|
|
12404
|
+
* @throws {RequiredError}
|
|
12405
|
+
*/
|
|
12406
|
+
startPaymentRequestPublic(requestParameters: PaymentRequestsPublicApiStartPaymentRequestPublicRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentRequestStartResponse>;
|
|
12407
|
+
};
|
|
12408
|
+
/**
|
|
12409
|
+
* Request parameters for getPublicPaymentRequest operation in PaymentRequestsPublicApi.
|
|
12410
|
+
* @export
|
|
12411
|
+
* @interface PaymentRequestsPublicApiGetPublicPaymentRequestRequest
|
|
12412
|
+
*/
|
|
12413
|
+
export interface PaymentRequestsPublicApiGetPublicPaymentRequestRequest {
|
|
12414
|
+
/**
|
|
12415
|
+
* UUID v4 of the payment request.
|
|
12416
|
+
* @type {string}
|
|
12417
|
+
* @memberof PaymentRequestsPublicApiGetPublicPaymentRequest
|
|
12418
|
+
*/
|
|
12419
|
+
readonly id: string;
|
|
12420
|
+
}
|
|
12421
|
+
/**
|
|
12422
|
+
* Request parameters for startPaymentRequestPublic operation in PaymentRequestsPublicApi.
|
|
12423
|
+
* @export
|
|
12424
|
+
* @interface PaymentRequestsPublicApiStartPaymentRequestPublicRequest
|
|
12425
|
+
*/
|
|
12426
|
+
export interface PaymentRequestsPublicApiStartPaymentRequestPublicRequest {
|
|
12427
|
+
/**
|
|
12428
|
+
* UUID v4 of the payment request.
|
|
12429
|
+
* @type {string}
|
|
12430
|
+
* @memberof PaymentRequestsPublicApiStartPaymentRequestPublic
|
|
12431
|
+
*/
|
|
12432
|
+
readonly id: string;
|
|
12433
|
+
}
|
|
12434
|
+
/**
|
|
12435
|
+
* PaymentRequestsPublicApi - object-oriented interface
|
|
12436
|
+
* @export
|
|
12437
|
+
* @class PaymentRequestsPublicApi
|
|
12438
|
+
* @extends {BaseAPI}
|
|
12439
|
+
*/
|
|
12440
|
+
export declare class PaymentRequestsPublicApi extends BaseAPI {
|
|
12441
|
+
/**
|
|
12442
|
+
*
|
|
12443
|
+
* @summary Fetch a PaymentRequest via the public share link. Returns a trimmed response that omits internal audit fields.
|
|
12444
|
+
* @param {PaymentRequestsPublicApiGetPublicPaymentRequestRequest} requestParameters Request parameters.
|
|
12445
|
+
* @param {*} [options] Override http request option.
|
|
12446
|
+
* @throws {RequiredError}
|
|
12447
|
+
* @memberof PaymentRequestsPublicApi
|
|
12448
|
+
*/
|
|
12449
|
+
getPublicPaymentRequest(requestParameters: PaymentRequestsPublicApiGetPublicPaymentRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicPaymentRequestResponse, any, {}, any>>;
|
|
12450
|
+
/**
|
|
12451
|
+
*
|
|
12452
|
+
* @summary Start a Stripe payment session for the given PaymentRequest without authentication — the share link IS the credential.
|
|
12453
|
+
* @param {PaymentRequestsPublicApiStartPaymentRequestPublicRequest} requestParameters Request parameters.
|
|
12454
|
+
* @param {*} [options] Override http request option.
|
|
12455
|
+
* @throws {RequiredError}
|
|
12456
|
+
* @memberof PaymentRequestsPublicApi
|
|
12457
|
+
*/
|
|
12458
|
+
startPaymentRequestPublic(requestParameters: PaymentRequestsPublicApiStartPaymentRequestPublicRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentRequestStartResponse, any, {}, any>>;
|
|
11503
12459
|
}
|
|
11504
12460
|
/**
|
|
11505
12461
|
* PayoutRequestsApi - axios parameter creator
|
|
@@ -11783,7 +12739,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
11783
12739
|
* @throws {RequiredError}
|
|
11784
12740
|
* @memberof PayoutRequestsApi
|
|
11785
12741
|
*/
|
|
11786
|
-
createPayoutRequest(requestParameters: PayoutRequestsApiCreatePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12742
|
+
createPayoutRequest(requestParameters: PayoutRequestsApiCreatePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
11787
12743
|
/**
|
|
11788
12744
|
*
|
|
11789
12745
|
* @summary Returns all payout requests given the filter parameters
|
|
@@ -11792,7 +12748,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
11792
12748
|
* @throws {RequiredError}
|
|
11793
12749
|
* @memberof PayoutRequestsApi
|
|
11794
12750
|
*/
|
|
11795
|
-
getAllPayoutRequests(requestParameters?: PayoutRequestsApiGetAllPayoutRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePayoutRequestResponse, any, {}>>;
|
|
12751
|
+
getAllPayoutRequests(requestParameters?: PayoutRequestsApiGetAllPayoutRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePayoutRequestResponse, any, {}, any>>;
|
|
11796
12752
|
/**
|
|
11797
12753
|
*
|
|
11798
12754
|
* @summary Get a payout request pdf
|
|
@@ -11801,7 +12757,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
11801
12757
|
* @throws {RequiredError}
|
|
11802
12758
|
* @memberof PayoutRequestsApi
|
|
11803
12759
|
*/
|
|
11804
|
-
getPayoutRequestPdf(requestParameters: PayoutRequestsApiGetPayoutRequestPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
12760
|
+
getPayoutRequestPdf(requestParameters: PayoutRequestsApiGetPayoutRequestPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
11805
12761
|
/**
|
|
11806
12762
|
*
|
|
11807
12763
|
* @summary Get a single payout request
|
|
@@ -11810,7 +12766,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
11810
12766
|
* @throws {RequiredError}
|
|
11811
12767
|
* @memberof PayoutRequestsApi
|
|
11812
12768
|
*/
|
|
11813
|
-
getSinglePayoutRequest(requestParameters: PayoutRequestsApiGetSinglePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12769
|
+
getSinglePayoutRequest(requestParameters: PayoutRequestsApiGetSinglePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
11814
12770
|
/**
|
|
11815
12771
|
*
|
|
11816
12772
|
* @summary Create a new status for a payout request
|
|
@@ -11819,7 +12775,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
11819
12775
|
* @throws {RequiredError}
|
|
11820
12776
|
* @memberof PayoutRequestsApi
|
|
11821
12777
|
*/
|
|
11822
|
-
setPayoutRequestStatus(requestParameters: PayoutRequestsApiSetPayoutRequestStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12778
|
+
setPayoutRequestStatus(requestParameters: PayoutRequestsApiSetPayoutRequestStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
11823
12779
|
}
|
|
11824
12780
|
/**
|
|
11825
12781
|
* PointofsaleApi - axios parameter creator
|
|
@@ -12280,7 +13236,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12280
13236
|
* @throws {RequiredError}
|
|
12281
13237
|
* @memberof PointofsaleApi
|
|
12282
13238
|
*/
|
|
12283
|
-
createPointOfSale(requestParameters: PointofsaleApiCreatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13239
|
+
createPointOfSale(requestParameters: PointofsaleApiCreatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12284
13240
|
/**
|
|
12285
13241
|
*
|
|
12286
13242
|
* @summary (Soft) delete the given point of sale. Cannot be undone.
|
|
@@ -12289,7 +13245,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12289
13245
|
* @throws {RequiredError}
|
|
12290
13246
|
* @memberof PointofsaleApi
|
|
12291
13247
|
*/
|
|
12292
|
-
deletePointOfSale(requestParameters: PointofsaleApiDeletePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
13248
|
+
deletePointOfSale(requestParameters: PointofsaleApiDeletePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
12293
13249
|
/**
|
|
12294
13250
|
*
|
|
12295
13251
|
* @summary Returns the containers of the requested Point of Sale, empty list if POS does not exist
|
|
@@ -12298,7 +13254,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12298
13254
|
* @throws {RequiredError}
|
|
12299
13255
|
* @memberof PointofsaleApi
|
|
12300
13256
|
*/
|
|
12301
|
-
getAllPointOfSaleContainers(requestParameters: PointofsaleApiGetAllPointOfSaleContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
13257
|
+
getAllPointOfSaleContainers(requestParameters: PointofsaleApiGetAllPointOfSaleContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
12302
13258
|
/**
|
|
12303
13259
|
*
|
|
12304
13260
|
* @summary Returns the products of the requested Point of Sale, empty list if POS does not exist
|
|
@@ -12307,7 +13263,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12307
13263
|
* @throws {RequiredError}
|
|
12308
13264
|
* @memberof PointofsaleApi
|
|
12309
13265
|
*/
|
|
12310
|
-
getAllPointOfSaleProducts(requestParameters: PointofsaleApiGetAllPointOfSaleProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}>>;
|
|
13266
|
+
getAllPointOfSaleProducts(requestParameters: PointofsaleApiGetAllPointOfSaleProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}, any>>;
|
|
12311
13267
|
/**
|
|
12312
13268
|
*
|
|
12313
13269
|
* @summary Returns all existing Point of Sales
|
|
@@ -12316,7 +13272,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12316
13272
|
* @throws {RequiredError}
|
|
12317
13273
|
* @memberof PointofsaleApi
|
|
12318
13274
|
*/
|
|
12319
|
-
getAllPointsOfSale(requestParameters?: PointofsaleApiGetAllPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}>>;
|
|
13275
|
+
getAllPointsOfSale(requestParameters?: PointofsaleApiGetAllPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}, any>>;
|
|
12320
13276
|
/**
|
|
12321
13277
|
*
|
|
12322
13278
|
* @summary Returns a Point of Sale\'s associate users
|
|
@@ -12325,7 +13281,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12325
13281
|
* @throws {RequiredError}
|
|
12326
13282
|
* @memberof PointofsaleApi
|
|
12327
13283
|
*/
|
|
12328
|
-
getPointOfSaleAssociates(requestParameters: PointofsaleApiGetPointOfSaleAssociatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleAssociateUsersResponse, any, {}>>;
|
|
13284
|
+
getPointOfSaleAssociates(requestParameters: PointofsaleApiGetPointOfSaleAssociatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleAssociateUsersResponse, any, {}, any>>;
|
|
12329
13285
|
/**
|
|
12330
13286
|
*
|
|
12331
13287
|
* @summary Returns the requested Point of Sale
|
|
@@ -12334,7 +13290,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12334
13290
|
* @throws {RequiredError}
|
|
12335
13291
|
* @memberof PointofsaleApi
|
|
12336
13292
|
*/
|
|
12337
|
-
getSinglePointOfSale(requestParameters: PointofsaleApiGetSinglePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13293
|
+
getSinglePointOfSale(requestParameters: PointofsaleApiGetSinglePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12338
13294
|
/**
|
|
12339
13295
|
*
|
|
12340
13296
|
* @summary Returns a specific revision of the requested Point of Sale
|
|
@@ -12343,7 +13299,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12343
13299
|
* @throws {RequiredError}
|
|
12344
13300
|
* @memberof PointofsaleApi
|
|
12345
13301
|
*/
|
|
12346
|
-
getSinglePointOfSaleRevision(requestParameters: PointofsaleApiGetSinglePointOfSaleRevisionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13302
|
+
getSinglePointOfSaleRevision(requestParameters: PointofsaleApiGetSinglePointOfSaleRevisionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12347
13303
|
/**
|
|
12348
13304
|
*
|
|
12349
13305
|
* @summary Returns a Point of Sale transactions
|
|
@@ -12352,7 +13308,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12352
13308
|
* @throws {RequiredError}
|
|
12353
13309
|
* @memberof PointofsaleApi
|
|
12354
13310
|
*/
|
|
12355
|
-
getTransactions(requestParameters: PointofsaleApiGetTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
13311
|
+
getTransactions(requestParameters: PointofsaleApiGetTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
12356
13312
|
/**
|
|
12357
13313
|
*
|
|
12358
13314
|
* @summary Update an existing Point of Sale.
|
|
@@ -12361,7 +13317,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12361
13317
|
* @throws {RequiredError}
|
|
12362
13318
|
* @memberof PointofsaleApi
|
|
12363
13319
|
*/
|
|
12364
|
-
updatePointOfSale(requestParameters: PointofsaleApiUpdatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13320
|
+
updatePointOfSale(requestParameters: PointofsaleApiUpdatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12365
13321
|
}
|
|
12366
13322
|
/**
|
|
12367
13323
|
* ProductCategoriesApi - axios parameter creator
|
|
@@ -12576,7 +13532,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12576
13532
|
* @throws {RequiredError}
|
|
12577
13533
|
* @memberof ProductCategoriesApi
|
|
12578
13534
|
*/
|
|
12579
|
-
createProductCategory(requestParameters: ProductCategoriesApiCreateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13535
|
+
createProductCategory(requestParameters: ProductCategoriesApiCreateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12580
13536
|
/**
|
|
12581
13537
|
*
|
|
12582
13538
|
* @summary Returns all existing productcategories
|
|
@@ -12585,7 +13541,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12585
13541
|
* @throws {RequiredError}
|
|
12586
13542
|
* @memberof ProductCategoriesApi
|
|
12587
13543
|
*/
|
|
12588
|
-
getAllProductCategories(requestParameters?: ProductCategoriesApiGetAllProductCategoriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductCategoryResponse, any, {}>>;
|
|
13544
|
+
getAllProductCategories(requestParameters?: ProductCategoriesApiGetAllProductCategoriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductCategoryResponse, any, {}, any>>;
|
|
12589
13545
|
/**
|
|
12590
13546
|
*
|
|
12591
13547
|
* @summary Returns the requested productcategory
|
|
@@ -12594,7 +13550,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12594
13550
|
* @throws {RequiredError}
|
|
12595
13551
|
* @memberof ProductCategoriesApi
|
|
12596
13552
|
*/
|
|
12597
|
-
getSingleProductCategory(requestParameters: ProductCategoriesApiGetSingleProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13553
|
+
getSingleProductCategory(requestParameters: ProductCategoriesApiGetSingleProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12598
13554
|
/**
|
|
12599
13555
|
*
|
|
12600
13556
|
* @summary Update an existing productcategory.
|
|
@@ -12603,7 +13559,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12603
13559
|
* @throws {RequiredError}
|
|
12604
13560
|
* @memberof ProductCategoriesApi
|
|
12605
13561
|
*/
|
|
12606
|
-
updateProductCategory(requestParameters: ProductCategoriesApiUpdateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13562
|
+
updateProductCategory(requestParameters: ProductCategoriesApiUpdateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12607
13563
|
}
|
|
12608
13564
|
/**
|
|
12609
13565
|
* ProductsApi - axios parameter creator
|
|
@@ -12884,7 +13840,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12884
13840
|
* @throws {RequiredError}
|
|
12885
13841
|
* @memberof ProductsApi
|
|
12886
13842
|
*/
|
|
12887
|
-
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13843
|
+
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
12888
13844
|
/**
|
|
12889
13845
|
*
|
|
12890
13846
|
* @summary (Soft) delete the given product. Cannot be undone.
|
|
@@ -12893,7 +13849,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12893
13849
|
* @throws {RequiredError}
|
|
12894
13850
|
* @memberof ProductsApi
|
|
12895
13851
|
*/
|
|
12896
|
-
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
13852
|
+
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
12897
13853
|
/**
|
|
12898
13854
|
*
|
|
12899
13855
|
* @summary Returns all existing products
|
|
@@ -12902,7 +13858,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12902
13858
|
* @throws {RequiredError}
|
|
12903
13859
|
* @memberof ProductsApi
|
|
12904
13860
|
*/
|
|
12905
|
-
getAllProducts(requestParameters?: ProductsApiGetAllProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}>>;
|
|
13861
|
+
getAllProducts(requestParameters?: ProductsApiGetAllProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}, any>>;
|
|
12906
13862
|
/**
|
|
12907
13863
|
*
|
|
12908
13864
|
* @summary Returns the requested product
|
|
@@ -12911,7 +13867,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12911
13867
|
* @throws {RequiredError}
|
|
12912
13868
|
* @memberof ProductsApi
|
|
12913
13869
|
*/
|
|
12914
|
-
getSingleProduct(requestParameters: ProductsApiGetSingleProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13870
|
+
getSingleProduct(requestParameters: ProductsApiGetSingleProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
12915
13871
|
/**
|
|
12916
13872
|
*
|
|
12917
13873
|
* @summary Update an existing product.
|
|
@@ -12920,7 +13876,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12920
13876
|
* @throws {RequiredError}
|
|
12921
13877
|
* @memberof ProductsApi
|
|
12922
13878
|
*/
|
|
12923
|
-
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13879
|
+
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
12924
13880
|
/**
|
|
12925
13881
|
*
|
|
12926
13882
|
* @summary Upload a new image for a product
|
|
@@ -12929,7 +13885,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12929
13885
|
* @throws {RequiredError}
|
|
12930
13886
|
* @memberof ProductsApi
|
|
12931
13887
|
*/
|
|
12932
|
-
updateProductImage(requestParameters: ProductsApiUpdateProductImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13888
|
+
updateProductImage(requestParameters: ProductsApiUpdateProductImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
12933
13889
|
}
|
|
12934
13890
|
/**
|
|
12935
13891
|
* RbacApi - axios parameter creator
|
|
@@ -13284,7 +14240,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13284
14240
|
* @throws {RequiredError}
|
|
13285
14241
|
* @memberof RbacApi
|
|
13286
14242
|
*/
|
|
13287
|
-
addPermissions(requestParameters: RbacApiAddPermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse[], any, {}>>;
|
|
14243
|
+
addPermissions(requestParameters: RbacApiAddPermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse[], any, {}, any>>;
|
|
13288
14244
|
/**
|
|
13289
14245
|
*
|
|
13290
14246
|
* @summary Create a new role
|
|
@@ -13293,7 +14249,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13293
14249
|
* @throws {RequiredError}
|
|
13294
14250
|
* @memberof RbacApi
|
|
13295
14251
|
*/
|
|
13296
|
-
createRole(requestParameters: RbacApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}>>;
|
|
14252
|
+
createRole(requestParameters: RbacApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}, any>>;
|
|
13297
14253
|
/**
|
|
13298
14254
|
*
|
|
13299
14255
|
* @summary Delete a permission from an existing role
|
|
@@ -13302,7 +14258,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13302
14258
|
* @throws {RequiredError}
|
|
13303
14259
|
* @memberof RbacApi
|
|
13304
14260
|
*/
|
|
13305
|
-
deletePermission(requestParameters: RbacApiDeletePermissionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14261
|
+
deletePermission(requestParameters: RbacApiDeletePermissionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13306
14262
|
/**
|
|
13307
14263
|
*
|
|
13308
14264
|
* @summary Delete an existing role
|
|
@@ -13311,7 +14267,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13311
14267
|
* @throws {RequiredError}
|
|
13312
14268
|
* @memberof RbacApi
|
|
13313
14269
|
*/
|
|
13314
|
-
deleteRole(requestParameters: RbacApiDeleteRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14270
|
+
deleteRole(requestParameters: RbacApiDeleteRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13315
14271
|
/**
|
|
13316
14272
|
*
|
|
13317
14273
|
* @summary Get all existing roles
|
|
@@ -13319,7 +14275,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13319
14275
|
* @throws {RequiredError}
|
|
13320
14276
|
* @memberof RbacApi
|
|
13321
14277
|
*/
|
|
13322
|
-
getAllRoles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}>>;
|
|
14278
|
+
getAllRoles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}, any>>;
|
|
13323
14279
|
/**
|
|
13324
14280
|
*
|
|
13325
14281
|
* @summary Get all users linked to a specific role
|
|
@@ -13328,7 +14284,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13328
14284
|
* @throws {RequiredError}
|
|
13329
14285
|
* @memberof RbacApi
|
|
13330
14286
|
*/
|
|
13331
|
-
getRoleUsers(requestParameters: RbacApiGetRoleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
14287
|
+
getRoleUsers(requestParameters: RbacApiGetRoleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
13332
14288
|
/**
|
|
13333
14289
|
*
|
|
13334
14290
|
* @summary Get a single existing role with its permissions
|
|
@@ -13337,7 +14293,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13337
14293
|
* @throws {RequiredError}
|
|
13338
14294
|
* @memberof RbacApi
|
|
13339
14295
|
*/
|
|
13340
|
-
getSingleRole(requestParameters: RbacApiGetSingleRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse, any, {}>>;
|
|
14296
|
+
getSingleRole(requestParameters: RbacApiGetSingleRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse, any, {}, any>>;
|
|
13341
14297
|
/**
|
|
13342
14298
|
*
|
|
13343
14299
|
* @summary Update an existing role
|
|
@@ -13346,7 +14302,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13346
14302
|
* @throws {RequiredError}
|
|
13347
14303
|
* @memberof RbacApi
|
|
13348
14304
|
*/
|
|
13349
|
-
updateRole(requestParameters: RbacApiUpdateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}>>;
|
|
14305
|
+
updateRole(requestParameters: RbacApiUpdateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}, any>>;
|
|
13350
14306
|
}
|
|
13351
14307
|
/**
|
|
13352
14308
|
* RootApi - axios parameter creator
|
|
@@ -13401,7 +14357,7 @@ export declare class RootApi extends BaseAPI {
|
|
|
13401
14357
|
* @throws {RequiredError}
|
|
13402
14358
|
* @memberof RootApi
|
|
13403
14359
|
*/
|
|
13404
|
-
ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatusResponse, any, {}>>;
|
|
14360
|
+
ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatusResponse, any, {}, any>>;
|
|
13405
14361
|
}
|
|
13406
14362
|
/**
|
|
13407
14363
|
* SellerPayoutsApi - axios parameter creator
|
|
@@ -13743,7 +14699,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13743
14699
|
* @throws {RequiredError}
|
|
13744
14700
|
* @memberof SellerPayoutsApi
|
|
13745
14701
|
*/
|
|
13746
|
-
createSellerPayout(requestParameters: SellerPayoutsApiCreateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14702
|
+
createSellerPayout(requestParameters: SellerPayoutsApiCreateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
13747
14703
|
/**
|
|
13748
14704
|
*
|
|
13749
14705
|
* @summary Delete an existing seller payout
|
|
@@ -13752,7 +14708,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13752
14708
|
* @throws {RequiredError}
|
|
13753
14709
|
* @memberof SellerPayoutsApi
|
|
13754
14710
|
*/
|
|
13755
|
-
deleteSellerPayout(requestParameters: SellerPayoutsApiDeleteSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14711
|
+
deleteSellerPayout(requestParameters: SellerPayoutsApiDeleteSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13756
14712
|
/**
|
|
13757
14713
|
*
|
|
13758
14714
|
* @summary Return all seller payouts
|
|
@@ -13761,7 +14717,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13761
14717
|
* @throws {RequiredError}
|
|
13762
14718
|
* @memberof SellerPayoutsApi
|
|
13763
14719
|
*/
|
|
13764
|
-
getAllSellerPayouts(requestParameters?: SellerPayoutsApiGetAllSellerPayoutsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSellerPayoutResponse, any, {}>>;
|
|
14720
|
+
getAllSellerPayouts(requestParameters?: SellerPayoutsApiGetAllSellerPayoutsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSellerPayoutResponse, any, {}, any>>;
|
|
13765
14721
|
/**
|
|
13766
14722
|
*
|
|
13767
14723
|
* @summary Get a single seller payout\'s sales report
|
|
@@ -13770,7 +14726,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13770
14726
|
* @throws {RequiredError}
|
|
13771
14727
|
* @memberof SellerPayoutsApi
|
|
13772
14728
|
*/
|
|
13773
|
-
getSellerPayoutReport(requestParameters: SellerPayoutsApiGetSellerPayoutReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
14729
|
+
getSellerPayoutReport(requestParameters: SellerPayoutsApiGetSellerPayoutReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
13774
14730
|
/**
|
|
13775
14731
|
*
|
|
13776
14732
|
* @summary Get a single seller payout\'s sales report as PDF
|
|
@@ -13779,7 +14735,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13779
14735
|
* @throws {RequiredError}
|
|
13780
14736
|
* @memberof SellerPayoutsApi
|
|
13781
14737
|
*/
|
|
13782
|
-
getSellerPayoutReportPdf(requestParameters: SellerPayoutsApiGetSellerPayoutReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
14738
|
+
getSellerPayoutReportPdf(requestParameters: SellerPayoutsApiGetSellerPayoutReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
13783
14739
|
/**
|
|
13784
14740
|
*
|
|
13785
14741
|
* @summary Get a single seller payout
|
|
@@ -13788,7 +14744,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13788
14744
|
* @throws {RequiredError}
|
|
13789
14745
|
* @memberof SellerPayoutsApi
|
|
13790
14746
|
*/
|
|
13791
|
-
getSingleSellerPayout(requestParameters: SellerPayoutsApiGetSingleSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14747
|
+
getSingleSellerPayout(requestParameters: SellerPayoutsApiGetSingleSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
13792
14748
|
/**
|
|
13793
14749
|
*
|
|
13794
14750
|
* @summary Update an existing seller payout
|
|
@@ -13797,7 +14753,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
13797
14753
|
* @throws {RequiredError}
|
|
13798
14754
|
* @memberof SellerPayoutsApi
|
|
13799
14755
|
*/
|
|
13800
|
-
updateSellerPayout(requestParameters: SellerPayoutsApiUpdateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14756
|
+
updateSellerPayout(requestParameters: SellerPayoutsApiUpdateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
13801
14757
|
}
|
|
13802
14758
|
/**
|
|
13803
14759
|
* ServerSettingsApi - axios parameter creator
|
|
@@ -13926,7 +14882,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
13926
14882
|
* @throws {RequiredError}
|
|
13927
14883
|
* @memberof ServerSettingsApi
|
|
13928
14884
|
*/
|
|
13929
|
-
getWrappedEnabled(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedEnabledResponse, any, {}>>;
|
|
14885
|
+
getWrappedEnabled(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedEnabledResponse, any, {}, any>>;
|
|
13930
14886
|
/**
|
|
13931
14887
|
*
|
|
13932
14888
|
* @summary Enable/disable maintenance mode
|
|
@@ -13935,7 +14891,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
13935
14891
|
* @throws {RequiredError}
|
|
13936
14892
|
* @memberof ServerSettingsApi
|
|
13937
14893
|
*/
|
|
13938
|
-
setMaintenanceMode(requestParameters: ServerSettingsApiSetMaintenanceModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14894
|
+
setMaintenanceMode(requestParameters: ServerSettingsApiSetMaintenanceModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13939
14895
|
/**
|
|
13940
14896
|
*
|
|
13941
14897
|
* @summary Set the wrapped-enabled server setting
|
|
@@ -13944,7 +14900,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
13944
14900
|
* @throws {RequiredError}
|
|
13945
14901
|
* @memberof ServerSettingsApi
|
|
13946
14902
|
*/
|
|
13947
|
-
setWrappedEnabled(requestParameters: ServerSettingsApiSetWrappedEnabledRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14903
|
+
setWrappedEnabled(requestParameters: ServerSettingsApiSetWrappedEnabledRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13948
14904
|
}
|
|
13949
14905
|
/**
|
|
13950
14906
|
* StripeApi - axios parameter creator
|
|
@@ -13966,6 +14922,13 @@ export declare const StripeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13966
14922
|
* @throws {RequiredError}
|
|
13967
14923
|
*/
|
|
13968
14924
|
getStripePublicKey: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14925
|
+
/**
|
|
14926
|
+
*
|
|
14927
|
+
* @summary Webhook for Stripe event updates
|
|
14928
|
+
* @param {*} [options] Override http request option.
|
|
14929
|
+
* @throws {RequiredError}
|
|
14930
|
+
*/
|
|
14931
|
+
webhook: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13969
14932
|
};
|
|
13970
14933
|
/**
|
|
13971
14934
|
* StripeApi - functional programming interface
|
|
@@ -13987,6 +14950,13 @@ export declare const StripeApiFp: (configuration?: Configuration) => {
|
|
|
13987
14950
|
* @throws {RequiredError}
|
|
13988
14951
|
*/
|
|
13989
14952
|
getStripePublicKey(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
14953
|
+
/**
|
|
14954
|
+
*
|
|
14955
|
+
* @summary Webhook for Stripe event updates
|
|
14956
|
+
* @param {*} [options] Override http request option.
|
|
14957
|
+
* @throws {RequiredError}
|
|
14958
|
+
*/
|
|
14959
|
+
webhook(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13990
14960
|
};
|
|
13991
14961
|
/**
|
|
13992
14962
|
* StripeApi - factory interface
|
|
@@ -14008,6 +14978,13 @@ export declare const StripeApiFactory: (configuration?: Configuration, basePath?
|
|
|
14008
14978
|
* @throws {RequiredError}
|
|
14009
14979
|
*/
|
|
14010
14980
|
getStripePublicKey(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
14981
|
+
/**
|
|
14982
|
+
*
|
|
14983
|
+
* @summary Webhook for Stripe event updates
|
|
14984
|
+
* @param {*} [options] Override http request option.
|
|
14985
|
+
* @throws {RequiredError}
|
|
14986
|
+
*/
|
|
14987
|
+
webhook(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14011
14988
|
};
|
|
14012
14989
|
/**
|
|
14013
14990
|
* Request parameters for deposit operation in StripeApi.
|
|
@@ -14037,7 +15014,7 @@ export declare class StripeApi extends BaseAPI {
|
|
|
14037
15014
|
* @throws {RequiredError}
|
|
14038
15015
|
* @memberof StripeApi
|
|
14039
15016
|
*/
|
|
14040
|
-
deposit(requestParameters: StripeApiDepositRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StripePaymentIntentResponse, any, {}>>;
|
|
15017
|
+
deposit(requestParameters: StripeApiDepositRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StripePaymentIntentResponse, any, {}, any>>;
|
|
14041
15018
|
/**
|
|
14042
15019
|
*
|
|
14043
15020
|
* @summary Get the Stripe public key
|
|
@@ -14045,7 +15022,15 @@ export declare class StripeApi extends BaseAPI {
|
|
|
14045
15022
|
* @throws {RequiredError}
|
|
14046
15023
|
* @memberof StripeApi
|
|
14047
15024
|
*/
|
|
14048
|
-
getStripePublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
15025
|
+
getStripePublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
15026
|
+
/**
|
|
15027
|
+
*
|
|
15028
|
+
* @summary Webhook for Stripe event updates
|
|
15029
|
+
* @param {*} [options] Override http request option.
|
|
15030
|
+
* @throws {RequiredError}
|
|
15031
|
+
* @memberof StripeApi
|
|
15032
|
+
*/
|
|
15033
|
+
webhook(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
14049
15034
|
}
|
|
14050
15035
|
/**
|
|
14051
15036
|
* SyncApi - axios parameter creator
|
|
@@ -14117,7 +15102,7 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14117
15102
|
* @throws {RequiredError}
|
|
14118
15103
|
* @memberof SyncApi
|
|
14119
15104
|
*/
|
|
14120
|
-
getUserSyncResults(requestParameters?: SyncApiGetUserSyncResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
15105
|
+
getUserSyncResults(requestParameters?: SyncApiGetUserSyncResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}, any>>;
|
|
14121
15106
|
}
|
|
14122
15107
|
/**
|
|
14123
15108
|
* @export
|
|
@@ -14127,6 +15112,253 @@ export declare const GetUserSyncResultsServiceEnum: {
|
|
|
14127
15112
|
readonly Gewisdb: "GEWISDB";
|
|
14128
15113
|
};
|
|
14129
15114
|
export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
|
|
15115
|
+
/**
|
|
15116
|
+
* TerminalPaymentsApi - axios parameter creator
|
|
15117
|
+
* @export
|
|
15118
|
+
*/
|
|
15119
|
+
export declare const TerminalPaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
15120
|
+
/**
|
|
15121
|
+
*
|
|
15122
|
+
* @summary Cancel a Terminal Payment that is created/processing
|
|
15123
|
+
* @param {number} id The ID of the terminal payment
|
|
15124
|
+
* @param {*} [options] Override http request option.
|
|
15125
|
+
* @throws {RequiredError}
|
|
15126
|
+
*/
|
|
15127
|
+
cancelTerminalPayment: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15128
|
+
/**
|
|
15129
|
+
*
|
|
15130
|
+
* @summary Create a terminal payment before executing.
|
|
15131
|
+
* @param {CreateTerminalPaymentRequest} createTerminalPaymentRequest The terminal payment that should be created.
|
|
15132
|
+
* @param {*} [options] Override http request option.
|
|
15133
|
+
* @throws {RequiredError}
|
|
15134
|
+
*/
|
|
15135
|
+
createTerminalPayment: (createTerminalPaymentRequest: CreateTerminalPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15136
|
+
/**
|
|
15137
|
+
*
|
|
15138
|
+
* @summary Get single terminal payment by ID
|
|
15139
|
+
* @param {number} id The ID of the terminal payment
|
|
15140
|
+
* @param {*} [options] Override http request option.
|
|
15141
|
+
* @throws {RequiredError}
|
|
15142
|
+
*/
|
|
15143
|
+
getSingleTerminalPayment: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15144
|
+
/**
|
|
15145
|
+
*
|
|
15146
|
+
* @summary Get all Stripe terminals
|
|
15147
|
+
* @param {*} [options] Override http request option.
|
|
15148
|
+
* @throws {RequiredError}
|
|
15149
|
+
*/
|
|
15150
|
+
getStripeTerminals: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15151
|
+
/**
|
|
15152
|
+
*
|
|
15153
|
+
* @summary Start the payment process on the terminal for the TerminalPayment with the given ID
|
|
15154
|
+
* @param {number} id The ID of the terminal payment
|
|
15155
|
+
* @param {ProcessTerminalPaymentRequest} processTerminalPaymentRequest Payment options
|
|
15156
|
+
* @param {*} [options] Override http request option.
|
|
15157
|
+
* @throws {RequiredError}
|
|
15158
|
+
*/
|
|
15159
|
+
startTerminalPayment: (id: number, processTerminalPaymentRequest: ProcessTerminalPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15160
|
+
};
|
|
15161
|
+
/**
|
|
15162
|
+
* TerminalPaymentsApi - functional programming interface
|
|
15163
|
+
* @export
|
|
15164
|
+
*/
|
|
15165
|
+
export declare const TerminalPaymentsApiFp: (configuration?: Configuration) => {
|
|
15166
|
+
/**
|
|
15167
|
+
*
|
|
15168
|
+
* @summary Cancel a Terminal Payment that is created/processing
|
|
15169
|
+
* @param {number} id The ID of the terminal payment
|
|
15170
|
+
* @param {*} [options] Override http request option.
|
|
15171
|
+
* @throws {RequiredError}
|
|
15172
|
+
*/
|
|
15173
|
+
cancelTerminalPayment(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TerminalPaymentResponse>>;
|
|
15174
|
+
/**
|
|
15175
|
+
*
|
|
15176
|
+
* @summary Create a terminal payment before executing.
|
|
15177
|
+
* @param {CreateTerminalPaymentRequest} createTerminalPaymentRequest The terminal payment that should be created.
|
|
15178
|
+
* @param {*} [options] Override http request option.
|
|
15179
|
+
* @throws {RequiredError}
|
|
15180
|
+
*/
|
|
15181
|
+
createTerminalPayment(createTerminalPaymentRequest: CreateTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TerminalPaymentResponse>>;
|
|
15182
|
+
/**
|
|
15183
|
+
*
|
|
15184
|
+
* @summary Get single terminal payment by ID
|
|
15185
|
+
* @param {number} id The ID of the terminal payment
|
|
15186
|
+
* @param {*} [options] Override http request option.
|
|
15187
|
+
* @throws {RequiredError}
|
|
15188
|
+
*/
|
|
15189
|
+
getSingleTerminalPayment(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TerminalPaymentResponse>>;
|
|
15190
|
+
/**
|
|
15191
|
+
*
|
|
15192
|
+
* @summary Get all Stripe terminals
|
|
15193
|
+
* @param {*} [options] Override http request option.
|
|
15194
|
+
* @throws {RequiredError}
|
|
15195
|
+
*/
|
|
15196
|
+
getStripeTerminals(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StripePaymentTerminalResponse>>>;
|
|
15197
|
+
/**
|
|
15198
|
+
*
|
|
15199
|
+
* @summary Start the payment process on the terminal for the TerminalPayment with the given ID
|
|
15200
|
+
* @param {number} id The ID of the terminal payment
|
|
15201
|
+
* @param {ProcessTerminalPaymentRequest} processTerminalPaymentRequest Payment options
|
|
15202
|
+
* @param {*} [options] Override http request option.
|
|
15203
|
+
* @throws {RequiredError}
|
|
15204
|
+
*/
|
|
15205
|
+
startTerminalPayment(id: number, processTerminalPaymentRequest: ProcessTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15206
|
+
};
|
|
15207
|
+
/**
|
|
15208
|
+
* TerminalPaymentsApi - factory interface
|
|
15209
|
+
* @export
|
|
15210
|
+
*/
|
|
15211
|
+
export declare const TerminalPaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
15212
|
+
/**
|
|
15213
|
+
*
|
|
15214
|
+
* @summary Cancel a Terminal Payment that is created/processing
|
|
15215
|
+
* @param {TerminalPaymentsApiCancelTerminalPaymentRequest} requestParameters Request parameters.
|
|
15216
|
+
* @param {*} [options] Override http request option.
|
|
15217
|
+
* @throws {RequiredError}
|
|
15218
|
+
*/
|
|
15219
|
+
cancelTerminalPayment(requestParameters: TerminalPaymentsApiCancelTerminalPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<TerminalPaymentResponse>;
|
|
15220
|
+
/**
|
|
15221
|
+
*
|
|
15222
|
+
* @summary Create a terminal payment before executing.
|
|
15223
|
+
* @param {TerminalPaymentsApiCreateTerminalPaymentRequest} requestParameters Request parameters.
|
|
15224
|
+
* @param {*} [options] Override http request option.
|
|
15225
|
+
* @throws {RequiredError}
|
|
15226
|
+
*/
|
|
15227
|
+
createTerminalPayment(requestParameters: TerminalPaymentsApiCreateTerminalPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<TerminalPaymentResponse>;
|
|
15228
|
+
/**
|
|
15229
|
+
*
|
|
15230
|
+
* @summary Get single terminal payment by ID
|
|
15231
|
+
* @param {TerminalPaymentsApiGetSingleTerminalPaymentRequest} requestParameters Request parameters.
|
|
15232
|
+
* @param {*} [options] Override http request option.
|
|
15233
|
+
* @throws {RequiredError}
|
|
15234
|
+
*/
|
|
15235
|
+
getSingleTerminalPayment(requestParameters: TerminalPaymentsApiGetSingleTerminalPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<TerminalPaymentResponse>;
|
|
15236
|
+
/**
|
|
15237
|
+
*
|
|
15238
|
+
* @summary Get all Stripe terminals
|
|
15239
|
+
* @param {*} [options] Override http request option.
|
|
15240
|
+
* @throws {RequiredError}
|
|
15241
|
+
*/
|
|
15242
|
+
getStripeTerminals(options?: RawAxiosRequestConfig): AxiosPromise<Array<StripePaymentTerminalResponse>>;
|
|
15243
|
+
/**
|
|
15244
|
+
*
|
|
15245
|
+
* @summary Start the payment process on the terminal for the TerminalPayment with the given ID
|
|
15246
|
+
* @param {TerminalPaymentsApiStartTerminalPaymentRequest} requestParameters Request parameters.
|
|
15247
|
+
* @param {*} [options] Override http request option.
|
|
15248
|
+
* @throws {RequiredError}
|
|
15249
|
+
*/
|
|
15250
|
+
startTerminalPayment(requestParameters: TerminalPaymentsApiStartTerminalPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15251
|
+
};
|
|
15252
|
+
/**
|
|
15253
|
+
* Request parameters for cancelTerminalPayment operation in TerminalPaymentsApi.
|
|
15254
|
+
* @export
|
|
15255
|
+
* @interface TerminalPaymentsApiCancelTerminalPaymentRequest
|
|
15256
|
+
*/
|
|
15257
|
+
export interface TerminalPaymentsApiCancelTerminalPaymentRequest {
|
|
15258
|
+
/**
|
|
15259
|
+
* The ID of the terminal payment
|
|
15260
|
+
* @type {number}
|
|
15261
|
+
* @memberof TerminalPaymentsApiCancelTerminalPayment
|
|
15262
|
+
*/
|
|
15263
|
+
readonly id: number;
|
|
15264
|
+
}
|
|
15265
|
+
/**
|
|
15266
|
+
* Request parameters for createTerminalPayment operation in TerminalPaymentsApi.
|
|
15267
|
+
* @export
|
|
15268
|
+
* @interface TerminalPaymentsApiCreateTerminalPaymentRequest
|
|
15269
|
+
*/
|
|
15270
|
+
export interface TerminalPaymentsApiCreateTerminalPaymentRequest {
|
|
15271
|
+
/**
|
|
15272
|
+
* The terminal payment that should be created.
|
|
15273
|
+
* @type {CreateTerminalPaymentRequest}
|
|
15274
|
+
* @memberof TerminalPaymentsApiCreateTerminalPayment
|
|
15275
|
+
*/
|
|
15276
|
+
readonly createTerminalPaymentRequest: CreateTerminalPaymentRequest;
|
|
15277
|
+
}
|
|
15278
|
+
/**
|
|
15279
|
+
* Request parameters for getSingleTerminalPayment operation in TerminalPaymentsApi.
|
|
15280
|
+
* @export
|
|
15281
|
+
* @interface TerminalPaymentsApiGetSingleTerminalPaymentRequest
|
|
15282
|
+
*/
|
|
15283
|
+
export interface TerminalPaymentsApiGetSingleTerminalPaymentRequest {
|
|
15284
|
+
/**
|
|
15285
|
+
* The ID of the terminal payment
|
|
15286
|
+
* @type {number}
|
|
15287
|
+
* @memberof TerminalPaymentsApiGetSingleTerminalPayment
|
|
15288
|
+
*/
|
|
15289
|
+
readonly id: number;
|
|
15290
|
+
}
|
|
15291
|
+
/**
|
|
15292
|
+
* Request parameters for startTerminalPayment operation in TerminalPaymentsApi.
|
|
15293
|
+
* @export
|
|
15294
|
+
* @interface TerminalPaymentsApiStartTerminalPaymentRequest
|
|
15295
|
+
*/
|
|
15296
|
+
export interface TerminalPaymentsApiStartTerminalPaymentRequest {
|
|
15297
|
+
/**
|
|
15298
|
+
* The ID of the terminal payment
|
|
15299
|
+
* @type {number}
|
|
15300
|
+
* @memberof TerminalPaymentsApiStartTerminalPayment
|
|
15301
|
+
*/
|
|
15302
|
+
readonly id: number;
|
|
15303
|
+
/**
|
|
15304
|
+
* Payment options
|
|
15305
|
+
* @type {ProcessTerminalPaymentRequest}
|
|
15306
|
+
* @memberof TerminalPaymentsApiStartTerminalPayment
|
|
15307
|
+
*/
|
|
15308
|
+
readonly processTerminalPaymentRequest: ProcessTerminalPaymentRequest;
|
|
15309
|
+
}
|
|
15310
|
+
/**
|
|
15311
|
+
* TerminalPaymentsApi - object-oriented interface
|
|
15312
|
+
* @export
|
|
15313
|
+
* @class TerminalPaymentsApi
|
|
15314
|
+
* @extends {BaseAPI}
|
|
15315
|
+
*/
|
|
15316
|
+
export declare class TerminalPaymentsApi extends BaseAPI {
|
|
15317
|
+
/**
|
|
15318
|
+
*
|
|
15319
|
+
* @summary Cancel a Terminal Payment that is created/processing
|
|
15320
|
+
* @param {TerminalPaymentsApiCancelTerminalPaymentRequest} requestParameters Request parameters.
|
|
15321
|
+
* @param {*} [options] Override http request option.
|
|
15322
|
+
* @throws {RequiredError}
|
|
15323
|
+
* @memberof TerminalPaymentsApi
|
|
15324
|
+
*/
|
|
15325
|
+
cancelTerminalPayment(requestParameters: TerminalPaymentsApiCancelTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TerminalPaymentResponse, any, {}, any>>;
|
|
15326
|
+
/**
|
|
15327
|
+
*
|
|
15328
|
+
* @summary Create a terminal payment before executing.
|
|
15329
|
+
* @param {TerminalPaymentsApiCreateTerminalPaymentRequest} requestParameters Request parameters.
|
|
15330
|
+
* @param {*} [options] Override http request option.
|
|
15331
|
+
* @throws {RequiredError}
|
|
15332
|
+
* @memberof TerminalPaymentsApi
|
|
15333
|
+
*/
|
|
15334
|
+
createTerminalPayment(requestParameters: TerminalPaymentsApiCreateTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TerminalPaymentResponse, any, {}, any>>;
|
|
15335
|
+
/**
|
|
15336
|
+
*
|
|
15337
|
+
* @summary Get single terminal payment by ID
|
|
15338
|
+
* @param {TerminalPaymentsApiGetSingleTerminalPaymentRequest} requestParameters Request parameters.
|
|
15339
|
+
* @param {*} [options] Override http request option.
|
|
15340
|
+
* @throws {RequiredError}
|
|
15341
|
+
* @memberof TerminalPaymentsApi
|
|
15342
|
+
*/
|
|
15343
|
+
getSingleTerminalPayment(requestParameters: TerminalPaymentsApiGetSingleTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TerminalPaymentResponse, any, {}, any>>;
|
|
15344
|
+
/**
|
|
15345
|
+
*
|
|
15346
|
+
* @summary Get all Stripe terminals
|
|
15347
|
+
* @param {*} [options] Override http request option.
|
|
15348
|
+
* @throws {RequiredError}
|
|
15349
|
+
* @memberof TerminalPaymentsApi
|
|
15350
|
+
*/
|
|
15351
|
+
getStripeTerminals(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StripePaymentTerminalResponse[], any, {}, any>>;
|
|
15352
|
+
/**
|
|
15353
|
+
*
|
|
15354
|
+
* @summary Start the payment process on the terminal for the TerminalPayment with the given ID
|
|
15355
|
+
* @param {TerminalPaymentsApiStartTerminalPaymentRequest} requestParameters Request parameters.
|
|
15356
|
+
* @param {*} [options] Override http request option.
|
|
15357
|
+
* @throws {RequiredError}
|
|
15358
|
+
* @memberof TerminalPaymentsApi
|
|
15359
|
+
*/
|
|
15360
|
+
startTerminalPayment(requestParameters: TerminalPaymentsApiStartTerminalPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
15361
|
+
}
|
|
14130
15362
|
/**
|
|
14131
15363
|
* TermsOfServiceApi - axios parameter creator
|
|
14132
15364
|
* @export
|
|
@@ -14217,7 +15449,7 @@ export declare class TermsOfServiceApi extends BaseAPI {
|
|
|
14217
15449
|
* @throws {RequiredError}
|
|
14218
15450
|
* @memberof TermsOfServiceApi
|
|
14219
15451
|
*/
|
|
14220
|
-
getLatestTermsOfService(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}>>;
|
|
15452
|
+
getLatestTermsOfService(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}, any>>;
|
|
14221
15453
|
/**
|
|
14222
15454
|
*
|
|
14223
15455
|
* @summary Get a terms of service version by version number
|
|
@@ -14226,7 +15458,7 @@ export declare class TermsOfServiceApi extends BaseAPI {
|
|
|
14226
15458
|
* @throws {RequiredError}
|
|
14227
15459
|
* @memberof TermsOfServiceApi
|
|
14228
15460
|
*/
|
|
14229
|
-
getTermsOfService(requestParameters: TermsOfServiceApiGetTermsOfServiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}>>;
|
|
15461
|
+
getTermsOfService(requestParameters: TermsOfServiceApiGetTermsOfServiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}, any>>;
|
|
14230
15462
|
}
|
|
14231
15463
|
/**
|
|
14232
15464
|
* TestOperationsOfTheTestControllerApi - axios parameter creator
|
|
@@ -14281,7 +15513,7 @@ export declare class TestOperationsOfTheTestControllerApi extends BaseAPI {
|
|
|
14281
15513
|
* @throws {RequiredError}
|
|
14282
15514
|
* @memberof TestOperationsOfTheTestControllerApi
|
|
14283
15515
|
*/
|
|
14284
|
-
helloworld(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15516
|
+
helloworld(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
14285
15517
|
}
|
|
14286
15518
|
/**
|
|
14287
15519
|
* TransactionSummariesApi - axios parameter creator
|
|
@@ -14357,7 +15589,7 @@ export declare class TransactionSummariesApi extends BaseAPI {
|
|
|
14357
15589
|
* @throws {RequiredError}
|
|
14358
15590
|
* @memberof TransactionSummariesApi
|
|
14359
15591
|
*/
|
|
14360
|
-
getSingleContainerSummary(requestParameters: TransactionSummariesApiGetSingleContainerSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerSummaryResponse[], any, {}>>;
|
|
15592
|
+
getSingleContainerSummary(requestParameters: TransactionSummariesApiGetSingleContainerSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerSummaryResponse[], any, {}, any>>;
|
|
14361
15593
|
}
|
|
14362
15594
|
/**
|
|
14363
15595
|
* TransactionsApi - axios parameter creator
|
|
@@ -14784,7 +16016,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14784
16016
|
* @throws {RequiredError}
|
|
14785
16017
|
* @memberof TransactionsApi
|
|
14786
16018
|
*/
|
|
14787
|
-
createTransaction(requestParameters: TransactionsApiCreateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16019
|
+
createTransaction(requestParameters: TransactionsApiCreateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
14788
16020
|
/**
|
|
14789
16021
|
*
|
|
14790
16022
|
* @summary Deletes a transaction
|
|
@@ -14793,7 +16025,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14793
16025
|
* @throws {RequiredError}
|
|
14794
16026
|
* @memberof TransactionsApi
|
|
14795
16027
|
*/
|
|
14796
|
-
deleteTransaction(requestParameters: TransactionsApiDeleteTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16028
|
+
deleteTransaction(requestParameters: TransactionsApiDeleteTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
14797
16029
|
/**
|
|
14798
16030
|
*
|
|
14799
16031
|
* @summary Get a list of all transactions
|
|
@@ -14802,7 +16034,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14802
16034
|
* @throws {RequiredError}
|
|
14803
16035
|
* @memberof TransactionsApi
|
|
14804
16036
|
*/
|
|
14805
|
-
getAllTransactions(requestParameters?: TransactionsApiGetAllTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
16037
|
+
getAllTransactions(requestParameters?: TransactionsApiGetAllTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
14806
16038
|
/**
|
|
14807
16039
|
*
|
|
14808
16040
|
* @summary Get a single transaction
|
|
@@ -14811,7 +16043,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14811
16043
|
* @throws {RequiredError}
|
|
14812
16044
|
* @memberof TransactionsApi
|
|
14813
16045
|
*/
|
|
14814
|
-
getSingleTransaction(requestParameters: TransactionsApiGetSingleTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16046
|
+
getSingleTransaction(requestParameters: TransactionsApiGetSingleTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
14815
16047
|
/**
|
|
14816
16048
|
*
|
|
14817
16049
|
* @summary Get all invoices containing subtransaction rows from this transaction
|
|
@@ -14820,7 +16052,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14820
16052
|
* @throws {RequiredError}
|
|
14821
16053
|
* @memberof TransactionsApi
|
|
14822
16054
|
*/
|
|
14823
|
-
getTransactionInvoices(requestParameters: TransactionsApiGetTransactionInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse[], any, {}>>;
|
|
16055
|
+
getTransactionInvoices(requestParameters: TransactionsApiGetTransactionInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse[], any, {}, any>>;
|
|
14824
16056
|
/**
|
|
14825
16057
|
*
|
|
14826
16058
|
* @summary Get the PDF of the transaction
|
|
@@ -14829,7 +16061,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14829
16061
|
* @throws {RequiredError}
|
|
14830
16062
|
* @memberof TransactionsApi
|
|
14831
16063
|
*/
|
|
14832
|
-
getTransactionPdf(requestParameters: TransactionsApiGetTransactionPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
16064
|
+
getTransactionPdf(requestParameters: TransactionsApiGetTransactionPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
14833
16065
|
/**
|
|
14834
16066
|
*
|
|
14835
16067
|
* @summary Updates the requested transaction
|
|
@@ -14838,7 +16070,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14838
16070
|
* @throws {RequiredError}
|
|
14839
16071
|
* @memberof TransactionsApi
|
|
14840
16072
|
*/
|
|
14841
|
-
updateTransaction(requestParameters: TransactionsApiUpdateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16073
|
+
updateTransaction(requestParameters: TransactionsApiUpdateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
14842
16074
|
/**
|
|
14843
16075
|
*
|
|
14844
16076
|
* @summary Function to validate the transaction before creating it
|
|
@@ -14847,7 +16079,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
14847
16079
|
* @throws {RequiredError}
|
|
14848
16080
|
* @memberof TransactionsApi
|
|
14849
16081
|
*/
|
|
14850
|
-
validateTransaction(requestParameters: TransactionsApiValidateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
16082
|
+
validateTransaction(requestParameters: TransactionsApiValidateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}, any>>;
|
|
14851
16083
|
}
|
|
14852
16084
|
/**
|
|
14853
16085
|
* TransfersApi - axios parameter creator
|
|
@@ -14958,7 +16190,7 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
14958
16190
|
* @param {*} [options] Override http request option.
|
|
14959
16191
|
* @throws {RequiredError}
|
|
14960
16192
|
*/
|
|
14961
|
-
getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16193
|
+
getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedTransferResponse>>;
|
|
14962
16194
|
/**
|
|
14963
16195
|
*
|
|
14964
16196
|
* @summary Returns the requested transfer
|
|
@@ -15027,7 +16259,7 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15027
16259
|
* @param {*} [options] Override http request option.
|
|
15028
16260
|
* @throws {RequiredError}
|
|
15029
16261
|
*/
|
|
15030
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16262
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedTransferResponse>;
|
|
15031
16263
|
/**
|
|
15032
16264
|
*
|
|
15033
16265
|
* @summary Returns the requested transfer
|
|
@@ -15245,7 +16477,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15245
16477
|
* @throws {RequiredError}
|
|
15246
16478
|
* @memberof TransfersApi
|
|
15247
16479
|
*/
|
|
15248
|
-
createTransfer(requestParameters: TransfersApiCreateTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}>>;
|
|
16480
|
+
createTransfer(requestParameters: TransfersApiCreateTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}, any>>;
|
|
15249
16481
|
/**
|
|
15250
16482
|
*
|
|
15251
16483
|
* @summary Deletes a transfer.
|
|
@@ -15254,7 +16486,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15254
16486
|
* @throws {RequiredError}
|
|
15255
16487
|
* @memberof TransfersApi
|
|
15256
16488
|
*/
|
|
15257
|
-
deleteTransfer(requestParameters: TransfersApiDeleteTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16489
|
+
deleteTransfer(requestParameters: TransfersApiDeleteTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
15258
16490
|
/**
|
|
15259
16491
|
*
|
|
15260
16492
|
* @summary Returns all existing transfers
|
|
@@ -15263,7 +16495,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15263
16495
|
* @throws {RequiredError}
|
|
15264
16496
|
* @memberof TransfersApi
|
|
15265
16497
|
*/
|
|
15266
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
16498
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}, any>>;
|
|
15267
16499
|
/**
|
|
15268
16500
|
*
|
|
15269
16501
|
* @summary Returns the requested transfer
|
|
@@ -15272,7 +16504,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15272
16504
|
* @throws {RequiredError}
|
|
15273
16505
|
* @memberof TransfersApi
|
|
15274
16506
|
*/
|
|
15275
|
-
getSingleTransfer(requestParameters: TransfersApiGetSingleTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}>>;
|
|
16507
|
+
getSingleTransfer(requestParameters: TransfersApiGetSingleTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}, any>>;
|
|
15276
16508
|
/**
|
|
15277
16509
|
*
|
|
15278
16510
|
* @summary Returns the aggregate (sum and count) of transfers matching the given filters
|
|
@@ -15281,7 +16513,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15281
16513
|
* @throws {RequiredError}
|
|
15282
16514
|
* @memberof TransfersApi
|
|
15283
16515
|
*/
|
|
15284
|
-
getTransferAggregate(requestParameters?: TransfersApiGetTransferAggregateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferAggregateResponse, any, {}>>;
|
|
16516
|
+
getTransferAggregate(requestParameters?: TransfersApiGetTransferAggregateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferAggregateResponse, any, {}, any>>;
|
|
15285
16517
|
/**
|
|
15286
16518
|
*
|
|
15287
16519
|
* @summary Get the PDF of the transfer
|
|
@@ -15290,7 +16522,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15290
16522
|
* @throws {RequiredError}
|
|
15291
16523
|
* @memberof TransfersApi
|
|
15292
16524
|
*/
|
|
15293
|
-
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
16525
|
+
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
15294
16526
|
/**
|
|
15295
16527
|
*
|
|
15296
16528
|
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
@@ -15299,7 +16531,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15299
16531
|
* @throws {RequiredError}
|
|
15300
16532
|
* @memberof TransfersApi
|
|
15301
16533
|
*/
|
|
15302
|
-
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}>>;
|
|
16534
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}, any>>;
|
|
15303
16535
|
}
|
|
15304
16536
|
/**
|
|
15305
16537
|
* UserNotificationPreferencesApi - axios parameter creator
|
|
@@ -15485,7 +16717,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15485
16717
|
* @throws {RequiredError}
|
|
15486
16718
|
* @memberof UserNotificationPreferencesApi
|
|
15487
16719
|
*/
|
|
15488
|
-
getAllUserNotificationPreferences(requestParameters?: UserNotificationPreferencesApiGetAllUserNotificationPreferencesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserNotificationPreferenceResponse, any, {}>>;
|
|
16720
|
+
getAllUserNotificationPreferences(requestParameters?: UserNotificationPreferencesApiGetAllUserNotificationPreferencesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15489
16721
|
/**
|
|
15490
16722
|
*
|
|
15491
16723
|
* @summary Return a single user notification preferences in the system.
|
|
@@ -15494,7 +16726,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15494
16726
|
* @throws {RequiredError}
|
|
15495
16727
|
* @memberof UserNotificationPreferencesApi
|
|
15496
16728
|
*/
|
|
15497
|
-
getSingleUserNotificationPreference(requestParameters: UserNotificationPreferencesApiGetSingleUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}>>;
|
|
16729
|
+
getSingleUserNotificationPreference(requestParameters: UserNotificationPreferencesApiGetSingleUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15498
16730
|
/**
|
|
15499
16731
|
*
|
|
15500
16732
|
* @summary Update a user notification preferences in the system.
|
|
@@ -15503,7 +16735,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15503
16735
|
* @throws {RequiredError}
|
|
15504
16736
|
* @memberof UserNotificationPreferencesApi
|
|
15505
16737
|
*/
|
|
15506
|
-
updateUserNotificationPreference(requestParameters: UserNotificationPreferencesApiUpdateUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}>>;
|
|
16738
|
+
updateUserNotificationPreference(requestParameters: UserNotificationPreferencesApiUpdateUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15507
16739
|
}
|
|
15508
16740
|
/**
|
|
15509
16741
|
* UsersApi - axios parameter creator
|
|
@@ -15512,7 +16744,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15512
16744
|
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
15513
16745
|
/**
|
|
15514
16746
|
*
|
|
15515
|
-
* @summary Accept the Terms of Service
|
|
16747
|
+
* @summary Accept the current Terms of Service version
|
|
15516
16748
|
* @param {AcceptTosRequest} acceptTosRequest \"Tosrequest body\"
|
|
15517
16749
|
* @param {*} [options] Override http request option.
|
|
15518
16750
|
* @throws {RequiredError}
|
|
@@ -15642,6 +16874,14 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15642
16874
|
* @throws {RequiredError}
|
|
15643
16875
|
*/
|
|
15644
16876
|
getUserSettings: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16877
|
+
/**
|
|
16878
|
+
*
|
|
16879
|
+
* @summary Get a user\'s terms of service status and acceptance history
|
|
16880
|
+
* @param {number} id The id of the user
|
|
16881
|
+
* @param {*} [options] Override http request option.
|
|
16882
|
+
* @throws {RequiredError}
|
|
16883
|
+
*/
|
|
16884
|
+
getUserTos: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15645
16885
|
/**
|
|
15646
16886
|
*
|
|
15647
16887
|
* @summary Returns the user\'s containers
|
|
@@ -15664,6 +16904,20 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15664
16904
|
* @throws {RequiredError}
|
|
15665
16905
|
*/
|
|
15666
16906
|
getUsersFinancialMutations: (id: number, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16907
|
+
/**
|
|
16908
|
+
*
|
|
16909
|
+
* @summary Get the PaymentRequests where the given user is the beneficiary. Regular users can hit this for their own id; admins can hit it for any user.
|
|
16910
|
+
* @param {number} id The id of the beneficiary user.
|
|
16911
|
+
* @param {number} [createdById] Filter by creator user id.
|
|
16912
|
+
* @param {GetUsersPaymentRequestsStatusEnum} [status] Comma-separated list of derived statuses.
|
|
16913
|
+
* @param {string} [fromDate] Filter requests created on or after this ISO date (inclusive).
|
|
16914
|
+
* @param {string} [tillDate] Filter requests created strictly before this ISO date (exclusive).
|
|
16915
|
+
* @param {number} [take] How many rows the endpoint should return
|
|
16916
|
+
* @param {number} [skip] How many rows to skip (for pagination)
|
|
16917
|
+
* @param {*} [options] Override http request option.
|
|
16918
|
+
* @throws {RequiredError}
|
|
16919
|
+
*/
|
|
16920
|
+
getUsersPaymentRequests: (id: number, createdById?: number, status?: GetUsersPaymentRequestsStatusEnum, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15667
16921
|
/**
|
|
15668
16922
|
*
|
|
15669
16923
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -15874,7 +17128,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15874
17128
|
export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
15875
17129
|
/**
|
|
15876
17130
|
*
|
|
15877
|
-
* @summary Accept the Terms of Service
|
|
17131
|
+
* @summary Accept the current Terms of Service version
|
|
15878
17132
|
* @param {AcceptTosRequest} acceptTosRequest \"Tosrequest body\"
|
|
15879
17133
|
* @param {*} [options] Override http request option.
|
|
15880
17134
|
* @throws {RequiredError}
|
|
@@ -16004,6 +17258,14 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16004
17258
|
* @throws {RequiredError}
|
|
16005
17259
|
*/
|
|
16006
17260
|
getUserSettings(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserSettingsResponse>>;
|
|
17261
|
+
/**
|
|
17262
|
+
*
|
|
17263
|
+
* @summary Get a user\'s terms of service status and acceptance history
|
|
17264
|
+
* @param {number} id The id of the user
|
|
17265
|
+
* @param {*} [options] Override http request option.
|
|
17266
|
+
* @throws {RequiredError}
|
|
17267
|
+
*/
|
|
17268
|
+
getUserTos(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserTosResponse>>;
|
|
16007
17269
|
/**
|
|
16008
17270
|
*
|
|
16009
17271
|
* @summary Returns the user\'s containers
|
|
@@ -16026,6 +17288,20 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16026
17288
|
* @throws {RequiredError}
|
|
16027
17289
|
*/
|
|
16028
17290
|
getUsersFinancialMutations(id: number, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFinancialMutationResponse>>;
|
|
17291
|
+
/**
|
|
17292
|
+
*
|
|
17293
|
+
* @summary Get the PaymentRequests where the given user is the beneficiary. Regular users can hit this for their own id; admins can hit it for any user.
|
|
17294
|
+
* @param {number} id The id of the beneficiary user.
|
|
17295
|
+
* @param {number} [createdById] Filter by creator user id.
|
|
17296
|
+
* @param {GetUsersPaymentRequestsStatusEnum} [status] Comma-separated list of derived statuses.
|
|
17297
|
+
* @param {string} [fromDate] Filter requests created on or after this ISO date (inclusive).
|
|
17298
|
+
* @param {string} [tillDate] Filter requests created strictly before this ISO date (exclusive).
|
|
17299
|
+
* @param {number} [take] How many rows the endpoint should return
|
|
17300
|
+
* @param {number} [skip] How many rows to skip (for pagination)
|
|
17301
|
+
* @param {*} [options] Override http request option.
|
|
17302
|
+
* @throws {RequiredError}
|
|
17303
|
+
*/
|
|
17304
|
+
getUsersPaymentRequests(id: number, createdById?: number, status?: GetUsersPaymentRequestsStatusEnum, fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedBasePaymentRequestResponse>>;
|
|
16029
17305
|
/**
|
|
16030
17306
|
*
|
|
16031
17307
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -16236,7 +17512,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16236
17512
|
export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16237
17513
|
/**
|
|
16238
17514
|
*
|
|
16239
|
-
* @summary Accept the Terms of Service
|
|
17515
|
+
* @summary Accept the current Terms of Service version
|
|
16240
17516
|
* @param {UsersApiAcceptTosRequest} requestParameters Request parameters.
|
|
16241
17517
|
* @param {*} [options] Override http request option.
|
|
16242
17518
|
* @throws {RequiredError}
|
|
@@ -16354,6 +17630,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16354
17630
|
* @throws {RequiredError}
|
|
16355
17631
|
*/
|
|
16356
17632
|
getUserSettings(requestParameters: UsersApiGetUserSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserSettingsResponse>;
|
|
17633
|
+
/**
|
|
17634
|
+
*
|
|
17635
|
+
* @summary Get a user\'s terms of service status and acceptance history
|
|
17636
|
+
* @param {UsersApiGetUserTosRequest} requestParameters Request parameters.
|
|
17637
|
+
* @param {*} [options] Override http request option.
|
|
17638
|
+
* @throws {RequiredError}
|
|
17639
|
+
*/
|
|
17640
|
+
getUserTos(requestParameters: UsersApiGetUserTosRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserTosResponse>;
|
|
16357
17641
|
/**
|
|
16358
17642
|
*
|
|
16359
17643
|
* @summary Returns the user\'s containers
|
|
@@ -16370,6 +17654,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16370
17654
|
* @throws {RequiredError}
|
|
16371
17655
|
*/
|
|
16372
17656
|
getUsersFinancialMutations(requestParameters: UsersApiGetUsersFinancialMutationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFinancialMutationResponse>;
|
|
17657
|
+
/**
|
|
17658
|
+
*
|
|
17659
|
+
* @summary Get the PaymentRequests where the given user is the beneficiary. Regular users can hit this for their own id; admins can hit it for any user.
|
|
17660
|
+
* @param {UsersApiGetUsersPaymentRequestsRequest} requestParameters Request parameters.
|
|
17661
|
+
* @param {*} [options] Override http request option.
|
|
17662
|
+
* @throws {RequiredError}
|
|
17663
|
+
*/
|
|
17664
|
+
getUsersPaymentRequests(requestParameters: UsersApiGetUsersPaymentRequestsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedBasePaymentRequestResponse>;
|
|
16373
17665
|
/**
|
|
16374
17666
|
*
|
|
16375
17667
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -16799,6 +18091,19 @@ export interface UsersApiGetUserSettingsRequest {
|
|
|
16799
18091
|
*/
|
|
16800
18092
|
readonly id: number;
|
|
16801
18093
|
}
|
|
18094
|
+
/**
|
|
18095
|
+
* Request parameters for getUserTos operation in UsersApi.
|
|
18096
|
+
* @export
|
|
18097
|
+
* @interface UsersApiGetUserTosRequest
|
|
18098
|
+
*/
|
|
18099
|
+
export interface UsersApiGetUserTosRequest {
|
|
18100
|
+
/**
|
|
18101
|
+
* The id of the user
|
|
18102
|
+
* @type {number}
|
|
18103
|
+
* @memberof UsersApiGetUserTos
|
|
18104
|
+
*/
|
|
18105
|
+
readonly id: number;
|
|
18106
|
+
}
|
|
16802
18107
|
/**
|
|
16803
18108
|
* Request parameters for getUsersContainers operation in UsersApi.
|
|
16804
18109
|
* @export
|
|
@@ -16861,6 +18166,55 @@ export interface UsersApiGetUsersFinancialMutationsRequest {
|
|
|
16861
18166
|
*/
|
|
16862
18167
|
readonly skip?: number;
|
|
16863
18168
|
}
|
|
18169
|
+
/**
|
|
18170
|
+
* Request parameters for getUsersPaymentRequests operation in UsersApi.
|
|
18171
|
+
* @export
|
|
18172
|
+
* @interface UsersApiGetUsersPaymentRequestsRequest
|
|
18173
|
+
*/
|
|
18174
|
+
export interface UsersApiGetUsersPaymentRequestsRequest {
|
|
18175
|
+
/**
|
|
18176
|
+
* The id of the beneficiary user.
|
|
18177
|
+
* @type {number}
|
|
18178
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18179
|
+
*/
|
|
18180
|
+
readonly id: number;
|
|
18181
|
+
/**
|
|
18182
|
+
* Filter by creator user id.
|
|
18183
|
+
* @type {number}
|
|
18184
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18185
|
+
*/
|
|
18186
|
+
readonly createdById?: number;
|
|
18187
|
+
/**
|
|
18188
|
+
* Comma-separated list of derived statuses.
|
|
18189
|
+
* @type {'PENDING' | 'PAID' | 'EXPIRED' | 'CANCELLED'}
|
|
18190
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18191
|
+
*/
|
|
18192
|
+
readonly status?: GetUsersPaymentRequestsStatusEnum;
|
|
18193
|
+
/**
|
|
18194
|
+
* Filter requests created on or after this ISO date (inclusive).
|
|
18195
|
+
* @type {string}
|
|
18196
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18197
|
+
*/
|
|
18198
|
+
readonly fromDate?: string;
|
|
18199
|
+
/**
|
|
18200
|
+
* Filter requests created strictly before this ISO date (exclusive).
|
|
18201
|
+
* @type {string}
|
|
18202
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18203
|
+
*/
|
|
18204
|
+
readonly tillDate?: string;
|
|
18205
|
+
/**
|
|
18206
|
+
* How many rows the endpoint should return
|
|
18207
|
+
* @type {number}
|
|
18208
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18209
|
+
*/
|
|
18210
|
+
readonly take?: number;
|
|
18211
|
+
/**
|
|
18212
|
+
* How many rows to skip (for pagination)
|
|
18213
|
+
* @type {number}
|
|
18214
|
+
* @memberof UsersApiGetUsersPaymentRequests
|
|
18215
|
+
*/
|
|
18216
|
+
readonly skip?: number;
|
|
18217
|
+
}
|
|
16864
18218
|
/**
|
|
16865
18219
|
* Request parameters for getUsersPointsOfSale operation in UsersApi.
|
|
16866
18220
|
* @export
|
|
@@ -17376,13 +18730,13 @@ export interface UsersApiWaiveUserFinesRequest {
|
|
|
17376
18730
|
export declare class UsersApi extends BaseAPI {
|
|
17377
18731
|
/**
|
|
17378
18732
|
*
|
|
17379
|
-
* @summary Accept the Terms of Service
|
|
18733
|
+
* @summary Accept the current Terms of Service version
|
|
17380
18734
|
* @param {UsersApiAcceptTosRequest} requestParameters Request parameters.
|
|
17381
18735
|
* @param {*} [options] Override http request option.
|
|
17382
18736
|
* @throws {RequiredError}
|
|
17383
18737
|
* @memberof UsersApi
|
|
17384
18738
|
*/
|
|
17385
|
-
acceptTos(requestParameters: UsersApiAcceptTosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18739
|
+
acceptTos(requestParameters: UsersApiAcceptTosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17386
18740
|
/**
|
|
17387
18741
|
*
|
|
17388
18742
|
* @summary Adds a role to a user
|
|
@@ -17391,7 +18745,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17391
18745
|
* @throws {RequiredError}
|
|
17392
18746
|
* @memberof UsersApi
|
|
17393
18747
|
*/
|
|
17394
|
-
addUserRole(requestParameters: UsersApiAddUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18748
|
+
addUserRole(requestParameters: UsersApiAddUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17395
18749
|
/**
|
|
17396
18750
|
*
|
|
17397
18751
|
* @summary Create a new user
|
|
@@ -17400,7 +18754,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17400
18754
|
* @throws {RequiredError}
|
|
17401
18755
|
* @memberof UsersApi
|
|
17402
18756
|
*/
|
|
17403
|
-
createUser(requestParameters: UsersApiCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18757
|
+
createUser(requestParameters: UsersApiCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17404
18758
|
/**
|
|
17405
18759
|
*
|
|
17406
18760
|
* @summary Delete a single user
|
|
@@ -17409,7 +18763,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17409
18763
|
* @throws {RequiredError}
|
|
17410
18764
|
* @memberof UsersApi
|
|
17411
18765
|
*/
|
|
17412
|
-
deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18766
|
+
deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17413
18767
|
/**
|
|
17414
18768
|
*
|
|
17415
18769
|
* @summary Delete a users key code
|
|
@@ -17418,7 +18772,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17418
18772
|
* @throws {RequiredError}
|
|
17419
18773
|
* @memberof UsersApi
|
|
17420
18774
|
*/
|
|
17421
|
-
deleteUserKey(requestParameters: UsersApiDeleteUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18775
|
+
deleteUserKey(requestParameters: UsersApiDeleteUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17422
18776
|
/**
|
|
17423
18777
|
*
|
|
17424
18778
|
* @summary Delete a nfc code
|
|
@@ -17427,7 +18781,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17427
18781
|
* @throws {RequiredError}
|
|
17428
18782
|
* @memberof UsersApi
|
|
17429
18783
|
*/
|
|
17430
|
-
deleteUserNfc(requestParameters: UsersApiDeleteUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18784
|
+
deleteUserNfc(requestParameters: UsersApiDeleteUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17431
18785
|
/**
|
|
17432
18786
|
*
|
|
17433
18787
|
* @summary Deletes a role from a user
|
|
@@ -17436,7 +18790,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17436
18790
|
* @throws {RequiredError}
|
|
17437
18791
|
* @memberof UsersApi
|
|
17438
18792
|
*/
|
|
17439
|
-
deleteUserRole(requestParameters: UsersApiDeleteUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18793
|
+
deleteUserRole(requestParameters: UsersApiDeleteUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17440
18794
|
/**
|
|
17441
18795
|
*
|
|
17442
18796
|
* @summary Get a user using the nfc code
|
|
@@ -17445,7 +18799,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17445
18799
|
* @throws {RequiredError}
|
|
17446
18800
|
* @memberof UsersApi
|
|
17447
18801
|
*/
|
|
17448
|
-
findUserNfc(requestParameters: UsersApiFindUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18802
|
+
findUserNfc(requestParameters: UsersApiFindUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17449
18803
|
/**
|
|
17450
18804
|
*
|
|
17451
18805
|
* @summary Get a list of all users
|
|
@@ -17454,7 +18808,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17454
18808
|
* @throws {RequiredError}
|
|
17455
18809
|
* @memberof UsersApi
|
|
17456
18810
|
*/
|
|
17457
|
-
getAllUsers(requestParameters?: UsersApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18811
|
+
getAllUsers(requestParameters?: UsersApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17458
18812
|
/**
|
|
17459
18813
|
*
|
|
17460
18814
|
* @summary Get all users of user type
|
|
@@ -17463,7 +18817,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17463
18817
|
* @throws {RequiredError}
|
|
17464
18818
|
* @memberof UsersApi
|
|
17465
18819
|
*/
|
|
17466
|
-
getAllUsersOfUserType(requestParameters: UsersApiGetAllUsersOfUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18820
|
+
getAllUsersOfUserType(requestParameters: UsersApiGetAllUsersOfUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17467
18821
|
/**
|
|
17468
18822
|
*
|
|
17469
18823
|
* @summary Get an individual user
|
|
@@ -17472,7 +18826,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17472
18826
|
* @throws {RequiredError}
|
|
17473
18827
|
* @memberof UsersApi
|
|
17474
18828
|
*/
|
|
17475
|
-
getIndividualUser(requestParameters: UsersApiGetIndividualUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18829
|
+
getIndividualUser(requestParameters: UsersApiGetIndividualUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17476
18830
|
/**
|
|
17477
18831
|
*
|
|
17478
18832
|
* @summary Get an organs members
|
|
@@ -17481,7 +18835,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17481
18835
|
* @throws {RequiredError}
|
|
17482
18836
|
* @memberof UsersApi
|
|
17483
18837
|
*/
|
|
17484
|
-
getOrganMembers(requestParameters: UsersApiGetOrganMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18838
|
+
getOrganMembers(requestParameters: UsersApiGetOrganMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17485
18839
|
/**
|
|
17486
18840
|
*
|
|
17487
18841
|
* @summary Get users recently charged by the caller via an authenticated point of sale. Returns distinct buyers ordered by most recent transaction first, intended for quick suggestions in the authenticated POS flow.
|
|
@@ -17490,7 +18844,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17490
18844
|
* @throws {RequiredError}
|
|
17491
18845
|
* @memberof UsersApi
|
|
17492
18846
|
*/
|
|
17493
|
-
getRecentlyChargedUsers(requestParameters?: UsersApiGetRecentlyChargedUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any, {}>>;
|
|
18847
|
+
getRecentlyChargedUsers(requestParameters?: UsersApiGetRecentlyChargedUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any, {}, any>>;
|
|
17494
18848
|
/**
|
|
17495
18849
|
*
|
|
17496
18850
|
* @summary Get all roles assigned to the user.
|
|
@@ -17499,7 +18853,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17499
18853
|
* @throws {RequiredError}
|
|
17500
18854
|
* @memberof UsersApi
|
|
17501
18855
|
*/
|
|
17502
|
-
getUserRoles(requestParameters: UsersApiGetUserRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse[], any, {}>>;
|
|
18856
|
+
getUserRoles(requestParameters: UsersApiGetUserRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse[], any, {}, any>>;
|
|
17503
18857
|
/**
|
|
17504
18858
|
*
|
|
17505
18859
|
* @summary Get all user settings
|
|
@@ -17508,7 +18862,16 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17508
18862
|
* @throws {RequiredError}
|
|
17509
18863
|
* @memberof UsersApi
|
|
17510
18864
|
*/
|
|
17511
|
-
getUserSettings(requestParameters: UsersApiGetUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}>>;
|
|
18865
|
+
getUserSettings(requestParameters: UsersApiGetUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}, any>>;
|
|
18866
|
+
/**
|
|
18867
|
+
*
|
|
18868
|
+
* @summary Get a user\'s terms of service status and acceptance history
|
|
18869
|
+
* @param {UsersApiGetUserTosRequest} requestParameters Request parameters.
|
|
18870
|
+
* @param {*} [options] Override http request option.
|
|
18871
|
+
* @throws {RequiredError}
|
|
18872
|
+
* @memberof UsersApi
|
|
18873
|
+
*/
|
|
18874
|
+
getUserTos(requestParameters: UsersApiGetUserTosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserTosResponse, any, {}, any>>;
|
|
17512
18875
|
/**
|
|
17513
18876
|
*
|
|
17514
18877
|
* @summary Returns the user\'s containers
|
|
@@ -17517,7 +18880,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17517
18880
|
* @throws {RequiredError}
|
|
17518
18881
|
* @memberof UsersApi
|
|
17519
18882
|
*/
|
|
17520
|
-
getUsersContainers(requestParameters: UsersApiGetUsersContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
18883
|
+
getUsersContainers(requestParameters: UsersApiGetUsersContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
17521
18884
|
/**
|
|
17522
18885
|
*
|
|
17523
18886
|
* @summary Get all financial mutations of a user (from or to).
|
|
@@ -17526,7 +18889,16 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17526
18889
|
* @throws {RequiredError}
|
|
17527
18890
|
* @memberof UsersApi
|
|
17528
18891
|
*/
|
|
17529
|
-
getUsersFinancialMutations(requestParameters: UsersApiGetUsersFinancialMutationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFinancialMutationResponse, any, {}>>;
|
|
18892
|
+
getUsersFinancialMutations(requestParameters: UsersApiGetUsersFinancialMutationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFinancialMutationResponse, any, {}, any>>;
|
|
18893
|
+
/**
|
|
18894
|
+
*
|
|
18895
|
+
* @summary Get the PaymentRequests where the given user is the beneficiary. Regular users can hit this for their own id; admins can hit it for any user.
|
|
18896
|
+
* @param {UsersApiGetUsersPaymentRequestsRequest} requestParameters Request parameters.
|
|
18897
|
+
* @param {*} [options] Override http request option.
|
|
18898
|
+
* @throws {RequiredError}
|
|
18899
|
+
* @memberof UsersApi
|
|
18900
|
+
*/
|
|
18901
|
+
getUsersPaymentRequests(requestParameters: UsersApiGetUsersPaymentRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePaymentRequestResponse, any, {}, any>>;
|
|
17530
18902
|
/**
|
|
17531
18903
|
*
|
|
17532
18904
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -17535,7 +18907,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17535
18907
|
* @throws {RequiredError}
|
|
17536
18908
|
* @memberof UsersApi
|
|
17537
18909
|
*/
|
|
17538
|
-
getUsersPointsOfSale(requestParameters: UsersApiGetUsersPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}>>;
|
|
18910
|
+
getUsersPointsOfSale(requestParameters: UsersApiGetUsersPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}, any>>;
|
|
17539
18911
|
/**
|
|
17540
18912
|
*
|
|
17541
18913
|
* @summary Get all deposits of a user that are still being processed by Stripe
|
|
@@ -17544,7 +18916,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17544
18916
|
* @throws {RequiredError}
|
|
17545
18917
|
* @memberof UsersApi
|
|
17546
18918
|
*/
|
|
17547
|
-
getUsersProcessingDeposits(requestParameters: UsersApiGetUsersProcessingDepositsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}>>;
|
|
18919
|
+
getUsersProcessingDeposits(requestParameters: UsersApiGetUsersProcessingDepositsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}, any>>;
|
|
17548
18920
|
/**
|
|
17549
18921
|
*
|
|
17550
18922
|
* @summary Get an user\'s products
|
|
@@ -17553,7 +18925,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17553
18925
|
* @throws {RequiredError}
|
|
17554
18926
|
* @memberof UsersApi
|
|
17555
18927
|
*/
|
|
17556
|
-
getUsersProducts(requestParameters: UsersApiGetUsersProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}>>;
|
|
18928
|
+
getUsersProducts(requestParameters: UsersApiGetUsersProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}, any>>;
|
|
17557
18929
|
/**
|
|
17558
18930
|
*
|
|
17559
18931
|
* @summary Get purchase report pdf for the given user
|
|
@@ -17562,7 +18934,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17562
18934
|
* @throws {RequiredError}
|
|
17563
18935
|
* @memberof UsersApi
|
|
17564
18936
|
*/
|
|
17565
|
-
getUsersPurchaseReportPdf(requestParameters: UsersApiGetUsersPurchaseReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
18937
|
+
getUsersPurchaseReportPdf(requestParameters: UsersApiGetUsersPurchaseReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
17566
18938
|
/**
|
|
17567
18939
|
*
|
|
17568
18940
|
* @summary Get purchases report for the given user
|
|
@@ -17571,7 +18943,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17571
18943
|
* @throws {RequiredError}
|
|
17572
18944
|
* @memberof UsersApi
|
|
17573
18945
|
*/
|
|
17574
|
-
getUsersPurchasesReport(requestParameters: UsersApiGetUsersPurchasesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
18946
|
+
getUsersPurchasesReport(requestParameters: UsersApiGetUsersPurchasesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
17575
18947
|
/**
|
|
17576
18948
|
*
|
|
17577
18949
|
* @summary Get sales report for the given user
|
|
@@ -17580,7 +18952,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17580
18952
|
* @throws {RequiredError}
|
|
17581
18953
|
* @memberof UsersApi
|
|
17582
18954
|
*/
|
|
17583
|
-
getUsersSalesReport(requestParameters: UsersApiGetUsersSalesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
18955
|
+
getUsersSalesReport(requestParameters: UsersApiGetUsersSalesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
17584
18956
|
/**
|
|
17585
18957
|
*
|
|
17586
18958
|
* @summary Get sales report for the given user
|
|
@@ -17589,7 +18961,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17589
18961
|
* @throws {RequiredError}
|
|
17590
18962
|
* @memberof UsersApi
|
|
17591
18963
|
*/
|
|
17592
|
-
getUsersSalesReportPdf(requestParameters: UsersApiGetUsersSalesReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
18964
|
+
getUsersSalesReportPdf(requestParameters: UsersApiGetUsersSalesReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
17593
18965
|
/**
|
|
17594
18966
|
*
|
|
17595
18967
|
* @summary Get transactions from a user.
|
|
@@ -17598,7 +18970,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17598
18970
|
* @throws {RequiredError}
|
|
17599
18971
|
* @memberof UsersApi
|
|
17600
18972
|
*/
|
|
17601
|
-
getUsersTransactions(requestParameters: UsersApiGetUsersTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
18973
|
+
getUsersTransactions(requestParameters: UsersApiGetUsersTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
17602
18974
|
/**
|
|
17603
18975
|
*
|
|
17604
18976
|
* @summary Get transaction report for the given user
|
|
@@ -17608,7 +18980,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17608
18980
|
* @throws {RequiredError}
|
|
17609
18981
|
* @memberof UsersApi
|
|
17610
18982
|
*/
|
|
17611
|
-
getUsersTransactionsReport(requestParameters: UsersApiGetUsersTransactionsReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionReportResponse[], any, {}>>;
|
|
18983
|
+
getUsersTransactionsReport(requestParameters: UsersApiGetUsersTransactionsReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionReportResponse[], any, {}, any>>;
|
|
17612
18984
|
/**
|
|
17613
18985
|
*
|
|
17614
18986
|
* @summary Get transfers to or from an user.
|
|
@@ -17617,7 +18989,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17617
18989
|
* @throws {RequiredError}
|
|
17618
18990
|
* @memberof UsersApi
|
|
17619
18991
|
*/
|
|
17620
|
-
getUsersTransfers(requestParameters: UsersApiGetUsersTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}>>;
|
|
18992
|
+
getUsersTransfers(requestParameters: UsersApiGetUsersTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}, any>>;
|
|
17621
18993
|
/**
|
|
17622
18994
|
*
|
|
17623
18995
|
* @summary Get wrapped for a user
|
|
@@ -17626,7 +18998,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17626
18998
|
* @throws {RequiredError}
|
|
17627
18999
|
* @memberof UsersApi
|
|
17628
19000
|
*/
|
|
17629
|
-
getWrapped(requestParameters: UsersApiGetWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}>>;
|
|
19001
|
+
getWrapped(requestParameters: UsersApiGetWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}, any>>;
|
|
17630
19002
|
/**
|
|
17631
19003
|
*
|
|
17632
19004
|
* @summary Update user settings
|
|
@@ -17635,7 +19007,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17635
19007
|
* @throws {RequiredError}
|
|
17636
19008
|
* @memberof UsersApi
|
|
17637
19009
|
*/
|
|
17638
|
-
patchUserSettings(requestParameters: UsersApiPatchUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}>>;
|
|
19010
|
+
patchUserSettings(requestParameters: UsersApiPatchUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}, any>>;
|
|
17639
19011
|
/**
|
|
17640
19012
|
*
|
|
17641
19013
|
* @summary Update user type
|
|
@@ -17644,7 +19016,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17644
19016
|
* @throws {RequiredError}
|
|
17645
19017
|
* @memberof UsersApi
|
|
17646
19018
|
*/
|
|
17647
|
-
patchUserType(requestParameters: UsersApiPatchUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
19019
|
+
patchUserType(requestParameters: UsersApiPatchUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17648
19020
|
/**
|
|
17649
19021
|
*
|
|
17650
19022
|
* @summary Update a user
|
|
@@ -17653,7 +19025,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17653
19025
|
* @throws {RequiredError}
|
|
17654
19026
|
* @memberof UsersApi
|
|
17655
19027
|
*/
|
|
17656
|
-
updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
19028
|
+
updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17657
19029
|
/**
|
|
17658
19030
|
*
|
|
17659
19031
|
* @summary POST an users update to new key code
|
|
@@ -17662,7 +19034,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17662
19034
|
* @throws {RequiredError}
|
|
17663
19035
|
* @memberof UsersApi
|
|
17664
19036
|
*/
|
|
17665
|
-
updateUserKey(requestParameters: UsersApiUpdateUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateKeyResponse, any, {}>>;
|
|
19037
|
+
updateUserKey(requestParameters: UsersApiUpdateUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateKeyResponse, any, {}, any>>;
|
|
17666
19038
|
/**
|
|
17667
19039
|
*
|
|
17668
19040
|
* @summary Put a user\'s local password
|
|
@@ -17671,7 +19043,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17671
19043
|
* @throws {RequiredError}
|
|
17672
19044
|
* @memberof UsersApi
|
|
17673
19045
|
*/
|
|
17674
|
-
updateUserLocalPassword(requestParameters: UsersApiUpdateUserLocalPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19046
|
+
updateUserLocalPassword(requestParameters: UsersApiUpdateUserLocalPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17675
19047
|
/**
|
|
17676
19048
|
*
|
|
17677
19049
|
* @summary Put a users NFC code
|
|
@@ -17680,7 +19052,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17680
19052
|
* @throws {RequiredError}
|
|
17681
19053
|
* @memberof UsersApi
|
|
17682
19054
|
*/
|
|
17683
|
-
updateUserNfc(requestParameters: UsersApiUpdateUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19055
|
+
updateUserNfc(requestParameters: UsersApiUpdateUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17684
19056
|
/**
|
|
17685
19057
|
*
|
|
17686
19058
|
* @summary Put an users pin code
|
|
@@ -17689,7 +19061,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17689
19061
|
* @throws {RequiredError}
|
|
17690
19062
|
* @memberof UsersApi
|
|
17691
19063
|
*/
|
|
17692
|
-
updateUserPin(requestParameters: UsersApiUpdateUserPinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19064
|
+
updateUserPin(requestParameters: UsersApiUpdateUserPinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17693
19065
|
/**
|
|
17694
19066
|
*
|
|
17695
19067
|
* @summary Recompute wrapped for a user
|
|
@@ -17698,7 +19070,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17698
19070
|
* @throws {RequiredError}
|
|
17699
19071
|
* @memberof UsersApi
|
|
17700
19072
|
*/
|
|
17701
|
-
updateWrapped(requestParameters: UsersApiUpdateWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}>>;
|
|
19073
|
+
updateWrapped(requestParameters: UsersApiUpdateWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}, any>>;
|
|
17702
19074
|
/**
|
|
17703
19075
|
*
|
|
17704
19076
|
* @summary Waive all given user\'s fines
|
|
@@ -17707,7 +19079,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17707
19079
|
* @throws {RequiredError}
|
|
17708
19080
|
* @memberof UsersApi
|
|
17709
19081
|
*/
|
|
17710
|
-
waiveUserFines(requestParameters: UsersApiWaiveUserFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19082
|
+
waiveUserFines(requestParameters: UsersApiWaiveUserFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17711
19083
|
}
|
|
17712
19084
|
/**
|
|
17713
19085
|
* @export
|
|
@@ -17722,6 +19094,16 @@ export declare const GetAllUsersTypeEnum: {
|
|
|
17722
19094
|
readonly AutomaticInvoice: "AUTOMATIC_INVOICE";
|
|
17723
19095
|
};
|
|
17724
19096
|
export type GetAllUsersTypeEnum = typeof GetAllUsersTypeEnum[keyof typeof GetAllUsersTypeEnum];
|
|
19097
|
+
/**
|
|
19098
|
+
* @export
|
|
19099
|
+
*/
|
|
19100
|
+
export declare const GetUsersPaymentRequestsStatusEnum: {
|
|
19101
|
+
readonly Pending: "PENDING";
|
|
19102
|
+
readonly Paid: "PAID";
|
|
19103
|
+
readonly Expired: "EXPIRED";
|
|
19104
|
+
readonly Cancelled: "CANCELLED";
|
|
19105
|
+
};
|
|
19106
|
+
export type GetUsersPaymentRequestsStatusEnum = typeof GetUsersPaymentRequestsStatusEnum[keyof typeof GetUsersPaymentRequestsStatusEnum];
|
|
17725
19107
|
/**
|
|
17726
19108
|
* @export
|
|
17727
19109
|
*/
|
|
@@ -18012,7 +19394,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18012
19394
|
* @throws {RequiredError}
|
|
18013
19395
|
* @memberof VatGroupsApi
|
|
18014
19396
|
*/
|
|
18015
|
-
createVatGroup(requestParameters: VatGroupsApiCreateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19397
|
+
createVatGroup(requestParameters: VatGroupsApiCreateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18016
19398
|
/**
|
|
18017
19399
|
*
|
|
18018
19400
|
* @summary Get a list of all VAT groups
|
|
@@ -18021,7 +19403,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18021
19403
|
* @throws {RequiredError}
|
|
18022
19404
|
* @memberof VatGroupsApi
|
|
18023
19405
|
*/
|
|
18024
|
-
getAllVatGroups(requestParameters?: VatGroupsApiGetAllVatGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}>>;
|
|
19406
|
+
getAllVatGroups(requestParameters?: VatGroupsApiGetAllVatGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}, any>>;
|
|
18025
19407
|
/**
|
|
18026
19408
|
*
|
|
18027
19409
|
* @summary Returns the requested VAT group
|
|
@@ -18030,7 +19412,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18030
19412
|
* @throws {RequiredError}
|
|
18031
19413
|
* @memberof VatGroupsApi
|
|
18032
19414
|
*/
|
|
18033
|
-
getSingleVatGroup(requestParameters: VatGroupsApiGetSingleVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19415
|
+
getSingleVatGroup(requestParameters: VatGroupsApiGetSingleVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18034
19416
|
/**
|
|
18035
19417
|
*
|
|
18036
19418
|
* @summary Get the VAT collections needed for VAT declarations
|
|
@@ -18039,7 +19421,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18039
19421
|
* @throws {RequiredError}
|
|
18040
19422
|
* @memberof VatGroupsApi
|
|
18041
19423
|
*/
|
|
18042
|
-
getVatDeclarationAmounts(requestParameters: VatGroupsApiGetVatDeclarationAmountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}>>;
|
|
19424
|
+
getVatDeclarationAmounts(requestParameters: VatGroupsApiGetVatDeclarationAmountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}, any>>;
|
|
18043
19425
|
/**
|
|
18044
19426
|
*
|
|
18045
19427
|
* @summary Create a new VAT group
|
|
@@ -18048,7 +19430,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18048
19430
|
* @throws {RequiredError}
|
|
18049
19431
|
* @memberof VatGroupsApi
|
|
18050
19432
|
*/
|
|
18051
|
-
updateVatGroup(requestParameters: VatGroupsApiUpdateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19433
|
+
updateVatGroup(requestParameters: VatGroupsApiUpdateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18052
19434
|
}
|
|
18053
19435
|
/**
|
|
18054
19436
|
* VouchergroupsApi - axios parameter creator
|
|
@@ -18247,7 +19629,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18247
19629
|
* @throws {RequiredError}
|
|
18248
19630
|
* @memberof VouchergroupsApi
|
|
18249
19631
|
*/
|
|
18250
|
-
createVouchergroup(requestParameters: VouchergroupsApiCreateVouchergroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19632
|
+
createVouchergroup(requestParameters: VouchergroupsApiCreateVouchergroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18251
19633
|
/**
|
|
18252
19634
|
*
|
|
18253
19635
|
* @summary Returns all existing voucher groups
|
|
@@ -18256,7 +19638,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18256
19638
|
* @throws {RequiredError}
|
|
18257
19639
|
* @memberof VouchergroupsApi
|
|
18258
19640
|
*/
|
|
18259
|
-
getAllVouchergroups(requestParameters?: VouchergroupsApiGetAllVouchergroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVoucherGroupResponse, any, {}>>;
|
|
19641
|
+
getAllVouchergroups(requestParameters?: VouchergroupsApiGetAllVouchergroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVoucherGroupResponse, any, {}, any>>;
|
|
18260
19642
|
/**
|
|
18261
19643
|
*
|
|
18262
19644
|
* @summary Returns the requested voucher group
|
|
@@ -18265,7 +19647,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18265
19647
|
* @throws {RequiredError}
|
|
18266
19648
|
* @memberof VouchergroupsApi
|
|
18267
19649
|
*/
|
|
18268
|
-
getVouchergroupId(requestParameters: VouchergroupsApiGetVouchergroupIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19650
|
+
getVouchergroupId(requestParameters: VouchergroupsApiGetVouchergroupIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18269
19651
|
/**
|
|
18270
19652
|
*
|
|
18271
19653
|
* @summary Updates the requested voucher group
|
|
@@ -18274,7 +19656,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18274
19656
|
* @throws {RequiredError}
|
|
18275
19657
|
* @memberof VouchergroupsApi
|
|
18276
19658
|
*/
|
|
18277
|
-
updateVoucherGroup(requestParameters: VouchergroupsApiUpdateVoucherGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19659
|
+
updateVoucherGroup(requestParameters: VouchergroupsApiUpdateVoucherGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18278
19660
|
}
|
|
18279
19661
|
/**
|
|
18280
19662
|
* WriteoffsApi - axios parameter creator
|
|
@@ -18505,7 +19887,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18505
19887
|
* @throws {RequiredError}
|
|
18506
19888
|
* @memberof WriteoffsApi
|
|
18507
19889
|
*/
|
|
18508
|
-
createWriteOff(requestParameters: WriteoffsApiCreateWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}>>;
|
|
19890
|
+
createWriteOff(requestParameters: WriteoffsApiCreateWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}, any>>;
|
|
18509
19891
|
/**
|
|
18510
19892
|
*
|
|
18511
19893
|
* @summary Returns all write-offs in the system.
|
|
@@ -18514,7 +19896,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18514
19896
|
* @throws {RequiredError}
|
|
18515
19897
|
* @memberof WriteoffsApi
|
|
18516
19898
|
*/
|
|
18517
|
-
getAllWriteOffs(requestParameters?: WriteoffsApiGetAllWriteOffsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedWriteOffResponse, any, {}>>;
|
|
19899
|
+
getAllWriteOffs(requestParameters?: WriteoffsApiGetAllWriteOffsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedWriteOffResponse, any, {}, any>>;
|
|
18518
19900
|
/**
|
|
18519
19901
|
*
|
|
18520
19902
|
* @summary Get a single write-off
|
|
@@ -18523,7 +19905,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18523
19905
|
* @throws {RequiredError}
|
|
18524
19906
|
* @memberof WriteoffsApi
|
|
18525
19907
|
*/
|
|
18526
|
-
getSingleWriteOff(requestParameters: WriteoffsApiGetSingleWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}>>;
|
|
19908
|
+
getSingleWriteOff(requestParameters: WriteoffsApiGetSingleWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}, any>>;
|
|
18527
19909
|
/**
|
|
18528
19910
|
*
|
|
18529
19911
|
* @summary Get a write-off pdf
|
|
@@ -18532,5 +19914,5 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18532
19914
|
* @throws {RequiredError}
|
|
18533
19915
|
* @memberof WriteoffsApi
|
|
18534
19916
|
*/
|
|
18535
|
-
getWriteOffPdf(requestParameters: WriteoffsApiGetWriteOffPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
19917
|
+
getWriteOffPdf(requestParameters: WriteoffsApiGetWriteOffPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
18536
19918
|
}
|