@emilgroup/billing-sdk-node 1.47.1-beta.16 → 1.47.1-beta.18

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 CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/billing-sdk-node@1.47.1-beta.16 --save
20
+ npm install @emilgroup/billing-sdk-node@1.47.1-beta.18 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/billing-sdk-node@1.47.1-beta.16
24
+ yarn add @emilgroup/billing-sdk-node@1.47.1-beta.18
25
25
  ```
26
26
 
27
27
  And then you can import `InvoicesApi`.
package/base.ts CHANGED
@@ -278,7 +278,7 @@ export class BaseAPI {
278
278
  * @extends {Error}
279
279
  */
280
280
  export class RequiredError extends Error {
281
- name: "RequiredError" = "RequiredError";
281
+ override name: "RequiredError" = "RequiredError";
282
282
  constructor(public field: string, msg?: string) {
283
283
  super(msg);
284
284
  }
@@ -28,4 +28,16 @@ export interface ListInvoicesResponseClass {
28
28
  * @memberof ListInvoicesResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListInvoicesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListInvoicesResponseClass
41
+ */
42
+ 'totalItems': number;
31
43
  }
@@ -33,5 +33,17 @@ export interface ListInvoicesResponseClass {
33
33
  * @memberof ListInvoicesResponseClass
34
34
  */
35
35
  'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListInvoicesResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListInvoicesResponseClass
46
+ */
47
+ 'totalItems': number;
36
48
  }
37
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/billing-sdk-node",
3
- "version": "1.47.1-beta.16",
3
+ "version": "1.47.1-beta.18",
4
4
  "description": "OpenAPI client for @emilgroup/billing-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
package/tsconfig.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "module": "CommonJS",
6
6
  "noImplicitAny": true,
7
7
  "esModuleInterop": true,
8
+ "noImplicitOverride": true,
8
9
  "outDir": "dist",
9
10
  "rootDir": ".",
10
11
  "lib": [