@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.
Files changed (63) hide show
  1. package/dist/actions/create-expense.d.cts +13 -1
  2. package/dist/actions/create-expense.d.mts +13 -1
  3. package/dist/actions/create-invoice.d.cts +13 -1
  4. package/dist/actions/create-invoice.d.mts +13 -1
  5. package/dist/actions/delete-customer.d.cts +13 -1
  6. package/dist/actions/delete-customer.d.mts +13 -1
  7. package/dist/actions/delete-invoice.d.cts +13 -1
  8. package/dist/actions/delete-invoice.d.mts +13 -1
  9. package/dist/actions/delete-payment.d.cts +13 -1
  10. package/dist/actions/delete-payment.d.mts +13 -1
  11. package/dist/actions/delete-product.d.cts +13 -1
  12. package/dist/actions/delete-product.d.mts +13 -1
  13. package/dist/actions/download-expense-file.d.cts +13 -1
  14. package/dist/actions/download-expense-file.d.mts +13 -1
  15. package/dist/actions/download-invoice-pdf.d.cts +13 -1
  16. package/dist/actions/download-invoice-pdf.d.mts +13 -1
  17. package/dist/actions/get-expense.d.cts +13 -1
  18. package/dist/actions/get-expense.d.mts +13 -1
  19. package/dist/actions/get-invoice.d.cts +13 -1
  20. package/dist/actions/get-invoice.d.mts +13 -1
  21. package/dist/actions/get-payment.d.cts +13 -1
  22. package/dist/actions/get-payment.d.mts +13 -1
  23. package/dist/actions/get-product.d.cts +13 -1
  24. package/dist/actions/get-product.d.mts +13 -1
  25. package/dist/actions/get-profile.d.cts +13 -1
  26. package/dist/actions/get-profile.d.cts.map +1 -1
  27. package/dist/actions/get-profile.d.mts +13 -1
  28. package/dist/actions/get-profile.d.mts.map +1 -1
  29. package/dist/actions/list-currencies.d.cts +13 -1
  30. package/dist/actions/list-currencies.d.cts.map +1 -1
  31. package/dist/actions/list-currencies.d.mts +13 -1
  32. package/dist/actions/list-currencies.d.mts.map +1 -1
  33. package/dist/actions/list-customers.d.cts +13 -1
  34. package/dist/actions/list-customers.d.mts +13 -1
  35. package/dist/actions/list-expenses.d.cts +13 -1
  36. package/dist/actions/list-expenses.d.mts +13 -1
  37. package/dist/actions/list-invoices.d.cts +13 -1
  38. package/dist/actions/list-invoices.d.mts +13 -1
  39. package/dist/actions/list-payments.d.cts +13 -1
  40. package/dist/actions/list-payments.d.mts +13 -1
  41. package/dist/actions/list-products.d.cts +13 -1
  42. package/dist/actions/list-products.d.mts +13 -1
  43. package/dist/actions/update-customer.d.cts +13 -1
  44. package/dist/actions/update-customer.d.cts.map +1 -1
  45. package/dist/actions/update-customer.d.mts +13 -1
  46. package/dist/actions/update-customer.d.mts.map +1 -1
  47. package/dist/actions/update-expense-file.d.cts +13 -1
  48. package/dist/actions/update-expense-file.d.mts +13 -1
  49. package/dist/actions/update-expense.d.cts +13 -1
  50. package/dist/actions/update-expense.d.mts +13 -1
  51. package/dist/actions/update-invoice.d.cts +13 -1
  52. package/dist/actions/update-invoice.d.mts +13 -1
  53. package/dist/actions/update-product.d.cts +13 -1
  54. package/dist/actions/update-product.d.mts +13 -1
  55. package/dist/app.cjs +5 -2
  56. package/dist/app.cjs.map +1 -1
  57. package/dist/app.d.cts +9 -1
  58. package/dist/app.d.cts.map +1 -1
  59. package/dist/app.d.mts +9 -1
  60. package/dist/app.d.mts.map +1 -1
  61. package/dist/app.mjs +3 -1
  62. package/dist/app.mjs.map +1 -1
  63. package/package.json +1 -1
@@ -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]>, 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.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-currencies.d.mts","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,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-currencies.d.mts","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"}
@@ -29,7 +29,19 @@ declare const finmeiListCustomers: import("@keystrokehq/action").WorkflowActionD
29
29
  sort?: string | undefined;
