@pague-dev/sdk-node 0.3.0 → 0.4.1

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/index.d.cts CHANGED
@@ -167,6 +167,7 @@ interface PixCharge {
167
167
  amount: number;
168
168
  currency: string;
169
169
  pixCopyPaste: string;
170
+ qrCodeBase64?: string;
170
171
  expiresAt: string;
171
172
  externalReference?: string;
172
173
  customerId?: string;
@@ -247,6 +248,7 @@ interface Transaction {
247
248
  projectId?: string;
248
249
  metadata?: Record<string, unknown>;
249
250
  pixCopyPaste?: string;
251
+ qrCodeBase64?: string;
250
252
  expiresAt?: string;
251
253
  paidAt?: string;
252
254
  createdAt: string;
package/dist/index.d.mts CHANGED
@@ -167,6 +167,7 @@ interface PixCharge {
167
167
  amount: number;
168
168
  currency: string;
169
169
  pixCopyPaste: string;
170
+ qrCodeBase64?: string;
170
171
  expiresAt: string;
171
172
  externalReference?: string;
172
173
  customerId?: string;
@@ -247,6 +248,7 @@ interface Transaction {
247
248
  projectId?: string;
248
249
  metadata?: Record<string, unknown>;
249
250
  pixCopyPaste?: string;
251
+ qrCodeBase64?: string;
250
252
  expiresAt?: string;
251
253
  paidAt?: string;
252
254
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pague-dev/sdk-node",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Node.js SDK for the pague.dev API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",