@gewis/sudosos-client 0.0.0-develop.e05135a → 0.0.0-develop.eaad44e
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 +147 -34
- package/dist/api.js +106 -21
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# @gewis/sudosos-client
|
|
2
|
+
|
|
3
|
+
Auto-generated TypeScript-Axios client for the SudoSOS API. Published on npm as [`@gewis/sudosos-client`](https://www.npmjs.com/package/@gewis/sudosos-client).
|
|
4
|
+
|
|
5
|
+
This package lives inside the [SudoSOS Backend](https://github.com/GEWIS/sudosos-backend/tree/develop/client) monorepo (`client/`) and is generated from the backend's Swagger/OpenAPI spec.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @gewis/sudosos-client
|
|
13
|
+
# or
|
|
14
|
+
yarn add @gewis/sudosos-client
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
### Unauthorized API usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { BannersApi, Configuration } from '@gewis/sudosos-client';
|
|
25
|
+
|
|
26
|
+
const configuration = new Configuration({
|
|
27
|
+
basePath: 'https://sudosos.gewis.nl/api/v1',
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
const bannersApi = new BannersApi(configuration);
|
|
31
|
+
bannersApi.getAllOpenBanners().then((res) => {
|
|
32
|
+
console.log(res.data);
|
|
33
|
+
});
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Authorized API usage
|
|
37
|
+
|
|
38
|
+
All API methods accept a single object parameter (named properties, no positional `undefined` placeholders needed).
|
|
39
|
+
|
|
40
|
+
```typescript
|
|
41
|
+
import { AuthenticateApi, BalanceApi, Configuration } from '@gewis/sudosos-client';
|
|
42
|
+
|
|
43
|
+
const basePath = 'https://sudosos.gewis.nl/api/v1';
|
|
44
|
+
const configuration = new Configuration({ basePath });
|
|
45
|
+
|
|
46
|
+
// Authenticate with an API key
|
|
47
|
+
const { data } = await new AuthenticateApi(configuration).keyAuthentication({
|
|
48
|
+
keyAuthenticationRequest: { key: 'API_KEY', userId: 0 },
|
|
49
|
+
});
|
|
50
|
+
const jwtToken = data.token;
|
|
51
|
+
|
|
52
|
+
// Use the token for authenticated requests
|
|
53
|
+
const authedConfig = new Configuration({
|
|
54
|
+
basePath,
|
|
55
|
+
accessToken: () => jwtToken,
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
const balanceApi = new BalanceApi(authedConfig);
|
|
59
|
+
balanceApi.getBalances().then((res) => {
|
|
60
|
+
console.log(res.data);
|
|
61
|
+
});
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
For a more complete integration example, see [sudosos-frontend-common](https://github.com/GEWIS/sudosos-frontend-common).
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## How the client is generated
|
|
69
|
+
|
|
70
|
+
The client is generated from the OpenAPI spec that the backend emits at build time (`out/swagger.json`). The generator is [`openapi-generator-cli`](https://openapi-generator.tech/) using the `typescript-axios` template with `useSingleRequestParameter=true`.
|
|
71
|
+
|
|
72
|
+
### Prerequisites
|
|
73
|
+
|
|
74
|
+
- Node.js 22+
|
|
75
|
+
- Java runtime (required by `openapi-generator-cli`)
|
|
76
|
+
- The backend's Swagger output must exist at `../out/swagger.json` — run `npm run swagger` from the backend root first
|
|
77
|
+
|
|
78
|
+
### Common commands
|
|
79
|
+
|
|
80
|
+
| Command | Description |
|
|
81
|
+
|---|---|
|
|
82
|
+
| `npm run gen` | Generate TypeScript source from `../out/swagger.json` into `src/` |
|
|
83
|
+
| `npm run build` | Compile `src/` to `dist/` |
|
|
84
|
+
| `npm run genbuild` | Run `gen` then `build` (full regeneration) |
|
|
85
|
+
| `npm run clean` | Remove `src/` and `dist/` |
|
|
86
|
+
|
|
87
|
+
### Regenerating after a backend change
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
# From the backend root — generate the OpenAPI spec first
|
|
91
|
+
npm run swagger # produces out/swagger.json
|
|
92
|
+
|
|
93
|
+
# Then regenerate the client
|
|
94
|
+
cd client
|
|
95
|
+
npm run genbuild
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Or use the one-shot helper from the backend root:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
npm run client:gen # runs npm run swagger, then cd client && npm install && npm run genbuild
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Contributing
|
|
107
|
+
|
|
108
|
+
This package is generated — do not edit files under `src/` by hand; they will be overwritten on the next `npm run gen`. To change the client's output, update the backend API and regenerate.
|
|
109
|
+
|
|
110
|
+
Issues and contributions go through the [SudoSOS Backend issue tracker](https://github.com/GEWIS/sudosos-backend/issues).
|
package/dist/api.d.ts
CHANGED
|
@@ -1683,11 +1683,11 @@ export interface CreateContainerRequest {
|
|
|
1683
1683
|
*/
|
|
1684
1684
|
'public': boolean;
|
|
1685
1685
|
/**
|
|
1686
|
-
* Id of the
|
|
1686
|
+
* Id of the organ that will own the container
|
|
1687
1687
|
* @type {number}
|
|
1688
1688
|
* @memberof CreateContainerRequest
|
|
1689
1689
|
*/
|
|
1690
|
-
'ownerId'
|
|
1690
|
+
'ownerId': number;
|
|
1691
1691
|
}
|
|
1692
1692
|
/**
|
|
1693
1693
|
*
|
|
@@ -2566,10 +2566,15 @@ export interface FineResponse {
|
|
|
2566
2566
|
/**
|
|
2567
2567
|
*
|
|
2568
2568
|
* @export
|
|
2569
|
-
* @
|
|
2569
|
+
* @enum {string}
|
|
2570
2570
|
*/
|
|
2571
|
-
export
|
|
2572
|
-
|
|
2571
|
+
export declare const GetAllInvoicesCurrentStateParameterInner: {
|
|
2572
|
+
readonly Created: "CREATED";
|
|
2573
|
+
readonly Sent: "SENT";
|
|
2574
|
+
readonly Paid: "PAID";
|
|
2575
|
+
readonly Deleted: "DELETED";
|
|
2576
|
+
};
|
|
2577
|
+
export type GetAllInvoicesCurrentStateParameterInner = typeof GetAllInvoicesCurrentStateParameterInner[keyof typeof GetAllInvoicesCurrentStateParameterInner];
|
|
2573
2578
|
/**
|
|
2574
2579
|
* @type GetAllPayoutRequestsRequestedByIdParameter
|
|
2575
2580
|
* @export
|
|
@@ -2724,6 +2729,37 @@ export interface InactiveAdministrativeCostResponse {
|
|
|
2724
2729
|
*/
|
|
2725
2730
|
'transfer': TransferResponse;
|
|
2726
2731
|
}
|
|
2732
|
+
/**
|
|
2733
|
+
*
|
|
2734
|
+
* @export
|
|
2735
|
+
* @interface InvoiceDriftResponse
|
|
2736
|
+
*/
|
|
2737
|
+
export interface InvoiceDriftResponse {
|
|
2738
|
+
/**
|
|
2739
|
+
*
|
|
2740
|
+
* @type {BaseInvoiceResponse}
|
|
2741
|
+
* @memberof InvoiceDriftResponse
|
|
2742
|
+
*/
|
|
2743
|
+
'invoice': BaseInvoiceResponse;
|
|
2744
|
+
/**
|
|
2745
|
+
*
|
|
2746
|
+
* @type {DineroObjectResponse}
|
|
2747
|
+
* @memberof InvoiceDriftResponse
|
|
2748
|
+
*/
|
|
2749
|
+
'actualAmount': DineroObjectResponse;
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* @type {DineroObjectResponse}
|
|
2753
|
+
* @memberof InvoiceDriftResponse
|
|
2754
|
+
*/
|
|
2755
|
+
'expectedAmount': DineroObjectResponse;
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @type {DineroObjectResponse}
|
|
2759
|
+
* @memberof InvoiceDriftResponse
|
|
2760
|
+
*/
|
|
2761
|
+
'deltaAmount': DineroObjectResponse;
|
|
2762
|
+
}
|
|
2727
2763
|
/**
|
|
2728
2764
|
*
|
|
2729
2765
|
* @export
|
|
@@ -5671,6 +5707,18 @@ export interface TransferSummaryResponse {
|
|
|
5671
5707
|
* @memberof TransferSummaryResponse
|
|
5672
5708
|
*/
|
|
5673
5709
|
'inactiveAdministrativeCosts': TransferAggregateResponse;
|
|
5710
|
+
/**
|
|
5711
|
+
*
|
|
5712
|
+
* @type {TransferAggregateResponse}
|
|
5713
|
+
* @memberof TransferSummaryResponse
|
|
5714
|
+
*/
|
|
5715
|
+
'manualCreations': TransferAggregateResponse;
|
|
5716
|
+
/**
|
|
5717
|
+
*
|
|
5718
|
+
* @type {TransferAggregateResponse}
|
|
5719
|
+
* @memberof TransferSummaryResponse
|
|
5720
|
+
*/
|
|
5721
|
+
'manualDeletions': TransferAggregateResponse;
|
|
5674
5722
|
}
|
|
5675
5723
|
/**
|
|
5676
5724
|
*
|
|
@@ -6447,6 +6495,22 @@ export interface UserToInactiveAdministrativeCostResponse {
|
|
|
6447
6495
|
*/
|
|
6448
6496
|
'nickname'?: string;
|
|
6449
6497
|
}
|
|
6498
|
+
/**
|
|
6499
|
+
* The type of a user
|
|
6500
|
+
* @export
|
|
6501
|
+
* @enum {string}
|
|
6502
|
+
*/
|
|
6503
|
+
export declare const UserType: {
|
|
6504
|
+
readonly Member: "MEMBER";
|
|
6505
|
+
readonly Organ: "ORGAN";
|
|
6506
|
+
readonly Voucher: "VOUCHER";
|
|
6507
|
+
readonly LocalUser: "LOCAL_USER";
|
|
6508
|
+
readonly LocalAdmin: "LOCAL_ADMIN";
|
|
6509
|
+
readonly Invoice: "INVOICE";
|
|
6510
|
+
readonly PointOfSale: "POINT_OF_SALE";
|
|
6511
|
+
readonly Integration: "INTEGRATION";
|
|
6512
|
+
};
|
|
6513
|
+
export type UserType = typeof UserType[keyof typeof UserType];
|
|
6450
6514
|
/**
|
|
6451
6515
|
*
|
|
6452
6516
|
* @export
|
|
@@ -6485,6 +6549,25 @@ export interface UserWithIndex {
|
|
|
6485
6549
|
*/
|
|
6486
6550
|
'index': number;
|
|
6487
6551
|
}
|
|
6552
|
+
/**
|
|
6553
|
+
*
|
|
6554
|
+
* @export
|
|
6555
|
+
* @interface ValidationResponse
|
|
6556
|
+
*/
|
|
6557
|
+
export interface ValidationResponse {
|
|
6558
|
+
/**
|
|
6559
|
+
* Whether the request passed validation.
|
|
6560
|
+
* @type {boolean}
|
|
6561
|
+
* @memberof ValidationResponse
|
|
6562
|
+
*/
|
|
6563
|
+
'valid': boolean;
|
|
6564
|
+
/**
|
|
6565
|
+
* List of validation error messages.
|
|
6566
|
+
* @type {Array<string>}
|
|
6567
|
+
* @memberof ValidationResponse
|
|
6568
|
+
*/
|
|
6569
|
+
'errors': Array<string>;
|
|
6570
|
+
}
|
|
6488
6571
|
/**
|
|
6489
6572
|
*
|
|
6490
6573
|
* @export
|
|
@@ -8049,7 +8132,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8049
8132
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8050
8133
|
* @param {number} [minFine] Minimum fine
|
|
8051
8134
|
* @param {number} [maxFine] Maximum fine
|
|
8052
|
-
* @param {
|
|
8135
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8053
8136
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8054
8137
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8055
8138
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8059,7 +8142,7 @@ export declare const BalanceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8059
8142
|
* @param {*} [options] Override http request option.
|
|
8060
8143
|
* @throws {RequiredError}
|
|
8061
8144
|
*/
|
|
8062
|
-
getAllBalance: (date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
8145
|
+
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>;
|
|
8063
8146
|
/**
|
|
8064
8147
|
*
|
|
8065
8148
|
* @summary Retrieves the requested balance
|
|
@@ -8099,7 +8182,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8099
8182
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
8100
8183
|
* @param {number} [minFine] Minimum fine
|
|
8101
8184
|
* @param {number} [maxFine] Maximum fine
|
|
8102
|
-
* @param {
|
|
8185
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
8103
8186
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
8104
8187
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
8105
8188
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -8109,7 +8192,7 @@ export declare const BalanceApiFp: (configuration?: Configuration) => {
|
|
|
8109
8192
|
* @param {*} [options] Override http request option.
|
|
8110
8193
|
* @throws {RequiredError}
|
|
8111
8194
|
*/
|
|
8112
|
-
getAllBalance(date?: string, minBalance?: number, maxBalance?: number, hasFine?: boolean, minFine?: number, maxFine?: number, userTypes?:
|
|
8195
|
+
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>>;
|
|
8113
8196
|
/**
|
|
8114
8197
|
*
|
|
8115
8198
|
* @summary Retrieves the requested balance
|
|
@@ -8226,10 +8309,10 @@ export interface BalanceApiGetAllBalanceRequest {
|
|
|
8226
8309
|
readonly maxFine?: number;
|
|
8227
8310
|
/**
|
|
8228
8311
|
* Filter based on user type.
|
|
8229
|
-
* @type {Array<
|
|
8312
|
+
* @type {Array<UserType>}
|
|
8230
8313
|
* @memberof BalanceApiGetAllBalance
|
|
8231
8314
|
*/
|
|
8232
|
-
readonly userTypes?:
|
|
8315
|
+
readonly userTypes?: Array<UserType>;
|
|
8233
8316
|
/**
|
|
8234
8317
|
* Column to order balance by - eg: id,amount
|
|
8235
8318
|
* @type {string}
|
|
@@ -8323,11 +8406,6 @@ export declare class BalanceApi extends BaseAPI {
|
|
|
8323
8406
|
*/
|
|
8324
8407
|
getBalances(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResponse, any, {}>>;
|
|
8325
8408
|
}
|
|
8326
|
-
/**
|
|
8327
|
-
* @export
|
|
8328
|
-
*/
|
|
8329
|
-
export declare const GetAllBalanceUserTypesEnum: {};
|
|
8330
|
-
export type GetAllBalanceUserTypesEnum = typeof GetAllBalanceUserTypesEnum[keyof typeof GetAllBalanceUserTypesEnum];
|
|
8331
8409
|
/**
|
|
8332
8410
|
* @export
|
|
8333
8411
|
*/
|
|
@@ -11094,16 +11172,17 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11094
11172
|
* @summary Returns all invoices in the system.
|
|
11095
11173
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11096
11174
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11097
|
-
* @param {
|
|
11175
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11098
11176
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11099
11177
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11100
11178
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
11179
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11101
11180
|
* @param {number} [take] How many entries the endpoint should return
|
|
11102
11181
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11103
11182
|
* @param {*} [options] Override http request option.
|
|
11104
11183
|
* @throws {RequiredError}
|
|
11105
11184
|
*/
|
|
11106
|
-
getAllInvoices: (toId?: number, invoiceId?: number, currentState?:
|
|
11185
|
+
getAllInvoices: (toId?: number, invoiceId?: number, currentState?: Array<GetAllInvoicesCurrentStateParameterInner>, returnEntries?: boolean, fromDate?: string, tillDate?: string, description?: string, take?: number, skip?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11107
11186
|
/**
|
|
11108
11187
|
*
|
|
11109
11188
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11114,6 +11193,13 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11114
11193
|
* @throws {RequiredError}
|
|
11115
11194
|
*/
|
|
11116
11195
|
getEligibleTransactions: (forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11196
|
+
/**
|
|
11197
|
+
*
|
|
11198
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11199
|
+
* @param {*} [options] Override http request option.
|
|
11200
|
+
* @throws {RequiredError}
|
|
11201
|
+
*/
|
|
11202
|
+
getInvoiceDrift: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11117
11203
|
/**
|
|
11118
11204
|
*
|
|
11119
11205
|
* @summary Get an invoice pdf.
|
|
@@ -11193,16 +11279,17 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11193
11279
|
* @summary Returns all invoices in the system.
|
|
11194
11280
|
* @param {number} [toId] Filter on Id of the debtor
|
|
11195
11281
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
11196
|
-
* @param {
|
|
11282
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
11197
11283
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
11198
11284
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
11199
11285
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
11286
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
11200
11287
|
* @param {number} [take] How many entries the endpoint should return
|
|
11201
11288
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
11202
11289
|
* @param {*} [options] Override http request option.
|
|
11203
11290
|
* @throws {RequiredError}
|
|
11204
11291
|
*/
|
|
11205
|
-
getAllInvoices(toId?: number, invoiceId?: number, currentState?:
|
|
11292
|
+
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>>;
|
|
11206
11293
|
/**
|
|
11207
11294
|
*
|
|
11208
11295
|
* @summary Get eligible transactions for invoice creation.
|
|
@@ -11213,6 +11300,13 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
11213
11300
|
* @throws {RequiredError}
|
|
11214
11301
|
*/
|
|
11215
11302
|
getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse>>;
|
|
11303
|
+
/**
|
|
11304
|
+
*
|
|
11305
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11306
|
+
* @param {*} [options] Override http request option.
|
|
11307
|
+
* @throws {RequiredError}
|
|
11308
|
+
*/
|
|
11309
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InvoiceDriftResponse>>>;
|
|
11216
11310
|
/**
|
|
11217
11311
|
*
|
|
11218
11312
|
* @summary Get an invoice pdf.
|
|
@@ -11303,6 +11397,13 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
11303
11397
|
* @throws {RequiredError}
|
|
11304
11398
|
*/
|
|
11305
11399
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse>;
|
|
11400
|
+
/**
|
|
11401
|
+
*
|
|
11402
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11403
|
+
* @param {*} [options] Override http request option.
|
|
11404
|
+
* @throws {RequiredError}
|
|
11405
|
+
*/
|
|
11406
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): AxiosPromise<Array<InvoiceDriftResponse>>;
|
|
11306
11407
|
/**
|
|
11307
11408
|
*
|
|
11308
11409
|
* @summary Get an invoice pdf.
|
|
@@ -11403,10 +11504,10 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11403
11504
|
readonly invoiceId?: number;
|
|
11404
11505
|
/**
|
|
11405
11506
|
* Filter based on Invoice State.
|
|
11406
|
-
* @type {Array<
|
|
11507
|
+
* @type {Array<GetAllInvoicesCurrentStateParameterInner>}
|
|
11407
11508
|
* @memberof InvoicesApiGetAllInvoices
|
|
11408
11509
|
*/
|
|
11409
|
-
readonly currentState?:
|
|
11510
|
+
readonly currentState?: Array<GetAllInvoicesCurrentStateParameterInner>;
|
|
11410
11511
|
/**
|
|
11411
11512
|
* Boolean if invoice entries should be returned
|
|
11412
11513
|
* @type {boolean}
|
|
@@ -11425,6 +11526,12 @@ export interface InvoicesApiGetAllInvoicesRequest {
|
|
|
11425
11526
|
* @memberof InvoicesApiGetAllInvoices
|
|
11426
11527
|
*/
|
|
11427
11528
|
readonly tillDate?: string;
|
|
11529
|
+
/**
|
|
11530
|
+
* Filter invoices by description (partial match)
|
|
11531
|
+
* @type {string}
|
|
11532
|
+
* @memberof InvoicesApiGetAllInvoices
|
|
11533
|
+
*/
|
|
11534
|
+
readonly description?: string;
|
|
11428
11535
|
/**
|
|
11429
11536
|
* How many entries the endpoint should return
|
|
11430
11537
|
* @type {number}
|
|
@@ -11604,6 +11711,14 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11604
11711
|
* @memberof InvoicesApi
|
|
11605
11712
|
*/
|
|
11606
11713
|
getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
|
|
11714
|
+
/**
|
|
11715
|
+
*
|
|
11716
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
11717
|
+
* @param {*} [options] Override http request option.
|
|
11718
|
+
* @throws {RequiredError}
|
|
11719
|
+
* @memberof InvoicesApi
|
|
11720
|
+
*/
|
|
11721
|
+
getInvoiceDrift(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InvoiceDriftResponse[], any, {}>>;
|
|
11607
11722
|
/**
|
|
11608
11723
|
*
|
|
11609
11724
|
* @summary Get an invoice pdf.
|
|
@@ -11650,11 +11765,6 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
11650
11765
|
*/
|
|
11651
11766
|
updateInvoice(requestParameters: InvoicesApiUpdateInvoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseInvoiceResponse, any, {}>>;
|
|
11652
11767
|
}
|
|
11653
|
-
/**
|
|
11654
|
-
* @export
|
|
11655
|
-
*/
|
|
11656
|
-
export declare const GetAllInvoicesCurrentStateEnum: {};
|
|
11657
|
-
export type GetAllInvoicesCurrentStateEnum = typeof GetAllInvoicesCurrentStateEnum[keyof typeof GetAllInvoicesCurrentStateEnum];
|
|
11658
11768
|
/**
|
|
11659
11769
|
* PayoutRequestsApi - axios parameter creator
|
|
11660
11770
|
* @export
|
|
@@ -14209,11 +14319,11 @@ export declare const SyncApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14209
14319
|
/**
|
|
14210
14320
|
* 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.
|
|
14211
14321
|
* @summary Get dry-run sync results for users
|
|
14212
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14322
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14213
14323
|
* @param {*} [options] Override http request option.
|
|
14214
14324
|
* @throws {RequiredError}
|
|
14215
14325
|
*/
|
|
14216
|
-
getUserSyncResults: (service?: GetUserSyncResultsServiceEnum
|
|
14326
|
+
getUserSyncResults: (service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14217
14327
|
};
|
|
14218
14328
|
/**
|
|
14219
14329
|
* SyncApi - functional programming interface
|
|
@@ -14223,11 +14333,11 @@ export declare const SyncApiFp: (configuration?: Configuration) => {
|
|
|
14223
14333
|
/**
|
|
14224
14334
|
* 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.
|
|
14225
14335
|
* @summary Get dry-run sync results for users
|
|
14226
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14336
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14227
14337
|
* @param {*} [options] Override http request option.
|
|
14228
14338
|
* @throws {RequiredError}
|
|
14229
14339
|
*/
|
|
14230
|
-
getUserSyncResults(service?: GetUserSyncResultsServiceEnum
|
|
14340
|
+
getUserSyncResults(service?: Array<GetUserSyncResultsServiceEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
14231
14341
|
};
|
|
14232
14342
|
/**
|
|
14233
14343
|
* SyncApi - factory interface
|
|
@@ -14251,10 +14361,10 @@ export declare const SyncApiFactory: (configuration?: Configuration, basePath?:
|
|
|
14251
14361
|
export interface SyncApiGetUserSyncResultsRequest {
|
|
14252
14362
|
/**
|
|
14253
14363
|
* Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
14254
|
-
* @type {Array<
|
|
14364
|
+
* @type {Array<'LDAP' | 'GEWISDB'>}
|
|
14255
14365
|
* @memberof SyncApiGetUserSyncResults
|
|
14256
14366
|
*/
|
|
14257
|
-
readonly service?: GetUserSyncResultsServiceEnum
|
|
14367
|
+
readonly service?: Array<GetUserSyncResultsServiceEnum>;
|
|
14258
14368
|
}
|
|
14259
14369
|
/**
|
|
14260
14370
|
* SyncApi - object-oriented interface
|
|
@@ -14276,7 +14386,10 @@ export declare class SyncApi extends BaseAPI {
|
|
|
14276
14386
|
/**
|
|
14277
14387
|
* @export
|
|
14278
14388
|
*/
|
|
14279
|
-
export declare const GetUserSyncResultsServiceEnum: {
|
|
14389
|
+
export declare const GetUserSyncResultsServiceEnum: {
|
|
14390
|
+
readonly Ldap: "LDAP";
|
|
14391
|
+
readonly Gewisdb: "GEWISDB";
|
|
14392
|
+
};
|
|
14280
14393
|
export type GetUserSyncResultsServiceEnum = typeof GetUserSyncResultsServiceEnum[keyof typeof GetUserSyncResultsServiceEnum];
|
|
14281
14394
|
/**
|
|
14282
14395
|
* TermsOfServiceApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.PayoutRequestsApiAxiosParamCreator = exports.
|
|
16
|
+
exports.PayoutRequestsApiAxiosParamCreator = exports.InvoicesApi = exports.InvoicesApiFactory = exports.InvoicesApiFp = exports.InvoicesApiAxiosParamCreator = exports.InactiveAdministrativeCostsApi = exports.InactiveAdministrativeCostsApiFactory = exports.InactiveAdministrativeCostsApiFp = exports.InactiveAdministrativeCostsApiAxiosParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiAxiosParamCreator = exports.EventsApi = exports.EventsApiFactory = exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.GetFineReportPdfFileTypeEnum = exports.DebtorsApi = exports.DebtorsApiFactory = exports.DebtorsApiFp = exports.DebtorsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.BannersApi = exports.BannersApiFactory = exports.BannersApiFp = exports.BannersApiAxiosParamCreator = exports.GetAllBalanceOrderDirectionEnum = exports.BalanceApi = exports.BalanceApiFactory = exports.BalanceApiFp = exports.BalanceApiAxiosParamCreator = exports.AuthenticateApi = exports.AuthenticateApiFactory = exports.AuthenticateApiFp = exports.AuthenticateApiAxiosParamCreator = exports.UserType = exports.UserSettingsResponseLanguageEnum = exports.UpdateInvoiceRequestStateEnum = exports.QRStatusResponseStatusEnum = exports.PayoutRequestStatusRequestStateEnum = exports.PayoutRequestResponseStatusEnum = exports.PatchUserSettingsRequestLanguageEnum = exports.InvoiceStatusResponseStateEnum = exports.GetAllInvoicesCurrentStateParameterInner = exports.FinancialMutationResponseTypeEnum = exports.BasePayoutRequestResponseStatusEnum = void 0;
|
|
17
17
|
exports.TransactionSummariesApiFp = exports.TransactionSummariesApiAxiosParamCreator = exports.TestOperationsOfTheTestControllerApi = exports.TestOperationsOfTheTestControllerApiFactory = exports.TestOperationsOfTheTestControllerApiFp = exports.TestOperationsOfTheTestControllerApiAxiosParamCreator = exports.TermsOfServiceApi = exports.TermsOfServiceApiFactory = exports.TermsOfServiceApiFp = exports.TermsOfServiceApiAxiosParamCreator = exports.GetUserSyncResultsServiceEnum = exports.SyncApi = exports.SyncApiFactory = exports.SyncApiFp = exports.SyncApiAxiosParamCreator = exports.StripeApi = exports.StripeApiFactory = exports.StripeApiFp = exports.StripeApiAxiosParamCreator = exports.ServerSettingsApi = exports.ServerSettingsApiFactory = exports.ServerSettingsApiFp = exports.ServerSettingsApiAxiosParamCreator = exports.SellerPayoutsApi = exports.SellerPayoutsApiFactory = exports.SellerPayoutsApiFp = exports.SellerPayoutsApiAxiosParamCreator = exports.RootApi = exports.RootApiFactory = exports.RootApiFp = exports.RootApiAxiosParamCreator = exports.RbacApi = exports.RbacApiFactory = exports.RbacApiFp = exports.RbacApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ProductCategoriesApi = exports.ProductCategoriesApiFactory = exports.ProductCategoriesApiFp = exports.ProductCategoriesApiAxiosParamCreator = exports.PointofsaleApi = exports.PointofsaleApiFactory = exports.PointofsaleApiFp = exports.PointofsaleApiAxiosParamCreator = exports.PayoutRequestsApi = exports.PayoutRequestsApiFactory = exports.PayoutRequestsApiFp = void 0;
|
|
18
18
|
exports.WriteoffsApi = exports.WriteoffsApiFactory = exports.WriteoffsApiFp = exports.WriteoffsApiAxiosParamCreator = exports.VouchergroupsApi = exports.VouchergroupsApiFactory = exports.VouchergroupsApiFp = exports.VouchergroupsApiAxiosParamCreator = exports.VatGroupsApi = exports.VatGroupsApiFactory = exports.VatGroupsApiFp = exports.VatGroupsApiAxiosParamCreator = exports.GetUsersSalesReportPdfFileTypeEnum = exports.GetUsersPurchaseReportPdfFileTypeEnum = exports.GetAllUsersTypeEnum = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserNotificationPreferencesApi = exports.UserNotificationPreferencesApiFactory = exports.UserNotificationPreferencesApiFp = exports.UserNotificationPreferencesApiAxiosParamCreator = exports.TransfersApi = exports.TransfersApiFactory = exports.TransfersApiFp = exports.TransfersApiAxiosParamCreator = exports.TransactionsApi = exports.TransactionsApiFactory = exports.TransactionsApiFp = exports.TransactionsApiAxiosParamCreator = exports.TransactionSummariesApi = exports.TransactionSummariesApiFactory = void 0;
|
|
19
19
|
const axios_1 = require("axios");
|
|
@@ -32,6 +32,17 @@ exports.FinancialMutationResponseTypeEnum = {
|
|
|
32
32
|
Transfer: 'transfer',
|
|
33
33
|
Transaction: 'transaction'
|
|
34
34
|
};
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @export
|
|
38
|
+
* @enum {string}
|
|
39
|
+
*/
|
|
40
|
+
exports.GetAllInvoicesCurrentStateParameterInner = {
|
|
41
|
+
Created: 'CREATED',
|
|
42
|
+
Sent: 'SENT',
|
|
43
|
+
Paid: 'PAID',
|
|
44
|
+
Deleted: 'DELETED'
|
|
45
|
+
};
|
|
35
46
|
exports.InvoiceStatusResponseStateEnum = {
|
|
36
47
|
Created: 'CREATED',
|
|
37
48
|
Sent: 'SENT',
|
|
@@ -72,6 +83,21 @@ exports.UserSettingsResponseLanguageEnum = {
|
|
|
72
83
|
EnUs: 'en-US',
|
|
73
84
|
PlPl: 'pl-PL'
|
|
74
85
|
};
|
|
86
|
+
/**
|
|
87
|
+
* The type of a user
|
|
88
|
+
* @export
|
|
89
|
+
* @enum {string}
|
|
90
|
+
*/
|
|
91
|
+
exports.UserType = {
|
|
92
|
+
Member: 'MEMBER',
|
|
93
|
+
Organ: 'ORGAN',
|
|
94
|
+
Voucher: 'VOUCHER',
|
|
95
|
+
LocalUser: 'LOCAL_USER',
|
|
96
|
+
LocalAdmin: 'LOCAL_ADMIN',
|
|
97
|
+
Invoice: 'INVOICE',
|
|
98
|
+
PointOfSale: 'POINT_OF_SALE',
|
|
99
|
+
Integration: 'INTEGRATION'
|
|
100
|
+
};
|
|
75
101
|
/**
|
|
76
102
|
* AuthenticateApi - axios parameter creator
|
|
77
103
|
* @export
|
|
@@ -1703,7 +1729,7 @@ const BalanceApiAxiosParamCreator = function (configuration) {
|
|
|
1703
1729
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
1704
1730
|
* @param {number} [minFine] Minimum fine
|
|
1705
1731
|
* @param {number} [maxFine] Maximum fine
|
|
1706
|
-
* @param {
|
|
1732
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
1707
1733
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
1708
1734
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
1709
1735
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -1867,7 +1893,7 @@ const BalanceApiFp = function (configuration) {
|
|
|
1867
1893
|
* @param {boolean} [hasFine] Only users with(out) fines
|
|
1868
1894
|
* @param {number} [minFine] Minimum fine
|
|
1869
1895
|
* @param {number} [maxFine] Maximum fine
|
|
1870
|
-
* @param {
|
|
1896
|
+
* @param {Array<UserType>} [userTypes] Filter based on user type.
|
|
1871
1897
|
* @param {string} [orderBy] Column to order balance by - eg: id,amount
|
|
1872
1898
|
* @param {GetAllBalanceOrderDirectionEnum} [orderDirection] Order direction
|
|
1873
1899
|
* @param {boolean} [allowDeleted] Whether to include deleted users
|
|
@@ -2012,10 +2038,6 @@ class BalanceApi extends base_1.BaseAPI {
|
|
|
2012
2038
|
}
|
|
2013
2039
|
}
|
|
2014
2040
|
exports.BalanceApi = BalanceApi;
|
|
2015
|
-
/**
|
|
2016
|
-
* @export
|
|
2017
|
-
*/
|
|
2018
|
-
exports.GetAllBalanceUserTypesEnum = {};
|
|
2019
2041
|
/**
|
|
2020
2042
|
* @export
|
|
2021
2043
|
*/
|
|
@@ -5804,16 +5826,17 @@ const InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
5804
5826
|
* @summary Returns all invoices in the system.
|
|
5805
5827
|
* @param {number} [toId] Filter on Id of the debtor
|
|
5806
5828
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
5807
|
-
* @param {
|
|
5829
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
5808
5830
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
5809
5831
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
5810
5832
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
5833
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
5811
5834
|
* @param {number} [take] How many entries the endpoint should return
|
|
5812
5835
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
5813
5836
|
* @param {*} [options] Override http request option.
|
|
5814
5837
|
* @throws {RequiredError}
|
|
5815
5838
|
*/
|
|
5816
|
-
getAllInvoices: async (toId, invoiceId, currentState, returnEntries, fromDate, tillDate, take, skip, options = {}) => {
|
|
5839
|
+
getAllInvoices: async (toId, invoiceId, currentState, returnEntries, fromDate, tillDate, description, take, skip, options = {}) => {
|
|
5817
5840
|
const localVarPath = `/invoices`;
|
|
5818
5841
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5819
5842
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -5845,6 +5868,9 @@ const InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
5845
5868
|
if (tillDate !== undefined) {
|
|
5846
5869
|
localVarQueryParameter['tillDate'] = tillDate;
|
|
5847
5870
|
}
|
|
5871
|
+
if (description !== undefined) {
|
|
5872
|
+
localVarQueryParameter['description'] = description;
|
|
5873
|
+
}
|
|
5848
5874
|
if (take !== undefined) {
|
|
5849
5875
|
localVarQueryParameter['take'] = take;
|
|
5850
5876
|
}
|
|
@@ -5903,6 +5929,34 @@ const InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
5903
5929
|
options: localVarRequestOptions,
|
|
5904
5930
|
};
|
|
5905
5931
|
},
|
|
5932
|
+
/**
|
|
5933
|
+
*
|
|
5934
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
5935
|
+
* @param {*} [options] Override http request option.
|
|
5936
|
+
* @throws {RequiredError}
|
|
5937
|
+
*/
|
|
5938
|
+
getInvoiceDrift: async (options = {}) => {
|
|
5939
|
+
const localVarPath = `/invoices/drift`;
|
|
5940
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5941
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5942
|
+
let baseOptions;
|
|
5943
|
+
if (configuration) {
|
|
5944
|
+
baseOptions = configuration.baseOptions;
|
|
5945
|
+
}
|
|
5946
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
5947
|
+
const localVarHeaderParameter = {};
|
|
5948
|
+
const localVarQueryParameter = {};
|
|
5949
|
+
// authentication JWT required
|
|
5950
|
+
// http bearer authentication required
|
|
5951
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
5952
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5953
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5954
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5955
|
+
return {
|
|
5956
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5957
|
+
options: localVarRequestOptions,
|
|
5958
|
+
};
|
|
5959
|
+
},
|
|
5906
5960
|
/**
|
|
5907
5961
|
*
|
|
5908
5962
|
* @summary Get an invoice pdf.
|
|
@@ -6135,17 +6189,18 @@ const InvoicesApiFp = function (configuration) {
|
|
|
6135
6189
|
* @summary Returns all invoices in the system.
|
|
6136
6190
|
* @param {number} [toId] Filter on Id of the debtor
|
|
6137
6191
|
* @param {number} [invoiceId] Filter on invoice ID
|
|
6138
|
-
* @param {
|
|
6192
|
+
* @param {Array<GetAllInvoicesCurrentStateParameterInner>} [currentState] Filter based on Invoice State.
|
|
6139
6193
|
* @param {boolean} [returnEntries] Boolean if invoice entries should be returned
|
|
6140
6194
|
* @param {string} [fromDate] Start date for selected invoices (inclusive)
|
|
6141
6195
|
* @param {string} [tillDate] End date for selected invoices (exclusive)
|
|
6196
|
+
* @param {string} [description] Filter invoices by description (partial match)
|
|
6142
6197
|
* @param {number} [take] How many entries the endpoint should return
|
|
6143
6198
|
* @param {number} [skip] How many entries should be skipped (for pagination)
|
|
6144
6199
|
* @param {*} [options] Override http request option.
|
|
6145
6200
|
* @throws {RequiredError}
|
|
6146
6201
|
*/
|
|
6147
|
-
async getAllInvoices(toId, invoiceId, currentState, returnEntries, fromDate, tillDate, take, skip, options) {
|
|
6148
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllInvoices(toId, invoiceId, currentState, returnEntries, fromDate, tillDate, take, skip, options);
|
|
6202
|
+
async getAllInvoices(toId, invoiceId, currentState, returnEntries, fromDate, tillDate, description, take, skip, options) {
|
|
6203
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllInvoices(toId, invoiceId, currentState, returnEntries, fromDate, tillDate, description, take, skip, options);
|
|
6149
6204
|
const index = configuration?.serverIndex ?? 0;
|
|
6150
6205
|
const operationBasePath = base_1.operationServerMap['InvoicesApi.getAllInvoices']?.[index]?.url;
|
|
6151
6206
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
@@ -6165,6 +6220,18 @@ const InvoicesApiFp = function (configuration) {
|
|
|
6165
6220
|
const operationBasePath = base_1.operationServerMap['InvoicesApi.getEligibleTransactions']?.[index]?.url;
|
|
6166
6221
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
6167
6222
|
},
|
|
6223
|
+
/**
|
|
6224
|
+
*
|
|
6225
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
6226
|
+
* @param {*} [options] Override http request option.
|
|
6227
|
+
* @throws {RequiredError}
|
|
6228
|
+
*/
|
|
6229
|
+
async getInvoiceDrift(options) {
|
|
6230
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getInvoiceDrift(options);
|
|
6231
|
+
const index = configuration?.serverIndex ?? 0;
|
|
6232
|
+
const operationBasePath = base_1.operationServerMap['InvoicesApi.getInvoiceDrift']?.[index]?.url;
|
|
6233
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
6234
|
+
},
|
|
6168
6235
|
/**
|
|
6169
6236
|
*
|
|
6170
6237
|
* @summary Get an invoice pdf.
|
|
@@ -6282,7 +6349,7 @@ const InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
6282
6349
|
* @throws {RequiredError}
|
|
6283
6350
|
*/
|
|
6284
6351
|
getAllInvoices(requestParameters = {}, options) {
|
|
6285
|
-
return localVarFp.getAllInvoices(requestParameters.toId, requestParameters.invoiceId, requestParameters.currentState, requestParameters.returnEntries, requestParameters.fromDate, requestParameters.tillDate, requestParameters.take, requestParameters.skip, options).then((request) => request(axios, basePath));
|
|
6352
|
+
return localVarFp.getAllInvoices(requestParameters.toId, requestParameters.invoiceId, requestParameters.currentState, requestParameters.returnEntries, requestParameters.fromDate, requestParameters.tillDate, requestParameters.description, requestParameters.take, requestParameters.skip, options).then((request) => request(axios, basePath));
|
|
6286
6353
|
},
|
|
6287
6354
|
/**
|
|
6288
6355
|
*
|
|
@@ -6294,6 +6361,15 @@ const InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
6294
6361
|
getEligibleTransactions(requestParameters, options) {
|
|
6295
6362
|
return localVarFp.getEligibleTransactions(requestParameters.forId, requestParameters.fromDate, requestParameters.tillDate, options).then((request) => request(axios, basePath));
|
|
6296
6363
|
},
|
|
6364
|
+
/**
|
|
6365
|
+
*
|
|
6366
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
6367
|
+
* @param {*} [options] Override http request option.
|
|
6368
|
+
* @throws {RequiredError}
|
|
6369
|
+
*/
|
|
6370
|
+
getInvoiceDrift(options) {
|
|
6371
|
+
return localVarFp.getInvoiceDrift(options).then((request) => request(axios, basePath));
|
|
6372
|
+
},
|
|
6297
6373
|
/**
|
|
6298
6374
|
*
|
|
6299
6375
|
* @summary Get an invoice pdf.
|
|
@@ -6396,7 +6472,7 @@ class InvoicesApi extends base_1.BaseAPI {
|
|
|
6396
6472
|
* @memberof InvoicesApi
|
|
6397
6473
|
*/
|
|
6398
6474
|
getAllInvoices(requestParameters = {}, options) {
|
|
6399
|
-
return (0, exports.InvoicesApiFp)(this.configuration).getAllInvoices(requestParameters.toId, requestParameters.invoiceId, requestParameters.currentState, requestParameters.returnEntries, requestParameters.fromDate, requestParameters.tillDate, requestParameters.take, requestParameters.skip, options).then((request) => request(this.axios, this.basePath));
|
|
6475
|
+
return (0, exports.InvoicesApiFp)(this.configuration).getAllInvoices(requestParameters.toId, requestParameters.invoiceId, requestParameters.currentState, requestParameters.returnEntries, requestParameters.fromDate, requestParameters.tillDate, requestParameters.description, requestParameters.take, requestParameters.skip, options).then((request) => request(this.axios, this.basePath));
|
|
6400
6476
|
}
|
|
6401
6477
|
/**
|
|
6402
6478
|
*
|
|
@@ -6409,6 +6485,16 @@ class InvoicesApi extends base_1.BaseAPI {
|
|
|
6409
6485
|
getEligibleTransactions(requestParameters, options) {
|
|
6410
6486
|
return (0, exports.InvoicesApiFp)(this.configuration).getEligibleTransactions(requestParameters.forId, requestParameters.fromDate, requestParameters.tillDate, options).then((request) => request(this.axios, this.basePath));
|
|
6411
6487
|
}
|
|
6488
|
+
/**
|
|
6489
|
+
*
|
|
6490
|
+
* @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
|
|
6491
|
+
* @param {*} [options] Override http request option.
|
|
6492
|
+
* @throws {RequiredError}
|
|
6493
|
+
* @memberof InvoicesApi
|
|
6494
|
+
*/
|
|
6495
|
+
getInvoiceDrift(options) {
|
|
6496
|
+
return (0, exports.InvoicesApiFp)(this.configuration).getInvoiceDrift(options).then((request) => request(this.axios, this.basePath));
|
|
6497
|
+
}
|
|
6412
6498
|
/**
|
|
6413
6499
|
*
|
|
6414
6500
|
* @summary Get an invoice pdf.
|
|
@@ -6466,10 +6552,6 @@ class InvoicesApi extends base_1.BaseAPI {
|
|
|
6466
6552
|
}
|
|
6467
6553
|
}
|
|
6468
6554
|
exports.InvoicesApi = InvoicesApi;
|
|
6469
|
-
/**
|
|
6470
|
-
* @export
|
|
6471
|
-
*/
|
|
6472
|
-
exports.GetAllInvoicesCurrentStateEnum = {};
|
|
6473
6555
|
/**
|
|
6474
6556
|
* PayoutRequestsApi - axios parameter creator
|
|
6475
6557
|
* @export
|
|
@@ -10011,7 +10093,7 @@ const SyncApiAxiosParamCreator = function (configuration) {
|
|
|
10011
10093
|
/**
|
|
10012
10094
|
* 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.
|
|
10013
10095
|
* @summary Get dry-run sync results for users
|
|
10014
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
10096
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
10015
10097
|
* @param {*} [options] Override http request option.
|
|
10016
10098
|
* @throws {RequiredError}
|
|
10017
10099
|
*/
|
|
@@ -10053,7 +10135,7 @@ const SyncApiFp = function (configuration) {
|
|
|
10053
10135
|
/**
|
|
10054
10136
|
* 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.
|
|
10055
10137
|
* @summary Get dry-run sync results for users
|
|
10056
|
-
* @param {GetUserSyncResultsServiceEnum} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
10138
|
+
* @param {Array<GetUserSyncResultsServiceEnum>} [service] Array of sync services to use (ldap, gewisdb). If not provided, all available services will be used.
|
|
10057
10139
|
* @param {*} [options] Override http request option.
|
|
10058
10140
|
* @throws {RequiredError}
|
|
10059
10141
|
*/
|
|
@@ -10109,7 +10191,10 @@ exports.SyncApi = SyncApi;
|
|
|
10109
10191
|
/**
|
|
10110
10192
|
* @export
|
|
10111
10193
|
*/
|
|
10112
|
-
exports.GetUserSyncResultsServiceEnum = {
|
|
10194
|
+
exports.GetUserSyncResultsServiceEnum = {
|
|
10195
|
+
Ldap: 'LDAP',
|
|
10196
|
+
Gewisdb: 'GEWISDB'
|
|
10197
|
+
};
|
|
10113
10198
|
/**
|
|
10114
10199
|
* TermsOfServiceApi - axios parameter creator
|
|
10115
10200
|
* @export
|
package/dist/base.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const axios_1 = require("axios");
|
|
18
|
-
exports.BASE_PATH = "http://
|
|
18
|
+
exports.BASE_PATH = "http://localhost:3000/api/v1".replace(/\/+$/, "");
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
package/dist/common.d.ts
CHANGED
|
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
|
|
|
62
62
|
*
|
|
63
63
|
* @export
|
|
64
64
|
*/
|
|
65
|
-
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T
|
|
65
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gewis/sudosos-client",
|
|
3
|
-
"version": "0.0.0-develop.
|
|
3
|
+
"version": "0.0.0-develop.eaad44e",
|
|
4
4
|
"description": "Auto-generated TypeScript-Axios client for the SudoSOS API",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@openapitools/openapi-generator-cli": "^2.7.0",
|
|
23
|
-
"typescript": "~5.
|
|
23
|
+
"typescript": "~5.9.3"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|