30
30
  search?: string | undefined;
31
31
  per_page?: number | undefined;
32
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
32
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>;
33
45
  //#endregion
34
46
  export { finmeiListCustomers };
35
47
  //# sourceMappingURL=list-customers.d.cts.map
@@ -29,7 +29,19 @@ declare const finmeiListCustomers: import("@keystrokehq/action").WorkflowActionD
29
29
  sort?: string | undefined;
30
30
  search?: string | undefined;
31
31
  per_page?: number | undefined;
32
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
32
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>;
33
45
  //#endregion
34
46
  export { finmeiListCustomers };
35
47
  //# sourceMappingURL=list-customers.d.mts.map
@@ -28,7 +28,19 @@ declare const FinmeiListExpensesOutput: z.ZodObject<{
28
28
  declare const finmeiListExpenses: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  page?: number | undefined;
30
30
  per_page?: number | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { finmeiListExpenses };
34
46
  //# sourceMappingURL=list-expenses.d.cts.map
@@ -28,7 +28,19 @@ declare const FinmeiListExpensesOutput: z.ZodObject<{
28
28
  declare const finmeiListExpenses: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  page?: number | undefined;
30
30
  per_page?: number | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { finmeiListExpenses };
34
46
  //# sourceMappingURL=list-expenses.d.mts.map
@@ -71,7 +71,19 @@ declare const FinmeiListInvoicesOutput: z.ZodObject<{
71
71
  declare const finmeiListInvoices: import("@keystrokehq/action").WorkflowActionDefinition<{
72
72
  page?: number | undefined;
73
73
  per_page?: number | undefined;
74
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
74
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
75
+ connectionId: z.ZodString;
76
+ entityId: z.ZodString;
77
+ instanceId: z.ZodString;
78
+ }, z.core.$strip>, z.ZodObject<{
79
+ generic_api_key: z.ZodString;
80
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
81
+ connectionId: z.ZodString;
82
+ entityId: z.ZodString;
83
+ instanceId: z.ZodString;
84
+ }, z.core.$strip>, z.ZodObject<{
85
+ generic_api_key: z.ZodString;
86
+ }, z.core.$strip>>]>;
75
87
  //#endregion
76
88
  export { finmeiListInvoices };
77
89
  //# sourceMappingURL=list-invoices.d.cts.map
@@ -71,7 +71,19 @@ declare const FinmeiListInvoicesOutput: z.ZodObject<{
71
71
  declare const finmeiListInvoices: import("@keystrokehq/action").WorkflowActionDefinition<{
72
72
  page?: number | undefined;
73
73
  per_page?: number | undefined;
74
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
74
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
75
+ connectionId: z.ZodString;
76
+ entityId: z.ZodString;
77
+ instanceId: z.ZodString;
78
+ }, z.core.$strip>, z.ZodObject<{
79
+ generic_api_key: z.ZodString;
80
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
81
+ connectionId: z.ZodString;
82
+ entityId: z.ZodString;
83
+ instanceId: z.ZodString;
84
+ }, z.core.$strip>, z.ZodObject<{
85
+ generic_api_key: z.ZodString;
86
+ }, z.core.$strip>>]>;
75
87
  //#endregion
76
88
  export { finmeiListInvoices };
77
89
  //# sourceMappingURL=list-invoices.d.mts.map
@@ -34,7 +34,19 @@ declare const finmeiListPayments: import("@keystrokehq/action").WorkflowActionDe
34
34
  status?: "pending" | "completed" | "failed" | undefined;
35
35
  end_date?: string | undefined;
36
36
  start_date?: string | undefined;
37
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
37
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ generic_api_key: z.ZodString;
49
+ }, z.core.$strip>>]>;
38
50
  //#endregion
39
51
  export { finmeiListPayments };
40
52
  //# sourceMappingURL=list-payments.d.cts.map
@@ -34,7 +34,19 @@ declare const finmeiListPayments: import("@keystrokehq/action").WorkflowActionDe
34
34
  status?: "pending" | "completed" | "failed" | undefined;
35
35
  end_date?: string | undefined;
36
36
  start_date?: string | undefined;
37
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
37
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ generic_api_key: z.ZodString;
49
+ }, z.core.$strip>>]>;
38
50
  //#endregion
