@gewis/sudosos-client 0.0.0-develop.e4aa3f3 → 0.0.0-develop.e57eec7
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 +1687 -569
- package/dist/api.js +1381 -392
- 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
|
*
|
|
@@ -70,6 +76,12 @@ export interface AuthenticationEanRequest {
|
|
|
70
76
|
* @memberof AuthenticationEanRequest
|
|
71
77
|
*/
|
|
72
78
|
'eanCode': string;
|
|
79
|
+
/**
|
|
80
|
+
* POS identifier
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof AuthenticationEanRequest
|
|
83
|
+
*/
|
|
84
|
+
'posId': number;
|
|
73
85
|
}
|
|
74
86
|
/**
|
|
75
87
|
*
|
|
@@ -159,6 +171,12 @@ export interface AuthenticationNfcRequest {
|
|
|
159
171
|
* @memberof AuthenticationNfcRequest
|
|
160
172
|
*/
|
|
161
173
|
'nfcCode': string;
|
|
174
|
+
/**
|
|
175
|
+
* POS identifier
|
|
176
|
+
* @type {number}
|
|
177
|
+
* @memberof AuthenticationNfcRequest
|
|
178
|
+
*/
|
|
179
|
+
'posId': number;
|
|
162
180
|
}
|
|
163
181
|
/**
|
|
164
182
|
*
|
|
@@ -178,6 +196,12 @@ export interface AuthenticationPinRequest {
|
|
|
178
196
|
* @memberof AuthenticationPinRequest
|
|
179
197
|
*/
|
|
180
198
|
'pin': string;
|
|
199
|
+
/**
|
|
200
|
+
* POS identifier
|
|
201
|
+
* @type {number}
|
|
202
|
+
* @memberof AuthenticationPinRequest
|
|
203
|
+
*/
|
|
204
|
+
'posId': number;
|
|
181
205
|
}
|
|
182
206
|
/**
|
|
183
207
|
*
|
|
@@ -260,69 +284,6 @@ export interface AuthenticationResponse {
|
|
|
260
284
|
*/
|
|
261
285
|
'rolesWithPermissions': Array<RoleWithPermissionsResponse>;
|
|
262
286
|
}
|
|
263
|
-
/**
|
|
264
|
-
*
|
|
265
|
-
* @export
|
|
266
|
-
* @interface AuthenticationSecureEanRequest
|
|
267
|
-
*/
|
|
268
|
-
export interface AuthenticationSecureEanRequest {
|
|
269
|
-
/**
|
|
270
|
-
*
|
|
271
|
-
* @type {string}
|
|
272
|
-
* @memberof AuthenticationSecureEanRequest
|
|
273
|
-
*/
|
|
274
|
-
'eanCode': string;
|
|
275
|
-
/**
|
|
276
|
-
* POS identifier
|
|
277
|
-
* @type {number}
|
|
278
|
-
* @memberof AuthenticationSecureEanRequest
|
|
279
|
-
*/
|
|
280
|
-
'posId': number;
|
|
281
|
-
}
|
|
282
|
-
/**
|
|
283
|
-
*
|
|
284
|
-
* @export
|
|
285
|
-
* @interface AuthenticationSecureNfcRequest
|
|
286
|
-
*/
|
|
287
|
-
export interface AuthenticationSecureNfcRequest {
|
|
288
|
-
/**
|
|
289
|
-
*
|
|
290
|
-
* @type {string}
|
|
291
|
-
* @memberof AuthenticationSecureNfcRequest
|
|
292
|
-
*/
|
|
293
|
-
'nfcCode': string;
|
|
294
|
-
/**
|
|
295
|
-
* POS identifier
|
|
296
|
-
* @type {number}
|
|
297
|
-
* @memberof AuthenticationSecureNfcRequest
|
|
298
|
-
*/
|
|
299
|
-
'posId': number;
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
*
|
|
303
|
-
* @export
|
|
304
|
-
* @interface AuthenticationSecurePinRequest
|
|
305
|
-
*/
|
|
306
|
-
export interface AuthenticationSecurePinRequest {
|
|
307
|
-
/**
|
|
308
|
-
*
|
|
309
|
-
* @type {number}
|
|
310
|
-
* @memberof AuthenticationSecurePinRequest
|
|
311
|
-
*/
|
|
312
|
-
'userId': number;
|
|
313
|
-
/**
|
|
314
|
-
*
|
|
315
|
-
* @type {string}
|
|
316
|
-
* @memberof AuthenticationSecurePinRequest
|
|
317
|
-
*/
|
|
318
|
-
'pin': string;
|
|
319
|
-
/**
|
|
320
|
-
* POS identifier (required for secure authentication)
|
|
321
|
-
* @type {number}
|
|
322
|
-
* @memberof AuthenticationSecurePinRequest
|
|
323
|
-
*/
|
|
324
|
-
'posId': number;
|
|
325
|
-
}
|
|
326
287
|
/**
|
|
327
288
|
*
|
|
328
289
|
* @export
|
|
@@ -946,6 +907,104 @@ export interface BaseInvoiceResponse {
|
|
|
946
907
|
*/
|
|
947
908
|
'totalInclVat': DineroObjectResponse;
|
|
948
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];
|
|
949
1008
|
/**
|
|
950
1009
|
*
|
|
951
1010
|
* @export
|
|
@@ -1186,6 +1245,31 @@ export interface BaseResponse {
|
|
|
1186
1245
|
*/
|
|
1187
1246
|
'version'?: number;
|
|
1188
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
|
+
}
|
|
1189
1273
|
/**
|
|
1190
1274
|
*
|
|
1191
1275
|
* @export
|
|
@@ -1659,7 +1743,7 @@ export interface ContainerWithProductsResponse {
|
|
|
1659
1743
|
'products': Array<ProductResponse>;
|
|
1660
1744
|
}
|
|
1661
1745
|
/**
|
|
1662
|
-
*
|
|
1746
|
+
* API Request for creating a `container` entity.
|
|
1663
1747
|
* @export
|
|
1664
1748
|
* @interface CreateContainerRequest
|
|
1665
1749
|
*/
|
|
@@ -1824,6 +1908,37 @@ export interface CreateInvoiceRequest {
|
|
|
1824
1908
|
*/
|
|
1825
1909
|
'amount': DineroObjectRequest;
|
|
1826
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
|
+
}
|
|
1827
1942
|
/**
|
|
1828
1943
|
*
|
|
1829
1944
|
* @export
|
|
@@ -1856,7 +1971,7 @@ export interface CreatePermissionParams {
|
|
|
1856
1971
|
'attributes': Array<string>;
|
|
1857
1972
|
}
|
|
1858
1973
|
/**
|
|
1859
|
-
*
|
|
1974
|
+
* API Request for creating a `point of sale` entity.
|
|
1860
1975
|
* @export
|
|
1861
1976
|
* @interface CreatePointOfSaleRequest
|
|
1862
1977
|
*/
|
|
@@ -1893,7 +2008,7 @@ export interface CreatePointOfSaleRequest {
|
|
|
1893
2008
|
'cashierRoleIds'?: Array<number>;
|
|
1894
2009
|
}
|
|
1895
2010
|
/**
|
|
1896
|
-
*
|
|
2011
|
+
* API Request for creating a `product` entity.
|
|
1897
2012
|
* @export
|
|
1898
2013
|
* @interface CreateProductRequest
|
|
1899
2014
|
*/
|
|
@@ -2003,6 +2118,19 @@ export interface CreateShiftRequest {
|
|
|
2003
2118
|
*/
|
|
2004
2119
|
'roles': Array<string>;
|
|
2005
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
|
+
}
|
|
2006
2134
|
/**
|
|
2007
2135
|
*
|
|
2008
2136
|
* @export
|
|
@@ -3154,44 +3282,38 @@ export interface InvoiceUserResponse {
|
|
|
3154
3282
|
/**
|
|
3155
3283
|
*
|
|
3156
3284
|
* @export
|
|
3157
|
-
* @interface
|
|
3285
|
+
* @interface MarkFulfilledExternallyRequest
|
|
3158
3286
|
*/
|
|
3159
|
-
export interface
|
|
3160
|
-
/**
|
|
3161
|
-
*
|
|
3162
|
-
* @type {number}
|
|
3163
|
-
* @memberof MemberAuthenticationPinRequest
|
|
3164
|
-
*/
|
|
3165
|
-
'memberId': number;
|
|
3287
|
+
export interface MarkFulfilledExternallyRequest {
|
|
3166
3288
|
/**
|
|
3167
|
-
*
|
|
3289
|
+
* Why this request is being marked paid out-of-band (audit trail).
|
|
3168
3290
|
* @type {string}
|
|
3169
|
-
* @memberof
|
|
3291
|
+
* @memberof MarkFulfilledExternallyRequest
|
|
3170
3292
|
*/
|
|
3171
|
-
'
|
|
3293
|
+
'reason': string;
|
|
3172
3294
|
}
|
|
3173
3295
|
/**
|
|
3174
3296
|
*
|
|
3175
3297
|
* @export
|
|
3176
|
-
* @interface
|
|
3298
|
+
* @interface MemberAuthenticationPinRequest
|
|
3177
3299
|
*/
|
|
3178
|
-
export interface
|
|
3300
|
+
export interface MemberAuthenticationPinRequest {
|
|
3179
3301
|
/**
|
|
3180
3302
|
*
|
|
3181
3303
|
* @type {number}
|
|
3182
|
-
* @memberof
|
|
3304
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3183
3305
|
*/
|
|
3184
3306
|
'memberId': number;
|
|
3185
3307
|
/**
|
|
3186
3308
|
*
|
|
3187
3309
|
* @type {string}
|
|
3188
|
-
* @memberof
|
|
3310
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3189
3311
|
*/
|
|
3190
3312
|
'pin': string;
|
|
3191
3313
|
/**
|
|
3192
3314
|
* POS identifier
|
|
3193
3315
|
* @type {number}
|
|
3194
|
-
* @memberof
|
|
3316
|
+
* @memberof MemberAuthenticationPinRequest
|
|
3195
3317
|
*/
|
|
3196
3318
|
'posId': number;
|
|
3197
3319
|
}
|
|
@@ -3265,6 +3387,25 @@ export interface PaginatedBaseEventResponse {
|
|
|
3265
3387
|
*/
|
|
3266
3388
|
'records': Array<BaseEventResponse>;
|
|
3267
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
|
+
}
|
|
3268
3409
|
/**
|
|
3269
3410
|
*
|
|
3270
3411
|
* @export
|
|
@@ -3304,7 +3445,7 @@ export interface PaginatedBaseTransactionResponse {
|
|
|
3304
3445
|
'records': Array<BaseTransactionResponse>;
|
|
3305
3446
|
}
|
|
3306
3447
|
/**
|
|
3307
|
-
*
|
|
3448
|
+
* Paginated API Response for the `container` entity.
|
|
3308
3449
|
* @export
|
|
3309
3450
|
* @interface PaginatedContainerResponse
|
|
3310
3451
|
*/
|
|
@@ -3323,7 +3464,7 @@ export interface PaginatedContainerResponse {
|
|
|
3323
3464
|
'records': Array<ContainerResponse>;
|
|
3324
3465
|
}
|
|
3325
3466
|
/**
|
|
3326
|
-
*
|
|
3467
|
+
* Paginated API Response for the `container` entity, with each container\'s products inlined.
|
|
3327
3468
|
* @export
|
|
3328
3469
|
* @interface PaginatedContainerWithProductResponse
|
|
3329
3470
|
*/
|
|
@@ -3437,7 +3578,7 @@ export interface PaginatedInvoiceResponse {
|
|
|
3437
3578
|
'records': Array<InvoiceResponseTypes>;
|
|
3438
3579
|
}
|
|
3439
3580
|
/**
|
|
3440
|
-
*
|
|
3581
|
+
* Paginated API Response for the `point of sale` entity.
|
|
3441
3582
|
* @export
|
|
3442
3583
|
* @interface PaginatedPointOfSaleResponse
|
|
3443
3584
|
*/
|
|
@@ -3456,7 +3597,7 @@ export interface PaginatedPointOfSaleResponse {
|
|
|
3456
3597
|
'records': Array<PointOfSaleResponse>;
|
|
3457
3598
|
}
|
|
3458
3599
|
/**
|
|
3459
|
-
*
|
|
3600
|
+
* Paginated API Response for the `product category` entity.
|
|
3460
3601
|
* @export
|
|
3461
3602
|
* @interface PaginatedProductCategoryResponse
|
|
3462
3603
|
*/
|
|
@@ -3475,7 +3616,7 @@ export interface PaginatedProductCategoryResponse {
|
|
|
3475
3616
|
'records': Array<ProductCategoryResponse>;
|
|
3476
3617
|
}
|
|
3477
3618
|
/**
|
|
3478
|
-
*
|
|
3619
|
+
* Paginated API Response for the `product` entity.
|
|
3479
3620
|
* @export
|
|
3480
3621
|
* @interface PaginatedProductResponse
|
|
3481
3622
|
*/
|
|
@@ -3570,7 +3711,7 @@ export interface PaginatedUserResponse {
|
|
|
3570
3711
|
'records': Array<UserResponse>;
|
|
3571
3712
|
}
|
|
3572
3713
|
/**
|
|
3573
|
-
*
|
|
3714
|
+
* Paginated API Response for the `vat group` entity.
|
|
3574
3715
|
* @export
|
|
3575
3716
|
* @interface PaginatedVatGroupResponse
|
|
3576
3717
|
*/
|
|
@@ -3695,6 +3836,31 @@ export interface PatchUserTypeRequest {
|
|
|
3695
3836
|
*/
|
|
3696
3837
|
'userType': string;
|
|
3697
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
|
+
}
|
|
3698
3864
|
/**
|
|
3699
3865
|
*
|
|
3700
3866
|
* @export
|
|
@@ -3902,7 +4068,7 @@ export interface PermissionResponse {
|
|
|
3902
4068
|
'actions': Array<ActionResponse>;
|
|
3903
4069
|
}
|
|
3904
4070
|
/**
|
|
3905
|
-
*
|
|
4071
|
+
* API Response describing who is associated with a `point of sale`: its owner, the owner\'s organ members, and the cashier users (users holding at least one of the POS\'s cashier roles).
|
|
3906
4072
|
* @export
|
|
3907
4073
|
* @interface PointOfSaleAssociateUsersResponse
|
|
3908
4074
|
*/
|
|
@@ -4057,6 +4223,19 @@ export interface PointOfSaleWithContainersResponse {
|
|
|
4057
4223
|
/**
|
|
4058
4224
|
*
|
|
4059
4225
|
* @export
|
|
4226
|
+
* @interface ProcessTerminalPaymentRequest
|
|
4227
|
+
*/
|
|
4228
|
+
export interface ProcessTerminalPaymentRequest {
|
|
4229
|
+
/**
|
|
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
|
|
4060
4239
|
* @interface ProductCategoryRequest
|
|
4061
4240
|
*/
|
|
4062
4241
|
export interface ProductCategoryRequest {
|
|
@@ -4220,27 +4399,77 @@ export interface ProductResponse {
|
|
|
4220
4399
|
'priceList': boolean;
|
|
4221
4400
|
}
|
|
4222
4401
|
/**
|
|
4223
|
-
*
|
|
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.
|
|
4224
4403
|
* @export
|
|
4225
|
-
* @interface
|
|
4404
|
+
* @interface PublicPaymentRequestResponse
|
|
4226
4405
|
*/
|
|
4227
|
-
export interface
|
|
4406
|
+
export interface PublicPaymentRequestResponse {
|
|
4228
4407
|
/**
|
|
4229
|
-
*
|
|
4408
|
+
* UUID v4 identifier.
|
|
4230
4409
|
* @type {string}
|
|
4231
|
-
* @memberof
|
|
4410
|
+
* @memberof PublicPaymentRequestResponse
|
|
4232
4411
|
*/
|
|
4233
|
-
'
|
|
4412
|
+
'uuid': string;
|
|
4234
4413
|
/**
|
|
4235
|
-
*
|
|
4414
|
+
* Recipient display name (e.g. \"John D.\").
|
|
4236
4415
|
* @type {string}
|
|
4237
|
-
* @memberof
|
|
4416
|
+
* @memberof PublicPaymentRequestResponse
|
|
4238
4417
|
*/
|
|
4239
|
-
'
|
|
4418
|
+
'forDisplayName': string;
|
|
4240
4419
|
/**
|
|
4241
|
-
*
|
|
4242
|
-
* @type {
|
|
4243
|
-
* @memberof
|
|
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];
|
|
4451
|
+
/**
|
|
4452
|
+
*
|
|
4453
|
+
* @export
|
|
4454
|
+
* @interface QRCodeResponse
|
|
4455
|
+
*/
|
|
4456
|
+
export interface QRCodeResponse {
|
|
4457
|
+
/**
|
|
4458
|
+
* The session ID
|
|
4459
|
+
* @type {string}
|
|
4460
|
+
* @memberof QRCodeResponse
|
|
4461
|
+
*/
|
|
4462
|
+
'sessionId': string;
|
|
4463
|
+
/**
|
|
4464
|
+
* The QR code URL
|
|
4465
|
+
* @type {string}
|
|
4466
|
+
* @memberof QRCodeResponse
|
|
4467
|
+
*/
|
|
4468
|
+
'qrCodeUrl': string;
|
|
4469
|
+
/**
|
|
4470
|
+
* The expiry date of the QR code
|
|
4471
|
+
* @type {string}
|
|
4472
|
+
* @memberof QRCodeResponse
|
|
4244
4473
|
*/
|
|
4245
4474
|
'expiresAt': string;
|
|
4246
4475
|
}
|
|
@@ -4896,6 +5125,37 @@ export interface StripePaymentIntentStatusResponse {
|
|
|
4896
5125
|
*/
|
|
4897
5126
|
'state': number;
|
|
4898
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
|
+
}
|
|
4899
5159
|
/**
|
|
4900
5160
|
*
|
|
4901
5161
|
* @export
|
|
@@ -5088,6 +5348,67 @@ export interface SubTransactionRowResponse {
|
|
|
5088
5348
|
*/
|
|
5089
5349
|
'totalPriceInclVat': DineroObjectResponse;
|
|
5090
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
|
+
}
|
|
5091
5412
|
/**
|
|
5092
5413
|
*
|
|
5093
5414
|
* @export
|
|
@@ -5100,6 +5421,12 @@ export interface TermsOfServiceResponse {
|
|
|
5100
5421
|
* @memberof TermsOfServiceResponse
|
|
5101
5422
|
*/
|
|
5102
5423
|
'versionNumber': string;
|
|
5424
|
+
/**
|
|
5425
|
+
* The date this version took effect.
|
|
5426
|
+
* @type {string}
|
|
5427
|
+
* @memberof TermsOfServiceResponse
|
|
5428
|
+
*/
|
|
5429
|
+
'date': string;
|
|
5103
5430
|
/**
|
|
5104
5431
|
* The terms of service content.
|
|
5105
5432
|
* @type {string}
|
|
@@ -5107,6 +5434,17 @@ export interface TermsOfServiceResponse {
|
|
|
5107
5434
|
*/
|
|
5108
5435
|
'content': string;
|
|
5109
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];
|
|
5110
5448
|
/**
|
|
5111
5449
|
*
|
|
5112
5450
|
* @export
|
|
@@ -5721,7 +6059,7 @@ export interface TransferSummaryResponse {
|
|
|
5721
6059
|
'manualDeletions': TransferAggregateResponse;
|
|
5722
6060
|
}
|
|
5723
6061
|
/**
|
|
5724
|
-
*
|
|
6062
|
+
* API Request for updating a `container` entity.
|
|
5725
6063
|
* @export
|
|
5726
6064
|
* @interface UpdateContainerRequest
|
|
5727
6065
|
*/
|
|
@@ -5971,7 +6309,7 @@ export interface UpdatePinRequest {
|
|
|
5971
6309
|
'pin': string;
|
|
5972
6310
|
}
|
|
5973
6311
|
/**
|
|
5974
|
-
*
|
|
6312
|
+
* API Request for updating a `point of sale` entity.
|
|
5975
6313
|
* @export
|
|
5976
6314
|
* @interface UpdatePointOfSaleRequest
|
|
5977
6315
|
*/
|
|
@@ -6008,7 +6346,7 @@ export interface UpdatePointOfSaleRequest {
|
|
|
6008
6346
|
'cashierRoleIds'?: Array<number>;
|
|
6009
6347
|
}
|
|
6010
6348
|
/**
|
|
6011
|
-
*
|
|
6349
|
+
* API Request for updating a `product` entity.
|
|
6012
6350
|
* @export
|
|
6013
6351
|
* @interface UpdateProductRequest
|
|
6014
6352
|
*/
|
|
@@ -6173,9 +6511,21 @@ export interface UpdateUserRequest {
|
|
|
6173
6511
|
* @memberof UpdateUserRequest
|
|
6174
6512
|
*/
|
|
6175
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;
|
|
6176
6526
|
}
|
|
6177
6527
|
/**
|
|
6178
|
-
*
|
|
6528
|
+
* API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
|
|
6179
6529
|
* @export
|
|
6180
6530
|
* @interface UpdateVatGroupRequest
|
|
6181
6531
|
*/
|
|
@@ -6348,11 +6698,17 @@ export interface UserResponse {
|
|
|
6348
6698
|
*/
|
|
6349
6699
|
'email'?: string;
|
|
6350
6700
|
/**
|
|
6351
|
-
* Whether this user
|
|
6352
|
-
* @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}
|
|
6353
6709
|
* @memberof UserResponse
|
|
6354
6710
|
*/
|
|
6355
|
-
'acceptedToS'?:
|
|
6711
|
+
'acceptedToS'?: TermsOfServiceStatus;
|
|
6356
6712
|
/**
|
|
6357
6713
|
* Whether data about this user can be used (non-anonymously) for more data science!
|
|
6358
6714
|
* @type {boolean}
|
|
@@ -6389,6 +6745,12 @@ export interface UserResponse {
|
|
|
6389
6745
|
* @memberof UserResponse
|
|
6390
6746
|
*/
|
|
6391
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;
|
|
6392
6754
|
}
|
|
6393
6755
|
/**
|
|
6394
6756
|
*
|
|
@@ -6495,6 +6857,50 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6495
6857
|
*/
|
|
6496
6858
|
'nickname'?: string;
|
|
6497
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
|
+
}
|
|
6498
6904
|
/**
|
|
6499
6905
|
* The type of a user
|
|
6500
6906
|
* @export
|
|
@@ -6537,7 +6943,7 @@ export interface UserTypeTotalBalanceResponse {
|
|
|
6537
6943
|
'totalNegative': DineroObjectResponse;
|
|
6538
6944
|
}
|
|
6539
6945
|
/**
|
|
6540
|
-
*
|
|
6946
|
+
* A `BaseUserResponse` augmented with a stable position index, used to keep ordered user lists (e.g. POS owner members) rendering in a consistent order across requests.
|
|
6541
6947
|
* @export
|
|
6542
6948
|
* @interface UserWithIndex
|
|
6543
6949
|
*/
|
|
@@ -6569,7 +6975,7 @@ export interface ValidationResponse {
|
|
|
6569
6975
|
'errors': Array<string>;
|
|
6570
6976
|
}
|
|
6571
6977
|
/**
|
|
6572
|
-
*
|
|
6978
|
+
* API Response for a complete VAT declaration — one result table for a given year and period, containing one {@link VatDeclarationRow} per VAT group.
|
|
6573
6979
|
* @export
|
|
6574
6980
|
* @interface VatDeclarationResponse
|
|
6575
6981
|
*/
|
|
@@ -6594,7 +7000,7 @@ export interface VatDeclarationResponse {
|
|
|
6594
7000
|
'rows': Array<VatDeclarationRow>;
|
|
6595
7001
|
}
|
|
6596
7002
|
/**
|
|
6597
|
-
*
|
|
7003
|
+
* One row of a VAT declaration — the VAT collected for a single group, broken down by period.
|
|
6598
7004
|
* @export
|
|
6599
7005
|
* @interface VatDeclarationRow
|
|
6600
7006
|
*/
|
|
@@ -7062,10 +7468,9 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7062
7468
|
confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7063
7469
|
/**
|
|
7064
7470
|
*
|
|
7065
|
-
* @summary EAN
|
|
7066
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login
|
|
7471
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7472
|
+
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login request with posId
|
|
7067
7473
|
* @param {*} [options] Override http request option.
|
|
7068
|
-
* @deprecated
|
|
7069
7474
|
* @throws {RequiredError}
|
|
7070
7475
|
*/
|
|
7071
7476
|
eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -7140,13 +7545,12 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7140
7545
|
localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7141
7546
|
/**
|
|
7142
7547
|
*
|
|
7143
|
-
* @summary PIN
|
|
7144
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login
|
|
7548
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7549
|
+
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login request with posId
|
|
7145
7550
|
* @param {*} [options] Override http request option.
|
|
7146
|
-
* @deprecated
|
|
7147
7551
|
* @throws {RequiredError}
|
|
7148
7552
|
*/
|
|
7149
|
-
|
|
7553
|
+
memberPINAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7150
7554
|
/**
|
|
7151
7555
|
*
|
|
7152
7556
|
* @summary Mock login and hand out token.
|
|
@@ -7157,19 +7561,17 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7157
7561
|
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7158
7562
|
/**
|
|
7159
7563
|
*
|
|
7160
|
-
* @summary NFC
|
|
7161
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login
|
|
7564
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7565
|
+
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login request with posId
|
|
7162
7566
|
* @param {*} [options] Override http request option.
|
|
7163
|
-
* @deprecated
|
|
7164
7567
|
* @throws {RequiredError}
|
|
7165
7568
|
*/
|
|
7166
7569
|
nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7167
7570
|
/**
|
|
7168
7571
|
*
|
|
7169
|
-
* @summary PIN
|
|
7170
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login
|
|
7572
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7573
|
+
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login request with posId
|
|
7171
7574
|
* @param {*} [options] Override http request option.
|
|
7172
|
-
* @deprecated
|
|
7173
7575
|
* @throws {RequiredError}
|
|
7174
7576
|
*/
|
|
7175
7577
|
pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -7196,38 +7598,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7196
7598
|
* @throws {RequiredError}
|
|
7197
7599
|
*/
|
|
7198
7600
|
resetLocalWithToken: (authenticationResetTokenRequest: AuthenticationResetTokenRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7199
|
-
/**
|
|
7200
|
-
*
|
|
7201
|
-
* @summary Secure EAN authentication that requires POS user authentication
|
|
7202
|
-
* @param {AuthenticationSecureEanRequest} authenticationSecureEanRequest The EAN login request with posId
|
|
7203
|
-
* @param {*} [options] Override http request option.
|
|
7204
|
-
* @throws {RequiredError}
|
|
7205
|
-
*/
|
|
7206
|
-
secureEanAuthentication: (authenticationSecureEanRequest: AuthenticationSecureEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7207
|
-
/**
|
|
7208
|
-
*
|
|
7209
|
-
* @summary Secure member PIN authentication that requires POS user authentication
|
|
7210
|
-
* @param {MemberAuthenticationSecurePinRequest} memberAuthenticationSecurePinRequest The PIN login request with posId
|
|
7211
|
-
* @param {*} [options] Override http request option.
|
|
7212
|
-
* @throws {RequiredError}
|
|
7213
|
-
*/
|
|
7214
|
-
secureMemberPINAuthentication: (memberAuthenticationSecurePinRequest: MemberAuthenticationSecurePinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7215
|
-
/**
|
|
7216
|
-
*
|
|
7217
|
-
* @summary Secure NFC authentication that requires POS user authentication
|
|
7218
|
-
* @param {AuthenticationSecureNfcRequest} authenticationSecureNfcRequest The NFC login request with posId
|
|
7219
|
-
* @param {*} [options] Override http request option.
|
|
7220
|
-
* @throws {RequiredError}
|
|
7221
|
-
*/
|
|
7222
|
-
secureNfcAuthentication: (authenticationSecureNfcRequest: AuthenticationSecureNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7223
|
-
/**
|
|
7224
|
-
*
|
|
7225
|
-
* @summary Secure PIN authentication that requires POS user authentication
|
|
7226
|
-
* @param {AuthenticationSecurePinRequest} authenticationSecurePinRequest The PIN login request with posId
|
|
7227
|
-
* @param {*} [options] Override http request option.
|
|
7228
|
-
* @throws {RequiredError}
|
|
7229
|
-
*/
|
|
7230
|
-
securePINAuthentication: (authenticationSecurePinRequest: AuthenticationSecurePinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7231
7601
|
};
|
|
7232
7602
|
/**
|
|
7233
7603
|
* AuthenticateApi - functional programming interface
|
|
@@ -7260,10 +7630,9 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7260
7630
|
confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7261
7631
|
/**
|
|
7262
7632
|
*
|
|
7263
|
-
* @summary EAN
|
|
7264
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login
|
|
7633
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7634
|
+
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login request with posId
|
|
7265
7635
|
* @param {*} [options] Override http request option.
|
|
7266
|
-
* @deprecated
|
|
7267
7636
|
* @throws {RequiredError}
|
|
7268
7637
|
*/
|
|
7269
7638
|
eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
@@ -7338,13 +7707,12 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7338
7707
|
localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7339
7708
|
/**
|
|
7340
7709
|
*
|
|
7341
|
-
* @summary PIN
|
|
7342
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login
|
|
7710
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7711
|
+
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login request with posId
|
|
7343
7712
|
* @param {*} [options] Override http request option.
|
|
7344
|
-
* @deprecated
|
|
7345
7713
|
* @throws {RequiredError}
|
|
7346
7714
|
*/
|
|
7347
|
-
|
|
7715
|
+
memberPINAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7348
7716
|
/**
|
|
7349
7717
|
*
|
|
7350
7718
|
* @summary Mock login and hand out token.
|
|
@@ -7355,19 +7723,17 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7355
7723
|
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7356
7724
|
/**
|
|
7357
7725
|
*
|
|
7358
|
-
* @summary NFC
|
|
7359
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login
|
|
7726
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7727
|
+
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login request with posId
|
|
7360
7728
|
* @param {*} [options] Override http request option.
|
|
7361
|
-
* @deprecated
|
|
7362
7729
|
* @throws {RequiredError}
|
|
7363
7730
|
*/
|
|
7364
7731
|
nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7365
7732
|
/**
|
|
7366
7733
|
*
|
|
7367
|
-
* @summary PIN
|
|
7368
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login
|
|
7734
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7735
|
+
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login request with posId
|
|
7369
7736
|
* @param {*} [options] Override http request option.
|
|
7370
|
-
* @deprecated
|
|
7371
7737
|
* @throws {RequiredError}
|
|
7372
7738
|
*/
|
|
7373
7739
|
pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
@@ -7394,38 +7760,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7394
7760
|
* @throws {RequiredError}
|
|
7395
7761
|
*/
|
|
7396
7762
|
resetLocalWithToken(authenticationResetTokenRequest: AuthenticationResetTokenRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7397
|
-
/**
|
|
7398
|
-
*
|
|
7399
|
-
* @summary Secure EAN authentication that requires POS user authentication
|
|
7400
|
-
* @param {AuthenticationSecureEanRequest} authenticationSecureEanRequest The EAN login request with posId
|
|
7401
|
-
* @param {*} [options] Override http request option.
|
|
7402
|
-
* @throws {RequiredError}
|
|
7403
|
-
*/
|
|
7404
|
-
secureEanAuthentication(authenticationSecureEanRequest: AuthenticationSecureEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7405
|
-
/**
|
|
7406
|
-
*
|
|
7407
|
-
* @summary Secure member PIN authentication that requires POS user authentication
|
|
7408
|
-
* @param {MemberAuthenticationSecurePinRequest} memberAuthenticationSecurePinRequest The PIN login request with posId
|
|
7409
|
-
* @param {*} [options] Override http request option.
|
|
7410
|
-
* @throws {RequiredError}
|
|
7411
|
-
*/
|
|
7412
|
-
secureMemberPINAuthentication(memberAuthenticationSecurePinRequest: MemberAuthenticationSecurePinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7413
|
-
/**
|
|
7414
|
-
*
|
|
7415
|
-
* @summary Secure NFC authentication that requires POS user authentication
|
|
7416
|
-
* @param {AuthenticationSecureNfcRequest} authenticationSecureNfcRequest The NFC login request with posId
|
|
7417
|
-
* @param {*} [options] Override http request option.
|
|
7418
|
-
* @throws {RequiredError}
|
|
7419
|
-
*/
|
|
7420
|
-
secureNfcAuthentication(authenticationSecureNfcRequest: AuthenticationSecureNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7421
|
-
/**
|
|
7422
|
-
*
|
|
7423
|
-
* @summary Secure PIN authentication that requires POS user authentication
|
|
7424
|
-
* @param {AuthenticationSecurePinRequest} authenticationSecurePinRequest The PIN login request with posId
|
|
7425
|
-
* @param {*} [options] Override http request option.
|
|
7426
|
-
* @throws {RequiredError}
|
|
7427
|
-
*/
|
|
7428
|
-
securePINAuthentication(authenticationSecurePinRequest: AuthenticationSecurePinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7429
7763
|
};
|
|
7430
7764
|
/**
|
|
7431
7765
|
* AuthenticateApi - factory interface
|
|
@@ -7458,10 +7792,9 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7458
7792
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7459
7793
|
/**
|
|
7460
7794
|
*
|
|
7461
|
-
* @summary EAN
|
|
7795
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7462
7796
|
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7463
7797
|
* @param {*} [options] Override http request option.
|
|
7464
|
-
* @deprecated
|
|
7465
7798
|
* @throws {RequiredError}
|
|
7466
7799
|
*/
|
|
7467
7800
|
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
@@ -7536,13 +7869,12 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7536
7869
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7537
7870
|
/**
|
|
7538
7871
|
*
|
|
7539
|
-
* @summary PIN
|
|
7540
|
-
* @param {
|
|
7872
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
7873
|
+
* @param {AuthenticateApiMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
7541
7874
|
* @param {*} [options] Override http request option.
|
|
7542
|
-
* @deprecated
|
|
7543
7875
|
* @throws {RequiredError}
|
|
7544
7876
|
*/
|
|
7545
|
-
|
|
7877
|
+
memberPINAuthentication(requestParameters: AuthenticateApiMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7546
7878
|
/**
|
|
7547
7879
|
*
|
|
7548
7880
|
* @summary Mock login and hand out token.
|
|
@@ -7553,19 +7885,17 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7553
7885
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7554
7886
|
/**
|
|
7555
7887
|
*
|
|
7556
|
-
* @summary NFC
|
|
7888
|
+
* @summary NFC authentication that requires POS user authentication
|
|
7557
7889
|
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7558
7890
|
* @param {*} [options] Override http request option.
|
|
7559
|
-
* @deprecated
|
|
7560
7891
|
* @throws {RequiredError}
|
|
7561
7892
|
*/
|
|
7562
7893
|
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7563
7894
|
/**
|
|
7564
7895
|
*
|
|
7565
|
-
* @summary PIN
|
|
7896
|
+
* @summary PIN authentication that requires POS user authentication
|
|
7566
7897
|
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7567
7898
|
* @param {*} [options] Override http request option.
|
|
7568
|
-
* @deprecated
|
|
7569
7899
|
* @throws {RequiredError}
|
|
7570
7900
|
*/
|
|
7571
7901
|
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
@@ -7592,38 +7922,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7592
7922
|
* @throws {RequiredError}
|
|
7593
7923
|
*/
|
|
7594
7924
|
resetLocalWithToken(requestParameters: AuthenticateApiResetLocalWithTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7595
|
-
/**
|
|
7596
|
-
*
|
|
7597
|
-
* @summary Secure EAN authentication that requires POS user authentication
|
|
7598
|
-
* @param {AuthenticateApiSecureEanAuthenticationRequest} requestParameters Request parameters.
|
|
7599
|
-
* @param {*} [options] Override http request option.
|
|
7600
|
-
* @throws {RequiredError}
|
|
7601
|
-
*/
|
|
7602
|
-
secureEanAuthentication(requestParameters: AuthenticateApiSecureEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7603
|
-
/**
|
|
7604
|
-
*
|
|
7605
|
-
* @summary Secure member PIN authentication that requires POS user authentication
|
|
7606
|
-
* @param {AuthenticateApiSecureMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
7607
|
-
* @param {*} [options] Override http request option.
|
|
7608
|
-
* @throws {RequiredError}
|
|
7609
|
-
*/
|
|
7610
|
-
secureMemberPINAuthentication(requestParameters: AuthenticateApiSecureMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7611
|
-
/**
|
|
7612
|
-
*
|
|
7613
|
-
* @summary Secure NFC authentication that requires POS user authentication
|
|
7614
|
-
* @param {AuthenticateApiSecureNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7615
|
-
* @param {*} [options] Override http request option.
|
|
7616
|
-
* @throws {RequiredError}
|
|
7617
|
-
*/
|
|
7618
|
-
secureNfcAuthentication(requestParameters: AuthenticateApiSecureNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7619
|
-
/**
|
|
7620
|
-
*
|
|
7621
|
-
* @summary Secure PIN authentication that requires POS user authentication
|
|
7622
|
-
* @param {AuthenticateApiSecurePINAuthenticationRequest} requestParameters Request parameters.
|
|
7623
|
-
* @param {*} [options] Override http request option.
|
|
7624
|
-
* @throws {RequiredError}
|
|
7625
|
-
*/
|
|
7626
|
-
securePINAuthentication(requestParameters: AuthenticateApiSecurePINAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7627
7925
|
};
|
|
7628
7926
|
/**
|
|
7629
7927
|
* Request parameters for authenticatePointOfSale operation in AuthenticateApi.
|
|
@@ -7671,7 +7969,7 @@ export interface AuthenticateApiConfirmQRCodeRequest {
|
|
|
7671
7969
|
*/
|
|
7672
7970
|
export interface AuthenticateApiEanAuthenticationRequest {
|
|
7673
7971
|
/**
|
|
7674
|
-
* The EAN login
|
|
7972
|
+
* The EAN login request with posId
|
|
7675
7973
|
* @type {AuthenticationEanRequest}
|
|
7676
7974
|
* @memberof AuthenticateApiEanAuthentication
|
|
7677
7975
|
*/
|
|
@@ -7756,15 +8054,15 @@ export interface AuthenticateApiLocalAuthenticationRequest {
|
|
|
7756
8054
|
readonly authenticationLocalRequest: AuthenticationLocalRequest;
|
|
7757
8055
|
}
|
|
7758
8056
|
/**
|
|
7759
|
-
* Request parameters for
|
|
8057
|
+
* Request parameters for memberPINAuthentication operation in AuthenticateApi.
|
|
7760
8058
|
* @export
|
|
7761
|
-
* @interface
|
|
8059
|
+
* @interface AuthenticateApiMemberPINAuthenticationRequest
|
|
7762
8060
|
*/
|
|
7763
|
-
export interface
|
|
8061
|
+
export interface AuthenticateApiMemberPINAuthenticationRequest {
|
|
7764
8062
|
/**
|
|
7765
|
-
* The PIN login
|
|
8063
|
+
* The PIN login request with posId
|
|
7766
8064
|
* @type {MemberAuthenticationPinRequest}
|
|
7767
|
-
* @memberof
|
|
8065
|
+
* @memberof AuthenticateApiMemberPINAuthentication
|
|
7768
8066
|
*/
|
|
7769
8067
|
readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
|
|
7770
8068
|
}
|
|
@@ -7788,7 +8086,7 @@ export interface AuthenticateApiMockAuthenticationRequest {
|
|
|
7788
8086
|
*/
|
|
7789
8087
|
export interface AuthenticateApiNfcAuthenticationRequest {
|
|
7790
8088
|
/**
|
|
7791
|
-
* The NFC login
|
|
8089
|
+
* The NFC login request with posId
|
|
7792
8090
|
* @type {AuthenticationNfcRequest}
|
|
7793
8091
|
* @memberof AuthenticateApiNfcAuthentication
|
|
7794
8092
|
*/
|
|
@@ -7801,7 +8099,7 @@ export interface AuthenticateApiNfcAuthenticationRequest {
|
|
|
7801
8099
|
*/
|
|
7802
8100
|
export interface AuthenticateApiPinAuthenticationRequest {
|
|
7803
8101
|
/**
|
|
7804
|
-
* The PIN login
|
|
8102
|
+
* The PIN login request with posId
|
|
7805
8103
|
* @type {AuthenticationPinRequest}
|
|
7806
8104
|
* @memberof AuthenticateApiPinAuthentication
|
|
7807
8105
|
*/
|
|
@@ -7834,73 +8132,21 @@ export interface AuthenticateApiResetLocalWithTokenRequest {
|
|
|
7834
8132
|
readonly authenticationResetTokenRequest: AuthenticationResetTokenRequest;
|
|
7835
8133
|
}
|
|
7836
8134
|
/**
|
|
7837
|
-
*
|
|
8135
|
+
* AuthenticateApi - object-oriented interface
|
|
7838
8136
|
* @export
|
|
7839
|
-
* @
|
|
8137
|
+
* @class AuthenticateApi
|
|
8138
|
+
* @extends {BaseAPI}
|
|
7840
8139
|
*/
|
|
7841
|
-
export
|
|
8140
|
+
export declare class AuthenticateApi extends BaseAPI {
|
|
7842
8141
|
/**
|
|
7843
|
-
*
|
|
7844
|
-
* @
|
|
7845
|
-
* @
|
|
8142
|
+
*
|
|
8143
|
+
* @summary Get a JWT token for the given POS
|
|
8144
|
+
* @param {AuthenticateApiAuthenticatePointOfSaleRequest} requestParameters Request parameters.
|
|
8145
|
+
* @param {*} [options] Override http request option.
|
|
8146
|
+
* @throws {RequiredError}
|
|
8147
|
+
* @memberof AuthenticateApi
|
|
7846
8148
|
*/
|
|
7847
|
-
|
|
7848
|
-
}
|
|
7849
|
-
/**
|
|
7850
|
-
* Request parameters for secureMemberPINAuthentication operation in AuthenticateApi.
|
|
7851
|
-
* @export
|
|
7852
|
-
* @interface AuthenticateApiSecureMemberPINAuthenticationRequest
|
|
7853
|
-
*/
|
|
7854
|
-
export interface AuthenticateApiSecureMemberPINAuthenticationRequest {
|
|
7855
|
-
/**
|
|
7856
|
-
* The PIN login request with posId
|
|
7857
|
-
* @type {MemberAuthenticationSecurePinRequest}
|
|
7858
|
-
* @memberof AuthenticateApiSecureMemberPINAuthentication
|
|
7859
|
-
*/
|
|
7860
|
-
readonly memberAuthenticationSecurePinRequest: MemberAuthenticationSecurePinRequest;
|
|
7861
|
-
}
|
|
7862
|
-
/**
|
|
7863
|
-
* Request parameters for secureNfcAuthentication operation in AuthenticateApi.
|
|
7864
|
-
* @export
|
|
7865
|
-
* @interface AuthenticateApiSecureNfcAuthenticationRequest
|
|
7866
|
-
*/
|
|
7867
|
-
export interface AuthenticateApiSecureNfcAuthenticationRequest {
|
|
7868
|
-
/**
|
|
7869
|
-
* The NFC login request with posId
|
|
7870
|
-
* @type {AuthenticationSecureNfcRequest}
|
|
7871
|
-
* @memberof AuthenticateApiSecureNfcAuthentication
|
|
7872
|
-
*/
|
|
7873
|
-
readonly authenticationSecureNfcRequest: AuthenticationSecureNfcRequest;
|
|
7874
|
-
}
|
|
7875
|
-
/**
|
|
7876
|
-
* Request parameters for securePINAuthentication operation in AuthenticateApi.
|
|
7877
|
-
* @export
|
|
7878
|
-
* @interface AuthenticateApiSecurePINAuthenticationRequest
|
|
7879
|
-
*/
|
|
7880
|
-
export interface AuthenticateApiSecurePINAuthenticationRequest {
|
|
7881
|
-
/**
|
|
7882
|
-
* The PIN login request with posId
|
|
7883
|
-
* @type {AuthenticationSecurePinRequest}
|
|
7884
|
-
* @memberof AuthenticateApiSecurePINAuthentication
|
|
7885
|
-
*/
|
|
7886
|
-
readonly authenticationSecurePinRequest: AuthenticationSecurePinRequest;
|
|
7887
|
-
}
|
|
7888
|
-
/**
|
|
7889
|
-
* AuthenticateApi - object-oriented interface
|
|
7890
|
-
* @export
|
|
7891
|
-
* @class AuthenticateApi
|
|
7892
|
-
* @extends {BaseAPI}
|
|
7893
|
-
*/
|
|
7894
|
-
export declare class AuthenticateApi extends BaseAPI {
|
|
7895
|
-
/**
|
|
7896
|
-
*
|
|
7897
|
-
* @summary Get a JWT token for the given POS
|
|
7898
|
-
* @param {AuthenticateApiAuthenticatePointOfSaleRequest} requestParameters Request parameters.
|
|
7899
|
-
* @param {*} [options] Override http request option.
|
|
7900
|
-
* @throws {RequiredError}
|
|
7901
|
-
* @memberof AuthenticateApi
|
|
7902
|
-
*/
|
|
7903
|
-
authenticatePointOfSale(requestParameters: AuthenticateApiAuthenticatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8149
|
+
authenticatePointOfSale(requestParameters: AuthenticateApiAuthenticatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7904
8150
|
/**
|
|
7905
8151
|
*
|
|
7906
8152
|
* @summary Cancel QR code authentication
|
|
@@ -7909,7 +8155,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7909
8155
|
* @throws {RequiredError}
|
|
7910
8156
|
* @memberof AuthenticateApi
|
|
7911
8157
|
*/
|
|
7912
|
-
cancelQRCode(requestParameters: AuthenticateApiCancelQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8158
|
+
cancelQRCode(requestParameters: AuthenticateApiCancelQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
7913
8159
|
/**
|
|
7914
8160
|
*
|
|
7915
8161
|
* @summary Confirm QR code authentication from mobile app
|
|
@@ -7918,17 +8164,16 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7918
8164
|
* @throws {RequiredError}
|
|
7919
8165
|
* @memberof AuthenticateApi
|
|
7920
8166
|
*/
|
|
7921
|
-
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8167
|
+
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
7922
8168
|
/**
|
|
7923
8169
|
*
|
|
7924
|
-
* @summary EAN
|
|
8170
|
+
* @summary EAN authentication that requires POS user authentication
|
|
7925
8171
|
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7926
8172
|
* @param {*} [options] Override http request option.
|
|
7927
|
-
* @deprecated
|
|
7928
8173
|
* @throws {RequiredError}
|
|
7929
8174
|
* @memberof AuthenticateApi
|
|
7930
8175
|
*/
|
|
7931
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8176
|
+
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7932
8177
|
/**
|
|
7933
8178
|
*
|
|
7934
8179
|
* @summary Generate a QR code for authentication
|
|
@@ -7936,7 +8181,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7936
8181
|
* @throws {RequiredError}
|
|
7937
8182
|
* @memberof AuthenticateApi
|
|
7938
8183
|
*/
|
|
7939
|
-
generateQRCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRCodeResponse, any, {}>>;
|
|
8184
|
+
generateQRCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRCodeResponse, any, {}, any>>;
|
|
7940
8185
|
/**
|
|
7941
8186
|
*
|
|
7942
8187
|
* @summary Get the GEWISWeb public token used by SudoSOS
|
|
@@ -7944,7 +8189,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7944
8189
|
* @throws {RequiredError}
|
|
7945
8190
|
* @memberof AuthenticateApi
|
|
7946
8191
|
*/
|
|
7947
|
-
getGEWISWebPublic(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
8192
|
+
getGEWISWebPublic(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
7948
8193
|
/**
|
|
7949
8194
|
*
|
|
7950
8195
|
* @summary Get the JWT public key used by SudoSOS
|
|
@@ -7952,7 +8197,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7952
8197
|
* @throws {RequiredError}
|
|
7953
8198
|
* @memberof AuthenticateApi
|
|
7954
8199
|
*/
|
|
7955
|
-
getJWTPublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
8200
|
+
getJWTPublicKey(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
7956
8201
|
/**
|
|
7957
8202
|
*
|
|
7958
8203
|
* @summary Get the status of a QR authentication session
|
|
@@ -7961,7 +8206,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7961
8206
|
* @throws {RequiredError}
|
|
7962
8207
|
* @memberof AuthenticateApi
|
|
7963
8208
|
*/
|
|
7964
|
-
getQRStatus(requestParameters: AuthenticateApiGetQRStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRStatusResponse, any, {}>>;
|
|
8209
|
+
getQRStatus(requestParameters: AuthenticateApiGetQRStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QRStatusResponse, any, {}, any>>;
|
|
7965
8210
|
/**
|
|
7966
8211
|
*
|
|
7967
8212
|
* @summary LDAP login and hand out token If user has never signed in before this also creates an GEWIS account.
|
|
@@ -7970,7 +8215,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7970
8215
|
* @throws {RequiredError}
|
|
7971
8216
|
* @memberof AuthenticateApi
|
|
7972
8217
|
*/
|
|
7973
|
-
gewisLDAPAuthentication(requestParameters: AuthenticateApiGewisLDAPAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8218
|
+
gewisLDAPAuthentication(requestParameters: AuthenticateApiGewisLDAPAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7974
8219
|
/**
|
|
7975
8220
|
*
|
|
7976
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.
|
|
@@ -7979,7 +8224,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7979
8224
|
* @throws {RequiredError}
|
|
7980
8225
|
* @memberof AuthenticateApi
|
|
7981
8226
|
*/
|
|
7982
|
-
gewisWebAuthentication(requestParameters: AuthenticateApiGewisWebAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8227
|
+
gewisWebAuthentication(requestParameters: AuthenticateApiGewisWebAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7983
8228
|
/**
|
|
7984
8229
|
*
|
|
7985
8230
|
* @summary Key login and hand out token.
|
|
@@ -7988,7 +8233,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7988
8233
|
* @throws {RequiredError}
|
|
7989
8234
|
* @memberof AuthenticateApi
|
|
7990
8235
|
*/
|
|
7991
|
-
keyAuthentication(requestParameters: AuthenticateApiKeyAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8236
|
+
keyAuthentication(requestParameters: AuthenticateApiKeyAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
7992
8237
|
/**
|
|
7993
8238
|
*
|
|
7994
8239
|
* @summary LDAP login and hand out token If user has never signed in before this also creates an account.
|
|
@@ -7997,7 +8242,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7997
8242
|
* @throws {RequiredError}
|
|
7998
8243
|
* @memberof AuthenticateApi
|
|
7999
8244
|
*/
|
|
8000
|
-
ldapAuthentication(requestParameters: AuthenticateApiLdapAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8245
|
+
ldapAuthentication(requestParameters: AuthenticateApiLdapAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8001
8246
|
/**
|
|
8002
8247
|
*
|
|
8003
8248
|
* @summary Local login and hand out token
|
|
@@ -8006,17 +8251,16 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
8006
8251
|
* @throws {RequiredError}
|
|
8007
8252
|
* @memberof AuthenticateApi
|
|
8008
8253
|
*/
|
|
8009
|
-
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8254
|
+
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8010
8255
|
/**
|
|
8011
8256
|
*
|
|
8012
|
-
* @summary PIN
|
|
8013
|
-
* @param {
|
|
8257
|
+
* @summary Member PIN authentication that requires POS user authentication
|
|
8258
|
+
* @param {AuthenticateApiMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
8014
8259
|
* @param {*} [options] Override http request option.
|
|
8015
|
-
* @deprecated
|
|
8016
8260
|
* @throws {RequiredError}
|
|
8017
8261
|
* @memberof AuthenticateApi
|
|
8018
8262
|
*/
|
|
8019
|
-
|
|
8263
|
+
memberPINAuthentication(requestParameters: AuthenticateApiMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8020
8264
|
/**
|
|
8021
8265
|
*
|
|
8022
8266
|
* @summary Mock login and hand out token.
|
|
@@ -8025,27 +8269,25 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
8025
8269
|
* @throws {RequiredError}
|
|
8026
8270
|
* @memberof AuthenticateApi
|
|
8027
8271
|
*/
|
|
8028
|
-
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8272
|
+
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8029
8273
|
/**
|
|
8030
8274
|
*
|
|
8031
|
-
* @summary NFC
|
|
8275
|
+
* @summary NFC authentication that requires POS user authentication
|
|
8032
8276
|
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
8033
8277
|
* @param {*} [options] Override http request option.
|
|
8034
|
-
* @deprecated
|
|
8035
8278
|
* @throws {RequiredError}
|
|
8036
8279
|
* @memberof AuthenticateApi
|
|
8037
8280
|
*/
|
|
8038
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8281
|
+
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8039
8282
|
/**
|
|
8040
8283
|
*
|
|
8041
|
-
* @summary PIN
|
|
8284
|
+
* @summary PIN authentication that requires POS user authentication
|
|
8042
8285
|
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
8043
8286
|
* @param {*} [options] Override http request option.
|
|
8044
|
-
* @deprecated
|
|
8045
8287
|
* @throws {RequiredError}
|
|
8046
8288
|
* @memberof AuthenticateApi
|
|
8047
8289
|
*/
|
|
8048
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8290
|
+
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8049
8291
|
/**
|
|
8050
8292
|
*
|
|
8051
8293
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -8053,7 +8295,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
8053
8295
|
* @throws {RequiredError}
|
|
8054
8296
|
* @memberof AuthenticateApi
|
|
8055
8297
|
*/
|
|
8056
|
-
refreshToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8298
|
+
refreshToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}, any>>;
|
|
8057
8299
|
/**
|
|
8058
8300
|
*
|
|
8059
8301
|
* @summary Creates a reset token for the local authentication
|
|
@@ -8062,7 +8304,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
8062
8304
|
* @throws {RequiredError}
|
|
8063
8305
|
* @memberof AuthenticateApi
|
|
8064
8306
|
*/
|
|
8065
|
-
resetLocal(requestParameters: AuthenticateApiResetLocalRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8307
|
+
resetLocal(requestParameters: AuthenticateApiResetLocalRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8066
8308
|
/**
|
|
8067
8309
|
*
|
|
8068
8310
|
* @summary Reset local authentication using the provided token
|
|
@@ -8071,43 +8313,7 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
8071
8313
|
* @throws {RequiredError}
|
|
8072
8314
|
* @memberof AuthenticateApi
|
|
8073
8315
|
*/
|
|
8074
|
-
resetLocalWithToken(requestParameters: AuthenticateApiResetLocalWithTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8075
|
-
/**
|
|
8076
|
-
*
|
|
8077
|
-
* @summary Secure EAN authentication that requires POS user authentication
|
|
8078
|
-
* @param {AuthenticateApiSecureEanAuthenticationRequest} requestParameters Request parameters.
|
|
8079
|
-
* @param {*} [options] Override http request option.
|
|
8080
|
-
* @throws {RequiredError}
|
|
8081
|
-
* @memberof AuthenticateApi
|
|
8082
|
-
*/
|
|
8083
|
-
secureEanAuthentication(requestParameters: AuthenticateApiSecureEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8084
|
-
/**
|
|
8085
|
-
*
|
|
8086
|
-
* @summary Secure member PIN authentication that requires POS user authentication
|
|
8087
|
-
* @param {AuthenticateApiSecureMemberPINAuthenticationRequest} requestParameters Request parameters.
|
|
8088
|
-
* @param {*} [options] Override http request option.
|
|
8089
|
-
* @throws {RequiredError}
|
|
8090
|
-
* @memberof AuthenticateApi
|
|
8091
|
-
*/
|
|
8092
|
-
secureMemberPINAuthentication(requestParameters: AuthenticateApiSecureMemberPINAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8093
|
-
/**
|
|
8094
|
-
*
|
|
8095
|
-
* @summary Secure NFC authentication that requires POS user authentication
|
|
8096
|
-
* @param {AuthenticateApiSecureNfcAuthenticationRequest} requestParameters Request parameters.
|
|
8097
|
-
* @param {*} [options] Override http request option.
|
|
8098
|
-
* @throws {RequiredError}
|
|
8099
|
-
* @memberof AuthenticateApi
|
|
8100
|
-
*/
|
|
8101
|
-
secureNfcAuthentication(requestParameters: AuthenticateApiSecureNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8102
|
-
/**
|
|
8103
|
-
*
|
|
8104
|
-
* @summary Secure PIN authentication that requires POS user authentication
|
|
8105
|
-
* @param {AuthenticateApiSecurePINAuthenticationRequest} requestParameters Request parameters.
|
|
8106
|
-
* @param {*} [options] Override http request option.
|
|
8107
|
-
* @throws {RequiredError}
|
|
8108
|
-
* @memberof AuthenticateApi
|
|
8109
|
-
*/
|
|
8110
|
-
securePINAuthentication(requestParameters: AuthenticateApiSecurePINAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
8316
|
+
resetLocalWithToken(requestParameters: AuthenticateApiResetLocalWithTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8111
8317
|
}
|
|
8112
8318
|
/**
|
|
8113
8319
|
* BalanceApi - axios parameter creator
|
|
@@ -8378,7 +8584,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8378
8584
|
* @throws {RequiredError}
|
|
8379
8585
|
* @memberof BalanceApi
|
|
8380
8586
|
*/
|
|
8381
|
-
calculateTotalBalances(requestParameters: BalanceApiCalculateTotalBalancesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TotalBalanceResponse, any, {}>>;
|
|
8587
|
+
calculateTotalBalances(requestParameters: BalanceApiCalculateTotalBalancesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TotalBalanceResponse, any, {}, any>>;
|
|
8382
8588
|
/**
|
|
8383
8589
|
*
|
|
8384
8590
|
* @summary Get balance of all users
|
|
@@ -8387,7 +8593,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8387
8593
|
* @throws {RequiredError}
|
|
8388
8594
|
* @memberof BalanceApi
|
|
8389
8595
|
*/
|
|
8390
|
-
getAllBalance(requestParameters?: BalanceApiGetAllBalanceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBalanceResponse, any, {}>>;
|
|
8596
|
+
getAllBalance(requestParameters?: BalanceApiGetAllBalanceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBalanceResponse, any, {}, any>>;
|
|
8391
8597
|
/**
|
|
8392
8598
|
*
|
|
8393
8599
|
* @summary Retrieves the requested balance
|
|
@@ -8396,7 +8602,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8396
8602
|
* @throws {RequiredError}
|
|
8397
8603
|
* @memberof BalanceApi
|
|
8398
8604
|
*/
|
|
8399
|
-
getBalanceId(requestParameters: BalanceApiGetBalanceIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8605
|
+
getBalanceId(requestParameters: BalanceApiGetBalanceIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}, any>>;
|
|
8400
8606
|
/**
|
|
8401
8607
|
*
|
|
8402
8608
|
* @summary Get balance of the current user
|
|
@@ -8404,7 +8610,7 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8404
8610
|
* @throws {RequiredError}
|
|
8405
8611
|
* @memberof BalanceApi
|
|
8406
8612
|
*/
|
|
8407
|
-
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8613
|
+
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}, any>>;
|
|
8408
8614
|
}
|
|
8409
8615
|
/**
|
|
8410
8616
|
* @export
|
|
@@ -8807,7 +9013,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8807
9013
|
* @throws {RequiredError}
|
|
8808
9014
|
* @memberof BannersApi
|
|
8809
9015
|
*/
|
|
8810
|
-
_delete(requestParameters: BannersApiDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9016
|
+
_delete(requestParameters: BannersApiDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8811
9017
|
/**
|
|
8812
9018
|
*
|
|
8813
9019
|
* @summary Saves a banner to the database
|
|
@@ -8816,7 +9022,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8816
9022
|
* @throws {RequiredError}
|
|
8817
9023
|
* @memberof BannersApi
|
|
8818
9024
|
*/
|
|
8819
|
-
create(requestParameters: BannersApiCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9025
|
+
create(requestParameters: BannersApiCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8820
9026
|
/**
|
|
8821
9027
|
*
|
|
8822
9028
|
* @summary Returns all active banners
|
|
@@ -8825,7 +9031,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8825
9031
|
* @throws {RequiredError}
|
|
8826
9032
|
* @memberof BannersApi
|
|
8827
9033
|
*/
|
|
8828
|
-
getActive(requestParameters?: BannersApiGetActiveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9034
|
+
getActive(requestParameters?: BannersApiGetActiveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8829
9035
|
/**
|
|
8830
9036
|
*
|
|
8831
9037
|
* @summary Returns all existing banners
|
|
@@ -8834,7 +9040,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8834
9040
|
* @throws {RequiredError}
|
|
8835
9041
|
* @memberof BannersApi
|
|
8836
9042
|
*/
|
|
8837
|
-
getAllBanners(requestParameters?: BannersApiGetAllBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9043
|
+
getAllBanners(requestParameters?: BannersApiGetAllBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8838
9044
|
/**
|
|
8839
9045
|
*
|
|
8840
9046
|
* @summary Returns all existing banners
|
|
@@ -8843,7 +9049,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8843
9049
|
* @throws {RequiredError}
|
|
8844
9050
|
* @memberof BannersApi
|
|
8845
9051
|
*/
|
|
8846
|
-
getAllOpenBanners(requestParameters?: BannersApiGetAllOpenBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}>>;
|
|
9052
|
+
getAllOpenBanners(requestParameters?: BannersApiGetAllOpenBannersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBannerResponse, any, {}, any>>;
|
|
8847
9053
|
/**
|
|
8848
9054
|
*
|
|
8849
9055
|
* @summary Returns the requested banner
|
|
@@ -8852,7 +9058,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8852
9058
|
* @throws {RequiredError}
|
|
8853
9059
|
* @memberof BannersApi
|
|
8854
9060
|
*/
|
|
8855
|
-
getBanner(requestParameters: BannersApiGetBannerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9061
|
+
getBanner(requestParameters: BannersApiGetBannerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8856
9062
|
/**
|
|
8857
9063
|
*
|
|
8858
9064
|
* @summary Updates the requested banner
|
|
@@ -8861,7 +9067,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8861
9067
|
* @throws {RequiredError}
|
|
8862
9068
|
* @memberof BannersApi
|
|
8863
9069
|
*/
|
|
8864
|
-
update(requestParameters: BannersApiUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}>>;
|
|
9070
|
+
update(requestParameters: BannersApiUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BannerResponse, any, {}, any>>;
|
|
8865
9071
|
/**
|
|
8866
9072
|
*
|
|
8867
9073
|
* @summary Uploads a banner image to the given banner
|
|
@@ -8870,7 +9076,7 @@ export declare class BannersApi extends BaseAPI {
|
|
|
8870
9076
|
* @throws {RequiredError}
|
|
8871
9077
|
* @memberof BannersApi
|
|
8872
9078
|
*/
|
|
8873
|
-
updateImage(requestParameters: BannersApiUpdateImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9079
|
+
updateImage(requestParameters: BannersApiUpdateImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
8874
9080
|
}
|
|
8875
9081
|
/**
|
|
8876
9082
|
* ContainersApi - axios parameter creator
|
|
@@ -9188,7 +9394,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9188
9394
|
* @throws {RequiredError}
|
|
9189
9395
|
* @memberof ContainersApi
|
|
9190
9396
|
*/
|
|
9191
|
-
createContainer(requestParameters: ContainersApiCreateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9397
|
+
createContainer(requestParameters: ContainersApiCreateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
9192
9398
|
/**
|
|
9193
9399
|
*
|
|
9194
9400
|
* @summary (Soft) delete the given container. Cannot be undone.
|
|
@@ -9197,7 +9403,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9197
9403
|
* @throws {RequiredError}
|
|
9198
9404
|
* @memberof ContainersApi
|
|
9199
9405
|
*/
|
|
9200
|
-
deleteContainer(requestParameters: ContainersApiDeleteContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
9406
|
+
deleteContainer(requestParameters: ContainersApiDeleteContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
9201
9407
|
/**
|
|
9202
9408
|
*
|
|
9203
9409
|
* @summary Returns all existing containers
|
|
@@ -9206,7 +9412,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9206
9412
|
* @throws {RequiredError}
|
|
9207
9413
|
* @memberof ContainersApi
|
|
9208
9414
|
*/
|
|
9209
|
-
getAllContainers(requestParameters?: ContainersApiGetAllContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
9415
|
+
getAllContainers(requestParameters?: ContainersApiGetAllContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
9210
9416
|
/**
|
|
9211
9417
|
*
|
|
9212
9418
|
* @summary Returns all the products in the container
|
|
@@ -9215,7 +9421,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9215
9421
|
* @throws {RequiredError}
|
|
9216
9422
|
* @memberof ContainersApi
|
|
9217
9423
|
*/
|
|
9218
|
-
getProductsContainer(requestParameters: ContainersApiGetProductsContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}>>;
|
|
9424
|
+
getProductsContainer(requestParameters: ContainersApiGetProductsContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}, any>>;
|
|
9219
9425
|
/**
|
|
9220
9426
|
*
|
|
9221
9427
|
* @summary Returns all public container
|
|
@@ -9224,7 +9430,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9224
9430
|
* @throws {RequiredError}
|
|
9225
9431
|
* @memberof ContainersApi
|
|
9226
9432
|
*/
|
|
9227
|
-
getPublicContainers(requestParameters?: ContainersApiGetPublicContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
9433
|
+
getPublicContainers(requestParameters?: ContainersApiGetPublicContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
9228
9434
|
/**
|
|
9229
9435
|
*
|
|
9230
9436
|
* @summary Returns the requested container
|
|
@@ -9233,7 +9439,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9233
9439
|
* @throws {RequiredError}
|
|
9234
9440
|
* @memberof ContainersApi
|
|
9235
9441
|
*/
|
|
9236
|
-
getSingleContainer(requestParameters: ContainersApiGetSingleContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9442
|
+
getSingleContainer(requestParameters: ContainersApiGetSingleContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
9237
9443
|
/**
|
|
9238
9444
|
*
|
|
9239
9445
|
* @summary Update an existing container.
|
|
@@ -9242,7 +9448,7 @@ export declare class ContainersApi extends BaseAPI {
|
|
|
9242
9448
|
* @throws {RequiredError}
|
|
9243
9449
|
* @memberof ContainersApi
|
|
9244
9450
|
*/
|
|
9245
|
-
updateContainer(requestParameters: ContainersApiUpdateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}>>;
|
|
9451
|
+
updateContainer(requestParameters: ContainersApiUpdateContainerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerWithProductsResponse, any, {}, any>>;
|
|
9246
9452
|
}
|
|
9247
9453
|
/**
|
|
9248
9454
|
* DebtorsApi - axios parameter creator
|
|
@@ -9650,7 +9856,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9650
9856
|
* @throws {RequiredError}
|
|
9651
9857
|
* @memberof DebtorsApi
|
|
9652
9858
|
*/
|
|
9653
|
-
calculateFines(requestParameters: DebtorsApiCalculateFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToFineResponse[], any, {}>>;
|
|
9859
|
+
calculateFines(requestParameters: DebtorsApiCalculateFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToFineResponse[], any, {}, any>>;
|
|
9654
9860
|
/**
|
|
9655
9861
|
*
|
|
9656
9862
|
* @summary Delete a fine
|
|
@@ -9659,7 +9865,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9659
9865
|
* @throws {RequiredError}
|
|
9660
9866
|
* @memberof DebtorsApi
|
|
9661
9867
|
*/
|
|
9662
|
-
deleteFine(requestParameters: DebtorsApiDeleteFineRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9868
|
+
deleteFine(requestParameters: DebtorsApiDeleteFineRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9663
9869
|
/**
|
|
9664
9870
|
*
|
|
9665
9871
|
* @summary Delete a fine handout event
|
|
@@ -9668,7 +9874,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9668
9874
|
* @throws {RequiredError}
|
|
9669
9875
|
* @memberof DebtorsApi
|
|
9670
9876
|
*/
|
|
9671
|
-
deleteFineHandout(requestParameters: DebtorsApiDeleteFineHandoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9877
|
+
deleteFineHandout(requestParameters: DebtorsApiDeleteFineHandoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9672
9878
|
/**
|
|
9673
9879
|
*
|
|
9674
9880
|
* @summary Get a report of all fines
|
|
@@ -9677,7 +9883,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9677
9883
|
* @throws {RequiredError}
|
|
9678
9884
|
* @memberof DebtorsApi
|
|
9679
9885
|
*/
|
|
9680
|
-
getFineReport(requestParameters?: DebtorsApiGetFineReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineReportResponse, any, {}>>;
|
|
9886
|
+
getFineReport(requestParameters?: DebtorsApiGetFineReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineReportResponse, any, {}, any>>;
|
|
9681
9887
|
/**
|
|
9682
9888
|
*
|
|
9683
9889
|
* @summary Get a report of all fines in pdf format
|
|
@@ -9686,7 +9892,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9686
9892
|
* @throws {RequiredError}
|
|
9687
9893
|
* @memberof DebtorsApi
|
|
9688
9894
|
*/
|
|
9689
|
-
getFineReportPdf(requestParameters: DebtorsApiGetFineReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
9895
|
+
getFineReportPdf(requestParameters: DebtorsApiGetFineReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
9690
9896
|
/**
|
|
9691
9897
|
*
|
|
9692
9898
|
* @summary Handout fines to all given users. Fines will be handed out \"now\" to prevent rewriting history.
|
|
@@ -9695,7 +9901,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9695
9901
|
* @throws {RequiredError}
|
|
9696
9902
|
* @memberof DebtorsApi
|
|
9697
9903
|
*/
|
|
9698
|
-
handoutFines(requestParameters: DebtorsApiHandoutFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}>>;
|
|
9904
|
+
handoutFines(requestParameters: DebtorsApiHandoutFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}, any>>;
|
|
9699
9905
|
/**
|
|
9700
9906
|
*
|
|
9701
9907
|
* @summary Send an email to all given users about their possible future fine.
|
|
@@ -9704,7 +9910,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9704
9910
|
* @throws {RequiredError}
|
|
9705
9911
|
* @memberof DebtorsApi
|
|
9706
9912
|
*/
|
|
9707
|
-
notifyAboutFutureFines(requestParameters: DebtorsApiNotifyAboutFutureFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9913
|
+
notifyAboutFutureFines(requestParameters: DebtorsApiNotifyAboutFutureFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
9708
9914
|
/**
|
|
9709
9915
|
*
|
|
9710
9916
|
* @summary Get all fine handout events
|
|
@@ -9713,7 +9919,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9713
9919
|
* @throws {RequiredError}
|
|
9714
9920
|
* @memberof DebtorsApi
|
|
9715
9921
|
*/
|
|
9716
|
-
returnAllFineHandoutEvents(requestParameters?: DebtorsApiReturnAllFineHandoutEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFineHandoutEventResponse, any, {}>>;
|
|
9922
|
+
returnAllFineHandoutEvents(requestParameters?: DebtorsApiReturnAllFineHandoutEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFineHandoutEventResponse, any, {}, any>>;
|
|
9717
9923
|
/**
|
|
9718
9924
|
*
|
|
9719
9925
|
* @summary Get all fine handout events
|
|
@@ -9722,7 +9928,7 @@ export declare class DebtorsApi extends BaseAPI {
|
|
|
9722
9928
|
* @throws {RequiredError}
|
|
9723
9929
|
* @memberof DebtorsApi
|
|
9724
9930
|
*/
|
|
9725
|
-
returnSingleFineHandoutEvent(requestParameters: DebtorsApiReturnSingleFineHandoutEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}>>;
|
|
9931
|
+
returnSingleFineHandoutEvent(requestParameters: DebtorsApiReturnSingleFineHandoutEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FineHandoutEventResponse, any, {}, any>>;
|
|
9726
9932
|
}
|
|
9727
9933
|
/**
|
|
9728
9934
|
* @export
|
|
@@ -10390,7 +10596,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10390
10596
|
* @throws {RequiredError}
|
|
10391
10597
|
* @memberof EventsApi
|
|
10392
10598
|
*/
|
|
10393
|
-
assignEventShift(requestParameters: EventsApiAssignEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}>>;
|
|
10599
|
+
assignEventShift(requestParameters: EventsApiAssignEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}, any>>;
|
|
10394
10600
|
/**
|
|
10395
10601
|
*
|
|
10396
10602
|
* @summary Create an event with its corresponding answers objects
|
|
@@ -10400,7 +10606,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10400
10606
|
* @throws {RequiredError}
|
|
10401
10607
|
* @memberof EventsApi
|
|
10402
10608
|
*/
|
|
10403
|
-
createEvent(requestParameters: EventsApiCreateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10609
|
+
createEvent(requestParameters: EventsApiCreateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10404
10610
|
/**
|
|
10405
10611
|
*
|
|
10406
10612
|
* @summary Create an event shift
|
|
@@ -10410,7 +10616,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10410
10616
|
* @throws {RequiredError}
|
|
10411
10617
|
* @memberof EventsApi
|
|
10412
10618
|
*/
|
|
10413
|
-
createEventShift(requestParameters: EventsApiCreateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}>>;
|
|
10619
|
+
createEventShift(requestParameters: EventsApiCreateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}, any>>;
|
|
10414
10620
|
/**
|
|
10415
10621
|
*
|
|
10416
10622
|
* @summary Delete an event with its answers
|
|
@@ -10420,7 +10626,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10420
10626
|
* @throws {RequiredError}
|
|
10421
10627
|
* @memberof EventsApi
|
|
10422
10628
|
*/
|
|
10423
|
-
deleteEvent(requestParameters: EventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10629
|
+
deleteEvent(requestParameters: EventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10424
10630
|
/**
|
|
10425
10631
|
*
|
|
10426
10632
|
* @summary Delete an event shift with its answers
|
|
@@ -10430,7 +10636,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10430
10636
|
* @throws {RequiredError}
|
|
10431
10637
|
* @memberof EventsApi
|
|
10432
10638
|
*/
|
|
10433
|
-
deleteEventShift(requestParameters: EventsApiDeleteEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10639
|
+
deleteEventShift(requestParameters: EventsApiDeleteEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10434
10640
|
/**
|
|
10435
10641
|
*
|
|
10436
10642
|
* @summary Get all event shifts
|
|
@@ -10440,7 +10646,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10440
10646
|
* @throws {RequiredError}
|
|
10441
10647
|
* @memberof EventsApi
|
|
10442
10648
|
*/
|
|
10443
|
-
getAllEventShifts(requestParameters?: EventsApiGetAllEventShiftsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse, any, {}>>;
|
|
10649
|
+
getAllEventShifts(requestParameters?: EventsApiGetAllEventShiftsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse, any, {}, any>>;
|
|
10444
10650
|
/**
|
|
10445
10651
|
*
|
|
10446
10652
|
* @summary Get all events
|
|
@@ -10450,7 +10656,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10450
10656
|
* @throws {RequiredError}
|
|
10451
10657
|
* @memberof EventsApi
|
|
10452
10658
|
*/
|
|
10453
|
-
getAllEvents(requestParameters?: EventsApiGetAllEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseEventResponse, any, {}>>;
|
|
10659
|
+
getAllEvents(requestParameters?: EventsApiGetAllEventsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseEventResponse, any, {}, any>>;
|
|
10454
10660
|
/**
|
|
10455
10661
|
*
|
|
10456
10662
|
* @summary Get the number of times a user has been selected for the given shift
|
|
@@ -10460,7 +10666,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10460
10666
|
* @throws {RequiredError}
|
|
10461
10667
|
* @memberof EventsApi
|
|
10462
10668
|
*/
|
|
10463
|
-
getEventShiftCount(requestParameters: EventsApiGetEventShiftCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse[], any, {}>>;
|
|
10669
|
+
getEventShiftCount(requestParameters: EventsApiGetEventShiftCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEventShiftResponse[], any, {}, any>>;
|
|
10464
10670
|
/**
|
|
10465
10671
|
*
|
|
10466
10672
|
* @summary Get a single event with its answers and shifts
|
|
@@ -10470,7 +10676,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10470
10676
|
* @throws {RequiredError}
|
|
10471
10677
|
* @memberof EventsApi
|
|
10472
10678
|
*/
|
|
10473
|
-
getSingleEvent(requestParameters: EventsApiGetSingleEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10679
|
+
getSingleEvent(requestParameters: EventsApiGetSingleEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10474
10680
|
/**
|
|
10475
10681
|
*
|
|
10476
10682
|
* @summary Update an event with its corresponding answers objects
|
|
@@ -10480,7 +10686,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10480
10686
|
* @throws {RequiredError}
|
|
10481
10687
|
* @memberof EventsApi
|
|
10482
10688
|
*/
|
|
10483
|
-
updateEvent(requestParameters: EventsApiUpdateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}>>;
|
|
10689
|
+
updateEvent(requestParameters: EventsApiUpdateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventResponse, any, {}, any>>;
|
|
10484
10690
|
/**
|
|
10485
10691
|
*
|
|
10486
10692
|
* @summary Update an event shift
|
|
@@ -10490,7 +10696,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10490
10696
|
* @throws {RequiredError}
|
|
10491
10697
|
* @memberof EventsApi
|
|
10492
10698
|
*/
|
|
10493
|
-
updateEventShift(requestParameters: EventsApiUpdateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}>>;
|
|
10699
|
+
updateEventShift(requestParameters: EventsApiUpdateEventShiftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventShiftResponse, any, {}, any>>;
|
|
10494
10700
|
/**
|
|
10495
10701
|
*
|
|
10496
10702
|
* @summary Update the availability of a user for a shift in an event
|
|
@@ -10500,7 +10706,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
10500
10706
|
* @throws {RequiredError}
|
|
10501
10707
|
* @memberof EventsApi
|
|
10502
10708
|
*/
|
|
10503
|
-
updateEventShiftAvailability(requestParameters: EventsApiUpdateEventShiftAvailabilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}>>;
|
|
10709
|
+
updateEventShiftAvailability(requestParameters: EventsApiUpdateEventShiftAvailabilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseEventAnswerResponse, any, {}, any>>;
|
|
10504
10710
|
}
|
|
10505
10711
|
/**
|
|
10506
10712
|
* FilesApi - axios parameter creator
|
|
@@ -10654,7 +10860,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10654
10860
|
* @throws {RequiredError}
|
|
10655
10861
|
* @memberof FilesApi
|
|
10656
10862
|
*/
|
|
10657
|
-
createFile(requestParameters: FilesApiCreateFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SimpleFileResponse, any, {}>>;
|
|
10863
|
+
createFile(requestParameters: FilesApiCreateFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SimpleFileResponse, any, {}, any>>;
|
|
10658
10864
|
/**
|
|
10659
10865
|
*
|
|
10660
10866
|
* @summary Delete the file with the given id.
|
|
@@ -10663,7 +10869,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10663
10869
|
* @throws {RequiredError}
|
|
10664
10870
|
* @memberof FilesApi
|
|
10665
10871
|
*/
|
|
10666
|
-
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10872
|
+
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
10667
10873
|
/**
|
|
10668
10874
|
*
|
|
10669
10875
|
* @summary Download a file with the given id.
|
|
@@ -10672,7 +10878,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
10672
10878
|
* @throws {RequiredError}
|
|
10673
10879
|
* @memberof FilesApi
|
|
10674
10880
|
*/
|
|
10675
|
-
getFile(requestParameters: FilesApiGetFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
10881
|
+
getFile(requestParameters: FilesApiGetFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
10676
10882
|
}
|
|
10677
10883
|
/**
|
|
10678
10884
|
* InactiveAdministrativeCostsApi - axios parameter creator
|
|
@@ -11064,7 +11270,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11064
11270
|
* @throws {RequiredError}
|
|
11065
11271
|
* @memberof InactiveAdministrativeCostsApi
|
|
11066
11272
|
*/
|
|
11067
|
-
createInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiCreateInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}>>;
|
|
11273
|
+
createInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiCreateInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}, any>>;
|
|
11068
11274
|
/**
|
|
11069
11275
|
*
|
|
11070
11276
|
* @summary Deletes an inactive administrative cost.
|
|
@@ -11073,7 +11279,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11073
11279
|
* @throws {RequiredError}
|
|
11074
11280
|
* @memberof InactiveAdministrativeCostsApi
|
|
11075
11281
|
*/
|
|
11076
|
-
deleteInactiveAdministrativeCost(requestParameters: InactiveAdministrativeCostsApiDeleteInactiveAdministrativeCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11282
|
+
deleteInactiveAdministrativeCost(requestParameters: InactiveAdministrativeCostsApiDeleteInactiveAdministrativeCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11077
11283
|
/**
|
|
11078
11284
|
*
|
|
11079
11285
|
* @summary Returns all inactive administrative costs in the system.
|
|
@@ -11082,7 +11288,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11082
11288
|
* @throws {RequiredError}
|
|
11083
11289
|
* @memberof InactiveAdministrativeCostsApi
|
|
11084
11290
|
*/
|
|
11085
|
-
getAllInactiveAdministrativeCosts(requestParameters?: InactiveAdministrativeCostsApiGetAllInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInactiveAdministrativeCostResponse, any, {}>>;
|
|
11291
|
+
getAllInactiveAdministrativeCosts(requestParameters?: InactiveAdministrativeCostsApiGetAllInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInactiveAdministrativeCostResponse, any, {}, any>>;
|
|
11086
11292
|
/**
|
|
11087
11293
|
*
|
|
11088
11294
|
* @summary Get a report of all inactive administrative costs
|
|
@@ -11091,7 +11297,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11091
11297
|
* @throws {RequiredError}
|
|
11092
11298
|
* @memberof InactiveAdministrativeCostsApi
|
|
11093
11299
|
*/
|
|
11094
|
-
getInactiveAdministrativeCostReport(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostReportResponse, any, {}>>;
|
|
11300
|
+
getInactiveAdministrativeCostReport(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostReportResponse, any, {}, any>>;
|
|
11095
11301
|
/**
|
|
11096
11302
|
*
|
|
11097
11303
|
* @summary Get a report of all inactive administrative costs in pdf format
|
|
@@ -11100,7 +11306,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11100
11306
|
* @throws {RequiredError}
|
|
11101
11307
|
* @memberof InactiveAdministrativeCostsApi
|
|
11102
11308
|
*/
|
|
11103
|
-
getInactiveAdministrativeCostReportPdf(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
11309
|
+
getInactiveAdministrativeCostReportPdf(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
11104
11310
|
/**
|
|
11105
11311
|
*
|
|
11106
11312
|
* @summary Returns a single inactive administrative cost entity
|
|
@@ -11109,7 +11315,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11109
11315
|
* @throws {RequiredError}
|
|
11110
11316
|
* @memberof InactiveAdministrativeCostsApi
|
|
11111
11317
|
*/
|
|
11112
|
-
getInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}>>;
|
|
11318
|
+
getInactiveAdministrativeCosts(requestParameters: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse, any, {}, any>>;
|
|
11113
11319
|
/**
|
|
11114
11320
|
*
|
|
11115
11321
|
* @summary Find all users who are eligible for notification or creation of inactive administrative cost
|
|
@@ -11118,7 +11324,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11118
11324
|
* @throws {RequiredError}
|
|
11119
11325
|
* @memberof InactiveAdministrativeCostsApi
|
|
11120
11326
|
*/
|
|
11121
|
-
getInactiveAdministrativeCostsEligibleUsers(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsEligibleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToInactiveAdministrativeCostResponse[], any, {}>>;
|
|
11327
|
+
getInactiveAdministrativeCostsEligibleUsers(requestParameters?: InactiveAdministrativeCostsApiGetInactiveAdministrativeCostsEligibleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserToInactiveAdministrativeCostResponse[], any, {}, any>>;
|
|
11122
11328
|
/**
|
|
11123
11329
|
*
|
|
11124
11330
|
* @summary Handout inactive administrative costs to all users who are eligible.
|
|
@@ -11127,7 +11333,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11127
11333
|
* @throws {RequiredError}
|
|
11128
11334
|
* @memberof InactiveAdministrativeCostsApi
|
|
11129
11335
|
*/
|
|
11130
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
|
|
11336
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}, any>>;
|
|
11131
11337
|
/**
|
|
11132
11338
|
*
|
|
11133
11339
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -11136,7 +11342,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
11136
11342
|
* @throws {RequiredError}
|
|
11137
11343
|
* @memberof InactiveAdministrativeCostsApi
|
|
11138
11344
|
*/
|
|
11139
|
-
notifyInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiNotifyInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11345
|
+
notifyInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiNotifyInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11140
11346
|
}
|
|
11141
11347
|
/**
|
|
11142
11348
|
* InvoicesApi - axios parameter creator
|
|
@@ -11299,7 +11505,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11299
11505
|
* @param {*} [options] Override http request option.
|
|
11300
11506
|
* @throws {RequiredError}
|
|
11301
11507
|
*/
|
|
11302
|
-
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>>>;
|
|
11303
11509
|
/**
|
|
11304
11510
|
*
|
|
11305
11511
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11396,7 +11602,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11396
11602
|
* @param {*} [options] Override http request option.
|
|
11397
11603
|
* @throws {RequiredError}
|
|
11398
11604
|
*/
|
|
11399
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse
|
|
11605
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransactionResponse>>;
|
|
11400
11606
|
/**
|
|
11401
11607
|
*
|
|
11402
11608
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11674,7 +11880,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11674
11880
|
* @throws {RequiredError}
|
|
11675
11881
|
* @memberof InvoicesApi
|
|
11676
11882
|
*/
|
|
11677
|
-
createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}>>;
|
|
11883
|
+
createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}, any>>;
|
|
11678
11884
|
/**
|
|
11679
11885
|
*
|
|
11680
11886
|
* @summary Deletes an invoice.
|
|
@@ -11683,7 +11889,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11683
11889
|
* @throws {RequiredError}
|
|
11684
11890
|
* @memberof InvoicesApi
|
|
11685
11891
|
*/
|
|
11686
|
-
deleteInvoice(requestParameters: InvoicesApiDeleteInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11892
|
+
deleteInvoice(requestParameters: InvoicesApiDeleteInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11687
11893
|
/**
|
|
11688
11894
|
*
|
|
11689
11895
|
* @summary Delete invoice user defaults.
|
|
@@ -11692,7 +11898,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11692
11898
|
* @throws {RequiredError}
|
|
11693
11899
|
* @memberof InvoicesApi
|
|
11694
11900
|
*/
|
|
11695
|
-
deleteInvoiceUser(requestParameters: InvoicesApiDeleteInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11901
|
+
deleteInvoiceUser(requestParameters: InvoicesApiDeleteInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
11696
11902
|
/**
|
|
11697
11903
|
*
|
|
11698
11904
|
* @summary Returns all invoices in the system.
|
|
@@ -11701,7 +11907,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11701
11907
|
* @throws {RequiredError}
|
|
11702
11908
|
* @memberof InvoicesApi
|
|
11703
11909
|
*/
|
|
11704
|
-
getAllInvoices(requestParameters?: InvoicesApiGetAllInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInvoiceResponse, any, {}>>;
|
|
11910
|
+
getAllInvoices(requestParameters?: InvoicesApiGetAllInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInvoiceResponse, any, {}, any>>;
|
|
11705
11911
|
/**
|
|
11706
11912
|
*
|
|
11707
11913
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11710,7 +11916,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11710
11916
|
* @throws {RequiredError}
|
|
11711
11917
|
* @memberof InvoicesApi
|
|
11712
11918
|
*/
|
|
11713
|
-
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11919
|
+
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse[], any, {}, any>>;
|
|
11714
11920
|
/**
|
|
11715
11921
|
*
|
|
11716
11922
|
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
@@ -11718,7 +11924,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11718
11924
|
* @throws {RequiredError}
|
|
11719
11925
|
* @memberof InvoicesApi
|
|
11720
11926
|
*/
|
|
11721
|
-
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11927
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}, any>>;
|
|
11722
11928
|
/**
|
|
11723
11929
|
*
|
|
11724
11930
|
* @summary Get an invoice pdf.
|
|
@@ -11727,7 +11933,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11727
11933
|
* @throws {RequiredError}
|
|
11728
11934
|
* @memberof InvoicesApi
|
|
11729
11935
|
*/
|
|
11730
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
11936
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
11731
11937
|
/**
|
|
11732
11938
|
*
|
|
11733
11939
|
* @summary Returns a single invoice in the system.
|
|
@@ -11736,7 +11942,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11736
11942
|
* @throws {RequiredError}
|
|
11737
11943
|
* @memberof InvoicesApi
|
|
11738
11944
|
*/
|
|
11739
|
-
getSingleInvoice(requestParameters: InvoicesApiGetSingleInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}>>;
|
|
11945
|
+
getSingleInvoice(requestParameters: InvoicesApiGetSingleInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceResponse, any, {}, any>>;
|
|
11740
11946
|
/**
|
|
11741
11947
|
*
|
|
11742
11948
|
* @summary Get invoice user defaults.
|
|
@@ -11745,7 +11951,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11745
11951
|
* @throws {RequiredError}
|
|
11746
11952
|
* @memberof InvoicesApi
|
|
11747
11953
|
*/
|
|
11748
|
-
getSingleInvoiceUser(requestParameters: InvoicesApiGetSingleInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}>>;
|
|
11954
|
+
getSingleInvoiceUser(requestParameters: InvoicesApiGetSingleInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}, any>>;
|
|
11749
11955
|
/**
|
|
11750
11956
|
*
|
|
11751
11957
|
* @summary Update or create invoice user defaults.
|
|
@@ -11754,7 +11960,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11754
11960
|
* @throws {RequiredError}
|
|
11755
11961
|
* @memberof InvoicesApi
|
|
11756
11962
|
*/
|
|
11757
|
-
putInvoiceUser(requestParameters: InvoicesApiPutInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}>>;
|
|
11963
|
+
putInvoiceUser(requestParameters: InvoicesApiPutInvoiceUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceUserResponse, any, {}, any>>;
|
|
11758
11964
|
/**
|
|
11759
11965
|
*
|
|
11760
11966
|
* @summary Adds an invoice to the system.
|
|
@@ -11763,7 +11969,493 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11763
11969
|
* @throws {RequiredError}
|
|
11764
11970
|
* @memberof InvoicesApi
|
|
11765
11971
|
*/
|
|
11766
|
-
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>>;
|
|
11767
12459
|
}
|
|
11768
12460
|
/**
|
|
11769
12461
|
* PayoutRequestsApi - axios parameter creator
|
|
@@ -12047,7 +12739,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
12047
12739
|
* @throws {RequiredError}
|
|
12048
12740
|
* @memberof PayoutRequestsApi
|
|
12049
12741
|
*/
|
|
12050
|
-
createPayoutRequest(requestParameters: PayoutRequestsApiCreatePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12742
|
+
createPayoutRequest(requestParameters: PayoutRequestsApiCreatePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
12051
12743
|
/**
|
|
12052
12744
|
*
|
|
12053
12745
|
* @summary Returns all payout requests given the filter parameters
|
|
@@ -12056,7 +12748,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
12056
12748
|
* @throws {RequiredError}
|
|
12057
12749
|
* @memberof PayoutRequestsApi
|
|
12058
12750
|
*/
|
|
12059
|
-
getAllPayoutRequests(requestParameters?: PayoutRequestsApiGetAllPayoutRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePayoutRequestResponse, any, {}>>;
|
|
12751
|
+
getAllPayoutRequests(requestParameters?: PayoutRequestsApiGetAllPayoutRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBasePayoutRequestResponse, any, {}, any>>;
|
|
12060
12752
|
/**
|
|
12061
12753
|
*
|
|
12062
12754
|
* @summary Get a payout request pdf
|
|
@@ -12065,7 +12757,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
12065
12757
|
* @throws {RequiredError}
|
|
12066
12758
|
* @memberof PayoutRequestsApi
|
|
12067
12759
|
*/
|
|
12068
|
-
getPayoutRequestPdf(requestParameters: PayoutRequestsApiGetPayoutRequestPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
12760
|
+
getPayoutRequestPdf(requestParameters: PayoutRequestsApiGetPayoutRequestPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
12069
12761
|
/**
|
|
12070
12762
|
*
|
|
12071
12763
|
* @summary Get a single payout request
|
|
@@ -12074,7 +12766,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
12074
12766
|
* @throws {RequiredError}
|
|
12075
12767
|
* @memberof PayoutRequestsApi
|
|
12076
12768
|
*/
|
|
12077
|
-
getSinglePayoutRequest(requestParameters: PayoutRequestsApiGetSinglePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12769
|
+
getSinglePayoutRequest(requestParameters: PayoutRequestsApiGetSinglePayoutRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
12078
12770
|
/**
|
|
12079
12771
|
*
|
|
12080
12772
|
* @summary Create a new status for a payout request
|
|
@@ -12083,7 +12775,7 @@ export declare class PayoutRequestsApi extends BaseAPI {
|
|
|
12083
12775
|
* @throws {RequiredError}
|
|
12084
12776
|
* @memberof PayoutRequestsApi
|
|
12085
12777
|
*/
|
|
12086
|
-
setPayoutRequestStatus(requestParameters: PayoutRequestsApiSetPayoutRequestStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}>>;
|
|
12778
|
+
setPayoutRequestStatus(requestParameters: PayoutRequestsApiSetPayoutRequestStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutRequestResponse, any, {}, any>>;
|
|
12087
12779
|
}
|
|
12088
12780
|
/**
|
|
12089
12781
|
* PointofsaleApi - axios parameter creator
|
|
@@ -12544,7 +13236,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12544
13236
|
* @throws {RequiredError}
|
|
12545
13237
|
* @memberof PointofsaleApi
|
|
12546
13238
|
*/
|
|
12547
|
-
createPointOfSale(requestParameters: PointofsaleApiCreatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13239
|
+
createPointOfSale(requestParameters: PointofsaleApiCreatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12548
13240
|
/**
|
|
12549
13241
|
*
|
|
12550
13242
|
* @summary (Soft) delete the given point of sale. Cannot be undone.
|
|
@@ -12553,7 +13245,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12553
13245
|
* @throws {RequiredError}
|
|
12554
13246
|
* @memberof PointofsaleApi
|
|
12555
13247
|
*/
|
|
12556
|
-
deletePointOfSale(requestParameters: PointofsaleApiDeletePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
13248
|
+
deletePointOfSale(requestParameters: PointofsaleApiDeletePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
12557
13249
|
/**
|
|
12558
13250
|
*
|
|
12559
13251
|
* @summary Returns the containers of the requested Point of Sale, empty list if POS does not exist
|
|
@@ -12562,7 +13254,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12562
13254
|
* @throws {RequiredError}
|
|
12563
13255
|
* @memberof PointofsaleApi
|
|
12564
13256
|
*/
|
|
12565
|
-
getAllPointOfSaleContainers(requestParameters: PointofsaleApiGetAllPointOfSaleContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
13257
|
+
getAllPointOfSaleContainers(requestParameters: PointofsaleApiGetAllPointOfSaleContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
12566
13258
|
/**
|
|
12567
13259
|
*
|
|
12568
13260
|
* @summary Returns the products of the requested Point of Sale, empty list if POS does not exist
|
|
@@ -12571,7 +13263,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12571
13263
|
* @throws {RequiredError}
|
|
12572
13264
|
* @memberof PointofsaleApi
|
|
12573
13265
|
*/
|
|
12574
|
-
getAllPointOfSaleProducts(requestParameters: PointofsaleApiGetAllPointOfSaleProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}>>;
|
|
13266
|
+
getAllPointOfSaleProducts(requestParameters: PointofsaleApiGetAllPointOfSaleProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse[], any, {}, any>>;
|
|
12575
13267
|
/**
|
|
12576
13268
|
*
|
|
12577
13269
|
* @summary Returns all existing Point of Sales
|
|
@@ -12580,7 +13272,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12580
13272
|
* @throws {RequiredError}
|
|
12581
13273
|
* @memberof PointofsaleApi
|
|
12582
13274
|
*/
|
|
12583
|
-
getAllPointsOfSale(requestParameters?: PointofsaleApiGetAllPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}>>;
|
|
13275
|
+
getAllPointsOfSale(requestParameters?: PointofsaleApiGetAllPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}, any>>;
|
|
12584
13276
|
/**
|
|
12585
13277
|
*
|
|
12586
13278
|
* @summary Returns a Point of Sale\'s associate users
|
|
@@ -12589,7 +13281,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12589
13281
|
* @throws {RequiredError}
|
|
12590
13282
|
* @memberof PointofsaleApi
|
|
12591
13283
|
*/
|
|
12592
|
-
getPointOfSaleAssociates(requestParameters: PointofsaleApiGetPointOfSaleAssociatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleAssociateUsersResponse, any, {}>>;
|
|
13284
|
+
getPointOfSaleAssociates(requestParameters: PointofsaleApiGetPointOfSaleAssociatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleAssociateUsersResponse, any, {}, any>>;
|
|
12593
13285
|
/**
|
|
12594
13286
|
*
|
|
12595
13287
|
* @summary Returns the requested Point of Sale
|
|
@@ -12598,7 +13290,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12598
13290
|
* @throws {RequiredError}
|
|
12599
13291
|
* @memberof PointofsaleApi
|
|
12600
13292
|
*/
|
|
12601
|
-
getSinglePointOfSale(requestParameters: PointofsaleApiGetSinglePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13293
|
+
getSinglePointOfSale(requestParameters: PointofsaleApiGetSinglePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12602
13294
|
/**
|
|
12603
13295
|
*
|
|
12604
13296
|
* @summary Returns a specific revision of the requested Point of Sale
|
|
@@ -12607,7 +13299,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12607
13299
|
* @throws {RequiredError}
|
|
12608
13300
|
* @memberof PointofsaleApi
|
|
12609
13301
|
*/
|
|
12610
|
-
getSinglePointOfSaleRevision(requestParameters: PointofsaleApiGetSinglePointOfSaleRevisionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13302
|
+
getSinglePointOfSaleRevision(requestParameters: PointofsaleApiGetSinglePointOfSaleRevisionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12611
13303
|
/**
|
|
12612
13304
|
*
|
|
12613
13305
|
* @summary Returns a Point of Sale transactions
|
|
@@ -12616,7 +13308,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12616
13308
|
* @throws {RequiredError}
|
|
12617
13309
|
* @memberof PointofsaleApi
|
|
12618
13310
|
*/
|
|
12619
|
-
getTransactions(requestParameters: PointofsaleApiGetTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
13311
|
+
getTransactions(requestParameters: PointofsaleApiGetTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
12620
13312
|
/**
|
|
12621
13313
|
*
|
|
12622
13314
|
* @summary Update an existing Point of Sale.
|
|
@@ -12625,7 +13317,7 @@ export declare class PointofsaleApi extends BaseAPI {
|
|
|
12625
13317
|
* @throws {RequiredError}
|
|
12626
13318
|
* @memberof PointofsaleApi
|
|
12627
13319
|
*/
|
|
12628
|
-
updatePointOfSale(requestParameters: PointofsaleApiUpdatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}>>;
|
|
13320
|
+
updatePointOfSale(requestParameters: PointofsaleApiUpdatePointOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PointOfSaleWithContainersResponse, any, {}, any>>;
|
|
12629
13321
|
}
|
|
12630
13322
|
/**
|
|
12631
13323
|
* ProductCategoriesApi - axios parameter creator
|
|
@@ -12840,7 +13532,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12840
13532
|
* @throws {RequiredError}
|
|
12841
13533
|
* @memberof ProductCategoriesApi
|
|
12842
13534
|
*/
|
|
12843
|
-
createProductCategory(requestParameters: ProductCategoriesApiCreateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13535
|
+
createProductCategory(requestParameters: ProductCategoriesApiCreateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12844
13536
|
/**
|
|
12845
13537
|
*
|
|
12846
13538
|
* @summary Returns all existing productcategories
|
|
@@ -12849,7 +13541,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12849
13541
|
* @throws {RequiredError}
|
|
12850
13542
|
* @memberof ProductCategoriesApi
|
|
12851
13543
|
*/
|
|
12852
|
-
getAllProductCategories(requestParameters?: ProductCategoriesApiGetAllProductCategoriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductCategoryResponse, any, {}>>;
|
|
13544
|
+
getAllProductCategories(requestParameters?: ProductCategoriesApiGetAllProductCategoriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductCategoryResponse, any, {}, any>>;
|
|
12853
13545
|
/**
|
|
12854
13546
|
*
|
|
12855
13547
|
* @summary Returns the requested productcategory
|
|
@@ -12858,7 +13550,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12858
13550
|
* @throws {RequiredError}
|
|
12859
13551
|
* @memberof ProductCategoriesApi
|
|
12860
13552
|
*/
|
|
12861
|
-
getSingleProductCategory(requestParameters: ProductCategoriesApiGetSingleProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13553
|
+
getSingleProductCategory(requestParameters: ProductCategoriesApiGetSingleProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12862
13554
|
/**
|
|
12863
13555
|
*
|
|
12864
13556
|
* @summary Update an existing productcategory.
|
|
@@ -12867,7 +13559,7 @@ export declare class ProductCategoriesApi extends BaseAPI {
|
|
|
12867
13559
|
* @throws {RequiredError}
|
|
12868
13560
|
* @memberof ProductCategoriesApi
|
|
12869
13561
|
*/
|
|
12870
|
-
updateProductCategory(requestParameters: ProductCategoriesApiUpdateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}>>;
|
|
13562
|
+
updateProductCategory(requestParameters: ProductCategoriesApiUpdateProductCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductCategoryResponse, any, {}, any>>;
|
|
12871
13563
|
}
|
|
12872
13564
|
/**
|
|
12873
13565
|
* ProductsApi - axios parameter creator
|
|
@@ -13148,7 +13840,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13148
13840
|
* @throws {RequiredError}
|
|
13149
13841
|
* @memberof ProductsApi
|
|
13150
13842
|
*/
|
|
13151
|
-
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13843
|
+
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
13152
13844
|
/**
|
|
13153
13845
|
*
|
|
13154
13846
|
* @summary (Soft) delete the given product. Cannot be undone.
|
|
@@ -13157,7 +13849,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13157
13849
|
* @throws {RequiredError}
|
|
13158
13850
|
* @memberof ProductsApi
|
|
13159
13851
|
*/
|
|
13160
|
-
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
13852
|
+
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13161
13853
|
/**
|
|
13162
13854
|
*
|
|
13163
13855
|
* @summary Returns all existing products
|
|
@@ -13166,7 +13858,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13166
13858
|
* @throws {RequiredError}
|
|
13167
13859
|
* @memberof ProductsApi
|
|
13168
13860
|
*/
|
|
13169
|
-
getAllProducts(requestParameters?: ProductsApiGetAllProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}>>;
|
|
13861
|
+
getAllProducts(requestParameters?: ProductsApiGetAllProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}, any>>;
|
|
13170
13862
|
/**
|
|
13171
13863
|
*
|
|
13172
13864
|
* @summary Returns the requested product
|
|
@@ -13175,7 +13867,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13175
13867
|
* @throws {RequiredError}
|
|
13176
13868
|
* @memberof ProductsApi
|
|
13177
13869
|
*/
|
|
13178
|
-
getSingleProduct(requestParameters: ProductsApiGetSingleProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13870
|
+
getSingleProduct(requestParameters: ProductsApiGetSingleProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
13179
13871
|
/**
|
|
13180
13872
|
*
|
|
13181
13873
|
* @summary Update an existing product.
|
|
@@ -13184,7 +13876,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13184
13876
|
* @throws {RequiredError}
|
|
13185
13877
|
* @memberof ProductsApi
|
|
13186
13878
|
*/
|
|
13187
|
-
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}>>;
|
|
13879
|
+
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductResponse, any, {}, any>>;
|
|
13188
13880
|
/**
|
|
13189
13881
|
*
|
|
13190
13882
|
* @summary Upload a new image for a product
|
|
@@ -13193,7 +13885,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13193
13885
|
* @throws {RequiredError}
|
|
13194
13886
|
* @memberof ProductsApi
|
|
13195
13887
|
*/
|
|
13196
|
-
updateProductImage(requestParameters: ProductsApiUpdateProductImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13888
|
+
updateProductImage(requestParameters: ProductsApiUpdateProductImageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
13197
13889
|
}
|
|
13198
13890
|
/**
|
|
13199
13891
|
* RbacApi - axios parameter creator
|
|
@@ -13548,7 +14240,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13548
14240
|
* @throws {RequiredError}
|
|
13549
14241
|
* @memberof RbacApi
|
|
13550
14242
|
*/
|
|
13551
|
-
addPermissions(requestParameters: RbacApiAddPermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse[], any, {}>>;
|
|
14243
|
+
addPermissions(requestParameters: RbacApiAddPermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse[], any, {}, any>>;
|
|
13552
14244
|
/**
|
|
13553
14245
|
*
|
|
13554
14246
|
* @summary Create a new role
|
|
@@ -13557,7 +14249,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13557
14249
|
* @throws {RequiredError}
|
|
13558
14250
|
* @memberof RbacApi
|
|
13559
14251
|
*/
|
|
13560
|
-
createRole(requestParameters: RbacApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}>>;
|
|
14252
|
+
createRole(requestParameters: RbacApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}, any>>;
|
|
13561
14253
|
/**
|
|
13562
14254
|
*
|
|
13563
14255
|
* @summary Delete a permission from an existing role
|
|
@@ -13566,7 +14258,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13566
14258
|
* @throws {RequiredError}
|
|
13567
14259
|
* @memberof RbacApi
|
|
13568
14260
|
*/
|
|
13569
|
-
deletePermission(requestParameters: RbacApiDeletePermissionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14261
|
+
deletePermission(requestParameters: RbacApiDeletePermissionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13570
14262
|
/**
|
|
13571
14263
|
*
|
|
13572
14264
|
* @summary Delete an existing role
|
|
@@ -13575,7 +14267,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13575
14267
|
* @throws {RequiredError}
|
|
13576
14268
|
* @memberof RbacApi
|
|
13577
14269
|
*/
|
|
13578
|
-
deleteRole(requestParameters: RbacApiDeleteRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14270
|
+
deleteRole(requestParameters: RbacApiDeleteRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
13579
14271
|
/**
|
|
13580
14272
|
*
|
|
13581
14273
|
* @summary Get all existing roles
|
|
@@ -13583,7 +14275,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13583
14275
|
* @throws {RequiredError}
|
|
13584
14276
|
* @memberof RbacApi
|
|
13585
14277
|
*/
|
|
13586
|
-
getAllRoles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}>>;
|
|
14278
|
+
getAllRoles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}, any>>;
|
|
13587
14279
|
/**
|
|
13588
14280
|
*
|
|
13589
14281
|
* @summary Get all users linked to a specific role
|
|
@@ -13592,7 +14284,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13592
14284
|
* @throws {RequiredError}
|
|
13593
14285
|
* @memberof RbacApi
|
|
13594
14286
|
*/
|
|
13595
|
-
getRoleUsers(requestParameters: RbacApiGetRoleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
14287
|
+
getRoleUsers(requestParameters: RbacApiGetRoleUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
13596
14288
|
/**
|
|
13597
14289
|
*
|
|
13598
14290
|
* @summary Get a single existing role with its permissions
|
|
@@ -13601,7 +14293,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13601
14293
|
* @throws {RequiredError}
|
|
13602
14294
|
* @memberof RbacApi
|
|
13603
14295
|
*/
|
|
13604
|
-
getSingleRole(requestParameters: RbacApiGetSingleRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse, any, {}>>;
|
|
14296
|
+
getSingleRole(requestParameters: RbacApiGetSingleRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse, any, {}, any>>;
|
|
13605
14297
|
/**
|
|
13606
14298
|
*
|
|
13607
14299
|
* @summary Update an existing role
|
|
@@ -13610,7 +14302,7 @@ export declare class RbacApi extends BaseAPI {
|
|
|
13610
14302
|
* @throws {RequiredError}
|
|
13611
14303
|
* @memberof RbacApi
|
|
13612
14304
|
*/
|
|
13613
|
-
updateRole(requestParameters: RbacApiUpdateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}>>;
|
|
14305
|
+
updateRole(requestParameters: RbacApiUpdateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse, any, {}, any>>;
|
|
13614
14306
|
}
|
|
13615
14307
|
/**
|
|
13616
14308
|
* RootApi - axios parameter creator
|
|
@@ -13665,7 +14357,7 @@ export declare class RootApi extends BaseAPI {
|
|
|
13665
14357
|
* @throws {RequiredError}
|
|
13666
14358
|
* @memberof RootApi
|
|
13667
14359
|
*/
|
|
13668
|
-
ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatusResponse, any, {}>>;
|
|
14360
|
+
ping(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatusResponse, any, {}, any>>;
|
|
13669
14361
|
}
|
|
13670
14362
|
/**
|
|
13671
14363
|
* SellerPayoutsApi - axios parameter creator
|
|
@@ -14007,7 +14699,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14007
14699
|
* @throws {RequiredError}
|
|
14008
14700
|
* @memberof SellerPayoutsApi
|
|
14009
14701
|
*/
|
|
14010
|
-
createSellerPayout(requestParameters: SellerPayoutsApiCreateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14702
|
+
createSellerPayout(requestParameters: SellerPayoutsApiCreateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
14011
14703
|
/**
|
|
14012
14704
|
*
|
|
14013
14705
|
* @summary Delete an existing seller payout
|
|
@@ -14016,7 +14708,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14016
14708
|
* @throws {RequiredError}
|
|
14017
14709
|
* @memberof SellerPayoutsApi
|
|
14018
14710
|
*/
|
|
14019
|
-
deleteSellerPayout(requestParameters: SellerPayoutsApiDeleteSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14711
|
+
deleteSellerPayout(requestParameters: SellerPayoutsApiDeleteSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
14020
14712
|
/**
|
|
14021
14713
|
*
|
|
14022
14714
|
* @summary Return all seller payouts
|
|
@@ -14025,7 +14717,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14025
14717
|
* @throws {RequiredError}
|
|
14026
14718
|
* @memberof SellerPayoutsApi
|
|
14027
14719
|
*/
|
|
14028
|
-
getAllSellerPayouts(requestParameters?: SellerPayoutsApiGetAllSellerPayoutsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSellerPayoutResponse, any, {}>>;
|
|
14720
|
+
getAllSellerPayouts(requestParameters?: SellerPayoutsApiGetAllSellerPayoutsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSellerPayoutResponse, any, {}, any>>;
|
|
14029
14721
|
/**
|
|
14030
14722
|
*
|
|
14031
14723
|
* @summary Get a single seller payout\'s sales report
|
|
@@ -14034,7 +14726,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14034
14726
|
* @throws {RequiredError}
|
|
14035
14727
|
* @memberof SellerPayoutsApi
|
|
14036
14728
|
*/
|
|
14037
|
-
getSellerPayoutReport(requestParameters: SellerPayoutsApiGetSellerPayoutReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
14729
|
+
getSellerPayoutReport(requestParameters: SellerPayoutsApiGetSellerPayoutReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
14038
14730
|
/**
|
|
14039
14731
|
*
|
|
14040
14732
|
* @summary Get a single seller payout\'s sales report as PDF
|
|
@@ -14043,7 +14735,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14043
14735
|
* @throws {RequiredError}
|
|
14044
14736
|
* @memberof SellerPayoutsApi
|
|
14045
14737
|
*/
|
|
14046
|
-
getSellerPayoutReportPdf(requestParameters: SellerPayoutsApiGetSellerPayoutReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
14738
|
+
getSellerPayoutReportPdf(requestParameters: SellerPayoutsApiGetSellerPayoutReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
14047
14739
|
/**
|
|
14048
14740
|
*
|
|
14049
14741
|
* @summary Get a single seller payout
|
|
@@ -14052,7 +14744,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14052
14744
|
* @throws {RequiredError}
|
|
14053
14745
|
* @memberof SellerPayoutsApi
|
|
14054
14746
|
*/
|
|
14055
|
-
getSingleSellerPayout(requestParameters: SellerPayoutsApiGetSingleSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14747
|
+
getSingleSellerPayout(requestParameters: SellerPayoutsApiGetSingleSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
14056
14748
|
/**
|
|
14057
14749
|
*
|
|
14058
14750
|
* @summary Update an existing seller payout
|
|
@@ -14061,7 +14753,7 @@ export declare class SellerPayoutsApi extends BaseAPI {
|
|
|
14061
14753
|
* @throws {RequiredError}
|
|
14062
14754
|
* @memberof SellerPayoutsApi
|
|
14063
14755
|
*/
|
|
14064
|
-
updateSellerPayout(requestParameters: SellerPayoutsApiUpdateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}>>;
|
|
14756
|
+
updateSellerPayout(requestParameters: SellerPayoutsApiUpdateSellerPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SellerPayoutResponse, any, {}, any>>;
|
|
14065
14757
|
}
|
|
14066
14758
|
/**
|
|
14067
14759
|
* ServerSettingsApi - axios parameter creator
|
|
@@ -14190,7 +14882,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
14190
14882
|
* @throws {RequiredError}
|
|
14191
14883
|
* @memberof ServerSettingsApi
|
|
14192
14884
|
*/
|
|
14193
|
-
getWrappedEnabled(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedEnabledResponse, any, {}>>;
|
|
14885
|
+
getWrappedEnabled(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedEnabledResponse, any, {}, any>>;
|
|
14194
14886
|
/**
|
|
14195
14887
|
*
|
|
14196
14888
|
* @summary Enable/disable maintenance mode
|
|
@@ -14199,7 +14891,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
14199
14891
|
* @throws {RequiredError}
|
|
14200
14892
|
* @memberof ServerSettingsApi
|
|
14201
14893
|
*/
|
|
14202
|
-
setMaintenanceMode(requestParameters: ServerSettingsApiSetMaintenanceModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14894
|
+
setMaintenanceMode(requestParameters: ServerSettingsApiSetMaintenanceModeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
14203
14895
|
/**
|
|
14204
14896
|
*
|
|
14205
14897
|
* @summary Set the wrapped-enabled server setting
|
|
@@ -14208,7 +14900,7 @@ export declare class ServerSettingsApi extends BaseAPI {
|
|
|
14208
14900
|
* @throws {RequiredError}
|
|
14209
14901
|
* @memberof ServerSettingsApi
|
|
14210
14902
|
*/
|
|
14211
|
-
setWrappedEnabled(requestParameters: ServerSettingsApiSetWrappedEnabledRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
14903
|
+
setWrappedEnabled(requestParameters: ServerSettingsApiSetWrappedEnabledRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
14212
14904
|
}
|
|
14213
14905
|
/**
|
|
14214
14906
|
* StripeApi - axios parameter creator
|
|
@@ -14230,6 +14922,13 @@ export declare const StripeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14230
14922
|
* @throws {RequiredError}
|
|
14231
14923
|
*/
|
|
14232
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>;
|
|
14233
14932
|
};
|
|
14234
14933
|
/**
|
|
14235
14934
|
* StripeApi - functional programming interface
|
|
@@ -14251,6 +14950,13 @@ export declare const StripeApiFp: (configuration?: Configuration) => {
|
|
|
14251
14950
|
* @throws {RequiredError}
|
|
14252
14951
|
*/
|
|
14253
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>>;
|
|
14254
14960
|
};
|
|
14255
14961
|
/**
|
|
14256
14962
|
* StripeApi - factory interface
|
|
@@ -14272,6 +14978,13 @@ export declare const StripeApiFactory: (configuration?: Configuration, basePath?
|
|
|
14272
14978
|
* @throws {RequiredError}
|
|
14273
14979
|
*/
|
|
14274
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>;
|
|
14275
14988
|
};
|
|
14276
14989
|
/**
|
|
14277
14990
|
* Request parameters for deposit operation in StripeApi.
|
|
@@ -14301,7 +15014,7 @@ export declare class StripeApi extends BaseAPI {
|
|
|
14301
15014
|
* @throws {RequiredError}
|
|
14302
15015
|
* @memberof StripeApi
|
|
14303
15016
|
*/
|
|
14304
|
-
deposit(requestParameters: StripeApiDepositRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StripePaymentIntentResponse, any, {}>>;
|
|
15017
|
+
deposit(requestParameters: StripeApiDepositRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StripePaymentIntentResponse, any, {}, any>>;
|
|
14305
15018
|
/**
|
|
14306
15019
|
*
|
|
14307
15020
|
* @summary Get the Stripe public key
|
|
@@ -14309,7 +15022,15 @@ export declare class StripeApi extends BaseAPI {
|
|
|
14309
15022
|
* @throws {RequiredError}
|
|
14310
15023
|
* @memberof StripeApi
|
|
14311
15024
|
*/
|
|
14312
|
-
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>>;
|
|
14313
15034
|
}
|
|
14314
15035
|
/**
|
|
14315
15036
|
* SyncApi - axios parameter creator
|
|
@@ -14381,7 +15102,7 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14381
15102
|
* @throws {RequiredError}
|
|
14382
15103
|
* @memberof SyncApi
|
|
14383
15104
|
*/
|
|
14384
|
-
getUserSyncResults(requestParameters?: SyncApiGetUserSyncResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
15105
|
+
getUserSyncResults(requestParameters?: SyncApiGetUserSyncResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}, any>>;
|
|
14385
15106
|
}
|
|
14386
15107
|
/**
|
|
14387
15108
|
* @export
|
|
@@ -14391,6 +15112,253 @@ export declare const GetUserSyncResultsServiceEnum: {
|
|
|
14391
15112
|
readonly Gewisdb: "GEWISDB";
|
|
14392
15113
|
};
|
|
14393
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
|
+
}
|
|
14394
15362
|
/**
|
|
14395
15363
|
* TermsOfServiceApi - axios parameter creator
|
|
14396
15364
|
* @export
|
|
@@ -14481,7 +15449,7 @@ export declare class TermsOfServiceApi extends BaseAPI {
|
|
|
14481
15449
|
* @throws {RequiredError}
|
|
14482
15450
|
* @memberof TermsOfServiceApi
|
|
14483
15451
|
*/
|
|
14484
|
-
getLatestTermsOfService(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}>>;
|
|
15452
|
+
getLatestTermsOfService(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}, any>>;
|
|
14485
15453
|
/**
|
|
14486
15454
|
*
|
|
14487
15455
|
* @summary Get a terms of service version by version number
|
|
@@ -14490,7 +15458,7 @@ export declare class TermsOfServiceApi extends BaseAPI {
|
|
|
14490
15458
|
* @throws {RequiredError}
|
|
14491
15459
|
* @memberof TermsOfServiceApi
|
|
14492
15460
|
*/
|
|
14493
|
-
getTermsOfService(requestParameters: TermsOfServiceApiGetTermsOfServiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}>>;
|
|
15461
|
+
getTermsOfService(requestParameters: TermsOfServiceApiGetTermsOfServiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceResponse, any, {}, any>>;
|
|
14494
15462
|
}
|
|
14495
15463
|
/**
|
|
14496
15464
|
* TestOperationsOfTheTestControllerApi - axios parameter creator
|
|
@@ -14545,7 +15513,7 @@ export declare class TestOperationsOfTheTestControllerApi extends BaseAPI {
|
|
|
14545
15513
|
* @throws {RequiredError}
|
|
14546
15514
|
* @memberof TestOperationsOfTheTestControllerApi
|
|
14547
15515
|
*/
|
|
14548
|
-
helloworld(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15516
|
+
helloworld(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
14549
15517
|
}
|
|
14550
15518
|
/**
|
|
14551
15519
|
* TransactionSummariesApi - axios parameter creator
|
|
@@ -14621,7 +15589,7 @@ export declare class TransactionSummariesApi extends BaseAPI {
|
|
|
14621
15589
|
* @throws {RequiredError}
|
|
14622
15590
|
* @memberof TransactionSummariesApi
|
|
14623
15591
|
*/
|
|
14624
|
-
getSingleContainerSummary(requestParameters: TransactionSummariesApiGetSingleContainerSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerSummaryResponse[], any, {}>>;
|
|
15592
|
+
getSingleContainerSummary(requestParameters: TransactionSummariesApiGetSingleContainerSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerSummaryResponse[], any, {}, any>>;
|
|
14625
15593
|
}
|
|
14626
15594
|
/**
|
|
14627
15595
|
* TransactionsApi - axios parameter creator
|
|
@@ -15048,7 +16016,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15048
16016
|
* @throws {RequiredError}
|
|
15049
16017
|
* @memberof TransactionsApi
|
|
15050
16018
|
*/
|
|
15051
|
-
createTransaction(requestParameters: TransactionsApiCreateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16019
|
+
createTransaction(requestParameters: TransactionsApiCreateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
15052
16020
|
/**
|
|
15053
16021
|
*
|
|
15054
16022
|
* @summary Deletes a transaction
|
|
@@ -15057,7 +16025,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15057
16025
|
* @throws {RequiredError}
|
|
15058
16026
|
* @memberof TransactionsApi
|
|
15059
16027
|
*/
|
|
15060
|
-
deleteTransaction(requestParameters: TransactionsApiDeleteTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16028
|
+
deleteTransaction(requestParameters: TransactionsApiDeleteTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
15061
16029
|
/**
|
|
15062
16030
|
*
|
|
15063
16031
|
* @summary Get a list of all transactions
|
|
@@ -15066,7 +16034,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15066
16034
|
* @throws {RequiredError}
|
|
15067
16035
|
* @memberof TransactionsApi
|
|
15068
16036
|
*/
|
|
15069
|
-
getAllTransactions(requestParameters?: TransactionsApiGetAllTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
16037
|
+
getAllTransactions(requestParameters?: TransactionsApiGetAllTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
15070
16038
|
/**
|
|
15071
16039
|
*
|
|
15072
16040
|
* @summary Get a single transaction
|
|
@@ -15075,7 +16043,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15075
16043
|
* @throws {RequiredError}
|
|
15076
16044
|
* @memberof TransactionsApi
|
|
15077
16045
|
*/
|
|
15078
|
-
getSingleTransaction(requestParameters: TransactionsApiGetSingleTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16046
|
+
getSingleTransaction(requestParameters: TransactionsApiGetSingleTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
15079
16047
|
/**
|
|
15080
16048
|
*
|
|
15081
16049
|
* @summary Get all invoices containing subtransaction rows from this transaction
|
|
@@ -15084,7 +16052,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15084
16052
|
* @throws {RequiredError}
|
|
15085
16053
|
* @memberof TransactionsApi
|
|
15086
16054
|
*/
|
|
15087
|
-
getTransactionInvoices(requestParameters: TransactionsApiGetTransactionInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse[], any, {}>>;
|
|
16055
|
+
getTransactionInvoices(requestParameters: TransactionsApiGetTransactionInvoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse[], any, {}, any>>;
|
|
15088
16056
|
/**
|
|
15089
16057
|
*
|
|
15090
16058
|
* @summary Get the PDF of the transaction
|
|
@@ -15093,7 +16061,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15093
16061
|
* @throws {RequiredError}
|
|
15094
16062
|
* @memberof TransactionsApi
|
|
15095
16063
|
*/
|
|
15096
|
-
getTransactionPdf(requestParameters: TransactionsApiGetTransactionPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
16064
|
+
getTransactionPdf(requestParameters: TransactionsApiGetTransactionPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
15097
16065
|
/**
|
|
15098
16066
|
*
|
|
15099
16067
|
* @summary Updates the requested transaction
|
|
@@ -15102,7 +16070,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15102
16070
|
* @throws {RequiredError}
|
|
15103
16071
|
* @memberof TransactionsApi
|
|
15104
16072
|
*/
|
|
15105
|
-
updateTransaction(requestParameters: TransactionsApiUpdateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
16073
|
+
updateTransaction(requestParameters: TransactionsApiUpdateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}, any>>;
|
|
15106
16074
|
/**
|
|
15107
16075
|
*
|
|
15108
16076
|
* @summary Function to validate the transaction before creating it
|
|
@@ -15111,7 +16079,7 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
15111
16079
|
* @throws {RequiredError}
|
|
15112
16080
|
* @memberof TransactionsApi
|
|
15113
16081
|
*/
|
|
15114
|
-
validateTransaction(requestParameters: TransactionsApiValidateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
16082
|
+
validateTransaction(requestParameters: TransactionsApiValidateTransactionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}, any>>;
|
|
15115
16083
|
}
|
|
15116
16084
|
/**
|
|
15117
16085
|
* TransfersApi - axios parameter creator
|
|
@@ -15222,7 +16190,7 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15222
16190
|
* @param {*} [options] Override http request option.
|
|
15223
16191
|
* @throws {RequiredError}
|
|
15224
16192
|
*/
|
|
15225
|
-
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>>;
|
|
15226
16194
|
/**
|
|
15227
16195
|
*
|
|
15228
16196
|
* @summary Returns the requested transfer
|
|
@@ -15291,7 +16259,7 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15291
16259
|
* @param {*} [options] Override http request option.
|
|
15292
16260
|
* @throws {RequiredError}
|
|
15293
16261
|
*/
|
|
15294
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16262
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedTransferResponse>;
|
|
15295
16263
|
/**
|
|
15296
16264
|
*
|
|
15297
16265
|
* @summary Returns the requested transfer
|
|
@@ -15509,7 +16477,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15509
16477
|
* @throws {RequiredError}
|
|
15510
16478
|
* @memberof TransfersApi
|
|
15511
16479
|
*/
|
|
15512
|
-
createTransfer(requestParameters: TransfersApiCreateTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}>>;
|
|
16480
|
+
createTransfer(requestParameters: TransfersApiCreateTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}, any>>;
|
|
15513
16481
|
/**
|
|
15514
16482
|
*
|
|
15515
16483
|
* @summary Deletes a transfer.
|
|
@@ -15518,7 +16486,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15518
16486
|
* @throws {RequiredError}
|
|
15519
16487
|
* @memberof TransfersApi
|
|
15520
16488
|
*/
|
|
15521
|
-
deleteTransfer(requestParameters: TransfersApiDeleteTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16489
|
+
deleteTransfer(requestParameters: TransfersApiDeleteTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
15522
16490
|
/**
|
|
15523
16491
|
*
|
|
15524
16492
|
* @summary Returns all existing transfers
|
|
@@ -15527,7 +16495,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15527
16495
|
* @throws {RequiredError}
|
|
15528
16496
|
* @memberof TransfersApi
|
|
15529
16497
|
*/
|
|
15530
|
-
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
16498
|
+
getAllTransfers(requestParameters?: TransfersApiGetAllTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}, any>>;
|
|
15531
16499
|
/**
|
|
15532
16500
|
*
|
|
15533
16501
|
* @summary Returns the requested transfer
|
|
@@ -15536,7 +16504,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15536
16504
|
* @throws {RequiredError}
|
|
15537
16505
|
* @memberof TransfersApi
|
|
15538
16506
|
*/
|
|
15539
|
-
getSingleTransfer(requestParameters: TransfersApiGetSingleTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}>>;
|
|
16507
|
+
getSingleTransfer(requestParameters: TransfersApiGetSingleTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferResponse, any, {}, any>>;
|
|
15540
16508
|
/**
|
|
15541
16509
|
*
|
|
15542
16510
|
* @summary Returns the aggregate (sum and count) of transfers matching the given filters
|
|
@@ -15545,7 +16513,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15545
16513
|
* @throws {RequiredError}
|
|
15546
16514
|
* @memberof TransfersApi
|
|
15547
16515
|
*/
|
|
15548
|
-
getTransferAggregate(requestParameters?: TransfersApiGetTransferAggregateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferAggregateResponse, any, {}>>;
|
|
16516
|
+
getTransferAggregate(requestParameters?: TransfersApiGetTransferAggregateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferAggregateResponse, any, {}, any>>;
|
|
15549
16517
|
/**
|
|
15550
16518
|
*
|
|
15551
16519
|
* @summary Get the PDF of the transfer
|
|
@@ -15554,7 +16522,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15554
16522
|
* @throws {RequiredError}
|
|
15555
16523
|
* @memberof TransfersApi
|
|
15556
16524
|
*/
|
|
15557
|
-
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
16525
|
+
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
15558
16526
|
/**
|
|
15559
16527
|
*
|
|
15560
16528
|
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
@@ -15563,7 +16531,7 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15563
16531
|
* @throws {RequiredError}
|
|
15564
16532
|
* @memberof TransfersApi
|
|
15565
16533
|
*/
|
|
15566
|
-
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}>>;
|
|
16534
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}, any>>;
|
|
15567
16535
|
}
|
|
15568
16536
|
/**
|
|
15569
16537
|
* UserNotificationPreferencesApi - axios parameter creator
|
|
@@ -15749,7 +16717,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15749
16717
|
* @throws {RequiredError}
|
|
15750
16718
|
* @memberof UserNotificationPreferencesApi
|
|
15751
16719
|
*/
|
|
15752
|
-
getAllUserNotificationPreferences(requestParameters?: UserNotificationPreferencesApiGetAllUserNotificationPreferencesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserNotificationPreferenceResponse, any, {}>>;
|
|
16720
|
+
getAllUserNotificationPreferences(requestParameters?: UserNotificationPreferencesApiGetAllUserNotificationPreferencesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15753
16721
|
/**
|
|
15754
16722
|
*
|
|
15755
16723
|
* @summary Return a single user notification preferences in the system.
|
|
@@ -15758,7 +16726,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15758
16726
|
* @throws {RequiredError}
|
|
15759
16727
|
* @memberof UserNotificationPreferencesApi
|
|
15760
16728
|
*/
|
|
15761
|
-
getSingleUserNotificationPreference(requestParameters: UserNotificationPreferencesApiGetSingleUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}>>;
|
|
16729
|
+
getSingleUserNotificationPreference(requestParameters: UserNotificationPreferencesApiGetSingleUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15762
16730
|
/**
|
|
15763
16731
|
*
|
|
15764
16732
|
* @summary Update a user notification preferences in the system.
|
|
@@ -15767,7 +16735,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15767
16735
|
* @throws {RequiredError}
|
|
15768
16736
|
* @memberof UserNotificationPreferencesApi
|
|
15769
16737
|
*/
|
|
15770
|
-
updateUserNotificationPreference(requestParameters: UserNotificationPreferencesApiUpdateUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}>>;
|
|
16738
|
+
updateUserNotificationPreference(requestParameters: UserNotificationPreferencesApiUpdateUserNotificationPreferenceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseUserNotificationPreferenceResponse, any, {}, any>>;
|
|
15771
16739
|
}
|
|
15772
16740
|
/**
|
|
15773
16741
|
* UsersApi - axios parameter creator
|
|
@@ -15776,7 +16744,7 @@ export declare class UserNotificationPreferencesApi extends BaseAPI {
|
|
|
15776
16744
|
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
15777
16745
|
/**
|
|
15778
16746
|
*
|
|
15779
|
-
* @summary Accept the Terms of Service
|
|
16747
|
+
* @summary Accept the current Terms of Service version
|
|
15780
16748
|
* @param {AcceptTosRequest} acceptTosRequest \"Tosrequest body\"
|
|
15781
16749
|
* @param {*} [options] Override http request option.
|
|
15782
16750
|
* @throws {RequiredError}
|
|
@@ -15906,6 +16874,14 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15906
16874
|
* @throws {RequiredError}
|
|
15907
16875
|
*/
|
|
15908
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>;
|
|
15909
16885
|
/**
|
|
15910
16886
|
*
|
|
15911
16887
|
* @summary Returns the user\'s containers
|
|
@@ -15928,6 +16904,20 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15928
16904
|
* @throws {RequiredError}
|
|
15929
16905
|
*/
|
|
15930
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>;
|
|
15931
16921
|
/**
|
|
15932
16922
|
*
|
|
15933
16923
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -16138,7 +17128,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
16138
17128
|
export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
16139
17129
|
/**
|
|
16140
17130
|
*
|
|
16141
|
-
* @summary Accept the Terms of Service
|
|
17131
|
+
* @summary Accept the current Terms of Service version
|
|
16142
17132
|
* @param {AcceptTosRequest} acceptTosRequest \"Tosrequest body\"
|
|
16143
17133
|
* @param {*} [options] Override http request option.
|
|
16144
17134
|
* @throws {RequiredError}
|
|
@@ -16268,6 +17258,14 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16268
17258
|
* @throws {RequiredError}
|
|
16269
17259
|
*/
|
|
16270
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>>;
|
|
16271
17269
|
/**
|
|
16272
17270
|
*
|
|
16273
17271
|
* @summary Returns the user\'s containers
|
|
@@ -16290,6 +17288,20 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16290
17288
|
* @throws {RequiredError}
|
|
16291
17289
|
*/
|
|
16292
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>>;
|
|
16293
17305
|
/**
|
|
16294
17306
|
*
|
|
16295
17307
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -16500,7 +17512,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16500
17512
|
export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
16501
17513
|
/**
|
|
16502
17514
|
*
|
|
16503
|
-
* @summary Accept the Terms of Service
|
|
17515
|
+
* @summary Accept the current Terms of Service version
|
|
16504
17516
|
* @param {UsersApiAcceptTosRequest} requestParameters Request parameters.
|
|
16505
17517
|
* @param {*} [options] Override http request option.
|
|
16506
17518
|
* @throws {RequiredError}
|
|
@@ -16618,6 +17630,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16618
17630
|
* @throws {RequiredError}
|
|
16619
17631
|
*/
|
|
16620
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>;
|
|
16621
17641
|
/**
|
|
16622
17642
|
*
|
|
16623
17643
|
* @summary Returns the user\'s containers
|
|
@@ -16634,6 +17654,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16634
17654
|
* @throws {RequiredError}
|
|
16635
17655
|
*/
|
|
16636
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>;
|
|
16637
17665
|
/**
|
|
16638
17666
|
*
|
|
16639
17667
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -17063,6 +18091,19 @@ export interface UsersApiGetUserSettingsRequest {
|
|
|
17063
18091
|
*/
|
|
17064
18092
|
readonly id: number;
|
|
17065
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
|
+
}
|
|
17066
18107
|
/**
|
|
17067
18108
|
* Request parameters for getUsersContainers operation in UsersApi.
|
|
17068
18109
|
* @export
|
|
@@ -17125,6 +18166,55 @@ export interface UsersApiGetUsersFinancialMutationsRequest {
|
|
|
17125
18166
|
*/
|
|
17126
18167
|
readonly skip?: number;
|
|
17127
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
|
+
}
|
|
17128
18218
|
/**
|
|
17129
18219
|
* Request parameters for getUsersPointsOfSale operation in UsersApi.
|
|
17130
18220
|
* @export
|
|
@@ -17640,13 +18730,13 @@ export interface UsersApiWaiveUserFinesRequest {
|
|
|
17640
18730
|
export declare class UsersApi extends BaseAPI {
|
|
17641
18731
|
/**
|
|
17642
18732
|
*
|
|
17643
|
-
* @summary Accept the Terms of Service
|
|
18733
|
+
* @summary Accept the current Terms of Service version
|
|
17644
18734
|
* @param {UsersApiAcceptTosRequest} requestParameters Request parameters.
|
|
17645
18735
|
* @param {*} [options] Override http request option.
|
|
17646
18736
|
* @throws {RequiredError}
|
|
17647
18737
|
* @memberof UsersApi
|
|
17648
18738
|
*/
|
|
17649
|
-
acceptTos(requestParameters: UsersApiAcceptTosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18739
|
+
acceptTos(requestParameters: UsersApiAcceptTosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17650
18740
|
/**
|
|
17651
18741
|
*
|
|
17652
18742
|
* @summary Adds a role to a user
|
|
@@ -17655,7 +18745,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17655
18745
|
* @throws {RequiredError}
|
|
17656
18746
|
* @memberof UsersApi
|
|
17657
18747
|
*/
|
|
17658
|
-
addUserRole(requestParameters: UsersApiAddUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18748
|
+
addUserRole(requestParameters: UsersApiAddUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17659
18749
|
/**
|
|
17660
18750
|
*
|
|
17661
18751
|
* @summary Create a new user
|
|
@@ -17664,7 +18754,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17664
18754
|
* @throws {RequiredError}
|
|
17665
18755
|
* @memberof UsersApi
|
|
17666
18756
|
*/
|
|
17667
|
-
createUser(requestParameters: UsersApiCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18757
|
+
createUser(requestParameters: UsersApiCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17668
18758
|
/**
|
|
17669
18759
|
*
|
|
17670
18760
|
* @summary Delete a single user
|
|
@@ -17673,7 +18763,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17673
18763
|
* @throws {RequiredError}
|
|
17674
18764
|
* @memberof UsersApi
|
|
17675
18765
|
*/
|
|
17676
|
-
deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18766
|
+
deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17677
18767
|
/**
|
|
17678
18768
|
*
|
|
17679
18769
|
* @summary Delete a users key code
|
|
@@ -17682,7 +18772,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17682
18772
|
* @throws {RequiredError}
|
|
17683
18773
|
* @memberof UsersApi
|
|
17684
18774
|
*/
|
|
17685
|
-
deleteUserKey(requestParameters: UsersApiDeleteUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18775
|
+
deleteUserKey(requestParameters: UsersApiDeleteUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17686
18776
|
/**
|
|
17687
18777
|
*
|
|
17688
18778
|
* @summary Delete a nfc code
|
|
@@ -17691,7 +18781,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17691
18781
|
* @throws {RequiredError}
|
|
17692
18782
|
* @memberof UsersApi
|
|
17693
18783
|
*/
|
|
17694
|
-
deleteUserNfc(requestParameters: UsersApiDeleteUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18784
|
+
deleteUserNfc(requestParameters: UsersApiDeleteUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17695
18785
|
/**
|
|
17696
18786
|
*
|
|
17697
18787
|
* @summary Deletes a role from a user
|
|
@@ -17700,7 +18790,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17700
18790
|
* @throws {RequiredError}
|
|
17701
18791
|
* @memberof UsersApi
|
|
17702
18792
|
*/
|
|
17703
|
-
deleteUserRole(requestParameters: UsersApiDeleteUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18793
|
+
deleteUserRole(requestParameters: UsersApiDeleteUserRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17704
18794
|
/**
|
|
17705
18795
|
*
|
|
17706
18796
|
* @summary Get a user using the nfc code
|
|
@@ -17709,7 +18799,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17709
18799
|
* @throws {RequiredError}
|
|
17710
18800
|
* @memberof UsersApi
|
|
17711
18801
|
*/
|
|
17712
|
-
findUserNfc(requestParameters: UsersApiFindUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18802
|
+
findUserNfc(requestParameters: UsersApiFindUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17713
18803
|
/**
|
|
17714
18804
|
*
|
|
17715
18805
|
* @summary Get a list of all users
|
|
@@ -17718,7 +18808,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17718
18808
|
* @throws {RequiredError}
|
|
17719
18809
|
* @memberof UsersApi
|
|
17720
18810
|
*/
|
|
17721
|
-
getAllUsers(requestParameters?: UsersApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18811
|
+
getAllUsers(requestParameters?: UsersApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17722
18812
|
/**
|
|
17723
18813
|
*
|
|
17724
18814
|
* @summary Get all users of user type
|
|
@@ -17727,7 +18817,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17727
18817
|
* @throws {RequiredError}
|
|
17728
18818
|
* @memberof UsersApi
|
|
17729
18819
|
*/
|
|
17730
|
-
getAllUsersOfUserType(requestParameters: UsersApiGetAllUsersOfUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18820
|
+
getAllUsersOfUserType(requestParameters: UsersApiGetAllUsersOfUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17731
18821
|
/**
|
|
17732
18822
|
*
|
|
17733
18823
|
* @summary Get an individual user
|
|
@@ -17736,7 +18826,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17736
18826
|
* @throws {RequiredError}
|
|
17737
18827
|
* @memberof UsersApi
|
|
17738
18828
|
*/
|
|
17739
|
-
getIndividualUser(requestParameters: UsersApiGetIndividualUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
18829
|
+
getIndividualUser(requestParameters: UsersApiGetIndividualUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17740
18830
|
/**
|
|
17741
18831
|
*
|
|
17742
18832
|
* @summary Get an organs members
|
|
@@ -17745,7 +18835,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17745
18835
|
* @throws {RequiredError}
|
|
17746
18836
|
* @memberof UsersApi
|
|
17747
18837
|
*/
|
|
17748
|
-
getOrganMembers(requestParameters: UsersApiGetOrganMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}>>;
|
|
18838
|
+
getOrganMembers(requestParameters: UsersApiGetOrganMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedUserResponse, any, {}, any>>;
|
|
17749
18839
|
/**
|
|
17750
18840
|
*
|
|
17751
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.
|
|
@@ -17754,7 +18844,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17754
18844
|
* @throws {RequiredError}
|
|
17755
18845
|
* @memberof UsersApi
|
|
17756
18846
|
*/
|
|
17757
|
-
getRecentlyChargedUsers(requestParameters?: UsersApiGetRecentlyChargedUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any, {}>>;
|
|
18847
|
+
getRecentlyChargedUsers(requestParameters?: UsersApiGetRecentlyChargedUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any, {}, any>>;
|
|
17758
18848
|
/**
|
|
17759
18849
|
*
|
|
17760
18850
|
* @summary Get all roles assigned to the user.
|
|
@@ -17763,7 +18853,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17763
18853
|
* @throws {RequiredError}
|
|
17764
18854
|
* @memberof UsersApi
|
|
17765
18855
|
*/
|
|
17766
|
-
getUserRoles(requestParameters: UsersApiGetUserRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse[], any, {}>>;
|
|
18856
|
+
getUserRoles(requestParameters: UsersApiGetUserRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleWithPermissionsResponse[], any, {}, any>>;
|
|
17767
18857
|
/**
|
|
17768
18858
|
*
|
|
17769
18859
|
* @summary Get all user settings
|
|
@@ -17772,7 +18862,16 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17772
18862
|
* @throws {RequiredError}
|
|
17773
18863
|
* @memberof UsersApi
|
|
17774
18864
|
*/
|
|
17775
|
-
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>>;
|
|
17776
18875
|
/**
|
|
17777
18876
|
*
|
|
17778
18877
|
* @summary Returns the user\'s containers
|
|
@@ -17781,7 +18880,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17781
18880
|
* @throws {RequiredError}
|
|
17782
18881
|
* @memberof UsersApi
|
|
17783
18882
|
*/
|
|
17784
|
-
getUsersContainers(requestParameters: UsersApiGetUsersContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}>>;
|
|
18883
|
+
getUsersContainers(requestParameters: UsersApiGetUsersContainersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedContainerResponse, any, {}, any>>;
|
|
17785
18884
|
/**
|
|
17786
18885
|
*
|
|
17787
18886
|
* @summary Get all financial mutations of a user (from or to).
|
|
@@ -17790,7 +18889,16 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17790
18889
|
* @throws {RequiredError}
|
|
17791
18890
|
* @memberof UsersApi
|
|
17792
18891
|
*/
|
|
17793
|
-
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>>;
|
|
17794
18902
|
/**
|
|
17795
18903
|
*
|
|
17796
18904
|
* @summary Returns the user\'s Points of Sale
|
|
@@ -17799,7 +18907,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17799
18907
|
* @throws {RequiredError}
|
|
17800
18908
|
* @memberof UsersApi
|
|
17801
18909
|
*/
|
|
17802
|
-
getUsersPointsOfSale(requestParameters: UsersApiGetUsersPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}>>;
|
|
18910
|
+
getUsersPointsOfSale(requestParameters: UsersApiGetUsersPointsOfSaleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPointOfSaleResponse, any, {}, any>>;
|
|
17803
18911
|
/**
|
|
17804
18912
|
*
|
|
17805
18913
|
* @summary Get all deposits of a user that are still being processed by Stripe
|
|
@@ -17808,7 +18916,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17808
18916
|
* @throws {RequiredError}
|
|
17809
18917
|
* @memberof UsersApi
|
|
17810
18918
|
*/
|
|
17811
|
-
getUsersProcessingDeposits(requestParameters: UsersApiGetUsersProcessingDepositsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}>>;
|
|
18919
|
+
getUsersProcessingDeposits(requestParameters: UsersApiGetUsersProcessingDepositsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleResponse[], any, {}, any>>;
|
|
17812
18920
|
/**
|
|
17813
18921
|
*
|
|
17814
18922
|
* @summary Get an user\'s products
|
|
@@ -17817,7 +18925,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17817
18925
|
* @throws {RequiredError}
|
|
17818
18926
|
* @memberof UsersApi
|
|
17819
18927
|
*/
|
|
17820
|
-
getUsersProducts(requestParameters: UsersApiGetUsersProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}>>;
|
|
18928
|
+
getUsersProducts(requestParameters: UsersApiGetUsersProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedProductResponse, any, {}, any>>;
|
|
17821
18929
|
/**
|
|
17822
18930
|
*
|
|
17823
18931
|
* @summary Get purchase report pdf for the given user
|
|
@@ -17826,7 +18934,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17826
18934
|
* @throws {RequiredError}
|
|
17827
18935
|
* @memberof UsersApi
|
|
17828
18936
|
*/
|
|
17829
|
-
getUsersPurchaseReportPdf(requestParameters: UsersApiGetUsersPurchaseReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
18937
|
+
getUsersPurchaseReportPdf(requestParameters: UsersApiGetUsersPurchaseReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
17830
18938
|
/**
|
|
17831
18939
|
*
|
|
17832
18940
|
* @summary Get purchases report for the given user
|
|
@@ -17835,7 +18943,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17835
18943
|
* @throws {RequiredError}
|
|
17836
18944
|
* @memberof UsersApi
|
|
17837
18945
|
*/
|
|
17838
|
-
getUsersPurchasesReport(requestParameters: UsersApiGetUsersPurchasesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
18946
|
+
getUsersPurchasesReport(requestParameters: UsersApiGetUsersPurchasesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
17839
18947
|
/**
|
|
17840
18948
|
*
|
|
17841
18949
|
* @summary Get sales report for the given user
|
|
@@ -17844,7 +18952,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17844
18952
|
* @throws {RequiredError}
|
|
17845
18953
|
* @memberof UsersApi
|
|
17846
18954
|
*/
|
|
17847
|
-
getUsersSalesReport(requestParameters: UsersApiGetUsersSalesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}>>;
|
|
18955
|
+
getUsersSalesReport(requestParameters: UsersApiGetUsersSalesReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportResponse, any, {}, any>>;
|
|
17848
18956
|
/**
|
|
17849
18957
|
*
|
|
17850
18958
|
* @summary Get sales report for the given user
|
|
@@ -17853,7 +18961,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17853
18961
|
* @throws {RequiredError}
|
|
17854
18962
|
* @memberof UsersApi
|
|
17855
18963
|
*/
|
|
17856
|
-
getUsersSalesReportPdf(requestParameters: UsersApiGetUsersSalesReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
18964
|
+
getUsersSalesReportPdf(requestParameters: UsersApiGetUsersSalesReportPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}, any>>;
|
|
17857
18965
|
/**
|
|
17858
18966
|
*
|
|
17859
18967
|
* @summary Get transactions from a user.
|
|
@@ -17862,7 +18970,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17862
18970
|
* @throws {RequiredError}
|
|
17863
18971
|
* @memberof UsersApi
|
|
17864
18972
|
*/
|
|
17865
|
-
getUsersTransactions(requestParameters: UsersApiGetUsersTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}>>;
|
|
18973
|
+
getUsersTransactions(requestParameters: UsersApiGetUsersTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedBaseTransactionResponse, any, {}, any>>;
|
|
17866
18974
|
/**
|
|
17867
18975
|
*
|
|
17868
18976
|
* @summary Get transaction report for the given user
|
|
@@ -17872,7 +18980,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17872
18980
|
* @throws {RequiredError}
|
|
17873
18981
|
* @memberof UsersApi
|
|
17874
18982
|
*/
|
|
17875
|
-
getUsersTransactionsReport(requestParameters: UsersApiGetUsersTransactionsReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionReportResponse[], any, {}>>;
|
|
18983
|
+
getUsersTransactionsReport(requestParameters: UsersApiGetUsersTransactionsReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionReportResponse[], any, {}, any>>;
|
|
17876
18984
|
/**
|
|
17877
18985
|
*
|
|
17878
18986
|
* @summary Get transfers to or from an user.
|
|
@@ -17881,7 +18989,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17881
18989
|
* @throws {RequiredError}
|
|
17882
18990
|
* @memberof UsersApi
|
|
17883
18991
|
*/
|
|
17884
|
-
getUsersTransfers(requestParameters: UsersApiGetUsersTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}>>;
|
|
18992
|
+
getUsersTransfers(requestParameters: UsersApiGetUsersTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedTransferResponse, any, {}, any>>;
|
|
17885
18993
|
/**
|
|
17886
18994
|
*
|
|
17887
18995
|
* @summary Get wrapped for a user
|
|
@@ -17890,7 +18998,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17890
18998
|
* @throws {RequiredError}
|
|
17891
18999
|
* @memberof UsersApi
|
|
17892
19000
|
*/
|
|
17893
|
-
getWrapped(requestParameters: UsersApiGetWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}>>;
|
|
19001
|
+
getWrapped(requestParameters: UsersApiGetWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}, any>>;
|
|
17894
19002
|
/**
|
|
17895
19003
|
*
|
|
17896
19004
|
* @summary Update user settings
|
|
@@ -17899,7 +19007,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17899
19007
|
* @throws {RequiredError}
|
|
17900
19008
|
* @memberof UsersApi
|
|
17901
19009
|
*/
|
|
17902
|
-
patchUserSettings(requestParameters: UsersApiPatchUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}>>;
|
|
19010
|
+
patchUserSettings(requestParameters: UsersApiPatchUserSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserSettingsResponse, any, {}, any>>;
|
|
17903
19011
|
/**
|
|
17904
19012
|
*
|
|
17905
19013
|
* @summary Update user type
|
|
@@ -17908,7 +19016,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17908
19016
|
* @throws {RequiredError}
|
|
17909
19017
|
* @memberof UsersApi
|
|
17910
19018
|
*/
|
|
17911
|
-
patchUserType(requestParameters: UsersApiPatchUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
19019
|
+
patchUserType(requestParameters: UsersApiPatchUserTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17912
19020
|
/**
|
|
17913
19021
|
*
|
|
17914
19022
|
* @summary Update a user
|
|
@@ -17917,7 +19025,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17917
19025
|
* @throws {RequiredError}
|
|
17918
19026
|
* @memberof UsersApi
|
|
17919
19027
|
*/
|
|
17920
|
-
updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}>>;
|
|
19028
|
+
updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any, {}, any>>;
|
|
17921
19029
|
/**
|
|
17922
19030
|
*
|
|
17923
19031
|
* @summary POST an users update to new key code
|
|
@@ -17926,7 +19034,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17926
19034
|
* @throws {RequiredError}
|
|
17927
19035
|
* @memberof UsersApi
|
|
17928
19036
|
*/
|
|
17929
|
-
updateUserKey(requestParameters: UsersApiUpdateUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateKeyResponse, any, {}>>;
|
|
19037
|
+
updateUserKey(requestParameters: UsersApiUpdateUserKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateKeyResponse, any, {}, any>>;
|
|
17930
19038
|
/**
|
|
17931
19039
|
*
|
|
17932
19040
|
* @summary Put a user\'s local password
|
|
@@ -17935,7 +19043,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17935
19043
|
* @throws {RequiredError}
|
|
17936
19044
|
* @memberof UsersApi
|
|
17937
19045
|
*/
|
|
17938
|
-
updateUserLocalPassword(requestParameters: UsersApiUpdateUserLocalPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19046
|
+
updateUserLocalPassword(requestParameters: UsersApiUpdateUserLocalPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17939
19047
|
/**
|
|
17940
19048
|
*
|
|
17941
19049
|
* @summary Put a users NFC code
|
|
@@ -17944,7 +19052,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17944
19052
|
* @throws {RequiredError}
|
|
17945
19053
|
* @memberof UsersApi
|
|
17946
19054
|
*/
|
|
17947
|
-
updateUserNfc(requestParameters: UsersApiUpdateUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19055
|
+
updateUserNfc(requestParameters: UsersApiUpdateUserNfcRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17948
19056
|
/**
|
|
17949
19057
|
*
|
|
17950
19058
|
* @summary Put an users pin code
|
|
@@ -17953,7 +19061,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17953
19061
|
* @throws {RequiredError}
|
|
17954
19062
|
* @memberof UsersApi
|
|
17955
19063
|
*/
|
|
17956
|
-
updateUserPin(requestParameters: UsersApiUpdateUserPinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19064
|
+
updateUserPin(requestParameters: UsersApiUpdateUserPinRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17957
19065
|
/**
|
|
17958
19066
|
*
|
|
17959
19067
|
* @summary Recompute wrapped for a user
|
|
@@ -17962,7 +19070,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17962
19070
|
* @throws {RequiredError}
|
|
17963
19071
|
* @memberof UsersApi
|
|
17964
19072
|
*/
|
|
17965
|
-
updateWrapped(requestParameters: UsersApiUpdateWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}>>;
|
|
19073
|
+
updateWrapped(requestParameters: UsersApiUpdateWrappedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponse, any, {}, any>>;
|
|
17966
19074
|
/**
|
|
17967
19075
|
*
|
|
17968
19076
|
* @summary Waive all given user\'s fines
|
|
@@ -17971,7 +19079,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
17971
19079
|
* @throws {RequiredError}
|
|
17972
19080
|
* @memberof UsersApi
|
|
17973
19081
|
*/
|
|
17974
|
-
waiveUserFines(requestParameters: UsersApiWaiveUserFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
19082
|
+
waiveUserFines(requestParameters: UsersApiWaiveUserFinesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}, any>>;
|
|
17975
19083
|
}
|
|
17976
19084
|
/**
|
|
17977
19085
|
* @export
|
|
@@ -17986,6 +19094,16 @@ export declare const GetAllUsersTypeEnum: {
|
|
|
17986
19094
|
readonly AutomaticInvoice: "AUTOMATIC_INVOICE";
|
|
17987
19095
|
};
|
|
17988
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];
|
|
17989
19107
|
/**
|
|
17990
19108
|
* @export
|
|
17991
19109
|
*/
|
|
@@ -18276,7 +19394,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18276
19394
|
* @throws {RequiredError}
|
|
18277
19395
|
* @memberof VatGroupsApi
|
|
18278
19396
|
*/
|
|
18279
|
-
createVatGroup(requestParameters: VatGroupsApiCreateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19397
|
+
createVatGroup(requestParameters: VatGroupsApiCreateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18280
19398
|
/**
|
|
18281
19399
|
*
|
|
18282
19400
|
* @summary Get a list of all VAT groups
|
|
@@ -18285,7 +19403,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18285
19403
|
* @throws {RequiredError}
|
|
18286
19404
|
* @memberof VatGroupsApi
|
|
18287
19405
|
*/
|
|
18288
|
-
getAllVatGroups(requestParameters?: VatGroupsApiGetAllVatGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}>>;
|
|
19406
|
+
getAllVatGroups(requestParameters?: VatGroupsApiGetAllVatGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}, any>>;
|
|
18289
19407
|
/**
|
|
18290
19408
|
*
|
|
18291
19409
|
* @summary Returns the requested VAT group
|
|
@@ -18294,7 +19412,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18294
19412
|
* @throws {RequiredError}
|
|
18295
19413
|
* @memberof VatGroupsApi
|
|
18296
19414
|
*/
|
|
18297
|
-
getSingleVatGroup(requestParameters: VatGroupsApiGetSingleVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19415
|
+
getSingleVatGroup(requestParameters: VatGroupsApiGetSingleVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18298
19416
|
/**
|
|
18299
19417
|
*
|
|
18300
19418
|
* @summary Get the VAT collections needed for VAT declarations
|
|
@@ -18303,7 +19421,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18303
19421
|
* @throws {RequiredError}
|
|
18304
19422
|
* @memberof VatGroupsApi
|
|
18305
19423
|
*/
|
|
18306
|
-
getVatDeclarationAmounts(requestParameters: VatGroupsApiGetVatDeclarationAmountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}>>;
|
|
19424
|
+
getVatDeclarationAmounts(requestParameters: VatGroupsApiGetVatDeclarationAmountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVatGroupResponse, any, {}, any>>;
|
|
18307
19425
|
/**
|
|
18308
19426
|
*
|
|
18309
19427
|
* @summary Create a new VAT group
|
|
@@ -18312,7 +19430,7 @@ export declare class VatGroupsApi extends BaseAPI {
|
|
|
18312
19430
|
* @throws {RequiredError}
|
|
18313
19431
|
* @memberof VatGroupsApi
|
|
18314
19432
|
*/
|
|
18315
|
-
updateVatGroup(requestParameters: VatGroupsApiUpdateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}>>;
|
|
19433
|
+
updateVatGroup(requestParameters: VatGroupsApiUpdateVatGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VatGroupResponse, any, {}, any>>;
|
|
18316
19434
|
}
|
|
18317
19435
|
/**
|
|
18318
19436
|
* VouchergroupsApi - axios parameter creator
|
|
@@ -18511,7 +19629,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18511
19629
|
* @throws {RequiredError}
|
|
18512
19630
|
* @memberof VouchergroupsApi
|
|
18513
19631
|
*/
|
|
18514
|
-
createVouchergroup(requestParameters: VouchergroupsApiCreateVouchergroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19632
|
+
createVouchergroup(requestParameters: VouchergroupsApiCreateVouchergroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18515
19633
|
/**
|
|
18516
19634
|
*
|
|
18517
19635
|
* @summary Returns all existing voucher groups
|
|
@@ -18520,7 +19638,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18520
19638
|
* @throws {RequiredError}
|
|
18521
19639
|
* @memberof VouchergroupsApi
|
|
18522
19640
|
*/
|
|
18523
|
-
getAllVouchergroups(requestParameters?: VouchergroupsApiGetAllVouchergroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVoucherGroupResponse, any, {}>>;
|
|
19641
|
+
getAllVouchergroups(requestParameters?: VouchergroupsApiGetAllVouchergroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedVoucherGroupResponse, any, {}, any>>;
|
|
18524
19642
|
/**
|
|
18525
19643
|
*
|
|
18526
19644
|
* @summary Returns the requested voucher group
|
|
@@ -18529,7 +19647,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18529
19647
|
* @throws {RequiredError}
|
|
18530
19648
|
* @memberof VouchergroupsApi
|
|
18531
19649
|
*/
|
|
18532
|
-
getVouchergroupId(requestParameters: VouchergroupsApiGetVouchergroupIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19650
|
+
getVouchergroupId(requestParameters: VouchergroupsApiGetVouchergroupIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18533
19651
|
/**
|
|
18534
19652
|
*
|
|
18535
19653
|
* @summary Updates the requested voucher group
|
|
@@ -18538,7 +19656,7 @@ export declare class VouchergroupsApi extends BaseAPI {
|
|
|
18538
19656
|
* @throws {RequiredError}
|
|
18539
19657
|
* @memberof VouchergroupsApi
|
|
18540
19658
|
*/
|
|
18541
|
-
updateVoucherGroup(requestParameters: VouchergroupsApiUpdateVoucherGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}>>;
|
|
19659
|
+
updateVoucherGroup(requestParameters: VouchergroupsApiUpdateVoucherGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VoucherGroupResponse, any, {}, any>>;
|
|
18542
19660
|
}
|
|
18543
19661
|
/**
|
|
18544
19662
|
* WriteoffsApi - axios parameter creator
|
|
@@ -18769,7 +19887,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18769
19887
|
* @throws {RequiredError}
|
|
18770
19888
|
* @memberof WriteoffsApi
|
|
18771
19889
|
*/
|
|
18772
|
-
createWriteOff(requestParameters: WriteoffsApiCreateWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}>>;
|
|
19890
|
+
createWriteOff(requestParameters: WriteoffsApiCreateWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}, any>>;
|
|
18773
19891
|
/**
|
|
18774
19892
|
*
|
|
18775
19893
|
* @summary Returns all write-offs in the system.
|
|
@@ -18778,7 +19896,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18778
19896
|
* @throws {RequiredError}
|
|
18779
19897
|
* @memberof WriteoffsApi
|
|
18780
19898
|
*/
|
|
18781
|
-
getAllWriteOffs(requestParameters?: WriteoffsApiGetAllWriteOffsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedWriteOffResponse, any, {}>>;
|
|
19899
|
+
getAllWriteOffs(requestParameters?: WriteoffsApiGetAllWriteOffsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedWriteOffResponse, any, {}, any>>;
|
|
18782
19900
|
/**
|
|
18783
19901
|
*
|
|
18784
19902
|
* @summary Get a single write-off
|
|
@@ -18787,7 +19905,7 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18787
19905
|
* @throws {RequiredError}
|
|
18788
19906
|
* @memberof WriteoffsApi
|
|
18789
19907
|
*/
|
|
18790
|
-
getSingleWriteOff(requestParameters: WriteoffsApiGetSingleWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}>>;
|
|
19908
|
+
getSingleWriteOff(requestParameters: WriteoffsApiGetSingleWriteOffRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WriteOffResponse, any, {}, any>>;
|
|
18791
19909
|
/**
|
|
18792
19910
|
*
|
|
18793
19911
|
* @summary Get a write-off pdf
|
|
@@ -18796,5 +19914,5 @@ export declare class WriteoffsApi extends BaseAPI {
|
|
|
18796
19914
|
* @throws {RequiredError}
|
|
18797
19915
|
* @memberof WriteoffsApi
|
|
18798
19916
|
*/
|
|
18799
|
-
getWriteOffPdf(requestParameters: WriteoffsApiGetWriteOffPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
19917
|
+
getWriteOffPdf(requestParameters: WriteoffsApiGetWriteOffPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}, any>>;
|
|
18800
19918
|
}
|