@gewis/sudosos-client 0.0.0-develop.27cc906 → 0.0.0-develop.320225b
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 +110 -0
- package/dist/api.d.ts +351 -341
- package/dist/api.js +209 -300
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/package.json +4 -4
package/dist/api.d.ts
CHANGED
|
@@ -58,19 +58,6 @@ export interface AddRoleRequest {
|
|
|
58
58
|
*/
|
|
59
59
|
'roleId': number;
|
|
60
60
|
}
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @export
|
|
64
|
-
* @interface AuthenticationEanRequest
|
|
65
|
-
*/
|
|
66
|
-
export interface AuthenticationEanRequest {
|
|
67
|
-
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof AuthenticationEanRequest
|
|
71
|
-
*/
|
|
72
|
-
'eanCode': string;
|
|
73
|
-
}
|
|
74
61
|
/**
|
|
75
62
|
*
|
|
76
63
|
* @export
|
|
@@ -147,38 +134,6 @@ export interface AuthenticationMockRequest {
|
|
|
147
134
|
*/
|
|
148
135
|
'nonce': string;
|
|
149
136
|
}
|
|
150
|
-
/**
|
|
151
|
-
*
|
|
152
|
-
* @export
|
|
153
|
-
* @interface AuthenticationNfcRequest
|
|
154
|
-
*/
|
|
155
|
-
export interface AuthenticationNfcRequest {
|
|
156
|
-
/**
|
|
157
|
-
*
|
|
158
|
-
* @type {string}
|
|
159
|
-
* @memberof AuthenticationNfcRequest
|
|
160
|
-
*/
|
|
161
|
-
'nfcCode': string;
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
*
|
|
165
|
-
* @export
|
|
166
|
-
* @interface AuthenticationPinRequest
|
|
167
|
-
*/
|
|
168
|
-
export interface AuthenticationPinRequest {
|
|
169
|
-
/**
|
|
170
|
-
*
|
|
171
|
-
* @type {number}
|
|
172
|
-
* @memberof AuthenticationPinRequest
|
|
173
|
-
*/
|
|
174
|
-
'userId': number;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @type {string}
|
|
178
|
-
* @memberof AuthenticationPinRequest
|
|
179
|
-
*/
|
|
180
|
-
'pin': string;
|
|
181
|
-
}
|
|
182
137
|
/**
|
|
183
138
|
*
|
|
184
139
|
* @export
|
|
@@ -1659,7 +1614,7 @@ export interface ContainerWithProductsResponse {
|
|
|
1659
1614
|
'products': Array<ProductResponse>;
|
|
1660
1615
|
}
|
|
1661
1616
|
/**
|
|
1662
|
-
*
|
|
1617
|
+
* API Request for creating a `container` entity.
|
|
1663
1618
|
* @export
|
|
1664
1619
|
* @interface CreateContainerRequest
|
|
1665
1620
|
*/
|
|
@@ -1683,11 +1638,11 @@ export interface CreateContainerRequest {
|
|
|
1683
1638
|
*/
|
|
1684
1639
|
'public': boolean;
|
|
1685
1640
|
/**
|
|
1686
|
-
* Id of the
|
|
1641
|
+
* Id of the organ that will own the container
|
|
1687
1642
|
* @type {number}
|
|
1688
1643
|
* @memberof CreateContainerRequest
|
|
1689
1644
|
*/
|
|
1690
|
-
'ownerId'
|
|
1645
|
+
'ownerId': number;
|
|
1691
1646
|
}
|
|
1692
1647
|
/**
|
|
1693
1648
|
*
|
|
@@ -1856,7 +1811,7 @@ export interface CreatePermissionParams {
|
|
|
1856
1811
|
'attributes': Array<string>;
|
|
1857
1812
|
}
|
|
1858
1813
|
/**
|
|
1859
|
-
*
|
|
1814
|
+
* API Request for creating a `point of sale` entity.
|
|
1860
1815
|
* @export
|
|
1861
1816
|
* @interface CreatePointOfSaleRequest
|
|
1862
1817
|
*/
|
|
@@ -1880,7 +1835,7 @@ export interface CreatePointOfSaleRequest {
|
|
|
1880
1835
|
*/
|
|
1881
1836
|
'containers': Array<number>;
|
|
1882
1837
|
/**
|
|
1883
|
-
* ID of the user who will own the POS
|
|
1838
|
+
* ID of the user who will own the POS.
|
|
1884
1839
|
* @type {number}
|
|
1885
1840
|
* @memberof CreatePointOfSaleRequest
|
|
1886
1841
|
*/
|
|
@@ -1893,7 +1848,7 @@ export interface CreatePointOfSaleRequest {
|
|
|
1893
1848
|
'cashierRoleIds'?: Array<number>;
|
|
1894
1849
|
}
|
|
1895
1850
|
/**
|
|
1896
|
-
*
|
|
1851
|
+
* API Request for creating a `product` entity.
|
|
1897
1852
|
* @export
|
|
1898
1853
|
* @interface CreateProductRequest
|
|
1899
1854
|
*/
|
|
@@ -2566,10 +2521,15 @@ export interface FineResponse {
|
|
|
2566
2521
|
/**
|
|
2567
2522
|
*
|
|
2568
2523
|
* @export
|
|
2569
|
-
* @
|
|
2524
|
+
* @enum {string}
|
|
2570
2525
|
*/
|
|
2571
|
-
export
|
|
2572
|
-
|
|
2526
|
+
export declare const GetAllInvoicesCurrentStateParameterInner: {
|
|
2527
|
+
readonly Created: "CREATED";
|
|
2528
|
+
readonly Sent: "SENT";
|
|
2529
|
+
readonly Paid: "PAID";
|
|
2530
|
+
readonly Deleted: "DELETED";
|
|
2531
|
+
};
|
|
2532
|
+
export type GetAllInvoicesCurrentStateParameterInner = typeof GetAllInvoicesCurrentStateParameterInner[keyof typeof GetAllInvoicesCurrentStateParameterInner];
|
|
2573
2533
|
/**
|
|
2574
2534
|
* @type GetAllPayoutRequestsRequestedByIdParameter
|
|
2575
2535
|
* @export
|
|
@@ -2724,6 +2684,37 @@ export interface InactiveAdministrativeCostResponse {
|
|
|
2724
2684
|
*/
|
|
2725
2685
|
'transfer': TransferResponse;
|
|
2726
2686
|
}
|
|
2687
|
+
/**
|
|
2688
|
+
*
|
|
2689
|
+
* @export
|
|
2690
|
+
* @interface InvoiceDriftResponse
|
|
2691
|
+
*/
|
|
2692
|
+
export interface InvoiceDriftResponse {
|
|
2693
|
+
/**
|
|
2694
|
+
*
|
|
2695
|
+
* @type {BaseInvoiceResponse}
|
|
2696
|
+
* @memberof InvoiceDriftResponse
|
|
2697
|
+
*/
|
|
2698
|
+
'invoice': BaseInvoiceResponse;
|
|
2699
|
+
/**
|
|
2700
|
+
*
|
|
2701
|
+
* @type {DineroObjectResponse}
|
|
2702
|
+
* @memberof InvoiceDriftResponse
|
|
2703
|
+
*/
|
|
2704
|
+
'actualAmount': DineroObjectResponse;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
* @type {DineroObjectResponse}
|
|
2708
|
+
* @memberof InvoiceDriftResponse
|
|
2709
|
+
*/
|
|
2710
|
+
'expectedAmount': DineroObjectResponse;
|
|
2711
|
+
/**
|
|
2712
|
+
*
|
|
2713
|
+
* @type {DineroObjectResponse}
|
|
2714
|
+
* @memberof InvoiceDriftResponse
|
|
2715
|
+
*/
|
|
2716
|
+
'deltaAmount': DineroObjectResponse;
|
|
2717
|
+
}
|
|
2727
2718
|
/**
|
|
2728
2719
|
*
|
|
2729
2720
|
* @export
|
|
@@ -3115,25 +3106,6 @@ export interface InvoiceUserResponse {
|
|
|
3115
3106
|
*/
|
|
3116
3107
|
'automatic': boolean;
|
|
3117
3108
|
}
|
|
3118
|
-
/**
|
|
3119
|
-
*
|
|
3120
|
-
* @export
|
|
3121
|
-
* @interface MemberAuthenticationPinRequest
|
|
3122
|
-
*/
|
|
3123
|
-
export interface MemberAuthenticationPinRequest {
|
|
3124
|
-
/**
|
|
3125
|
-
*
|
|
3126
|
-
* @type {number}
|
|
3127
|
-
* @memberof MemberAuthenticationPinRequest
|
|
3128
|
-
*/
|
|
3129
|
-
'memberId': number;
|
|
3130
|
-
/**
|
|
3131
|
-
*
|
|
3132
|
-
* @type {string}
|
|
3133
|
-
* @memberof MemberAuthenticationPinRequest
|
|
3134
|
-
*/
|
|
3135
|
-
'pin': string;
|
|
3136
|
-
}
|
|
3137
3109
|
/**
|
|
3138
3110
|
*
|
|
3139
3111
|
* @export
|
|
@@ -3183,13 +3155,13 @@ export interface PaginatedBalanceResponse {
|
|
|
3183
3155
|
* @type {PaginationResult}
|
|
3184
3156
|
* @memberof PaginatedBalanceResponse
|
|
3185
3157
|
*/
|
|
3186
|
-
'_pagination'
|
|
3158
|
+
'_pagination': PaginationResult;
|
|
3187
3159
|
/**
|
|
3188
3160
|
* Returned balance responses
|
|
3189
3161
|
* @type {Array<BalanceResponse>}
|
|
3190
3162
|
* @memberof PaginatedBalanceResponse
|
|
3191
3163
|
*/
|
|
3192
|
-
'records'
|
|
3164
|
+
'records': Array<BalanceResponse>;
|
|
3193
3165
|
}
|
|
3194
3166
|
/**
|
|
3195
3167
|
* Paginated API Response for the `banner` entity.
|
|
@@ -3202,13 +3174,13 @@ export interface PaginatedBannerResponse {
|
|
|
3202
3174
|
* @type {PaginationResult}
|
|
3203
3175
|
* @memberof PaginatedBannerResponse
|
|
3204
3176
|
*/
|
|
3205
|
-
'_pagination'
|
|
3177
|
+
'_pagination': PaginationResult;
|
|
3206
3178
|
/**
|
|
3207
3179
|
* Returned banners
|
|
3208
3180
|
* @type {Array<BannerResponse>}
|
|
3209
3181
|
* @memberof PaginatedBannerResponse
|
|
3210
3182
|
*/
|
|
3211
|
-
'records'
|
|
3183
|
+
'records': Array<BannerResponse>;
|
|
3212
3184
|
}
|
|
3213
3185
|
/**
|
|
3214
3186
|
*
|
|
@@ -3268,7 +3240,7 @@ export interface PaginatedBaseTransactionResponse {
|
|
|
3268
3240
|
'records': Array<BaseTransactionResponse>;
|
|
3269
3241
|
}
|
|
3270
3242
|
/**
|
|
3271
|
-
*
|
|
3243
|
+
* Paginated API Response for the `container` entity.
|
|
3272
3244
|
* @export
|
|
3273
3245
|
* @interface PaginatedContainerResponse
|
|
3274
3246
|
*/
|
|
@@ -3287,7 +3259,7 @@ export interface PaginatedContainerResponse {
|
|
|
3287
3259
|
'records': Array<ContainerResponse>;
|
|
3288
3260
|
}
|
|
3289
3261
|
/**
|
|
3290
|
-
*
|
|
3262
|
+
* Paginated API Response for the `container` entity, with each container\'s products inlined.
|
|
3291
3263
|
* @export
|
|
3292
3264
|
* @interface PaginatedContainerWithProductResponse
|
|
3293
3265
|
*/
|
|
@@ -3373,13 +3345,13 @@ export interface PaginatedInactiveAdministrativeCostResponse {
|
|
|
3373
3345
|
* @type {PaginationResult}
|
|
3374
3346
|
* @memberof PaginatedInactiveAdministrativeCostResponse
|
|
3375
3347
|
*/
|
|
3376
|
-
'_pagination'
|
|
3348
|
+
'_pagination': PaginationResult;
|
|
3377
3349
|
/**
|
|
3378
3350
|
* Returned InactiveAdministrativeCost
|
|
3379
3351
|
* @type {Array<InactiveAdministrativeCostResponse>}
|
|
3380
3352
|
* @memberof PaginatedInactiveAdministrativeCostResponse
|
|
3381
3353
|
*/
|
|
3382
|
-
'records'
|
|
3354
|
+
'records': Array<InactiveAdministrativeCostResponse>;
|
|
3383
3355
|
}
|
|
3384
3356
|
/**
|
|
3385
3357
|
*
|
|
@@ -3401,7 +3373,7 @@ export interface PaginatedInvoiceResponse {
|
|
|
3401
3373
|
'records': Array<InvoiceResponseTypes>;
|
|
3402
3374
|
}
|
|
3403
3375
|
/**
|
|
3404
|
-
*
|
|
3376
|
+
* Paginated API Response for the `point of sale` entity.
|
|
3405
3377
|
* @export
|
|
3406
3378
|
* @interface PaginatedPointOfSaleResponse
|
|
3407
3379
|
*/
|
|
@@ -3420,7 +3392,7 @@ export interface PaginatedPointOfSaleResponse {
|
|
|
3420
3392
|
'records': Array<PointOfSaleResponse>;
|
|
3421
3393
|
}
|
|
3422
3394
|
/**
|
|
3423
|
-
*
|
|
3395
|
+
* Paginated API Response for the `product category` entity.
|
|
3424
3396
|
* @export
|
|
3425
3397
|
* @interface PaginatedProductCategoryResponse
|
|
3426
3398
|
*/
|
|
@@ -3439,7 +3411,7 @@ export interface PaginatedProductCategoryResponse {
|
|
|
3439
3411
|
'records': Array<ProductCategoryResponse>;
|
|
3440
3412
|
}
|
|
3441
3413
|
/**
|
|
3442
|
-
*
|
|
3414
|
+
* Paginated API Response for the `product` entity.
|
|
3443
3415
|
* @export
|
|
3444
3416
|
* @interface PaginatedProductResponse
|
|
3445
3417
|
*/
|
|
@@ -3534,7 +3506,7 @@ export interface PaginatedUserResponse {
|
|
|
3534
3506
|
'records': Array<UserResponse>;
|
|
3535
3507
|
}
|
|
3536
3508
|
/**
|
|
3537
|
-
*
|
|
3509
|
+
* Paginated API Response for the `vat group` entity.
|
|
3538
3510
|
* @export
|
|
3539
3511
|
* @interface PaginatedVatGroupResponse
|
|
3540
3512
|
*/
|
|
@@ -3866,7 +3838,7 @@ export interface PermissionResponse {
|
|
|
3866
3838
|
'actions': Array<ActionResponse>;
|
|
3867
3839
|
}
|
|
3868
3840
|
/**
|
|
3869
|
-
*
|
|
3841
|
+
* 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).
|
|
3870
3842
|
* @export
|
|
3871
3843
|
* @interface PointOfSaleAssociateUsersResponse
|
|
3872
3844
|
*/
|
|
@@ -4019,7 +3991,7 @@ export interface PointOfSaleWithContainersResponse {
|
|
|
4019
3991
|
'containers': Array<ContainerWithProductsResponse>;
|
|
4020
3992
|
}
|
|
4021
3993
|
/**
|
|
4022
|
-
*
|
|
3994
|
+
* API Request for creating or updating a `product category` entity.
|
|
4023
3995
|
* @export
|
|
4024
3996
|
* @interface ProductCategoryRequest
|
|
4025
3997
|
*/
|
|
@@ -5084,23 +5056,23 @@ export interface TotalBalanceResponse {
|
|
|
5084
5056
|
*/
|
|
5085
5057
|
'date': string;
|
|
5086
5058
|
/**
|
|
5087
|
-
*
|
|
5088
|
-
* @type {
|
|
5059
|
+
*
|
|
5060
|
+
* @type {DineroObjectResponse}
|
|
5089
5061
|
* @memberof TotalBalanceResponse
|
|
5090
5062
|
*/
|
|
5091
|
-
'totalPositive':
|
|
5063
|
+
'totalPositive': DineroObjectResponse;
|
|
5092
5064
|
/**
|
|
5093
|
-
*
|
|
5094
|
-
* @type {
|
|
5065
|
+
*
|
|
5066
|
+
* @type {DineroObjectResponse}
|
|
5095
5067
|
* @memberof TotalBalanceResponse
|
|
5096
5068
|
*/
|
|
5097
|
-
'totalNegative':
|
|
5069
|
+
'totalNegative': DineroObjectResponse;
|
|
5098
5070
|
/**
|
|
5099
|
-
*
|
|
5100
|
-
* @type {UserTypeTotalBalanceResponse}
|
|
5071
|
+
* The total balances for the different user types
|
|
5072
|
+
* @type {Array<UserTypeTotalBalanceResponse>}
|
|
5101
5073
|
* @memberof TotalBalanceResponse
|
|
5102
5074
|
*/
|
|
5103
|
-
'userTypeBalances': UserTypeTotalBalanceResponse
|
|
5075
|
+
'userTypeBalances': Array<UserTypeTotalBalanceResponse>;
|
|
5104
5076
|
}
|
|
5105
5077
|
/**
|
|
5106
5078
|
*
|
|
@@ -5608,6 +5580,85 @@ export interface TransferResponse {
|
|
|
5608
5580
|
/**
|
|
5609
5581
|
*
|
|
5610
5582
|
* @export
|
|
5583
|
+
* @interface TransferSummaryResponse
|
|
5584
|
+
*/
|
|
5585
|
+
export interface TransferSummaryResponse {
|
|
5586
|
+
/**
|
|
5587
|
+
*
|
|
5588
|
+
* @type {TransferAggregateResponse}
|
|
5589
|
+
* @memberof TransferSummaryResponse
|
|
5590
|
+
*/
|
|
5591
|
+
'total': TransferAggregateResponse;
|
|
5592
|
+
/**
|
|
5593
|
+
*
|
|
5594
|
+
* @type {TransferAggregateResponse}
|
|
5595
|
+
* @memberof TransferSummaryResponse
|
|
5596
|
+
*/
|
|
5597
|
+
'deposits': TransferAggregateResponse;
|
|
5598
|
+
/**
|
|
5599
|
+
*
|
|
5600
|
+
* @type {TransferAggregateResponse}
|
|
5601
|
+
* @memberof TransferSummaryResponse
|
|
5602
|
+
*/
|
|
5603
|
+
'payoutRequests': TransferAggregateResponse;
|
|
5604
|
+
/**
|
|
5605
|
+
*
|
|
5606
|
+
* @type {TransferAggregateResponse}
|
|
5607
|
+
* @memberof TransferSummaryResponse
|
|
5608
|
+
*/
|
|
5609
|
+
'sellerPayouts': TransferAggregateResponse;
|
|
5610
|
+
/**
|
|
5611
|
+
*
|
|
5612
|
+
* @type {TransferAggregateResponse}
|
|
5613
|
+
* @memberof TransferSummaryResponse
|
|
5614
|
+
*/
|
|
5615
|
+
'invoices': TransferAggregateResponse;
|
|
5616
|
+
/**
|
|
5617
|
+
*
|
|
5618
|
+
* @type {TransferAggregateResponse}
|
|
5619
|
+
* @memberof TransferSummaryResponse
|
|
5620
|
+
*/
|
|
5621
|
+
'creditInvoices': TransferAggregateResponse;
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {TransferAggregateResponse}
|
|
5625
|
+
* @memberof TransferSummaryResponse
|
|
5626
|
+
*/
|
|
5627
|
+
'fines': TransferAggregateResponse;
|
|
5628
|
+
/**
|
|
5629
|
+
*
|
|
5630
|
+
* @type {TransferAggregateResponse}
|
|
5631
|
+
* @memberof TransferSummaryResponse
|
|
5632
|
+
*/
|
|
5633
|
+
'waivedFines': TransferAggregateResponse;
|
|
5634
|
+
/**
|
|
5635
|
+
*
|
|
5636
|
+
* @type {TransferAggregateResponse}
|
|
5637
|
+
* @memberof TransferSummaryResponse
|
|
5638
|
+
*/
|
|
5639
|
+
'writeOffs': TransferAggregateResponse;
|
|
5640
|
+
/**
|
|
5641
|
+
*
|
|
5642
|
+
* @type {TransferAggregateResponse}
|
|
5643
|
+
* @memberof TransferSummaryResponse
|
|
5644
|
+
*/
|
|
5645
|
+
'inactiveAdministrativeCosts': TransferAggregateResponse;
|
|
5646
|
+
/**
|
|
5647
|
+
*
|
|
5648
|
+
* @type {TransferAggregateResponse}
|
|
5649
|
+
* @memberof TransferSummaryResponse
|
|
5650
|
+
*/
|
|
5651
|
+
'manualCreations': TransferAggregateResponse;
|
|
5652
|
+
/**
|
|
5653
|
+
*
|
|
5654
|
+
* @type {TransferAggregateResponse}
|
|
5655
|
+
* @memberof TransferSummaryResponse
|
|
5656
|
+
*/
|
|
5657
|
+
'manualDeletions': TransferAggregateResponse;
|
|
5658
|
+
}
|
|
5659
|
+
/**
|
|
5660
|
+
* API Request for updating a `container` entity.
|
|
5661
|
+
* @export
|
|
5611
5662
|
* @interface UpdateContainerRequest
|
|
5612
5663
|
*/
|
|
5613
5664
|
export interface UpdateContainerRequest {
|
|
@@ -5856,7 +5907,7 @@ export interface UpdatePinRequest {
|
|
|
5856
5907
|
'pin': string;
|
|
5857
5908
|
}
|
|
5858
5909
|
/**
|
|
5859
|
-
*
|
|
5910
|
+
* API Request for updating a `point of sale` entity.
|
|
5860
5911
|
* @export
|
|
5861
5912
|
* @interface UpdatePointOfSaleRequest
|
|
5862
5913
|
*/
|
|
@@ -5893,7 +5944,7 @@ export interface UpdatePointOfSaleRequest {
|
|
|
5893
5944
|
'cashierRoleIds'?: Array<number>;
|
|
5894
5945
|
}
|
|
5895
5946
|
/**
|
|
5896
|
-
*
|
|
5947
|
+
* API Request for updating a `product` entity.
|
|
5897
5948
|
* @export
|
|
5898
5949
|
* @interface UpdateProductRequest
|
|
5899
5950
|
*/
|
|
@@ -6060,7 +6111,7 @@ export interface UpdateUserRequest {
|
|
|
6060
6111
|
'inactiveNotificationSend'?: boolean;
|
|
6061
6112
|
}
|
|
6062
6113
|
/**
|
|
6063
|
-
*
|
|
6114
|
+
* API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
|
|
6064
6115
|
* @export
|
|
6065
6116
|
* @interface UpdateVatGroupRequest
|
|
6066
6117
|
*/
|
|
@@ -6380,6 +6431,22 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6380
6431
|
*/
|
|
6381
6432
|
'nickname'?: string;
|
|
6382
6433
|
}
|
|
6434
|
+
/**
|
|
6435
|
+
* The type of a user
|
|
6436
|
+
* @export
|
|
6437
|
+
* @enum {string}
|
|
6438
|
+
*/
|
|
6439
|
+
export declare const UserType: {
|
|
6440
|
+
readonly Member: "MEMBER";
|
|
6441
|
+
readonly Organ: "ORGAN";
|
|
6442
|
+
readonly Voucher: "VOUCHER";
|
|
6443
|
+
readonly LocalUser: "LOCAL_USER";
|
|
6444
|
+
readonly LocalAdmin: "LOCAL_ADMIN";
|
|
6445
|
+
readonly Invoice: "INVOICE";
|
|
6446
|
+
readonly PointOfSale: "POINT_OF_SALE";
|
|
6447
|
+
readonly Integration: "INTEGRATION";
|
|
6448
|
+
};
|
|
6449
|
+
export type UserType = typeof UserType[keyof typeof UserType];
|
|
6383
6450
|
/**
|
|
6384
6451
|
*
|
|
6385
6452
|
* @export
|
|
@@ -6406,7 +6473,7 @@ export interface UserTypeTotalBalanceResponse {
|
|
|
6406
6473
|
'totalNegative': DineroObjectResponse;
|
|
6407
6474
|
}
|
|
6408
6475
|
/**
|
|
6409
|
-
*
|
|
6476
|
+
* 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.
|
|
6410
6477
|
* @export
|
|
6411
6478
|
* @interface UserWithIndex
|
|
6412
6479
|
*/
|
|
@@ -6421,6 +6488,25 @@ export interface UserWithIndex {
|
|
|
6421
6488
|
/**
|
|
6422
6489
|
*
|
|
6423
6490
|
* @export
|
|
6491
|
+
* @interface ValidationResponse
|
|
6492
|
+
*/
|
|
6493
|
+
export interface ValidationResponse {
|
|
6494
|
+
/**
|
|
6495
|
+
* Whether the request passed validation.
|
|
6496
|
+
* @type {boolean}
|
|
6497
|
+
* @memberof ValidationResponse
|
|
6498
|
+
*/
|
|
6499
|
+
'valid': boolean;
|
|
6500
|
+
/**
|
|
6501
|
+
* List of validation error messages.
|
|
6502
|
+
* @type {Array<string>}
|
|
6503
|
+
* @memberof ValidationResponse
|
|
6504
|
+
*/
|
|
6505
|
+
'errors': Array<string>;
|
|
6506
|
+
}
|
|
6507
|
+
/**
|
|
6508
|
+
* API Response for a complete VAT declaration — one result table for a given year and period, containing one {@link VatDeclarationRow} per VAT group.
|
|
6509
|
+
* @export
|
|
6424
6510
|
* @interface VatDeclarationResponse
|
|
6425
6511
|
*/
|
|
6426
6512
|
export interface VatDeclarationResponse {
|
|
@@ -6444,7 +6530,7 @@ export interface VatDeclarationResponse {
|
|
|
6444
6530
|
'rows': Array<VatDeclarationRow>;
|
|
6445
6531
|
}
|
|
6446
6532
|
/**
|
|
6447
|
-
*
|
|
6533
|
+
* One row of a VAT declaration — the VAT collected for a single group, broken down by period.
|
|
6448
6534
|
* @export
|
|
6449
6535
|
* @interface VatDeclarationRow
|
|
6450
6536
|
*/
|
|
@@ -6910,15 +6996,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6910
6996
|
* @throws {RequiredError}
|
|
6911
6997
|
*/
|
|
6912
6998
|
confirmQRCode: (sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6913
|
-
/**
|
|
6914
|
-
*
|
|
6915
|
-
* @summary EAN login and hand out token
|
|
6916
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
6917
|
-
* @param {*} [options] Override http request option.
|
|
6918
|
-
* @deprecated
|
|
6919
|
-
* @throws {RequiredError}
|
|
6920
|
-
*/
|
|
6921
|
-
eanAuthentication: (authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6922
6999
|
/**
|
|
6923
7000
|
*
|
|
6924
7001
|
* @summary Generate a QR code for authentication
|
|
@@ -6988,15 +7065,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
6988
7065
|
* @throws {RequiredError}
|
|
6989
7066
|
*/
|
|
6990
7067
|
localAuthentication: (authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6991
|
-
/**
|
|
6992
|
-
*
|
|
6993
|
-
* @summary PIN login for members using memberId.
|
|
6994
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
6995
|
-
* @param {*} [options] Override http request option.
|
|
6996
|
-
* @deprecated
|
|
6997
|
-
* @throws {RequiredError}
|
|
6998
|
-
*/
|
|
6999
|
-
memberPinAuthentication: (memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7000
7068
|
/**
|
|
7001
7069
|
*
|
|
7002
7070
|
* @summary Mock login and hand out token.
|
|
@@ -7005,24 +7073,6 @@ export declare const AuthenticateApiAxiosParamCreator: (configuration?: Configur
|
|
|
7005
7073
|
* @throws {RequiredError}
|
|
7006
7074
|
*/
|
|
7007
7075
|
mockAuthentication: (authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7008
|
-
/**
|
|
7009
|
-
*
|
|
7010
|
-
* @summary NFC login and hand out token
|
|
7011
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7012
|
-
* @param {*} [options] Override http request option.
|
|
7013
|
-
* @deprecated
|
|
7014
|
-
* @throws {RequiredError}
|
|
7015
|
-
*/
|
|
7016
|
-
nfcAuthentication: (authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7017
|
-
/**
|
|
7018
|
-
*
|
|
7019
|
-
* @summary PIN login and hand out token
|
|
7020
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7021
|
-
* @param {*} [options] Override http request option.
|
|
7022
|
-
* @deprecated
|
|
7023
|
-
* @throws {RequiredError}
|
|
7024
|
-
*/
|
|
7025
|
-
pinAuthentication: (authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7026
7076
|
/**
|
|
7027
7077
|
*
|
|
7028
7078
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7108,15 +7158,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7108
7158
|
* @throws {RequiredError}
|
|
7109
7159
|
*/
|
|
7110
7160
|
confirmQRCode(sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7111
|
-
/**
|
|
7112
|
-
*
|
|
7113
|
-
* @summary EAN login and hand out token
|
|
7114
|
-
* @param {AuthenticationEanRequest} authenticationEanRequest The EAN login.
|
|
7115
|
-
* @param {*} [options] Override http request option.
|
|
7116
|
-
* @deprecated
|
|
7117
|
-
* @throws {RequiredError}
|
|
7118
|
-
*/
|
|
7119
|
-
eanAuthentication(authenticationEanRequest: AuthenticationEanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7120
7161
|
/**
|
|
7121
7162
|
*
|
|
7122
7163
|
* @summary Generate a QR code for authentication
|
|
@@ -7186,15 +7227,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7186
7227
|
* @throws {RequiredError}
|
|
7187
7228
|
*/
|
|
7188
7229
|
localAuthentication(authenticationLocalRequest: AuthenticationLocalRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7189
|
-
/**
|
|
7190
|
-
*
|
|
7191
|
-
* @summary PIN login for members using memberId.
|
|
7192
|
-
* @param {MemberAuthenticationPinRequest} memberAuthenticationPinRequest The PIN login.
|
|
7193
|
-
* @param {*} [options] Override http request option.
|
|
7194
|
-
* @deprecated
|
|
7195
|
-
* @throws {RequiredError}
|
|
7196
|
-
*/
|
|
7197
|
-
memberPinAuthentication(memberAuthenticationPinRequest: MemberAuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7198
7230
|
/**
|
|
7199
7231
|
*
|
|
7200
7232
|
* @summary Mock login and hand out token.
|
|
@@ -7203,24 +7235,6 @@ export declare const AuthenticateApiFp: (configuration?: Configuration) => {
|
|
|
7203
7235
|
* @throws {RequiredError}
|
|
7204
7236
|
*/
|
|
7205
7237
|
mockAuthentication(authenticationMockRequest: AuthenticationMockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7206
|
-
/**
|
|
7207
|
-
*
|
|
7208
|
-
* @summary NFC login and hand out token
|
|
7209
|
-
* @param {AuthenticationNfcRequest} authenticationNfcRequest The NFC login.
|
|
7210
|
-
* @param {*} [options] Override http request option.
|
|
7211
|
-
* @deprecated
|
|
7212
|
-
* @throws {RequiredError}
|
|
7213
|
-
*/
|
|
7214
|
-
nfcAuthentication(authenticationNfcRequest: AuthenticationNfcRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7215
|
-
/**
|
|
7216
|
-
*
|
|
7217
|
-
* @summary PIN login and hand out token
|
|
7218
|
-
* @param {AuthenticationPinRequest} authenticationPinRequest The PIN login.
|
|
7219
|
-
* @param {*} [options] Override http request option.
|
|
7220
|
-
* @deprecated
|
|
7221
|
-
* @throws {RequiredError}
|
|
7222
|
-
*/
|
|
7223
|
-
pinAuthentication(authenticationPinRequest: AuthenticationPinRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthenticationResponse>>;
|
|
7224
7238
|
/**
|
|
7225
7239
|
*
|
|
7226
7240
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7306,15 +7320,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7306
7320
|
* @throws {RequiredError}
|
|
7307
7321
|
*/
|
|
7308
7322
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7309
|
-
/**
|
|
7310
|
-
*
|
|
7311
|
-
* @summary EAN login and hand out token
|
|
7312
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7313
|
-
* @param {*} [options] Override http request option.
|
|
7314
|
-
* @deprecated
|
|
7315
|
-
* @throws {RequiredError}
|
|
7316
|
-
*/
|
|
7317
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7318
7323
|
/**
|
|
7319
7324
|
*
|
|
7320
7325
|
* @summary Generate a QR code for authentication
|
|
@@ -7384,15 +7389,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7384
7389
|
* @throws {RequiredError}
|
|
7385
7390
|
*/
|
|
7386
7391
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7387
|
-
/**
|
|
7388
|
-
*
|
|
7389
|
-
* @summary PIN login for members using memberId.
|
|
7390
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7391
|
-
* @param {*} [options] Override http request option.
|
|
7392
|
-
* @deprecated
|
|
7393
|
-
* @throws {RequiredError}
|
|
7394
|
-
*/
|
|
7395
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7396
7392
|
/**
|
|
7397
7393
|
*
|
|
7398
7394
|
* @summary Mock login and hand out token.
|
|
@@ -7401,24 +7397,6 @@ export declare const AuthenticateApiFactory: (configuration?: Configuration, bas
|
|
|
7401
7397
|
* @throws {RequiredError}
|
|
7402
7398
|
*/
|
|
7403
7399
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7404
|
-
/**
|
|
7405
|
-
*
|
|
7406
|
-
* @summary NFC login and hand out token
|
|
7407
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7408
|
-
* @param {*} [options] Override http request option.
|
|
7409
|
-
* @deprecated
|
|
7410
|
-
* @throws {RequiredError}
|
|
7411
|
-
*/
|
|
7412
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7413
|
-
/**
|
|
7414
|
-
*
|
|
7415
|
-
* @summary PIN login and hand out token
|
|
7416
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7417
|
-
* @param {*} [options] Override http request option.
|
|
7418
|
-
* @deprecated
|
|
7419
|
-
* @throws {RequiredError}
|
|
7420
|
-
*/
|
|
7421
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthenticationResponse>;
|
|
7422
7400
|
/**
|
|
7423
7401
|
*
|
|
7424
7402
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7514,19 +7492,6 @@ export interface AuthenticateApiConfirmQRCodeRequest {
|
|
|
7514
7492
|
*/
|
|
7515
7493
|
readonly sessionId: string;
|
|
7516
7494
|
}
|
|
7517
|
-
/**
|
|
7518
|
-
* Request parameters for eanAuthentication operation in AuthenticateApi.
|
|
7519
|
-
* @export
|
|
7520
|
-
* @interface AuthenticateApiEanAuthenticationRequest
|
|
7521
|
-
*/
|
|
7522
|
-
export interface AuthenticateApiEanAuthenticationRequest {
|
|
7523
|
-
/**
|
|
7524
|
-
* The EAN login.
|
|
7525
|
-
* @type {AuthenticationEanRequest}
|
|
7526
|
-
* @memberof AuthenticateApiEanAuthentication
|
|
7527
|
-
*/
|
|
7528
|
-
readonly authenticationEanRequest: AuthenticationEanRequest;
|
|
7529
|
-
}
|
|
7530
7495
|
/**
|
|
7531
7496
|
* Request parameters for getQRStatus operation in AuthenticateApi.
|
|
7532
7497
|
* @export
|
|
@@ -7605,19 +7570,6 @@ export interface AuthenticateApiLocalAuthenticationRequest {
|
|
|
7605
7570
|
*/
|
|
7606
7571
|
readonly authenticationLocalRequest: AuthenticationLocalRequest;
|
|
7607
7572
|
}
|
|
7608
|
-
/**
|
|
7609
|
-
* Request parameters for memberPinAuthentication operation in AuthenticateApi.
|
|
7610
|
-
* @export
|
|
7611
|
-
* @interface AuthenticateApiMemberPinAuthenticationRequest
|
|
7612
|
-
*/
|
|
7613
|
-
export interface AuthenticateApiMemberPinAuthenticationRequest {
|
|
7614
|
-
/**
|
|
7615
|
-
* The PIN login.
|
|
7616
|
-
* @type {MemberAuthenticationPinRequest}
|
|
7617
|
-
* @memberof AuthenticateApiMemberPinAuthentication
|
|
7618
|
-
*/
|
|
7619
|
-
readonly memberAuthenticationPinRequest: MemberAuthenticationPinRequest;
|
|
7620
|
-
}
|
|
7621
7573
|
/**
|
|
7622
7574
|
* Request parameters for mockAuthentication operation in AuthenticateApi.
|
|
7623
7575
|
* @export
|
|
@@ -7631,32 +7583,6 @@ export interface AuthenticateApiMockAuthenticationRequest {
|
|
|
7631
7583
|
*/
|
|
7632
7584
|
readonly authenticationMockRequest: AuthenticationMockRequest;
|
|
7633
7585
|
}
|
|
7634
|
-
/**
|
|
7635
|
-
* Request parameters for nfcAuthentication operation in AuthenticateApi.
|
|
7636
|
-
* @export
|
|
7637
|
-
* @interface AuthenticateApiNfcAuthenticationRequest
|
|
7638
|
-
*/
|
|
7639
|
-
export interface AuthenticateApiNfcAuthenticationRequest {
|
|
7640
|
-
/**
|
|
7641
|
-
* The NFC login.
|
|
7642
|
-
* @type {AuthenticationNfcRequest}
|
|
7643
|
-
* @memberof AuthenticateApiNfcAuthentication
|
|
7644
|
-
*/
|
|
7645
|
-
readonly authenticationNfcRequest: AuthenticationNfcRequest;
|
|
7646
|
-
}
|
|
7647
|
-
/**
|
|
7648
|
-
* Request parameters for pinAuthentication operation in AuthenticateApi.
|
|
7649
|
-
* @export
|
|
7650
|
-
* @interface AuthenticateApiPinAuthenticationRequest
|
|
7651
|
-
*/
|
|
7652
|
-
export interface AuthenticateApiPinAuthenticationRequest {
|
|
7653
|
-
/**
|
|
7654
|
-
* The PIN login.
|
|
7655
|
-
* @type {AuthenticationPinRequest}
|
|
7656
|
-
* @memberof AuthenticateApiPinAuthentication
|
|
7657
|
-
*/
|
|
7658
|
-
readonly authenticationPinRequest: AuthenticationPinRequest;
|
|
7659
|
-
}
|
|
7660
7586
|
/**
|
|
7661
7587
|
* Request parameters for resetLocal operation in AuthenticateApi.
|
|
7662
7588
|
* @export
|
|
@@ -7769,16 +7695,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7769
7695
|
* @memberof AuthenticateApi
|
|
7770
7696
|
*/
|
|
7771
7697
|
confirmQRCode(requestParameters: AuthenticateApiConfirmQRCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
7772
|
-
/**
|
|
7773
|
-
*
|
|
7774
|
-
* @summary EAN login and hand out token
|
|
7775
|
-
* @param {AuthenticateApiEanAuthenticationRequest} requestParameters Request parameters.
|
|
7776
|
-
* @param {*} [options] Override http request option.
|
|
7777
|
-
* @deprecated
|
|
7778
|
-
* @throws {RequiredError}
|
|
7779
|
-
* @memberof AuthenticateApi
|
|
7780
|
-
*/
|
|
7781
|
-
eanAuthentication(requestParameters: AuthenticateApiEanAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7782
7698
|
/**
|
|
7783
7699
|
*
|
|
7784
7700
|
* @summary Generate a QR code for authentication
|
|
@@ -7857,16 +7773,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7857
7773
|
* @memberof AuthenticateApi
|
|
7858
7774
|
*/
|
|
7859
7775
|
localAuthentication(requestParameters: AuthenticateApiLocalAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7860
|
-
/**
|
|
7861
|
-
*
|
|
7862
|
-
* @summary PIN login for members using memberId.
|
|
7863
|
-
* @param {AuthenticateApiMemberPinAuthenticationRequest} requestParameters Request parameters.
|
|
7864
|
-
* @param {*} [options] Override http request option.
|
|
7865
|
-
* @deprecated
|
|
7866
|
-
* @throws {RequiredError}
|
|
7867
|
-
* @memberof AuthenticateApi
|
|
7868
|
-
*/
|
|
7869
|
-
memberPinAuthentication(requestParameters: AuthenticateApiMemberPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7870
7776
|
/**
|
|
7871
7777
|
*
|
|
7872
7778
|
* @summary Mock login and hand out token.
|
|
@@ -7876,26 +7782,6 @@ export declare class AuthenticateApi extends BaseAPI {
|
|
|
7876
7782
|
* @memberof AuthenticateApi
|
|
7877
7783
|
*/
|
|
7878
7784
|
mockAuthentication(requestParameters: AuthenticateApiMockAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7879
|
-
/**
|
|
7880
|
-
*
|
|
7881
|
-
* @summary NFC login and hand out token
|
|
7882
|
-
* @param {AuthenticateApiNfcAuthenticationRequest} requestParameters Request parameters.
|
|
7883
|
-
* @param {*} [options] Override http request option.
|
|
7884
|
-
* @deprecated
|
|
7885
|
-
* @throws {RequiredError}
|
|
7886
|
-
* @memberof AuthenticateApi
|
|
7887
|
-
*/
|
|
7888
|
-
nfcAuthentication(requestParameters: AuthenticateApiNfcAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7889
|
-
/**
|
|
7890
|
-
*
|
|
7891
|
-
* @summary PIN login and hand out token
|
|
7892
|
-
* @param {AuthenticateApiPinAuthenticationRequest} requestParameters Request parameters.
|
|
7893
|
-
* @param {*} [options] Override http request option.
|
|
7894
|
-
* @deprecated
|
|
7895
|
-
* @throws {RequiredError}
|
|
7896
|
-
* @memberof AuthenticateApi
|
|
7897
|
-
*/
|
|
7898
|
-
pinAuthentication(requestParameters: AuthenticateApiPinAuthenticationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthenticationResponse, any, {}>>;
|
|
7899
7785
|
/**
|
|
7900
7786
|
*
|
|
7901
7787
|
* @summary Get a new JWT token, maintaining the same access level (posId) as the original token
|
|
@@ -7982,7 +7868,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7982
7868
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
7983
7869
|
* @param {number} [minFine] Minimum fine
|
|
7984
7870
|
* @param {number} [maxFine] Maximum fine
|
|
7985
|
-
* @param {
|
|
7871
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
7986
7872
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
7987
7873
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
7988
7874
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -7992,7 +7878,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7992
7878
|
* @param {*} [options] Override http request option.
|
|
7993
7879
|
* @throws {RequiredError}
|
|
7994
7880
|
*/
|
|
7995
|
-
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7881
|
+
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: Array<UserType>, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7996
7882
|
/**
|
|
7997
7883
|
*
|
|
7998
7884
|
* @summary Retrieves the requested balance
|
|
@@ -8032,7 +7918,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8032
7918
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8033
7919
|
* @param {number} [minFine] Minimum fine
|
|
8034
7920
|
* @param {number} [maxFine] Maximum fine
|
|
8035
|
-
* @param {
|
|
7921
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8036
7922
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8037
7923
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8038
7924
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8042,7 +7928,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8042
7928
|
* @param {*} [options] Override http request option.
|
|
8043
7929
|
* @throws {RequiredError}
|
|
8044
7930
|
*/
|
|
8045
|
-
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
7931
|
+
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?: Array<UserType>, orderBy?: string, orderDirection?: GetAllBalanceOrderDirectionEnum, allowDeleted?: boolean, inactive?: boolean, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedBalanceResponse>>;
|
|
8046
7932
|
/**
|
|
8047
7933
|
*
|
|
8048
7934
|
* @summary Retrieves the requested balance
|
|
@@ -8159,10 +8045,10 @@ export interface BalanceApiGetAllBalanceRequest {
|
|
|
8159
8045
|
readonly maxFine?: number;
|
|
8160
8046
|
/**
|
|
8161
8047
|
* Filter based on user type.
|
|
8162
|
-
* @type {Array<
|
|
8048
|
+
* @type {Array<UserType>}
|
|
8163
8049
|
* @memberof BalanceApiGetAllBalance
|
|
8164
8050
|
*/
|
|
8165
|
-
readonly userTypes?:
|
|
8051
|
+
readonly userTypes?: Array<UserType>;
|
|
8166
8052
|
/**
|
|
8167
8053
|
* Column to order balance by - eg: id,amount
|
|
8168
8054
|
* @type {string}
|
|
@@ -8256,11 +8142,6 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8256
8142
|
*/
|
|
8257
8143
|
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8258
8144
|
}
|
|
8259
|
-
/**
|
|
8260
|
-
* @export
|
|
8261
|
-
*/
|
|
8262
|
-
export declare const GetAllBalanceUserTypesEnum: {};
|
|
8263
|
-
export type GetAllBalanceUserTypesEnum = typeof GetAllBalanceUserTypesEnum[keyof typeof GetAllBalanceUserTypesEnum];
|
|
8264
8145
|
/**
|
|
8265
8146
|
* @export
|
|
8266
8147
|
*/
|
|
@@ -10681,7 +10562,7 @@ export declare const InactiveAdministrativeCostsApiFp: (configuration?: Configur
|
|
|
10681
10562
|
* @param {*} [options] Override http request option.
|
|
10682
10563
|
* @throws {RequiredError}
|
|
10683
10564
|
*/
|
|
10684
|
-
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10565
|
+
handoutInactiveAdministrativeCostsUsers(handoutInactiveAdministrativeCostsRequest: HandoutInactiveAdministrativeCostsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InactiveAdministrativeCostResponse>>>;
|
|
10685
10566
|
/**
|
|
10686
10567
|
*
|
|
10687
10568
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10759,7 +10640,7 @@ export declare const InactiveAdministrativeCostsApiFactory: (configuration?: Con
|
|
|
10759
10640
|
* @param {*} [options] Override http request option.
|
|
10760
10641
|
* @throws {RequiredError}
|
|
10761
10642
|
*/
|
|
10762
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10643
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<InactiveAdministrativeCostResponse>>;
|
|
10763
10644
|
/**
|
|
10764
10645
|
*
|
|
10765
10646
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -10982,7 +10863,7 @@ export declare class InactiveAdministrativeCostsApi extends BaseAPI {
|
|
|
10982
10863
|
* @throws {RequiredError}
|
|
10983
10864
|
* @memberof InactiveAdministrativeCostsApi
|
|
10984
10865
|
*/
|
|
10985
|
-
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10866
|
+
handoutInactiveAdministrativeCostsUsers(requestParameters: InactiveAdministrativeCostsApiHandoutInactiveAdministrativeCostsUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InactiveAdministrativeCostResponse[], any, {}>>;
|
|
10986
10867
|
/**
|
|
10987
10868
|
*
|
|
10988
10869
|
* @summary Notify all users which will pay administrative costs within a year
|
|
@@ -11027,16 +10908,17 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11027
10908
|
* @summary Returns all invoices in the system.
|
|
11028
10909
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11029
10910
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11030
|
-
* @param {
|
|
10911
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11031
10912
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11032
10913
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11033
10914
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
10915
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11034
10916
|
* @param {number} [take] How many entries the endpoint should return
|
|
11035
10917
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11036
10918
|
* @param {*} [options] Override http request option.
|
|
11037
10919
|
* @throws {RequiredError}
|
|
11038
10920
|
*/
|
|
11039
|
-
getAllInvoices: (toId?: number, invoiceId?: number, currentState?:
|
|
10921
|
+
getAllInvoices: (toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11040
10922
|
/**
|
|
11041
10923
|
*
|
|
11042
10924
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11047,6 +10929,13 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11047
10929
|
* @throws {RequiredError}
|
|
11048
10930
|
*/
|
|
11049
10931
|
getEligibleTransactions: (forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10932
|
+
/**
|
|
10933
|
+
*
|
|
10934
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
10935
|
+
* @param {*} [options] Override http request option.
|
|
10936
|
+
* @throws {RequiredError}
|
|
10937
|
+
*/
|
|
10938
|
+
getInvoiceDrift: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11050
10939
|
/**
|
|
11051
10940
|
*
|
|
11052
10941
|
* @summary Get an invoice pdf.
|
|
@@ -11126,16 +11015,17 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11126
11015
|
* @summary Returns all invoices in the system.
|
|
11127
11016
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11128
11017
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11129
|
-
* @param {
|
|
11018
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11130
11019
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11131
11020
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11132
11021
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
11022
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11133
11023
|
* @param {number} [take] How many entries the endpoint should return
|
|
11134
11024
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11135
11025
|
* @param {*} [options] Override http request option.
|
|
11136
11026
|
* @throws {RequiredError}
|
|
11137
11027
|
*/
|
|
11138
|
-
getAllInvoices(toId?: number, invoiceId?: number, currentState?:
|
|
11028
|
+
getAllInvoices(toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInvoiceResponse>>;
|
|
11139
11029
|
/**
|
|
11140
11030
|
*
|
|
11141
11031
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11146,6 +11036,13 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11146
11036
|
* @throws {RequiredError}
|
|
11147
11037
|
*/
|
|
11148
11038
|
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse>>;
|
|
11039
|
+
/**
|
|
11040
|
+
*
|
|
11041
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11042
|
+
* @param {*} [options] Override http request option.
|
|
11043
|
+
* @throws {RequiredError}
|
|
11044
|
+
*/
|
|
11045
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InvoiceDriftResponse>>>;
|
|
11149
11046
|
/**
|
|
11150
11047
|
*
|
|
11151
11048
|
* @summary Get an invoice pdf.
|
|
@@ -11154,7 +11051,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11154
11051
|
* @param {*} [options] Override http request option.
|
|
11155
11052
|
* @throws {RequiredError}
|
|
11156
11053
|
*/
|
|
11157
|
-
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11054
|
+
getInvoicePdf(id: number, force?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PdfUrlResponse>>;
|
|
11158
11055
|
/**
|
|
11159
11056
|
*
|
|
11160
11057
|
* @summary Returns a single invoice in the system.
|
|
@@ -11236,6 +11133,13 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11236
11133
|
* @throws {RequiredError}
|
|
11237
11134
|
*/
|
|
11238
11135
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse>;
|
|
11136
|
+
/**
|
|
11137
|
+
*
|
|
11138
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11139
|
+
* @param {*} [options] Override http request option.
|
|
11140
|
+
* @throws {RequiredError}
|
|
11141
|
+
*/
|
|
11142
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): AxiosPromise<Array<InvoiceDriftResponse>>;
|
|
11239
11143
|
/**
|
|
11240
11144
|
*
|
|
11241
11145
|
* @summary Get an invoice pdf.
|
|
@@ -11243,7 +11147,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11243
11147
|
* @param {*} [options] Override http request option.
|
|
11244
11148
|
* @throws {RequiredError}
|
|
11245
11149
|
*/
|
|
11246
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11150
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<PdfUrlResponse>;
|
|
11247
11151
|
/**
|
|
11248
11152
|
*
|
|
11249
11153
|
* @summary Returns a single invoice in the system.
|
|
@@ -11336,10 +11240,10 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11336
11240
|
readonly invoiceId?: number;
|
|
11337
11241
|
/**
|
|
11338
11242
|
* Filter based on Invoice State.
|
|
11339
|
-
* @type {Array<
|
|
11243
|
+
* @type {Array<GetAllInvoicesCurrentStateParameterInner>}
|
|
11340
11244
|
* @memberof InvoicesApiGetAllInvoices
|
|
11341
11245
|
*/
|
|
11342
|
-
readonly currentState?:
|
|
11246
|
+
readonly currentState?: Array<GetAllInvoicesCurrentStateParameterInner>;
|
|
11343
11247
|
/**
|
|
11344
11248
|
* Boolean if invoice entries should be returned
|
|
11345
11249
|
* @type {boolean}
|
|
@@ -11358,6 +11262,12 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11358
11262
|
* @memberof InvoicesApiGetAllInvoices
|
|
11359
11263
|
*/
|
|
11360
11264
|
readonly tillDate?: string;
|
|
11265
|
+
/**
|
|
11266
|
+
* Filter invoices by description (partial match)
|
|
11267
|
+
* @type {string}
|
|
11268
|
+
* @memberof InvoicesApiGetAllInvoices
|
|
11269
|
+
*/
|
|
11270
|
+
readonly description?: string;
|
|
11361
11271
|
/**
|
|
11362
11272
|
* How many entries the endpoint should return
|
|
11363
11273
|
* @type {number}
|
|
@@ -11537,6 +11447,14 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11537
11447
|
* @memberof InvoicesApi
|
|
11538
11448
|
*/
|
|
11539
11449
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11450
|
+
/**
|
|
11451
|
+
*
|
|
11452
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11453
|
+
* @param {*} [options] Override http request option.
|
|
11454
|
+
* @throws {RequiredError}
|
|
11455
|
+
* @memberof InvoicesApi
|
|
11456
|
+
*/
|
|
11457
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11540
11458
|
/**
|
|
11541
11459
|
*
|
|
11542
11460
|
* @summary Get an invoice pdf.
|
|
@@ -11545,7 +11463,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11545
11463
|
* @throws {RequiredError}
|
|
11546
11464
|
* @memberof InvoicesApi
|
|
11547
11465
|
*/
|
|
11548
|
-
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11466
|
+
getInvoicePdf(requestParameters: InvoicesApiGetInvoicePdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfUrlResponse, any, {}>>;
|
|
11549
11467
|
/**
|
|
11550
11468
|
*
|
|
11551
11469
|
* @summary Returns a single invoice in the system.
|
|
@@ -11583,11 +11501,6 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11583
11501
|
*/
|
|
11584
11502
|
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
|
|
11585
11503
|
}
|
|
11586
|
-
/**
|
|
11587
|
-
* @export
|
|
11588
|
-
*/
|
|
11589
|
-
export declare const GetAllInvoicesCurrentStateEnum: {};
|
|
11590
|
-
export type GetAllInvoicesCurrentStateEnum = typeof GetAllInvoicesCurrentStateEnum[keyof typeof GetAllInvoicesCurrentStateEnum];
|
|
11591
11504
|
/**
|
|
11592
11505
|
* PayoutRequestsApi - axios parameter creator
|
|
11593
11506
|
* @export
|
|
@@ -14142,11 +14055,11 @@ export declare const SyncApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14142
14055
|
/**
|
|
14143
14056
|
* Performs a dry-run synchronization of users using the specified services. This endpoint always performs a dry-run and does not apply any actual database changes.
|
|
14144
14057
|
* @summary Get dry-run sync results for users
|
|
14145
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14058
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14146
14059
|
* @param {*} [options] Override http request option.
|
|
14147
14060
|
* @throws {RequiredError}
|
|
14148
14061
|
*/
|
|
14149
|
-
getUserSyncResults: (service?: GetUserSyncResultsServiceEnum
|
|
14062
|
+
getUserSyncResults: (service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14150
14063
|
};
|
|
14151
14064
|
/**
|
|
14152
14065
|
* SyncApi - functional programming interface
|
|
@@ -14156,11 +14069,11 @@ export declare const SyncApiFp: (configuration?: Configuration) => {
|
|
|
14156
14069
|
/**
|
|
14157
14070
|
* Performs a dry-run synchronization of users using the specified services. This endpoint always performs a dry-run and does not apply any actual database changes.
|
|
14158
14071
|
* @summary Get dry-run sync results for users
|
|
14159
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14072
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14160
14073
|
* @param {*} [options] Override http request option.
|
|
14161
14074
|
* @throws {RequiredError}
|
|
14162
14075
|
*/
|
|
14163
|
-
getUserSyncResults(service?: GetUserSyncResultsServiceEnum
|
|
14076
|
+
getUserSyncResults(service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
14164
14077
|
};
|
|
14165
14078
|
/**
|
|
14166
14079
|
* SyncApi - factory interface
|
|
@@ -14184,10 +14097,10 @@ export declare const SyncApiFactory: (configuration?: Configuration, basePath?:
|
|
|
14184
14097
|
export interface SyncApiGetUserSyncResultsRequest {
|
|
14185
14098
|
/**
|
|
14186
14099
|
* Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14187
|
-
* @type {Array<
|
|
14100
|
+
* @type {Array<'LDAP' | 'GEWISDB'>}
|
|
14188
14101
|
* @memberof SyncApiGetUserSyncResults
|
|
14189
14102
|
*/
|
|
14190
|
-
readonly service?: GetUserSyncResultsServiceEnum
|
|
14103
|
+
readonly service?: Array<GetUserSyncResultsServiceEnum>;
|
|
14191
14104
|
}
|
|
14192
14105
|
/**
|
|
14193
14106
|
* SyncApi - object-oriented interface
|
|
@@ -14209,7 +14122,10 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14209
14122
|
/**
|
|
14210
14123
|
* @export
|
|
14211
14124
|
*/
|
|
14212
|
-
export declare const GetUserSyncResultsServiceEnum: {
|
|
14125
|
+
export declare const GetUserSyncResultsServiceEnum: {
|
|
14126
|
+
readonly Ldap: "LDAP";
|
|
14127
|
+
readonly Gewisdb: "GEWISDB";
|
|
14128
|
+
};
|
|
14213
14129
|
export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
|
|
14214
14130
|
/**
|
|
14215
14131
|
* TermsOfServiceApi - axios parameter creator
|
|
@@ -14959,12 +14875,15 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14959
14875
|
* @summary Returns all existing transfers
|
|
14960
14876
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
14961
14877
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14878
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14879
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14880
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
14962
14881
|
* @param {number} [take] How many transfers the endpoint should return
|
|
14963
14882
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
14964
14883
|
* @param {*} [options] Override http request option.
|
|
14965
14884
|
* @throws {RequiredError}
|
|
14966
14885
|
*/
|
|
14967
|
-
getAllTransfers: (fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14886
|
+
getAllTransfers: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14968
14887
|
/**
|
|
14969
14888
|
*
|
|
14970
14889
|
* @summary Returns the requested transfer
|
|
@@ -14980,7 +14899,7 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14980
14899
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14981
14900
|
* @param {number} [fromId] Filter transfers from this user ID
|
|
14982
14901
|
* @param {number} [toId] Filter transfers to this user ID
|
|
14983
|
-
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14902
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14984
14903
|
* @param {*} [options] Override http request option.
|
|
14985
14904
|
* @throws {RequiredError}
|
|
14986
14905
|
*/
|
|
@@ -14993,6 +14912,17 @@ export declare const TransfersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14993
14912
|
* @throws {RequiredError}
|
|
14994
14913
|
*/
|
|
14995
14914
|
getTransferPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14915
|
+
/**
|
|
14916
|
+
*
|
|
14917
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
14918
|
+
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
14919
|
+
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14920
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14921
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14922
|
+
* @param {*} [options] Override http request option.
|
|
14923
|
+
* @throws {RequiredError}
|
|
14924
|
+
*/
|
|
14925
|
+
getTransferSummary: (fromDate?: string, tillDate?: string, fromId?: number, toId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14996
14926
|
};
|
|
14997
14927
|
/**
|
|
14998
14928
|
* TransfersApi - functional programming interface
|
|
@@ -15020,12 +14950,15 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15020
14950
|
* @summary Returns all existing transfers
|
|
15021
14951
|
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
15022
14952
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14953
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14954
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14955
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15023
14956
|
* @param {number} [take] How many transfers the endpoint should return
|
|
15024
14957
|
* @param {number} [skip] How many transfers should be skipped (for pagination)
|
|
15025
14958
|
* @param {*} [options] Override http request option.
|
|
15026
14959
|
* @throws {RequiredError}
|
|
15027
14960
|
*/
|
|
15028
|
-
getAllTransfers(fromDate?: string, tillDate?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransferResponse>>>;
|
|
14961
|
+
getAllTransfers(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, category?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransferResponse>>>;
|
|
15029
14962
|
/**
|
|
15030
14963
|
*
|
|
15031
14964
|
* @summary Returns the requested transfer
|
|
@@ -15041,7 +14974,7 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15041
14974
|
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
15042
14975
|
* @param {number} [fromId] Filter transfers from this user ID
|
|
15043
14976
|
* @param {number} [toId] Filter transfers to this user ID
|
|
15044
|
-
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
14977
|
+
* @param {string} [category] Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15045
14978
|
* @param {*} [options] Override http request option.
|
|
15046
14979
|
* @throws {RequiredError}
|
|
15047
14980
|
*/
|
|
@@ -15054,6 +14987,17 @@ export declare const TransfersApiFp: (configuration?: Configuration) => {
|
|
|
15054
14987
|
* @throws {RequiredError}
|
|
15055
14988
|
*/
|
|
15056
14989
|
getTransferPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
14990
|
+
/**
|
|
14991
|
+
*
|
|
14992
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
14993
|
+
* @param {string} [fromDate] Start date for selected transfers (inclusive)
|
|
14994
|
+
* @param {string} [tillDate] End date for selected transfers (exclusive)
|
|
14995
|
+
* @param {number} [fromId] Filter transfers from this user ID
|
|
14996
|
+
* @param {number} [toId] Filter transfers to this user ID
|
|
14997
|
+
* @param {*} [options] Override http request option.
|
|
14998
|
+
* @throws {RequiredError}
|
|
14999
|
+
*/
|
|
15000
|
+
getTransferSummary(fromDate?: string, tillDate?: string, fromId?: number, toId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransferSummaryResponse>>;
|
|
15057
15001
|
};
|
|
15058
15002
|
/**
|
|
15059
15003
|
* TransfersApi - factory interface
|
|
@@ -15108,6 +15052,14 @@ export declare const TransfersApiFactory: (configuration?: Configuration, basePa
|
|
|
15108
15052
|
* @throws {RequiredError}
|
|
15109
15053
|
*/
|
|
15110
15054
|
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
15055
|
+
/**
|
|
15056
|
+
*
|
|
15057
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
15058
|
+
* @param {TransfersApiGetTransferSummaryRequest} requestParameters Request parameters.
|
|
15059
|
+
* @param {*} [options] Override http request option.
|
|
15060
|
+
* @throws {RequiredError}
|
|
15061
|
+
*/
|
|
15062
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransferSummaryResponse>;
|
|
15111
15063
|
};
|
|
15112
15064
|
/**
|
|
15113
15065
|
* Request parameters for createTransfer operation in TransfersApi.
|
|
@@ -15153,6 +15105,24 @@ export interface TransfersApiGetAllTransfersRequest {
|
|
|
15153
15105
|
* @memberof TransfersApiGetAllTransfers
|
|
15154
15106
|
*/
|
|
15155
15107
|
readonly tillDate?: string;
|
|
15108
|
+
/**
|
|
15109
|
+
* Filter transfers from this user ID
|
|
15110
|
+
* @type {number}
|
|
15111
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15112
|
+
*/
|
|
15113
|
+
readonly fromId?: number;
|
|
15114
|
+
/**
|
|
15115
|
+
* Filter transfers to this user ID
|
|
15116
|
+
* @type {number}
|
|
15117
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15118
|
+
*/
|
|
15119
|
+
readonly toId?: number;
|
|
15120
|
+
/**
|
|
15121
|
+
* Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost, manualCreation, manualDeletion
|
|
15122
|
+
* @type {string}
|
|
15123
|
+
* @memberof TransfersApiGetAllTransfers
|
|
15124
|
+
*/
|
|
15125
|
+
readonly category?: string;
|
|
15156
15126
|
/**
|
|
15157
15127
|
* How many transfers the endpoint should return
|
|
15158
15128
|
* @type {number}
|
|
@@ -15210,7 +15180,7 @@ export interface TransfersApiGetTransferAggregateRequest {
|
|
|
15210
15180
|
*/
|
|
15211
15181
|
readonly toId?: number;
|
|
15212
15182
|
/**
|
|
15213
|
-
* Restrict to a specific transfer category: deposit, payoutRequest, invoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15183
|
+
* Restrict to a specific transfer category: deposit, payoutRequest, sellerPayout, invoice, creditInvoice, fine, waivedFines, writeOff, inactiveAdministrativeCost
|
|
15214
15184
|
* @type {string}
|
|
15215
15185
|
* @memberof TransfersApiGetTransferAggregate
|
|
15216
15186
|
*/
|
|
@@ -15229,6 +15199,37 @@ export interface TransfersApiGetTransferPdfRequest {
|
|
|
15229
15199
|
*/
|
|
15230
15200
|
readonly id: number;
|
|
15231
15201
|
}
|
|
15202
|
+
/**
|
|
15203
|
+
* Request parameters for getTransferSummary operation in TransfersApi.
|
|
15204
|
+
* @export
|
|
15205
|
+
* @interface TransfersApiGetTransferSummaryRequest
|
|
15206
|
+
*/
|
|
15207
|
+
export interface TransfersApiGetTransferSummaryRequest {
|
|
15208
|
+
/**
|
|
15209
|
+
* Start date for selected transfers (inclusive)
|
|
15210
|
+
* @type {string}
|
|
15211
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15212
|
+
*/
|
|
15213
|
+
readonly fromDate?: string;
|
|
15214
|
+
/**
|
|
15215
|
+
* End date for selected transfers (exclusive)
|
|
15216
|
+
* @type {string}
|
|
15217
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15218
|
+
*/
|
|
15219
|
+
readonly tillDate?: string;
|
|
15220
|
+
/**
|
|
15221
|
+
* Filter transfers from this user ID
|
|
15222
|
+
* @type {number}
|
|
15223
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15224
|
+
*/
|
|
15225
|
+
readonly fromId?: number;
|
|
15226
|
+
/**
|
|
15227
|
+
* Filter transfers to this user ID
|
|
15228
|
+
* @type {number}
|
|
15229
|
+
* @memberof TransfersApiGetTransferSummary
|
|
15230
|
+
*/
|
|
15231
|
+
readonly toId?: number;
|
|
15232
|
+
}
|
|
15232
15233
|
/**
|
|
15233
15234
|
* TransfersApi - object-oriented interface
|
|
15234
15235
|
* @export
|
|
@@ -15290,6 +15291,15 @@ export declare class TransfersApi extends BaseAPI {
|
|
|
15290
15291
|
* @memberof TransfersApi
|
|
15291
15292
|
*/
|
|
15292
15293
|
getTransferPdf(requestParameters: TransfersApiGetTransferPdfRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
15294
|
+
/**
|
|
15295
|
+
*
|
|
15296
|
+
* @summary Returns an aggregate breakdown of transfers for every category plus an overall total
|
|
15297
|
+
* @param {TransfersApiGetTransferSummaryRequest} requestParameters Request parameters.
|
|
15298
|
+
* @param {*} [options] Override http request option.
|
|
15299
|
+
* @throws {RequiredError}
|
|
15300
|
+
* @memberof TransfersApi
|
|
15301
|
+
*/
|
|
15302
|
+
getTransferSummary(requestParameters?: TransfersApiGetTransferSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransferSummaryResponse, any, {}>>;
|
|
15293
15303
|
}
|
|
15294
15304
|
/**
|
|
15295
15305
|
* UserNotificationPreferencesApi - axios parameter creator
|