39
51
  export { finmeiListPayments };
40
52
  //# sourceMappingURL=list-payments.d.mts.map
@@ -35,7 +35,19 @@ declare const finmeiListProducts: import("@keystrokehq/action").WorkflowActionDe
35
35
  page?: number | undefined;
36
36
  status?: "active" | "inactive" | undefined;
37
37
  per_page?: number | undefined;
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { finmeiListProducts };
41
53
  //# sourceMappingURL=list-products.d.cts.map
@@ -35,7 +35,19 @@ declare const finmeiListProducts: import("@keystrokehq/action").WorkflowActionDe
35
35
  page?: number | undefined;
36
36
  status?: "active" | "inactive" | undefined;
37
37
  per_page?: number | undefined;
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { finmeiListProducts };
41
53
  //# sourceMappingURL=list-products.d.mts.map
@@ -46,7 +46,19 @@ declare const finmeiUpdateCustomer: import("@keystrokehq/action").WorkflowAction
46
46
  postal_code?: string | undefined;
47
47
  } | undefined;
48
48
  metadata?: Record<string, unknown> | undefined;
49
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
49
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
50
+ connectionId: z.ZodString;
51
+ entityId: z.ZodString;
52
+ instanceId: z.ZodString;
53
+ }, z.core.$strip>, z.ZodObject<{
54
+ generic_api_key: z.ZodString;
55
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
56
+ connectionId: z.ZodString;
57
+ entityId: z.ZodString;
58
+ instanceId: z.ZodString;
59
+ }, z.core.$strip>, z.ZodObject<{
60
+ generic_api_key: z.ZodString;
61
+ }, z.core.$strip>>]>;
50
62
  //#endregion
51
63
  export { finmeiUpdateCustomer };
52
64
  //# sourceMappingURL=update-customer.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-customer.d.cts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cA+BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA;;;;;;;;;;;;aAM/B,MAAA;AAAA"}
1
+ {"version":3,"file":"update-customer.d.cts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cA+BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA"}
@@ -46,7 +46,19 @@ declare const finmeiUpdateCustomer: import("@keystrokehq/action").WorkflowAction
46
46
  postal_code?: string | undefined;
47
47
  } | undefined;
48
48
  metadata?: Record<string, unknown> | undefined;
49
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
49
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
50
+ connectionId: z.ZodString;
51
+ entityId: z.ZodString;
52
+ instanceId: z.ZodString;
53
+ }, z.core.$strip>, z.ZodObject<{
54
+ generic_api_key: z.ZodString;
55
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
56
+ connectionId: z.ZodString;
57
+ entityId: z.ZodString;
58
+ instanceId: z.ZodString;
59
+ }, z.core.$strip>, z.ZodObject<{
60
+ generic_api_key: z.ZodString;
61
+ }, z.core.$strip>>]>;
50
62
  //#endregion
51
63
  export { finmeiUpdateCustomer };
52
64
  //# sourceMappingURL=update-customer.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-customer.d.mts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cA+BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA;;;;;;;;;;;;aAM/B,MAAA;AAAA"}
1
+ {"version":3,"file":"update-customer.d.mts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cA+BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAI1B,oBAAA,gCAAoB,wBAAA"}
@@ -23,7 +23,19 @@ declare const finmeiUpdateExpenseFile: import("@keystrokehq/action").WorkflowAct
23
23
  s3key: string;
24
24
  mimetype: string;
25
25
  };
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateExpenseFile };
29
41
  //# sourceMappingURL=update-expense-file.d.cts.map
@@ -23,7 +23,19 @@ declare const finmeiUpdateExpenseFile: import("@keystrokehq/action").WorkflowAct
23
23
  s3key: string;
24
24
  mimetype: string;
25
25
  };
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateExpenseFile };
29
41
  //# sourceMappingURL=update-expense-file.d.mts.map
@@ -23,7 +23,19 @@ declare const finmeiUpdateExpense: import("@keystrokehq/action").WorkflowActionD
23
23
  total: number;
24
24
  seller: string;
25
25
  currency: string;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateExpense };
29
41
  //# sourceMappingURL=update-expense.d.cts.map
@@ -23,7 +23,19 @@ declare const finmeiUpdateExpense: import("@keystrokehq/action").WorkflowActionD
23
23
  total: number;
24
24
  seller: string;
