@payabli/sdk-node 0.0.108 → 0.0.109

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.
@@ -71,8 +71,8 @@ class PayabliClient {
71
71
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
72
72
  "X-Fern-Language": "JavaScript",
73
73
  "X-Fern-SDK-Name": "@payabli/sdk-node",
74
- "X-Fern-SDK-Version": "0.0.108",
75
- "User-Agent": "@payabli/sdk-node/0.0.108",
74
+ "X-Fern-SDK-Version": "0.0.109",
75
+ "User-Agent": "@payabli/sdk-node/0.0.109",
76
76
  "X-Fern-Runtime": core.RUNTIME.type,
77
77
  "X-Fern-Runtime-Version": core.RUNTIME.version,
78
78
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -28,7 +28,7 @@ export interface BillDetailResponse {
28
28
  PaymentData?: Payabli.QueryPaymentData;
29
29
  /** Unique identifier for group or batch containing the transaction. */
30
30
  PaymentGroup?: string;
31
- PaymentId?: Payabli.Paymentid | undefined;
31
+ PaymentId?: Payabli.PaymentIdString;
32
32
  /** Method of payment applied to the transaction. */
33
33
  PaymentMethod?: string;
34
34
  /** Status of payout transaction. */
@@ -3,71 +3,70 @@
3
3
  */
4
4
  import * as Payabli from "../index.js";
5
5
  export interface BillQueryRecord2 {
6
- AccountingField1?: Payabli.AccountingField;
7
- AccountingField2?: Payabli.AccountingField;
6
+ AccountingField1: Payabli.AccountingField | null;
7
+ AccountingField2: Payabli.AccountingField | null;
8
8
  /** Additional data associated with the bill. */
9
- AdditionalData?: Record<string, string>;
9
+ AdditionalData: Record<string, string> | null;
10
10
  /** Batch number associated with the bill. */
11
- BatchNumber?: string;
12
- billApprovals?: Payabli.BillQueryRecord2BillApprovalsItem[];
11
+ BatchNumber: string | null;
12
+ billApprovals: Payabli.BillQueryRecord2BillApprovalsItem[] | null;
13
13
  /** Bill creation date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
14
- BillDate?: Payabli.Datenullable | undefined;
14
+ BillDate: (Payabli.Datenullable | undefined) | null;
15
15
  /** Events associated with the bill. */
16
- billEvents?: Payabli.GeneralEvents[];
16
+ billEvents: Payabli.GeneralEvents[] | null;
17
17
  /** Array of items included in the bill. */
18
- BillItems?: Payabli.BillItem[];
18
+ BillItems: Payabli.BillItem[] | null;
19
19
  /** Bill number. */
20
- BillNumber?: string;
20
+ BillNumber: string | null;
21
21
  /** Additional comments on the bill. */
22
- Comments?: string;
22
+ Comments: string | null;
23
23
  /** Timestamp of when bill was created, in UTC. */
24
- CreatedAt?: Payabli.CreatedAt;
24
+ CreatedAt: Payabli.CreatedAt | null;
25
25
  /** Discount amount applied to the bill. */
26
- Discount?: number;
26
+ Discount: number | null;
27
27
  /** Reference to documents associated with the bill. */
28
- DocumentsRef?: string;
28
+ DocumentsRef: string | null;
29
29
  /** Bill due date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
30
- DueDate?: Payabli.Datenullable | undefined;
30
+ DueDate: (Payabli.Datenullable | undefined) | null;
31
31
  /** End date for the bill. */
32
- EndDate?: Payabli.Datenullable | undefined;
32
+ EndDate: (Payabli.Datenullable | undefined) | null;
33
33
  /** Entity identifier associated with the bill. */
34
- EntityID?: string;
35
- externalPaypointID?: Payabli.ExternalPaypointId;
34
+ EntityID: string | null;
35
+ externalPaypointID: Payabli.ExternalPaypointId | null;
36
36
  /** Frequency for scheduled bills. Applied only in `Mode` = 1. */
37
- Frequency?: Payabli.Frequency;
37
+ Frequency: Payabli.Frequency | null;
38
38
  /** Identifier of the bill. */
39
- IdBill?: number;
39
+ IdBill: number | null;
40
40
  /** Timestamp of when bill was last updated, in UTC. */
41
- LastUpdated?: Payabli.DatetimeNullable | undefined;
41
+ LastUpdated: (Payabli.DatetimeNullable | undefined) | null;
42
42
  /** Lot number associated with the bill. */
43
- LotNumber?: string;
43
+ LotNumber: string | null;
44
44
  /** Bill mode: value `0` for single/one-time bills, `1` for scheduled bills. */
45
- Mode?: number;
45
+ Mode: number | null;
46
46
  /** Net amount of the bill. */
47
- NetAmount?: number;
47
+ NetAmount: number | null;
48
48
  /** Parent organization identifier. */
49
- ParentOrgId?: number;
50
- ParentOrgName?: Payabli.OrgParentName;
51
- /** Payment identifier. */
52
- PaymentId?: string;
49
+ ParentOrgId: number | null;
50
+ ParentOrgName: Payabli.OrgParentName | null;
51
+ PaymentId: Payabli.PaymentIdString | null;
53
52
  /** Preferred payment method used. */
54
- PaymentMethod?: Payabli.BillQueryRecord2PaymentMethod;
53
+ PaymentMethod: Payabli.BillQueryRecord2PaymentMethod | null;
55
54
  /** Paylink identifier associated with the bill. */
56
- paylinkId?: string;
55
+ paylinkId: string | null;
57
56
  /** The paypoint's DBA name. */
58
- PaypointDbaname?: Payabli.Dbaname;
57
+ PaypointDbaname: Payabli.Dbaname | null;
59
58
  /** Entry name of the paypoint. */
60
- PaypointEntryname?: string;
59
+ PaypointEntryname: string | null;
61
60
  /** The paypoint's legal name. */
62
- PaypointLegalname?: Payabli.Legalname;
61
+ PaypointLegalname: Payabli.Legalname | null;
63
62
  /** Source of the bill. */
64
- Source?: string;
65
- Status?: Payabli.Billstatus;
63
+ Source: string | null;
64
+ Status: Payabli.Billstatus | null;
66
65
  /** The payment terms for invoice. If no terms were defined initially, then response data for this field will default to `N30`. */
67
- Terms?: Payabli.Terms;
66
+ Terms: Payabli.Terms | null;
68
67
  /** Total amount of the bill including taxes and fees. */
69
- TotalAmount?: number;
68
+ TotalAmount: number | null;
70
69
  /** MoneyOut transaction associated to the bill. */
71
- Transaction?: Payabli.TransactionOutQueryRecord;
72
- Vendor?: Payabli.VendorOutData;
70
+ Transaction: Payabli.TransactionOutQueryRecord | null;
71
+ Vendor: Payabli.VendorOutData | null;
73
72
  }
@@ -31,7 +31,7 @@ import * as Payabli from "../index.js";
31
31
  * totalsent2approval: 1
32
32
  * },
33
33
  * Records: [{
34
- * AdditionalData: undefined,
34
+ * AdditionalData: null,
35
35
  * billApprovals: [{
36
36
  * approved: 0,
37
37
  * approvedTime: "2024-03-13T15:54:27Z",
@@ -70,10 +70,10 @@ import * as Payabli from "../index.js";
70
70
  * Comments: "PAYBILL",
71
71
  * CreatedAt: "2024-03-13T15:54:26Z",
72
72
  * Discount: 0,
73
- * DocumentsRef: undefined,
73
+ * DocumentsRef: null,
74
74
  * DueDate: "2025-03-10",
75
- * EndDate: undefined,
76
- * EntityID: undefined,
75
+ * EndDate: null,
76
+ * EntityID: null,
77
77
  * externalPaypointID: "micasa-10",
78
78
  * Frequency: Payabli.Frequency.OneTime,
79
79
  * IdBill: 6104,
@@ -83,9 +83,9 @@ import * as Payabli from "../index.js";
83
83
  * NetAmount: 200,
84
84
  * ParentOrgId: 1001,
85
85
  * ParentOrgName: "Fitness Hub",
86
- * PaymentId: undefined,
87
- * PaymentMethod: undefined,
88
- * paylinkId: undefined,
86
+ * PaymentId: null,
87
+ * PaymentMethod: null,
88
+ * paylinkId: null,
89
89
  * PaypointDbaname: "MiCasa Sports",
90
90
  * PaypointEntryname: "micasa",
91
91
  * PaypointLegalname: "MiCasa Sports LLC",
@@ -93,7 +93,7 @@ import * as Payabli from "../index.js";
93
93
  * Status: 2,
94
94
  * Terms: "Net30",
95
95
  * TotalAmount: 200,
96
- * Transaction: undefined,
96
+ * Transaction: null,
97
97
  * Vendor: {
98
98
  * Address1: "1234 Liberdad St.",
99
99
  * Address2: "Suite 100",
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The unique transaction ID. This value is a string representation of a long integer.
6
+ */
7
+ export type PaymentIdString = string;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,4 +4,4 @@
4
4
  /**
5
5
  * Unique transaction ID.
6
6
  */
7
- export type Paymentid = string | undefined;
7
+ export type Paymentid = number;
@@ -26,7 +26,7 @@ import * as Payabli from "../index.js";
26
26
  * totalAmount: 100
27
27
  * }
28
28
  * },
29
- * PaymentId: "2345667-ddd-fff",
29
+ * PaymentId: "12345678910",
30
30
  * PaymentMethod: "ach",
31
31
  * PaymentStatus: "Processed",
32
32
  * PaypointDbaname: "Sunshine Gutters",
@@ -111,7 +111,7 @@ export declare namespace QueryPayoutTransaction {
111
111
  ParentOrgName?: Payabli.OrgParentName;
112
112
  ParentOrgId?: Payabli.OrgParentId;
113
113
  PaymentData?: Item.PaymentData;
114
- PaymentId?: Payabli.Paymentid | undefined;
114
+ PaymentId?: Payabli.PaymentIdString;
115
115
  /** The payment method for the transaction. */
116
116
  PaymentMethod?: string;
117
117
  /** Status of payout transaction. See [Payout Transaction Statuses](guides/money-out-statuses#payout-transaction-statuses) for a full reference. */
@@ -34,7 +34,7 @@ export interface TransactionOutQueryRecord {
34
34
  CheckNumber?: string;
35
35
  /** Object referencing to paper check image. */
36
36
  CheckData?: Payabli.FileContent;
37
- PaymentId?: Payabli.Paymentid | undefined;
37
+ PaymentId?: Payabli.PaymentIdString;
38
38
  PaymentData?: Payabli.QueryPaymentData;
39
39
  /** Events associated to this transaction. */
40
40
  Bills?: Payabli.BillPayOutData[];
@@ -353,6 +353,7 @@ export * from "./PaymentCategories.js";
353
353
  export * from "./PaymentDetail.js";
354
354
  export * from "./PaymentDetailCredit.js";
355
355
  export * from "./Paymentid.js";
356
+ export * from "./PaymentIdString.js";
356
357
  export * from "./PaymentMethod.js";
357
358
  export * from "./PayMethodBodyAllFields.js";
358
359
  export * from "./PayMethodCredit.js";
@@ -369,6 +369,7 @@ __exportStar(require("./PaymentCategories.js"), exports);
369
369
  __exportStar(require("./PaymentDetail.js"), exports);
370
370
  __exportStar(require("./PaymentDetailCredit.js"), exports);
371
371
  __exportStar(require("./Paymentid.js"), exports);
372
+ __exportStar(require("./PaymentIdString.js"), exports);
372
373
  __exportStar(require("./PaymentMethod.js"), exports);
373
374
  __exportStar(require("./PayMethodBodyAllFields.js"), exports);
374
375
  __exportStar(require("./PayMethodCredit.js"), exports);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.108";
1
+ export declare const SDK_VERSION = "0.0.109";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.0.108";
4
+ exports.SDK_VERSION = "0.0.109";
@@ -35,8 +35,8 @@ export class PayabliClient {
35
35
  this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
36
36
  "X-Fern-Language": "JavaScript",
37
37
  "X-Fern-SDK-Name": "@payabli/sdk-node",
38
- "X-Fern-SDK-Version": "0.0.108",
39
- "User-Agent": "@payabli/sdk-node/0.0.108",
38
+ "X-Fern-SDK-Version": "0.0.109",
39
+ "User-Agent": "@payabli/sdk-node/0.0.109",
40
40
  "X-Fern-Runtime": core.RUNTIME.type,
41
41
  "X-Fern-Runtime-Version": core.RUNTIME.version,
42
42
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -28,7 +28,7 @@ export interface BillDetailResponse {
28
28
  PaymentData?: Payabli.QueryPaymentData;
29
29
  /** Unique identifier for group or batch containing the transaction. */
30
30
  PaymentGroup?: string;
31
- PaymentId?: Payabli.Paymentid | undefined;
31
+ PaymentId?: Payabli.PaymentIdString;
32
32
  /** Method of payment applied to the transaction. */
33
33
  PaymentMethod?: string;
34
34
  /** Status of payout transaction. */
@@ -3,71 +3,70 @@
3
3
  */
4
4
  import * as Payabli from "../index.mjs";
5
5
  export interface BillQueryRecord2 {
6
- AccountingField1?: Payabli.AccountingField;
7
- AccountingField2?: Payabli.AccountingField;
6
+ AccountingField1: Payabli.AccountingField | null;
7
+ AccountingField2: Payabli.AccountingField | null;
8
8
  /** Additional data associated with the bill. */
9
- AdditionalData?: Record<string, string>;
9
+ AdditionalData: Record<string, string> | null;
10
10
  /** Batch number associated with the bill. */
11
- BatchNumber?: string;
12
- billApprovals?: Payabli.BillQueryRecord2BillApprovalsItem[];
11
+ BatchNumber: string | null;
12
+ billApprovals: Payabli.BillQueryRecord2BillApprovalsItem[] | null;
13
13
  /** Bill creation date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
14
- BillDate?: Payabli.Datenullable | undefined;
14
+ BillDate: (Payabli.Datenullable | undefined) | null;
15
15
  /** Events associated with the bill. */
16
- billEvents?: Payabli.GeneralEvents[];
16
+ billEvents: Payabli.GeneralEvents[] | null;
17
17
  /** Array of items included in the bill. */
18
- BillItems?: Payabli.BillItem[];
18
+ BillItems: Payabli.BillItem[] | null;
19
19
  /** Bill number. */
20
- BillNumber?: string;
20
+ BillNumber: string | null;
21
21
  /** Additional comments on the bill. */
22
- Comments?: string;
22
+ Comments: string | null;
23
23
  /** Timestamp of when bill was created, in UTC. */
24
- CreatedAt?: Payabli.CreatedAt;
24
+ CreatedAt: Payabli.CreatedAt | null;
25
25
  /** Discount amount applied to the bill. */
26
- Discount?: number;
26
+ Discount: number | null;
27
27
  /** Reference to documents associated with the bill. */
28
- DocumentsRef?: string;
28
+ DocumentsRef: string | null;
29
29
  /** Bill due date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
30
- DueDate?: Payabli.Datenullable | undefined;
30
+ DueDate: (Payabli.Datenullable | undefined) | null;
31
31
  /** End date for the bill. */
32
- EndDate?: Payabli.Datenullable | undefined;
32
+ EndDate: (Payabli.Datenullable | undefined) | null;
33
33
  /** Entity identifier associated with the bill. */
34
- EntityID?: string;
35
- externalPaypointID?: Payabli.ExternalPaypointId;
34
+ EntityID: string | null;
35
+ externalPaypointID: Payabli.ExternalPaypointId | null;
36
36
  /** Frequency for scheduled bills. Applied only in `Mode` = 1. */
37
- Frequency?: Payabli.Frequency;
37
+ Frequency: Payabli.Frequency | null;
38
38
  /** Identifier of the bill. */
39
- IdBill?: number;
39
+ IdBill: number | null;
40
40
  /** Timestamp of when bill was last updated, in UTC. */
41
- LastUpdated?: Payabli.DatetimeNullable | undefined;
41
+ LastUpdated: (Payabli.DatetimeNullable | undefined) | null;
42
42
  /** Lot number associated with the bill. */
43
- LotNumber?: string;
43
+ LotNumber: string | null;
44
44
  /** Bill mode: value `0` for single/one-time bills, `1` for scheduled bills. */
45
- Mode?: number;
45
+ Mode: number | null;
46
46
  /** Net amount of the bill. */
47
- NetAmount?: number;
47
+ NetAmount: number | null;
48
48
  /** Parent organization identifier. */
49
- ParentOrgId?: number;
50
- ParentOrgName?: Payabli.OrgParentName;
51
- /** Payment identifier. */
52
- PaymentId?: string;
49
+ ParentOrgId: number | null;
50
+ ParentOrgName: Payabli.OrgParentName | null;
51
+ PaymentId: Payabli.PaymentIdString | null;
53
52
  /** Preferred payment method used. */
54
- PaymentMethod?: Payabli.BillQueryRecord2PaymentMethod;
53
+ PaymentMethod: Payabli.BillQueryRecord2PaymentMethod | null;
55
54
  /** Paylink identifier associated with the bill. */
56
- paylinkId?: string;
55
+ paylinkId: string | null;
57
56
  /** The paypoint's DBA name. */
58
- PaypointDbaname?: Payabli.Dbaname;
57
+ PaypointDbaname: Payabli.Dbaname | null;
59
58
  /** Entry name of the paypoint. */
60
- PaypointEntryname?: string;
59
+ PaypointEntryname: string | null;
61
60
  /** The paypoint's legal name. */
62
- PaypointLegalname?: Payabli.Legalname;
61
+ PaypointLegalname: Payabli.Legalname | null;
63
62
  /** Source of the bill. */
64
- Source?: string;
65
- Status?: Payabli.Billstatus;
63
+ Source: string | null;
64
+ Status: Payabli.Billstatus | null;
66
65
  /** The payment terms for invoice. If no terms were defined initially, then response data for this field will default to `N30`. */
67
- Terms?: Payabli.Terms;
66
+ Terms: Payabli.Terms | null;
68
67
  /** Total amount of the bill including taxes and fees. */
69
- TotalAmount?: number;
68
+ TotalAmount: number | null;
70
69
  /** MoneyOut transaction associated to the bill. */
71
- Transaction?: Payabli.TransactionOutQueryRecord;
72
- Vendor?: Payabli.VendorOutData;
70
+ Transaction: Payabli.TransactionOutQueryRecord | null;
71
+ Vendor: Payabli.VendorOutData | null;
73
72
  }
@@ -31,7 +31,7 @@ import * as Payabli from "../index.mjs";
31
31
  * totalsent2approval: 1
32
32
  * },
33
33
  * Records: [{
34
- * AdditionalData: undefined,
34
+ * AdditionalData: null,
35
35
  * billApprovals: [{
36
36
  * approved: 0,
37
37
  * approvedTime: "2024-03-13T15:54:27Z",
@@ -70,10 +70,10 @@ import * as Payabli from "../index.mjs";
70
70
  * Comments: "PAYBILL",
71
71
  * CreatedAt: "2024-03-13T15:54:26Z",
72
72
  * Discount: 0,
73
- * DocumentsRef: undefined,
73
+ * DocumentsRef: null,
74
74
  * DueDate: "2025-03-10",
75
- * EndDate: undefined,
76
- * EntityID: undefined,
75
+ * EndDate: null,
76
+ * EntityID: null,
77
77
  * externalPaypointID: "micasa-10",
78
78
  * Frequency: Payabli.Frequency.OneTime,
79
79
  * IdBill: 6104,
@@ -83,9 +83,9 @@ import * as Payabli from "../index.mjs";
83
83
  * NetAmount: 200,
84
84
  * ParentOrgId: 1001,
85
85
  * ParentOrgName: "Fitness Hub",
86
- * PaymentId: undefined,
87
- * PaymentMethod: undefined,
88
- * paylinkId: undefined,
86
+ * PaymentId: null,
87
+ * PaymentMethod: null,
88
+ * paylinkId: null,
89
89
  * PaypointDbaname: "MiCasa Sports",
90
90
  * PaypointEntryname: "micasa",
91
91
  * PaypointLegalname: "MiCasa Sports LLC",
@@ -93,7 +93,7 @@ import * as Payabli from "../index.mjs";
93
93
  * Status: 2,
94
94
  * Terms: "Net30",
95
95
  * TotalAmount: 200,
96
- * Transaction: undefined,
96
+ * Transaction: null,
97
97
  * Vendor: {
98
98
  * Address1: "1234 Liberdad St.",
99
99
  * Address2: "Suite 100",
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The unique transaction ID. This value is a string representation of a long integer.
6
+ */
7
+ export type PaymentIdString = string;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -4,4 +4,4 @@
4
4
  /**
5
5
  * Unique transaction ID.
6
6
  */
7
- export type Paymentid = string | undefined;
7
+ export type Paymentid = number;
@@ -26,7 +26,7 @@ import * as Payabli from "../index.mjs";
26
26
  * totalAmount: 100
27
27
  * }
28
28
  * },
29
- * PaymentId: "2345667-ddd-fff",
29
+ * PaymentId: "12345678910",
30
30
  * PaymentMethod: "ach",
31
31
  * PaymentStatus: "Processed",
32
32
  * PaypointDbaname: "Sunshine Gutters",
@@ -111,7 +111,7 @@ export declare namespace QueryPayoutTransaction {
111
111
  ParentOrgName?: Payabli.OrgParentName;
112
112
  ParentOrgId?: Payabli.OrgParentId;
113
113
  PaymentData?: Item.PaymentData;
114
- PaymentId?: Payabli.Paymentid | undefined;
114
+ PaymentId?: Payabli.PaymentIdString;
115
115
  /** The payment method for the transaction. */
116
116
  PaymentMethod?: string;
117
117
  /** Status of payout transaction. See [Payout Transaction Statuses](guides/money-out-statuses#payout-transaction-statuses) for a full reference. */
@@ -34,7 +34,7 @@ export interface TransactionOutQueryRecord {
34
34
  CheckNumber?: string;
35
35
  /** Object referencing to paper check image. */
36
36
  CheckData?: Payabli.FileContent;
37
- PaymentId?: Payabli.Paymentid | undefined;
37
+ PaymentId?: Payabli.PaymentIdString;
38
38
  PaymentData?: Payabli.QueryPaymentData;
39
39
  /** Events associated to this transaction. */
40
40
  Bills?: Payabli.BillPayOutData[];
@@ -353,6 +353,7 @@ export * from "./PaymentCategories.mjs";
353
353
  export * from "./PaymentDetail.mjs";
354
354
  export * from "./PaymentDetailCredit.mjs";
355
355
  export * from "./Paymentid.mjs";
356
+ export * from "./PaymentIdString.mjs";
356
357
  export * from "./PaymentMethod.mjs";
357
358
  export * from "./PayMethodBodyAllFields.mjs";
358
359
  export * from "./PayMethodCredit.mjs";
@@ -353,6 +353,7 @@ export * from "./PaymentCategories.mjs";
353
353
  export * from "./PaymentDetail.mjs";
354
354
  export * from "./PaymentDetailCredit.mjs";
355
355
  export * from "./Paymentid.mjs";
356
+ export * from "./PaymentIdString.mjs";
356
357
  export * from "./PaymentMethod.mjs";
357
358
  export * from "./PayMethodBodyAllFields.mjs";
358
359
  export * from "./PayMethodCredit.mjs";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.108";
1
+ export declare const SDK_VERSION = "0.0.109";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.0.108";
1
+ export const SDK_VERSION = "0.0.109";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payabli/sdk-node",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "private": false,
5
5
  "repository": "github:payabli/sdk-node",
6
6
  "type": "commonjs",