@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.
- package/dist/cjs/Client.js +2 -2
- package/dist/cjs/api/types/BillDetailResponse.d.ts +1 -1
- package/dist/cjs/api/types/BillQueryRecord2.d.ts +37 -38
- package/dist/cjs/api/types/BillQueryResponse.d.ts +8 -8
- package/dist/cjs/api/types/PaymentIdString.d.ts +7 -0
- package/dist/cjs/api/types/PaymentIdString.js +5 -0
- package/dist/cjs/api/types/Paymentid.d.ts +1 -1
- package/dist/cjs/api/types/QueryPayoutTransaction.d.ts +2 -2
- package/dist/cjs/api/types/TransactionOutQueryRecord.d.ts +1 -1
- package/dist/cjs/api/types/index.d.ts +1 -0
- package/dist/cjs/api/types/index.js +1 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/BillDetailResponse.d.mts +1 -1
- package/dist/esm/api/types/BillQueryRecord2.d.mts +37 -38
- package/dist/esm/api/types/BillQueryResponse.d.mts +8 -8
- package/dist/esm/api/types/PaymentIdString.d.mts +7 -0
- package/dist/esm/api/types/PaymentIdString.mjs +4 -0
- package/dist/esm/api/types/Paymentid.d.mts +1 -1
- package/dist/esm/api/types/QueryPayoutTransaction.d.mts +2 -2
- package/dist/esm/api/types/TransactionOutQueryRecord.d.mts +1 -1
- package/dist/esm/api/types/index.d.mts +1 -0
- package/dist/esm/api/types/index.mjs +1 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -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.
|
|
75
|
-
"User-Agent": "@payabli/sdk-node/0.0.
|
|
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.
|
|
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
|
|
7
|
-
AccountingField2
|
|
6
|
+
AccountingField1: Payabli.AccountingField | null;
|
|
7
|
+
AccountingField2: Payabli.AccountingField | null;
|
|
8
8
|
/** Additional data associated with the bill. */
|
|
9
|
-
AdditionalData
|
|
9
|
+
AdditionalData: Record<string, string> | null;
|
|
10
10
|
/** Batch number associated with the bill. */
|
|
11
|
-
BatchNumber
|
|
12
|
-
billApprovals
|
|
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
|
|
14
|
+
BillDate: (Payabli.Datenullable | undefined) | null;
|
|
15
15
|
/** Events associated with the bill. */
|
|
16
|
-
billEvents
|
|
16
|
+
billEvents: Payabli.GeneralEvents[] | null;
|
|
17
17
|
/** Array of items included in the bill. */
|
|
18
|
-
BillItems
|
|
18
|
+
BillItems: Payabli.BillItem[] | null;
|
|
19
19
|
/** Bill number. */
|
|
20
|
-
BillNumber
|
|
20
|
+
BillNumber: string | null;
|
|
21
21
|
/** Additional comments on the bill. */
|
|
22
|
-
Comments
|
|
22
|
+
Comments: string | null;
|
|
23
23
|
/** Timestamp of when bill was created, in UTC. */
|
|
24
|
-
CreatedAt
|
|
24
|
+
CreatedAt: Payabli.CreatedAt | null;
|
|
25
25
|
/** Discount amount applied to the bill. */
|
|
26
|
-
Discount
|
|
26
|
+
Discount: number | null;
|
|
27
27
|
/** Reference to documents associated with the bill. */
|
|
28
|
-
DocumentsRef
|
|
28
|
+
DocumentsRef: string | null;
|
|
29
29
|
/** Bill due date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
|
|
30
|
-
DueDate
|
|
30
|
+
DueDate: (Payabli.Datenullable | undefined) | null;
|
|
31
31
|
/** End date for the bill. */
|
|
32
|
-
EndDate
|
|
32
|
+
EndDate: (Payabli.Datenullable | undefined) | null;
|
|
33
33
|
/** Entity identifier associated with the bill. */
|
|
34
|
-
EntityID
|
|
35
|
-
externalPaypointID
|
|
34
|
+
EntityID: string | null;
|
|
35
|
+
externalPaypointID: Payabli.ExternalPaypointId | null;
|
|
36
36
|
/** Frequency for scheduled bills. Applied only in `Mode` = 1. */
|
|
37
|
-
Frequency
|
|
37
|
+
Frequency: Payabli.Frequency | null;
|
|
38
38
|
/** Identifier of the bill. */
|
|
39
|
-
IdBill
|
|
39
|
+
IdBill: number | null;
|
|
40
40
|
/** Timestamp of when bill was last updated, in UTC. */
|
|
41
|
-
LastUpdated
|
|
41
|
+
LastUpdated: (Payabli.DatetimeNullable | undefined) | null;
|
|
42
42
|
/** Lot number associated with the bill. */
|
|
43
|
-
LotNumber
|
|
43
|
+
LotNumber: string | null;
|
|
44
44
|
/** Bill mode: value `0` for single/one-time bills, `1` for scheduled bills. */
|
|
45
|
-
Mode
|
|
45
|
+
Mode: number | null;
|
|
46
46
|
/** Net amount of the bill. */
|
|
47
|
-
NetAmount
|
|
47
|
+
NetAmount: number | null;
|
|
48
48
|
/** Parent organization identifier. */
|
|
49
|
-
ParentOrgId
|
|
50
|
-
ParentOrgName
|
|
51
|
-
|
|
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
|
|
53
|
+
PaymentMethod: Payabli.BillQueryRecord2PaymentMethod | null;
|
|
55
54
|
/** Paylink identifier associated with the bill. */
|
|
56
|
-
paylinkId
|
|
55
|
+
paylinkId: string | null;
|
|
57
56
|
/** The paypoint's DBA name. */
|
|
58
|
-
PaypointDbaname
|
|
57
|
+
PaypointDbaname: Payabli.Dbaname | null;
|
|
59
58
|
/** Entry name of the paypoint. */
|
|
60
|
-
PaypointEntryname
|
|
59
|
+
PaypointEntryname: string | null;
|
|
61
60
|
/** The paypoint's legal name. */
|
|
62
|
-
PaypointLegalname
|
|
61
|
+
PaypointLegalname: Payabli.Legalname | null;
|
|
63
62
|
/** Source of the bill. */
|
|
64
|
-
Source
|
|
65
|
-
Status
|
|
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
|
|
66
|
+
Terms: Payabli.Terms | null;
|
|
68
67
|
/** Total amount of the bill including taxes and fees. */
|
|
69
|
-
TotalAmount
|
|
68
|
+
TotalAmount: number | null;
|
|
70
69
|
/** MoneyOut transaction associated to the bill. */
|
|
71
|
-
Transaction
|
|
72
|
-
Vendor
|
|
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:
|
|
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:
|
|
73
|
+
* DocumentsRef: null,
|
|
74
74
|
* DueDate: "2025-03-10",
|
|
75
|
-
* EndDate:
|
|
76
|
-
* EntityID:
|
|
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:
|
|
87
|
-
* PaymentMethod:
|
|
88
|
-
* paylinkId:
|
|
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:
|
|
96
|
+
* Transaction: null,
|
|
97
97
|
* Vendor: {
|
|
98
98
|
* Address1: "1234 Liberdad St.",
|
|
99
99
|
* Address2: "Suite 100",
|
|
@@ -26,7 +26,7 @@ import * as Payabli from "../index.js";
|
|
|
26
26
|
* totalAmount: 100
|
|
27
27
|
* }
|
|
28
28
|
* },
|
|
29
|
-
* PaymentId: "
|
|
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.
|
|
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.
|
|
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);
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.0.
|
|
1
|
+
export declare const SDK_VERSION = "0.0.109";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -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.
|
|
39
|
-
"User-Agent": "@payabli/sdk-node/0.0.
|
|
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.
|
|
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
|
|
7
|
-
AccountingField2
|
|
6
|
+
AccountingField1: Payabli.AccountingField | null;
|
|
7
|
+
AccountingField2: Payabli.AccountingField | null;
|
|
8
8
|
/** Additional data associated with the bill. */
|
|
9
|
-
AdditionalData
|
|
9
|
+
AdditionalData: Record<string, string> | null;
|
|
10
10
|
/** Batch number associated with the bill. */
|
|
11
|
-
BatchNumber
|
|
12
|
-
billApprovals
|
|
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
|
|
14
|
+
BillDate: (Payabli.Datenullable | undefined) | null;
|
|
15
15
|
/** Events associated with the bill. */
|
|
16
|
-
billEvents
|
|
16
|
+
billEvents: Payabli.GeneralEvents[] | null;
|
|
17
17
|
/** Array of items included in the bill. */
|
|
18
|
-
BillItems
|
|
18
|
+
BillItems: Payabli.BillItem[] | null;
|
|
19
19
|
/** Bill number. */
|
|
20
|
-
BillNumber
|
|
20
|
+
BillNumber: string | null;
|
|
21
21
|
/** Additional comments on the bill. */
|
|
22
|
-
Comments
|
|
22
|
+
Comments: string | null;
|
|
23
23
|
/** Timestamp of when bill was created, in UTC. */
|
|
24
|
-
CreatedAt
|
|
24
|
+
CreatedAt: Payabli.CreatedAt | null;
|
|
25
25
|
/** Discount amount applied to the bill. */
|
|
26
|
-
Discount
|
|
26
|
+
Discount: number | null;
|
|
27
27
|
/** Reference to documents associated with the bill. */
|
|
28
|
-
DocumentsRef
|
|
28
|
+
DocumentsRef: string | null;
|
|
29
29
|
/** Bill due date in one of the accepted formats: YYYY-MM-DD, MM/DD/YYYY. */
|
|
30
|
-
DueDate
|
|
30
|
+
DueDate: (Payabli.Datenullable | undefined) | null;
|
|
31
31
|
/** End date for the bill. */
|
|
32
|
-
EndDate
|
|
32
|
+
EndDate: (Payabli.Datenullable | undefined) | null;
|
|
33
33
|
/** Entity identifier associated with the bill. */
|
|
34
|
-
EntityID
|
|
35
|
-
externalPaypointID
|
|
34
|
+
EntityID: string | null;
|
|
35
|
+
externalPaypointID: Payabli.ExternalPaypointId | null;
|
|
36
36
|
/** Frequency for scheduled bills. Applied only in `Mode` = 1. */
|
|
37
|
-
Frequency
|
|
37
|
+
Frequency: Payabli.Frequency | null;
|
|
38
38
|
/** Identifier of the bill. */
|
|
39
|
-
IdBill
|
|
39
|
+
IdBill: number | null;
|
|
40
40
|
/** Timestamp of when bill was last updated, in UTC. */
|
|
41
|
-
LastUpdated
|
|
41
|
+
LastUpdated: (Payabli.DatetimeNullable | undefined) | null;
|
|
42
42
|
/** Lot number associated with the bill. */
|
|
43
|
-
LotNumber
|
|
43
|
+
LotNumber: string | null;
|
|
44
44
|
/** Bill mode: value `0` for single/one-time bills, `1` for scheduled bills. */
|
|
45
|
-
Mode
|
|
45
|
+
Mode: number | null;
|
|
46
46
|
/** Net amount of the bill. */
|
|
47
|
-
NetAmount
|
|
47
|
+
NetAmount: number | null;
|
|
48
48
|
/** Parent organization identifier. */
|
|
49
|
-
ParentOrgId
|
|
50
|
-
ParentOrgName
|
|
51
|
-
|
|
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
|
|
53
|
+
PaymentMethod: Payabli.BillQueryRecord2PaymentMethod | null;
|
|
55
54
|
/** Paylink identifier associated with the bill. */
|
|
56
|
-
paylinkId
|
|
55
|
+
paylinkId: string | null;
|
|
57
56
|
/** The paypoint's DBA name. */
|
|
58
|
-
PaypointDbaname
|
|
57
|
+
PaypointDbaname: Payabli.Dbaname | null;
|
|
59
58
|
/** Entry name of the paypoint. */
|
|
60
|
-
PaypointEntryname
|
|
59
|
+
PaypointEntryname: string | null;
|
|
61
60
|
/** The paypoint's legal name. */
|
|
62
|
-
PaypointLegalname
|
|
61
|
+
PaypointLegalname: Payabli.Legalname | null;
|
|
63
62
|
/** Source of the bill. */
|
|
64
|
-
Source
|
|
65
|
-
Status
|
|
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
|
|
66
|
+
Terms: Payabli.Terms | null;
|
|
68
67
|
/** Total amount of the bill including taxes and fees. */
|
|
69
|
-
TotalAmount
|
|
68
|
+
TotalAmount: number | null;
|
|
70
69
|
/** MoneyOut transaction associated to the bill. */
|
|
71
|
-
Transaction
|
|
72
|
-
Vendor
|
|
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:
|
|
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:
|
|
73
|
+
* DocumentsRef: null,
|
|
74
74
|
* DueDate: "2025-03-10",
|
|
75
|
-
* EndDate:
|
|
76
|
-
* EntityID:
|
|
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:
|
|
87
|
-
* PaymentMethod:
|
|
88
|
-
* paylinkId:
|
|
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:
|
|
96
|
+
* Transaction: null,
|
|
97
97
|
* Vendor: {
|
|
98
98
|
* Address1: "1234 Liberdad St.",
|
|
99
99
|
* Address2: "Suite 100",
|
|
@@ -26,7 +26,7 @@ import * as Payabli from "../index.mjs";
|
|
|
26
26
|
* totalAmount: 100
|
|
27
27
|
* }
|
|
28
28
|
* },
|
|
29
|
-
* PaymentId: "
|
|
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.
|
|
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.
|
|
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";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.0.
|
|
1
|
+
export declare const SDK_VERSION = "0.0.109";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "0.0.
|
|
1
|
+
export const SDK_VERSION = "0.0.109";
|