@riocrypto/common 1.0.560 → 1.0.562

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/build/index.d.ts CHANGED
@@ -134,6 +134,7 @@ export * from "./types/api-key";
134
134
  export * from "./types/authorization-type";
135
135
  export * from "./types/refresh-token";
136
136
  export * from "./types/bank-payment";
137
+ export * from "./types/kapstar-invoice-response";
137
138
  export * from "./classes/Asset";
138
139
  export * from "./classes/CountryAsset";
139
140
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -150,6 +150,7 @@ __exportStar(require("./types/api-key"), exports);
150
150
  __exportStar(require("./types/authorization-type"), exports);
151
151
  __exportStar(require("./types/refresh-token"), exports);
152
152
  __exportStar(require("./types/bank-payment"), exports);
153
+ __exportStar(require("./types/kapstar-invoice-response"), exports);
153
154
  __exportStar(require("./classes/Asset"), exports);
154
155
  __exportStar(require("./classes/CountryAsset"), exports);
155
156
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,11 @@
1
+ export interface KapstarInvoiceResponse {
2
+ amount: number;
3
+ brcode: "string";
4
+ created_at: "string";
5
+ id: "string";
6
+ name: "string";
7
+ status: "string";
8
+ tags: ["string"];
9
+ tax_id: "string";
10
+ updated_at: "string";
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export interface KapstarPIXPaymentResponse {
2
+ amount: number;
3
+ brcode: "string";
4
+ created_at: "string";
5
+ id: "string";
6
+ name: "string";
7
+ status: "string";
8
+ tags: ["string"];
9
+ tax_id: "string";
10
+ updated_at: "string";
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.560",
3
+ "version": "1.0.562",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",