@gewis/sudosos-client 0.0.0-develop.ac42a8c → 0.0.0-develop.af33803
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/dist/api.d.ts +23 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2566,9 +2566,9 @@ export interface FineResponse {
|
|
|
2566
2566
|
/**
|
|
2567
2567
|
*
|
|
2568
2568
|
* @export
|
|
2569
|
-
* @interface
|
|
2569
|
+
* @interface GetAllInvoicesCurrentStateParameterInner
|
|
2570
2570
|
*/
|
|
2571
|
-
export interface
|
|
2571
|
+
export interface GetAllInvoicesCurrentStateParameterInner {
|
|
2572
2572
|
}
|
|
2573
2573
|
/**
|
|
2574
2574
|
* @type GetAllPayoutRequestsRequestedByIdParameter
|
|
@@ -6528,6 +6528,25 @@ export interface UserWithIndex {
|
|
|
6528
6528
|
*/
|
|
6529
6529
|
'index': number;
|
|
6530
6530
|
}
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @export
|
|
6534
|
+
* @interface ValidationResponse
|
|
6535
|
+
*/
|
|
6536
|
+
export interface ValidationResponse {
|
|
6537
|
+
/**
|
|
6538
|
+
* Whether the request passed validation.
|
|
6539
|
+
* @type {boolean}
|
|
6540
|
+
* @memberof ValidationResponse
|
|
6541
|
+
*/
|
|
6542
|
+
'valid': boolean;
|
|
6543
|
+
/**
|
|
6544
|
+
* List of validation error messages.
|
|
6545
|
+
* @type {Array<string>}
|
|
6546
|
+
* @memberof ValidationResponse
|
|
6547
|
+
*/
|
|
6548
|
+
'errors': Array<string>;
|
|
6549
|
+
}
|
|
6531
6550
|
/**
|
|
6532
6551
|
*
|
|
6533
6552
|
* @export
|
|
@@ -8269,7 +8288,7 @@ export interface BalanceApiGetAllBalanceRequest {
|
|
|
8269
8288
|
readonly maxFine?: number;
|
|
8270
8289
|
/**
|
|
8271
8290
|
* Filter based on user type.
|
|
8272
|
-
* @type {Array<
|
|
8291
|
+
* @type {Array<string>}
|
|
8273
8292
|
* @memberof BalanceApiGetAllBalance
|
|
8274
8293
|
*/
|
|
8275
8294
|
readonly userTypes?: GetAllBalanceUserTypesEnum;
|
|
@@ -11469,7 +11488,7 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11469
11488
|
readonly invoiceId?: number;
|
|
11470
11489
|
/**
|
|
11471
11490
|
* Filter based on Invoice State.
|
|
11472
|
-
* @type {Array<
|
|
11491
|
+
* @type {Array<GetAllInvoicesCurrentStateParameterInner>}
|
|
11473
11492
|
* @memberof InvoicesApiGetAllInvoices
|
|
11474
11493
|
*/
|
|
11475
11494
|
readonly currentState?: GetAllInvoicesCurrentStateEnum;
|
package/package.json
CHANGED