@keystrokehq/finmei 0.1.4 → 0.1.5
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/actions/create-expense.d.cts +13 -1
- package/dist/actions/create-expense.d.mts +13 -1
- package/dist/actions/create-invoice.d.cts +13 -1
- package/dist/actions/create-invoice.d.mts +13 -1
- package/dist/actions/delete-customer.d.cts +13 -1
- package/dist/actions/delete-customer.d.mts +13 -1
- package/dist/actions/delete-invoice.d.cts +13 -1
- package/dist/actions/delete-invoice.d.mts +13 -1
- package/dist/actions/delete-payment.d.cts +13 -1
- package/dist/actions/delete-payment.d.mts +13 -1
- package/dist/actions/delete-product.d.cts +13 -1
- package/dist/actions/delete-product.d.mts +13 -1
- package/dist/actions/download-expense-file.d.cts +13 -1
- package/dist/actions/download-expense-file.d.mts +13 -1
- package/dist/actions/download-invoice-pdf.d.cts +13 -1
- package/dist/actions/download-invoice-pdf.d.mts +13 -1
- package/dist/actions/get-expense.d.cts +13 -1
- package/dist/actions/get-expense.d.mts +13 -1
- package/dist/actions/get-invoice.d.cts +13 -1
- package/dist/actions/get-invoice.d.mts +13 -1
- package/dist/actions/get-payment.d.cts +13 -1
- package/dist/actions/get-payment.d.mts +13 -1
- package/dist/actions/get-product.d.cts +13 -1
- package/dist/actions/get-product.d.mts +13 -1
- package/dist/actions/get-profile.d.cts +13 -1
- package/dist/actions/get-profile.d.cts.map +1 -1
- package/dist/actions/get-profile.d.mts +13 -1
- package/dist/actions/get-profile.d.mts.map +1 -1
- package/dist/actions/list-currencies.d.cts +13 -1
- package/dist/actions/list-currencies.d.cts.map +1 -1
- package/dist/actions/list-currencies.d.mts +13 -1
- package/dist/actions/list-currencies.d.mts.map +1 -1
- package/dist/actions/list-customers.d.cts +13 -1
- package/dist/actions/list-customers.d.mts +13 -1
- package/dist/actions/list-expenses.d.cts +13 -1
- package/dist/actions/list-expenses.d.mts +13 -1
- package/dist/actions/list-invoices.d.cts +13 -1
- package/dist/actions/list-invoices.d.mts +13 -1
- package/dist/actions/list-payments.d.cts +13 -1
- package/dist/actions/list-payments.d.mts +13 -1
- package/dist/actions/list-products.d.cts +13 -1
- package/dist/actions/list-products.d.mts +13 -1
- package/dist/actions/update-customer.d.cts +13 -1
- package/dist/actions/update-customer.d.cts.map +1 -1
- package/dist/actions/update-customer.d.mts +13 -1
- package/dist/actions/update-customer.d.mts.map +1 -1
- package/dist/actions/update-expense-file.d.cts +13 -1
- package/dist/actions/update-expense-file.d.mts +13 -1
- package/dist/actions/update-expense.d.cts +13 -1
- package/dist/actions/update-expense.d.mts +13 -1
- package/dist/actions/update-invoice.d.cts +13 -1
- package/dist/actions/update-invoice.d.mts +13 -1
- package/dist/actions/update-product.d.cts +13 -1
- package/dist/actions/update-product.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -33,7 +33,19 @@ declare const finmeiCreateExpense: import("@keystrokehq/action").WorkflowActionD
|
|
|
33
33
|
total: number;
|
|
34
34
|
seller: string;
|
|
35
35
|
currency: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { finmeiCreateExpense };
|
|
39
51
|
//# sourceMappingURL=create-expense.d.cts.map
|
|
@@ -33,7 +33,19 @@ declare const finmeiCreateExpense: import("@keystrokehq/action").WorkflowActionD
|
|
|
33
33
|
total: number;
|
|
34
34
|
seller: string;
|
|
35
35
|
currency: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { finmeiCreateExpense };
|
|
39
51
|
//# sourceMappingURL=create-expense.d.mts.map
|
|
@@ -168,7 +168,19 @@ declare const finmeiCreateInvoice: import("@keystrokehq/action").WorkflowActionD
|
|
|
168
168
|
customer_id?: string | undefined;
|
|
169
169
|
invoice_date?: string | undefined;
|
|
170
170
|
use_default_seller_info?: boolean | undefined;
|
|
171
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
171
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
172
|
+
connectionId: z.ZodString;
|
|
173
|
+
entityId: z.ZodString;
|
|
174
|
+
instanceId: z.ZodString;
|
|
175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
176
|
+
generic_api_key: z.ZodString;
|
|
177
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
178
|
+
connectionId: z.ZodString;
|
|
179
|
+
entityId: z.ZodString;
|
|
180
|
+
instanceId: z.ZodString;
|
|
181
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
182
|
+
generic_api_key: z.ZodString;
|
|
183
|
+
}, z.core.$strip>>]>;
|
|
172
184
|
//#endregion
|
|
173
185
|
export { finmeiCreateInvoice };
|
|
174
186
|
//# sourceMappingURL=create-invoice.d.cts.map
|
|
@@ -168,7 +168,19 @@ declare const finmeiCreateInvoice: import("@keystrokehq/action").WorkflowActionD
|
|
|
168
168
|
customer_id?: string | undefined;
|
|
169
169
|
invoice_date?: string | undefined;
|
|
170
170
|
use_default_seller_info?: boolean | undefined;
|
|
171
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
171
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
172
|
+
connectionId: z.ZodString;
|
|
173
|
+
entityId: z.ZodString;
|
|
174
|
+
instanceId: z.ZodString;
|
|
175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
176
|
+
generic_api_key: z.ZodString;
|
|
177
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
178
|
+
connectionId: z.ZodString;
|
|
179
|
+
entityId: z.ZodString;
|
|
180
|
+
instanceId: z.ZodString;
|
|
181
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
182
|
+
generic_api_key: z.ZodString;
|
|
183
|
+
}, z.core.$strip>>]>;
|
|
172
184
|
//#endregion
|
|
173
185
|
export { finmeiCreateInvoice };
|
|
174
186
|
//# sourceMappingURL=create-invoice.d.mts.map
|
|
@@ -7,7 +7,19 @@ declare const FinmeiDeleteCustomerInput: z.ZodObject<{
|
|
|
7
7
|
declare const FinmeiDeleteCustomerOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const finmeiDeleteCustomer: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
customer_id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
generic_api_key: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { finmeiDeleteCustomer };
|
|
13
25
|
//# sourceMappingURL=delete-customer.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const FinmeiDeleteCustomerInput: z.ZodObject<{
|
|
|
7
7
|
declare const FinmeiDeleteCustomerOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const finmeiDeleteCustomer: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
customer_id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
generic_api_key: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { finmeiDeleteCustomer };
|
|
13
25
|
//# sourceMappingURL=delete-customer.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const FinmeiDeleteInvoiceOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const finmeiDeleteInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
invoice_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { finmeiDeleteInvoice };
|
|
16
28
|
//# sourceMappingURL=delete-invoice.d.cts.map
|
|
@@ -10,7 +10,19 @@ declare const FinmeiDeleteInvoiceOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const finmeiDeleteInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
invoice_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { finmeiDeleteInvoice };
|
|
16
28
|
//# sourceMappingURL=delete-invoice.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const FinmeiDeletePaymentOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const finmeiDeletePayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
payment_id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { finmeiDeletePayment };
|
|
15
27
|
//# sourceMappingURL=delete-payment.d.cts.map
|
|
@@ -9,7 +9,19 @@ declare const FinmeiDeletePaymentOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const finmeiDeletePayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
payment_id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { finmeiDeletePayment };
|
|
15
27
|
//# sourceMappingURL=delete-payment.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const FinmeiDeleteProductOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const finmeiDeleteProduct: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
product_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { finmeiDeleteProduct };
|
|
16
28
|
//# sourceMappingURL=delete-product.d.cts.map
|
|
@@ -10,7 +10,19 @@ declare const FinmeiDeleteProductOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const finmeiDeleteProduct: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
product_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { finmeiDeleteProduct };
|
|
16
28
|
//# sourceMappingURL=delete-product.d.mts.map
|
|
@@ -13,7 +13,19 @@ declare const FinmeiDownloadExpenseFileOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const finmeiDownloadExpenseFile: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiDownloadExpenseFile };
|
|
19
31
|
//# sourceMappingURL=download-expense-file.d.cts.map
|
|
@@ -13,7 +13,19 @@ declare const FinmeiDownloadExpenseFileOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const finmeiDownloadExpenseFile: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiDownloadExpenseFile };
|
|
19
31
|
//# sourceMappingURL=download-expense-file.d.mts.map
|
|
@@ -13,7 +13,19 @@ declare const FinmeiDownloadInvoicePdfOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const finmeiDownloadInvoicePdf: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
invoice_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiDownloadInvoicePdf };
|
|
19
31
|
//# sourceMappingURL=download-invoice-pdf.d.cts.map
|
|
@@ -13,7 +13,19 @@ declare const FinmeiDownloadInvoicePdfOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const finmeiDownloadInvoicePdf: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
invoice_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiDownloadInvoicePdf };
|
|
19
31
|
//# sourceMappingURL=download-invoice-pdf.d.mts.map
|
|
@@ -17,7 +17,19 @@ declare const FinmeiGetExpenseOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const finmeiGetExpense: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
id: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { finmeiGetExpense };
|
|
23
35
|
//# sourceMappingURL=get-expense.d.cts.map
|
|
@@ -17,7 +17,19 @@ declare const FinmeiGetExpenseOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const finmeiGetExpense: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
id: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { finmeiGetExpense };
|
|
23
35
|
//# sourceMappingURL=get-expense.d.mts.map
|
|
@@ -58,7 +58,19 @@ declare const FinmeiGetInvoiceOutput: z.ZodObject<{
|
|
|
58
58
|
}, z.core.$loose>;
|
|
59
59
|
declare const finmeiGetInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
60
60
|
id: string;
|
|
61
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
61
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
62
|
+
connectionId: z.ZodString;
|
|
63
|
+
entityId: z.ZodString;
|
|
64
|
+
instanceId: z.ZodString;
|
|
65
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
66
|
+
generic_api_key: z.ZodString;
|
|
67
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
68
|
+
connectionId: z.ZodString;
|
|
69
|
+
entityId: z.ZodString;
|
|
70
|
+
instanceId: z.ZodString;
|
|
71
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
72
|
+
generic_api_key: z.ZodString;
|
|
73
|
+
}, z.core.$strip>>]>;
|
|
62
74
|
//#endregion
|
|
63
75
|
export { finmeiGetInvoice };
|
|
64
76
|
//# sourceMappingURL=get-invoice.d.cts.map
|
|
@@ -58,7 +58,19 @@ declare const FinmeiGetInvoiceOutput: z.ZodObject<{
|
|
|
58
58
|
}, z.core.$loose>;
|
|
59
59
|
declare const finmeiGetInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
60
60
|
id: string;
|
|
61
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
61
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
62
|
+
connectionId: z.ZodString;
|
|
63
|
+
entityId: z.ZodString;
|
|
64
|
+
instanceId: z.ZodString;
|
|
65
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
66
|
+
generic_api_key: z.ZodString;
|
|
67
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
68
|
+
connectionId: z.ZodString;
|
|
69
|
+
entityId: z.ZodString;
|
|
70
|
+
instanceId: z.ZodString;
|
|
71
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
72
|
+
generic_api_key: z.ZodString;
|
|
73
|
+
}, z.core.$strip>>]>;
|
|
62
74
|
//#endregion
|
|
63
75
|
export { finmeiGetInvoice };
|
|
64
76
|
//# sourceMappingURL=get-invoice.d.mts.map
|
|
@@ -17,7 +17,19 @@ declare const FinmeiGetPaymentOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const finmeiGetPayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
payment_id: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { finmeiGetPayment };
|
|
23
35
|
//# sourceMappingURL=get-payment.d.cts.map
|
|
@@ -17,7 +17,19 @@ declare const FinmeiGetPaymentOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const finmeiGetPayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
payment_id: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { finmeiGetPayment };
|
|
23
35
|
//# sourceMappingURL=get-payment.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const FinmeiGetProductOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const finmeiGetProduct: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
product_id: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { finmeiGetProduct };
|
|
21
33
|
//# sourceMappingURL=get-product.d.cts.map
|
|
@@ -15,7 +15,19 @@ declare const FinmeiGetProductOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const finmeiGetProduct: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
product_id: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { finmeiGetProduct };
|
|
21
33
|
//# sourceMappingURL=get-product.d.mts.map
|
|
@@ -13,7 +13,19 @@ declare const FinmeiGetProfileOutput: z.ZodObject<{
|
|
|
13
13
|
business_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
}, z.core.$loose>>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
|
-
declare const finmeiGetProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
declare const finmeiGetProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiGetProfile };
|
|
19
31
|
//# sourceMappingURL=get-profile.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-profile.d.cts","names":[],"sources":["../../src/actions/get-profile.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAUrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-profile.d.cts","names":[],"sources":["../../src/actions/get-profile.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAUrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -13,7 +13,19 @@ declare const FinmeiGetProfileOutput: z.ZodObject<{
|
|
|
13
13
|
business_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
}, z.core.$loose>>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
|
-
declare const finmeiGetProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
declare const finmeiGetProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { finmeiGetProfile };
|
|
19
31
|
//# sourceMappingURL=get-profile.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-profile.d.mts","names":[],"sources":["../../src/actions/get-profile.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAUrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-profile.d.mts","names":[],"sources":["../../src/actions/get-profile.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAUrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -9,7 +9,19 @@ declare const FinmeiListCurrenciesOutput: z.ZodObject<{
|
|
|
9
9
|
symbol: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const finmeiListCurrencies: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const finmeiListCurrencies: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { finmeiListCurrencies };
|
|
15
27
|
//# sourceMappingURL=list-currencies.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-currencies.d.cts","names":[],"sources":["../../src/actions/list-currencies.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-currencies.d.cts","names":[],"sources":["../../src/actions/list-currencies.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|