@gewis/sudosos-client 1.30.0 → 1.32.0

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.
Files changed (2) hide show
  1. package/dist/api.d.ts +15 -3
  2. package/package.json +2 -2
package/dist/api.d.ts CHANGED
@@ -6109,6 +6109,12 @@ export interface UpdateUserRequest {
6109
6109
  * @memberof UpdateUserRequest
6110
6110
  */
6111
6111
  'inactiveNotificationSend'?: boolean;
6112
+ /**
6113
+ * ISO date at which the account expires; pass null to clear
6114
+ * @type {string}
6115
+ * @memberof UpdateUserRequest
6116
+ */
6117
+ 'expiryDate'?: string | null;
6112
6118
  }
6113
6119
  /**
6114
6120
  * API Request for updating an existing `vat group` entity. Only mutable fields; the rate itself cannot change on an existing group.
@@ -6325,6 +6331,12 @@ export interface UserResponse {
6325
6331
  * @memberof UserResponse
6326
6332
  */
6327
6333
  'pos'?: BasePointOfSaleInfoResponse;
6334
+ /**
6335
+ * ISO date at which the account expires (null for accounts without expiry)
6336
+ * @type {string}
6337
+ * @memberof UserResponse
6338
+ */
6339
+ 'expiryDate'?: string | null;
6328
6340
  }
6329
6341
  /**
6330
6342
  *
@@ -11035,7 +11047,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
11035
11047
  * @param {*} [options] Override http request option.
11036
11048
  * @throws {RequiredError}
11037
11049
  */
11038
- getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionResponse>>;
11050
+ getEligibleTransactions(forId: number, fromDate: string, tillDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransactionResponse>>>;
11039
11051
  /**
11040
11052
  *
11041
11053
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
@@ -11132,7 +11144,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
11132
11144
  * @param {*} [options] Override http request option.
11133
11145
  * @throws {RequiredError}
11134
11146
  */
11135
- getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<TransactionResponse>;
11147
+ getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<TransactionResponse>>;
11136
11148
  /**
11137
11149
  *
11138
11150
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
@@ -11446,7 +11458,7 @@ export declare class InvoicesApi extends BaseAPI {
11446
11458
  * @throws {RequiredError}
11447
11459
  * @memberof InvoicesApi
11448
11460
  */
11449
- getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse, any, {}>>;
11461
+ getEligibleTransactions(requestParameters: InvoicesApiGetEligibleTransactionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionResponse[], any, {}>>;
11450
11462
  /**
11451
11463
  *
11452
11464
  * @summary Returns all invoices with transfer amount drift: for active invoices transfer != row sum; for deleted invoices transfer != credit transfer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gewis/sudosos-client",
3
- "version": "1.30.0",
3
+ "version": "1.32.0",
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",
@@ -16,7 +16,7 @@
16
16
  "clean": "rm -rf src dist"
17
17
  },
18
18
  "dependencies": {
19
- "axios": "1.16.0"
19
+ "axios": "1.16.1"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@openapitools/openapi-generator-cli": "2.32.0",