25
25
  currency: string;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateExpense };
29
41
  //# sourceMappingURL=update-expense.d.mts.map
@@ -148,7 +148,19 @@ declare const finmeiUpdateInvoice: import("@keystrokehq/action").WorkflowActionD
148
148
  invoice_date?: string | undefined;
149
149
  pay_until_date?: string | undefined;
150
150
  use_default_seller_info?: boolean | undefined;
151
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
151
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
152
+ connectionId: z.ZodString;
153
+ entityId: z.ZodString;
154
+ instanceId: z.ZodString;
155
+ }, z.core.$strip>, z.ZodObject<{
156
+ generic_api_key: z.ZodString;
157
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
158
+ connectionId: z.ZodString;
159
+ entityId: z.ZodString;
160
+ instanceId: z.ZodString;
161
+ }, z.core.$strip>, z.ZodObject<{
162
+ generic_api_key: z.ZodString;
163
+ }, z.core.$strip>>]>;
152
164
  //#endregion
153
165
  export { finmeiUpdateInvoice };
154
166
  //# sourceMappingURL=update-invoice.d.cts.map
@@ -148,7 +148,19 @@ declare const finmeiUpdateInvoice: import("@keystrokehq/action").WorkflowActionD
148
148
  invoice_date?: string | undefined;
149
149
  pay_until_date?: string | undefined;
150
150
  use_default_seller_info?: boolean | undefined;
151
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
151
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
152
+ connectionId: z.ZodString;
153
+ entityId: z.ZodString;
154
+ instanceId: z.ZodString;
155
+ }, z.core.$strip>, z.ZodObject<{
156
+ generic_api_key: z.ZodString;
157
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
158
+ connectionId: z.ZodString;
159
+ entityId: z.ZodString;
160
+ instanceId: z.ZodString;
161
+ }, z.core.$strip>, z.ZodObject<{
162
+ generic_api_key: z.ZodString;
163
+ }, z.core.$strip>>]>;
152
164
  //#endregion
153
165
  export { finmeiUpdateInvoice };
154
166
  //# sourceMappingURL=update-invoice.d.mts.map
@@ -23,7 +23,19 @@ declare const finmeiUpdateProduct: import("@keystrokehq/action").WorkflowActionD
23
23
  price?: number | undefined;
24
24
  currency?: string | undefined;
25
25
  description?: string | undefined;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateProduct };
29
41
  //# sourceMappingURL=update-product.d.cts.map
@@ -23,7 +23,19 @@ declare const finmeiUpdateProduct: import("@keystrokehq/action").WorkflowActionD
23
23
  price?: number | undefined;
24
24
  currency?: string | undefined;
25
25
  description?: string | undefined;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ generic_api_key: z.ZodString;
38
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { finmeiUpdateProduct };
29
41
  //# sourceMappingURL=update-product.d.mts.map
package/dist/app.cjs CHANGED
@@ -1,7 +1,10 @@
1
+ let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
2
+ let zod = require("zod");
1
3
  //#region src/app.ts
2
- const finmei = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const finmei = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "finmei",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.finmei = finmei;
package/dist/app.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const finmei = defineApp({\n slug: \"finmei\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,UAAA,uCAAA,CAAA,CAAA,UAAA,CAAmB;CAC9B,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const finmei = defineApp({\n slug: \"finmei\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAA,GAAA,2BAAA,UAAA,CAAmB;CAC9B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/app.d.cts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const finmei: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const finmei: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ generic_api_key: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { finmei };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,MAAA,6BAAM,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,MAAA,6BAAM,GAAA,+BAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
package/dist/app.d.mts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const finmei: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const finmei: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"finmei", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ generic_api_key: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { finmei };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,MAAA,6BAAM,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,MAAA,6BAAM,GAAA,+BAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
package/dist/app.mjs CHANGED
@@ -1,8 +1,10 @@
1
1
  import { defineApp } from "@keystrokehq/keystroke/app";
2
+ import { z } from "zod";
2
3
  //#region src/app.ts
3
4
  const finmei = defineApp({
4
5
  slug: "finmei",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { finmei };
package/dist/app.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const finmei = defineApp({\n slug: \"finmei\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,SAAS,UAAU;CAC9B,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const finmei = defineApp({\n slug: \"finmei\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,SAAS,UAAU;CAC9B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/finmei",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"