@keystrokehq/ramp 0.0.8 → 0.0.15
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/_official/index.d.mts +2 -7
- package/dist/_official/index.mjs +1 -1
- package/dist/accounting-fields.d.mts +7 -22
- package/dist/accounting-fields.mjs +1 -1
- package/dist/accounting-gl-accounts.d.mts +3 -10
- package/dist/accounting-gl-accounts.mjs +1 -1
- package/dist/accounting-subsidiaries.d.mts +3 -10
- package/dist/accounting-subsidiaries.mjs +1 -1
- package/dist/accounting-sync.d.mts +3 -10
- package/dist/accounting-sync.mjs +1 -1
- package/dist/accounting-tracking-categories.d.mts +2 -7
- package/dist/accounting-tracking-categories.mjs +1 -1
- package/dist/accounting-vendors.d.mts +3 -10
- package/dist/accounting-vendors.mjs +1 -1
- package/dist/applications.d.mts +8 -13
- package/dist/applications.mjs +1 -1
- package/dist/bills.d.mts +31 -46
- package/dist/bills.mjs +1 -1
- package/dist/business.d.mts +1 -4
- package/dist/business.mjs +1 -1
- package/dist/card-programs.d.mts +3 -10
- package/dist/card-programs.mjs +1 -1
- package/dist/cards.d.mts +9 -28
- package/dist/cards.mjs +1 -1
- package/dist/cashbacks.d.mts +2 -7
- package/dist/cashbacks.mjs +1 -1
- package/dist/client.d.mts +1 -1
- package/dist/client.mjs +1 -1
- package/dist/connection.d.mts +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/departments.d.mts +5 -16
- package/dist/departments.mjs +1 -1
- package/dist/entities.d.mts +2 -7
- package/dist/entities.mjs +1 -1
- package/dist/{factory-pbmCYnqr.mjs → factory-buRnGG7Q.mjs} +1 -1
- package/dist/{integration-8czEQ_pK.mjs → integration-BhMk85GK.mjs} +3 -11
- package/dist/{integration-D6jpX1pZ.d.mts → integration-DJ7sYLA2.d.mts} +2 -16
- package/dist/limits.d.mts +11 -22
- package/dist/limits.mjs +1 -1
- package/dist/locations.d.mts +5 -16
- package/dist/locations.mjs +1 -1
- package/dist/memos.d.mts +2 -7
- package/dist/memos.mjs +1 -1
- package/dist/purchase-orders.d.mts +8 -13
- package/dist/purchase-orders.mjs +1 -1
- package/dist/receipt-integrations.d.mts +2 -7
- package/dist/receipt-integrations.mjs +1 -1
- package/dist/receipts.d.mts +3 -10
- package/dist/receipts.mjs +1 -1
- package/dist/reimbursements.d.mts +8 -13
- package/dist/reimbursements.mjs +1 -1
- package/dist/schemas/index.d.mts +6 -6
- package/dist/spend-programs.d.mts +2 -7
- package/dist/spend-programs.mjs +1 -1
- package/dist/spend-requests.d.mts +6 -13
- package/dist/spend-requests.mjs +1 -1
- package/dist/statements.d.mts +2 -7
- package/dist/statements.mjs +1 -1
- package/dist/transactions.d.mts +13 -20
- package/dist/transactions.mjs +1 -1
- package/dist/transfers.d.mts +8 -13
- package/dist/transfers.mjs +1 -1
- package/dist/triggers/index.d.mts +2 -2
- package/dist/triggers/index.mjs +1 -1
- package/dist/unified-requests.d.mts +5 -10
- package/dist/unified-requests.mjs +1 -1
- package/dist/users.d.mts +6 -19
- package/dist/users.mjs +1 -1
- package/dist/vendor-bank-accounts.d.mts +5 -16
- package/dist/vendor-bank-accounts.mjs +1 -1
- package/dist/{vendors-oZvKUHvt.d.mts → vendors-gH-w9b_R.d.mts} +60 -60
- package/dist/vendors.d.mts +5 -16
- package/dist/vendors.mjs +1 -1
- package/dist/webhooks.d.mts +5 -16
- package/dist/webhooks.mjs +1 -1
- package/package.json +4 -4
package/dist/transfers.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as zod from "zod";
|
|
2
2
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
import * as zod_v4_core0 from "zod/v4/core";
|
|
5
4
|
|
|
6
5
|
//#region src/transfers.d.ts
|
|
@@ -8,10 +7,10 @@ declare const listTransfers: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
8
7
|
entity_id: zod.ZodOptional<zod.ZodString>;
|
|
9
8
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
10
9
|
PENDING: "PENDING";
|
|
11
|
-
CANCELED: "CANCELED";
|
|
12
10
|
PROCESSING: "PROCESSING";
|
|
13
|
-
|
|
11
|
+
CANCELED: "CANCELED";
|
|
14
12
|
FAILED: "FAILED";
|
|
13
|
+
COMPLETED: "COMPLETED";
|
|
15
14
|
}>>;
|
|
16
15
|
pageSize: zod.ZodOptional<zod.ZodNumber>;
|
|
17
16
|
cursor: zod.ZodOptional<zod.ZodString>;
|
|
@@ -24,10 +23,10 @@ declare const listTransfers: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
24
23
|
}, zod_v4_core0.$strip>>;
|
|
25
24
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
26
25
|
PENDING: "PENDING";
|
|
27
|
-
CANCELED: "CANCELED";
|
|
28
26
|
PROCESSING: "PROCESSING";
|
|
29
|
-
|
|
27
|
+
CANCELED: "CANCELED";
|
|
30
28
|
FAILED: "FAILED";
|
|
29
|
+
COMPLETED: "COMPLETED";
|
|
31
30
|
}>>;
|
|
32
31
|
created_at: zod.ZodOptional<zod.ZodString>;
|
|
33
32
|
settled_at: zod.ZodOptional<zod.ZodString>;
|
|
@@ -40,9 +39,7 @@ declare const listTransfers: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
40
39
|
}, zod_v4_core0.$strip>>;
|
|
41
40
|
}, zod_v4_core0.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", zod.ZodObject<{
|
|
42
41
|
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
43
|
-
}, zod_v4_core0.$strip
|
|
44
|
-
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
45
|
-
}, zod_v4_core0.$strip>>[] | undefined>], undefined>;
|
|
42
|
+
}, zod_v4_core0.$strip>>], undefined>;
|
|
46
43
|
declare const getTransfer: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
47
44
|
transferId: zod.ZodString;
|
|
48
45
|
}, zod_v4_core0.$strip>, zod.ZodObject<{
|
|
@@ -53,10 +50,10 @@ declare const getTransfer: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
53
50
|
}, zod_v4_core0.$strip>>;
|
|
54
51
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
55
52
|
PENDING: "PENDING";
|
|
56
|
-
CANCELED: "CANCELED";
|
|
57
53
|
PROCESSING: "PROCESSING";
|
|
58
|
-
|
|
54
|
+
CANCELED: "CANCELED";
|
|
59
55
|
FAILED: "FAILED";
|
|
56
|
+
COMPLETED: "COMPLETED";
|
|
60
57
|
}>>;
|
|
61
58
|
created_at: zod.ZodOptional<zod.ZodString>;
|
|
62
59
|
settled_at: zod.ZodOptional<zod.ZodString>;
|
|
@@ -65,8 +62,6 @@ declare const getTransfer: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
65
62
|
entity_id: zod.ZodOptional<zod.ZodString>;
|
|
66
63
|
}, zod_v4_core0.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", zod.ZodObject<{
|
|
67
64
|
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
68
|
-
}, zod_v4_core0.$strip
|
|
69
|
-
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
70
|
-
}, zod_v4_core0.$strip>>[] | undefined>], undefined>;
|
|
65
|
+
}, zod_v4_core0.$strip>>], undefined>;
|
|
71
66
|
//#endregion
|
|
72
67
|
export { getTransfer, listTransfers };
|
package/dist/transfers.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRampClient } from "./client.mjs";
|
|
2
2
|
import { a as rampTransferGetInputSchema, c as rampTransferSchema, o as rampTransferListInputSchema, s as rampTransferListSchema } from "./transfers-WBQZVdGP.mjs";
|
|
3
|
-
import { t as rampOperation } from "./factory-
|
|
3
|
+
import { t as rampOperation } from "./factory-buRnGG7Q.mjs";
|
|
4
4
|
import { t as omitUndefined } from "./shared-CTTtP5gv.mjs";
|
|
5
5
|
|
|
6
6
|
//#region src/transfers.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { i as ramp } from "../integration-
|
|
2
|
-
import { E as rampUserSchema, Ft as rampSpendRequestSchema, Kt as rampBillSchema, R as rampTransferSchema, W as rampTransactionSchema, X as rampReimbursementSchema, h as rampVendorSchema, it as rampApplicationSchema, lt as rampPurchaseOrderSchema, mt as rampUnifiedRequestSchema } from "../vendors-
|
|
1
|
+
import { i as ramp } from "../integration-DJ7sYLA2.mjs";
|
|
2
|
+
import { E as rampUserSchema, Ft as rampSpendRequestSchema, Kt as rampBillSchema, R as rampTransferSchema, W as rampTransactionSchema, X as rampReimbursementSchema, h as rampVendorSchema, it as rampApplicationSchema, lt as rampPurchaseOrderSchema, mt as rampUnifiedRequestSchema } from "../vendors-gH-w9b_R.mjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import { IntegrationTriggerBindingFactory } from "@keystrokehq/integration-authoring";
|
|
5
5
|
import { PollingTriggerManifest } from "@keystrokehq/core/trigger";
|
package/dist/triggers/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as ramp } from "../integration-
|
|
1
|
+
import { n as ramp } from "../integration-BhMk85GK.mjs";
|
|
2
2
|
import { createRampClient } from "../client.mjs";
|
|
3
3
|
import { l as rampBillSchema } from "../bills-B8W9et3K.mjs";
|
|
4
4
|
import { h as rampSpendRequestSchema } from "../business-CztnWUvt.mjs";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as zod from "zod";
|
|
2
2
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
import * as zod_v4_core0 from "zod/v4/core";
|
|
5
4
|
|
|
6
5
|
//#region src/unified-requests.d.ts
|
|
@@ -8,8 +7,8 @@ declare const listUnifiedRequests: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
8
7
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
9
8
|
PENDING: "PENDING";
|
|
10
9
|
APPROVED: "APPROVED";
|
|
11
|
-
DENIED: "DENIED";
|
|
12
10
|
CANCELED: "CANCELED";
|
|
11
|
+
DENIED: "DENIED";
|
|
13
12
|
FULFILLED: "FULFILLED";
|
|
14
13
|
}>>;
|
|
15
14
|
request_type: zod.ZodOptional<zod.ZodString>;
|
|
@@ -22,8 +21,8 @@ declare const listUnifiedRequests: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
22
21
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
23
22
|
PENDING: "PENDING";
|
|
24
23
|
APPROVED: "APPROVED";
|
|
25
|
-
DENIED: "DENIED";
|
|
26
24
|
CANCELED: "CANCELED";
|
|
25
|
+
DENIED: "DENIED";
|
|
27
26
|
FULFILLED: "FULFILLED";
|
|
28
27
|
}>>;
|
|
29
28
|
request_type: zod.ZodOptional<zod.ZodString>;
|
|
@@ -38,9 +37,7 @@ declare const listUnifiedRequests: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
38
37
|
}, zod_v4_core0.$strip>>;
|
|
39
38
|
}, zod_v4_core0.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", zod.ZodObject<{
|
|
40
39
|
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
41
|
-
}, zod_v4_core0.$strip
|
|
42
|
-
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
43
|
-
}, zod_v4_core0.$strip>>[] | undefined>], undefined>;
|
|
40
|
+
}, zod_v4_core0.$strip>>], undefined>;
|
|
44
41
|
declare const getUnifiedRequest: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
45
42
|
unifiedRequestId: zod.ZodString;
|
|
46
43
|
}, zod_v4_core0.$strip>, zod.ZodObject<{
|
|
@@ -48,8 +45,8 @@ declare const getUnifiedRequest: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
48
45
|
status: zod.ZodOptional<zod.ZodEnum<{
|
|
49
46
|
PENDING: "PENDING";
|
|
50
47
|
APPROVED: "APPROVED";
|
|
51
|
-
DENIED: "DENIED";
|
|
52
48
|
CANCELED: "CANCELED";
|
|
49
|
+
DENIED: "DENIED";
|
|
53
50
|
FULFILLED: "FULFILLED";
|
|
54
51
|
}>>;
|
|
55
52
|
request_type: zod.ZodOptional<zod.ZodString>;
|
|
@@ -60,8 +57,6 @@ declare const getUnifiedRequest: _keystrokehq_core0.Operation<zod.ZodObject<{
|
|
|
60
57
|
resource_type: zod.ZodOptional<zod.ZodString>;
|
|
61
58
|
}, zod_v4_core0.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", zod.ZodObject<{
|
|
62
59
|
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
63
|
-
}, zod_v4_core0.$strip
|
|
64
|
-
RAMP_ACCESS_TOKEN: zod.ZodString;
|
|
65
|
-
}, zod_v4_core0.$strip>>[] | undefined>], undefined>;
|
|
60
|
+
}, zod_v4_core0.$strip>>], undefined>;
|
|
66
61
|
//#endregion
|
|
67
62
|
export { getUnifiedRequest, listUnifiedRequests };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRampClient } from "./client.mjs";
|
|
2
2
|
import { d as rampUnifiedRequestGetInputSchema, f as rampUnifiedRequestListInputSchema, m as rampUnifiedRequestSchema, p as rampUnifiedRequestListSchema } from "./new-resources-BBJsJEjT.mjs";
|
|
3
|
-
import { t as rampOperation } from "./factory-
|
|
3
|
+
import { t as rampOperation } from "./factory-buRnGG7Q.mjs";
|
|
4
4
|
import { t as omitUndefined } from "./shared-CTTtP5gv.mjs";
|
|
5
5
|
|
|
6
6
|
//#region src/unified-requests.ts
|
package/dist/users.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/users.d.ts
|
|
6
5
|
declare const listUsers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -56,9 +55,7 @@ declare const listUsers: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
56
55
|
}, z.core.$strip>>;
|
|
57
56
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
58
57
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
59
|
-
}, z.core.$strip
|
|
60
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
61
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
58
|
+
}, z.core.$strip>>], undefined>;
|
|
62
59
|
declare const getUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
63
60
|
userId: z.ZodString;
|
|
64
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -92,9 +89,7 @@ declare const getUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
92
89
|
phone: z.ZodOptional<z.ZodString>;
|
|
93
90
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
94
91
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
95
|
-
}, z.core.$strip
|
|
96
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
97
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
92
|
+
}, z.core.$strip>>], undefined>;
|
|
98
93
|
declare const inviteUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
99
94
|
email: z.ZodString;
|
|
100
95
|
first_name: z.ZodString;
|
|
@@ -121,9 +116,7 @@ declare const inviteUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
121
116
|
created_at: z.ZodOptional<z.ZodString>;
|
|
122
117
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
123
118
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
124
|
-
}, z.core.$strip
|
|
125
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
126
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
119
|
+
}, z.core.$strip>>], undefined>;
|
|
127
120
|
declare const updateUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
128
121
|
userId: z.ZodString;
|
|
129
122
|
department_id: z.ZodOptional<z.ZodString>;
|
|
@@ -171,9 +164,7 @@ declare const updateUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
171
164
|
phone: z.ZodOptional<z.ZodString>;
|
|
172
165
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
173
166
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
174
|
-
}, z.core.$strip
|
|
175
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
176
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
167
|
+
}, z.core.$strip>>], undefined>;
|
|
177
168
|
declare const deactivateUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
178
169
|
userId: z.ZodString;
|
|
179
170
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -184,9 +175,7 @@ declare const deactivateUser: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
184
175
|
created_at: z.ZodOptional<z.ZodString>;
|
|
185
176
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
186
177
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
187
|
-
}, z.core.$strip
|
|
188
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
189
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
178
|
+
}, z.core.$strip>>], undefined>;
|
|
190
179
|
declare const getDeferredTask: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
191
180
|
taskId: z.ZodString;
|
|
192
181
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -197,8 +186,6 @@ declare const getDeferredTask: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
197
186
|
created_at: z.ZodOptional<z.ZodString>;
|
|
198
187
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
199
188
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
200
|
-
}, z.core.$strip
|
|
201
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
202
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
189
|
+
}, z.core.$strip>>], undefined>;
|
|
203
190
|
//#endregion
|
|
204
191
|
export { deactivateUser, getDeferredTask, getUser, inviteUser, listUsers, updateUser };
|
package/dist/users.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRampClient } from "./client.mjs";
|
|
2
2
|
import { a as rampUserListInputSchema, c as rampUserSchema, i as rampUserInviteInputSchema, n as rampUserDeactivateInputSchema, o as rampUserListSchema, r as rampUserGetInputSchema, t as rampDeferredTaskSchema, u as rampUserUpdateInputSchema } from "./users-ufcXrfNK.mjs";
|
|
3
|
-
import { t as rampOperation } from "./factory-
|
|
3
|
+
import { t as rampOperation } from "./factory-buRnGG7Q.mjs";
|
|
4
4
|
import { t as omitUndefined } from "./shared-CTTtP5gv.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
3
|
-
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
4
3
|
|
|
5
4
|
//#region src/vendor-bank-accounts.d.ts
|
|
6
5
|
declare const listVendorBankAccounts: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
@@ -26,9 +25,7 @@ declare const listVendorBankAccounts: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
26
25
|
}, z.core.$strip>>;
|
|
27
26
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
28
27
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
29
|
-
}, z.core.$strip
|
|
30
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
31
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
28
|
+
}, z.core.$strip>>], undefined>;
|
|
32
29
|
declare const getVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
33
30
|
vendorBankAccountId: z.ZodString;
|
|
34
31
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -45,9 +42,7 @@ declare const getVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
45
42
|
created_at: z.ZodOptional<z.ZodString>;
|
|
46
43
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
47
44
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
48
|
-
}, z.core.$strip
|
|
49
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
50
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
45
|
+
}, z.core.$strip>>], undefined>;
|
|
51
46
|
declare const createVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
52
47
|
vendor_id: z.ZodString;
|
|
53
48
|
account_name: z.ZodString;
|
|
@@ -73,9 +68,7 @@ declare const createVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
73
68
|
created_at: z.ZodOptional<z.ZodString>;
|
|
74
69
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
75
70
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
76
|
-
}, z.core.$strip
|
|
77
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
78
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
71
|
+
}, z.core.$strip>>], undefined>;
|
|
79
72
|
declare const updateVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
80
73
|
vendorBankAccountId: z.ZodString;
|
|
81
74
|
account_name: z.ZodOptional<z.ZodString>;
|
|
@@ -94,17 +87,13 @@ declare const updateVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
94
87
|
created_at: z.ZodOptional<z.ZodString>;
|
|
95
88
|
}, z.core.$loose>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
96
89
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
97
|
-
}, z.core.$strip
|
|
98
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
99
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
90
|
+
}, z.core.$strip>>], undefined>;
|
|
100
91
|
declare const deleteVendorBankAccount: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
101
92
|
vendorBankAccountId: z.ZodString;
|
|
102
93
|
}, z.core.$strip>, z.ZodObject<{
|
|
103
94
|
success: z.ZodBoolean;
|
|
104
95
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:ramp", z.ZodObject<{
|
|
105
96
|
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
106
|
-
}, z.core.$strip
|
|
107
|
-
RAMP_ACCESS_TOKEN: z.ZodString;
|
|
108
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
97
|
+
}, z.core.$strip>>], undefined>;
|
|
109
98
|
//#endregion
|
|
110
99
|
export { createVendorBankAccount, deleteVendorBankAccount, getVendorBankAccount, listVendorBankAccounts, updateVendorBankAccount };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRampClient } from "./client.mjs";
|
|
2
2
|
import { a as rampVendorBankAccountListSchema, i as rampVendorBankAccountListInputSchema, n as rampVendorBankAccountDeleteInputSchema, o as rampVendorBankAccountSchema, r as rampVendorBankAccountGetInputSchema, s as rampVendorBankAccountUpdateInputSchema, t as rampVendorBankAccountCreateInputSchema } from "./vendors-Bx1cgXwC.mjs";
|
|
3
|
-
import { t as rampOperation } from "./factory-
|
|
3
|
+
import { t as rampOperation } from "./factory-buRnGG7Q.mjs";
|
|
4
4
|
import { t as omitUndefined } from "./shared-CTTtP5gv.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|