@keystrokehq/piggy 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 (41) hide show
  1. package/dist/actions/claim-anonymous-contact.d.cts +13 -1
  2. package/dist/actions/claim-anonymous-contact.d.mts +13 -1
  3. package/dist/actions/create-contact-attribute.d.cts +13 -1
  4. package/dist/actions/create-contact-attribute.d.mts +13 -1
  5. package/dist/actions/create-credit-reception.d.cts +13 -1
  6. package/dist/actions/create-credit-reception.d.mts +13 -1
  7. package/dist/actions/create-vouchers-batch.d.cts +13 -1
  8. package/dist/actions/create-vouchers-batch.d.mts +13 -1
  9. package/dist/actions/find-or-create-products.d.cts +13 -1
  10. package/dist/actions/find-or-create-products.d.mts +13 -1
  11. package/dist/actions/find-voucher-by-code.d.cts +13 -1
  12. package/dist/actions/find-voucher-by-code.d.mts +13 -1
  13. package/dist/actions/get-contact-auth-token.d.cts +13 -1
  14. package/dist/actions/get-contact-auth-token.d.mts +13 -1
  15. package/dist/actions/get-contacts-credit-balance.d.cts +13 -1
  16. package/dist/actions/get-contacts-credit-balance.d.mts +13 -1
  17. package/dist/actions/list-forms.d.cts +13 -1
  18. package/dist/actions/list-forms.d.cts.map +1 -1
  19. package/dist/actions/list-forms.d.mts +13 -1
  20. package/dist/actions/list-forms.d.mts.map +1 -1
  21. package/dist/actions/list-perks.d.cts +13 -1
  22. package/dist/actions/list-perks.d.cts.map +1 -1
  23. package/dist/actions/list-perks.d.mts +13 -1
  24. package/dist/actions/list-perks.d.mts.map +1 -1
  25. package/dist/actions/merge-contacts.d.cts +13 -1
  26. package/dist/actions/merge-contacts.d.mts +13 -1
  27. package/dist/actions/send-contact-verification-email.d.cts +13 -1
  28. package/dist/actions/send-contact-verification-email.d.mts +13 -1
  29. package/dist/actions/update-bookings.d.cts +13 -1
  30. package/dist/actions/update-bookings.d.mts +13 -1
  31. package/dist/actions/update-contact-identifiers.d.cts +13 -1
  32. package/dist/actions/update-contact-identifiers.d.mts +13 -1
  33. package/dist/app.cjs +5 -2
  34. package/dist/app.cjs.map +1 -1
  35. package/dist/app.d.cts +9 -1
  36. package/dist/app.d.cts.map +1 -1
  37. package/dist/app.d.mts +9 -1
  38. package/dist/app.d.mts.map +1 -1
  39. package/dist/app.mjs +3 -1
  40. package/dist/app.mjs.map +1 -1
  41. package/package.json +1 -1
@@ -15,7 +15,19 @@ declare const PiggyClaimAnonymousContactOutput: z.ZodObject<{
15
15
  declare const piggyClaimAnonymousContact: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  anonymous_contact_uuid: string;
17
17
  email?: string | undefined;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyClaimAnonymousContact };
21
33
  //# sourceMappingURL=claim-anonymous-contact.d.cts.map
@@ -15,7 +15,19 @@ declare const PiggyClaimAnonymousContactOutput: z.ZodObject<{
15
15
  declare const piggyClaimAnonymousContact: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  anonymous_contact_uuid: string;
17
17
  email?: string | undefined;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyClaimAnonymousContact };
21
33
  //# sourceMappingURL=claim-anonymous-contact.d.mts.map
@@ -60,7 +60,19 @@ declare const piggyCreateContactAttribute: import("@keystrokehq/action").Workflo
60
60
  value: string;
61
61
  }[] | undefined;
62
62
  description?: string | undefined;
63
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
63
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
70
+ connectionId: z.ZodString;
71
+ entityId: z.ZodString;
72
+ instanceId: z.ZodString;
73
+ }, z.core.$strip>, z.ZodObject<{
74
+ generic_api_key: z.ZodString;
75
+ }, z.core.$strip>>]>;
64
76
  //#endregion
65
77
  export { piggyCreateContactAttribute };
66
78
  //# sourceMappingURL=create-contact-attribute.d.cts.map
@@ -60,7 +60,19 @@ declare const piggyCreateContactAttribute: import("@keystrokehq/action").Workflo
60
60
  value: string;
61
61
  }[] | undefined;
62
62
  description?: string | undefined;
63
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
63
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
70
+ connectionId: z.ZodString;
71
+ entityId: z.ZodString;
72
+ instanceId: z.ZodString;
73
+ }, z.core.$strip>, z.ZodObject<{
74
+ generic_api_key: z.ZodString;
75
+ }, z.core.$strip>>]>;
64
76
  //#endregion
65
77
  export { piggyCreateContactAttribute };
66
78
  //# sourceMappingURL=create-contact-attribute.d.mts.map
@@ -16,7 +16,19 @@ declare const piggyCreateCreditReception: import("@keystrokehq/action").Workflow
16
16
  contact_uuid: string;
17
17
  credits?: number | undefined;
18
18
  unit_value?: number | undefined;
19
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>;
20
32
  //#endregion
21
33
  export { piggyCreateCreditReception };
22
34
  //# sourceMappingURL=create-credit-reception.d.cts.map
@@ -16,7 +16,19 @@ declare const piggyCreateCreditReception: import("@keystrokehq/action").Workflow
16
16
  contact_uuid: string;
17
17
  credits?: number | undefined;
18
18
  unit_value?: number | undefined;
19
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>;
20
32
  //#endregion
21
33
  export { piggyCreateCreditReception };
22
34
  //# sourceMappingURL=create-credit-reception.d.mts.map
@@ -33,7 +33,19 @@ declare const piggyCreateVouchersBatch: import("@keystrokehq/action").WorkflowAc
33
33
  key: string;
34
34
  value: string;
35
35
  }[] | undefined;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyCreateVouchersBatch };
39
51
  //# sourceMappingURL=create-vouchers-batch.d.cts.map
@@ -33,7 +33,19 @@ declare const piggyCreateVouchersBatch: import("@keystrokehq/action").WorkflowAc
33
33
  key: string;
34
34
  value: string;
35
35
  }[] | undefined;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyCreateVouchersBatch };
39
51
  //# sourceMappingURL=create-vouchers-batch.d.mts.map
@@ -32,7 +32,19 @@ declare const piggyFindOrCreateProducts: import("@keystrokehq/action").WorkflowA
32
32
  external_identifier?: string | undefined;
33
33
  }[] | undefined;
34
34
  description?: string | undefined;
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { piggyFindOrCreateProducts };
38
50
  //# sourceMappingURL=find-or-create-products.d.cts.map
@@ -32,7 +32,19 @@ declare const piggyFindOrCreateProducts: import("@keystrokehq/action").WorkflowA
32
32
  external_identifier?: string | undefined;
33
33
  }[] | undefined;
34
34
  description?: string | undefined;
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { piggyFindOrCreateProducts };
38
50
  //# sourceMappingURL=find-or-create-products.d.mts.map
@@ -33,7 +33,19 @@ declare const PiggyFindVoucherByCodeOutput: z.ZodObject<{
33
33
  }, z.core.$loose>;
34
34
  declare const piggyFindVoucherByCode: import("@keystrokehq/action").WorkflowActionDefinition<{
35
35
  code: string;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyFindVoucherByCode };
39
51
  //# sourceMappingURL=find-voucher-by-code.d.cts.map
@@ -33,7 +33,19 @@ declare const PiggyFindVoucherByCodeOutput: z.ZodObject<{
33
33
  }, z.core.$loose>;
34
34
  declare const piggyFindVoucherByCode: import("@keystrokehq/action").WorkflowActionDefinition<{
35
35
  code: string;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyFindVoucherByCode };
39
51
  //# sourceMappingURL=find-voucher-by-code.d.mts.map
@@ -12,7 +12,19 @@ declare const PiggyGetContactAuthTokenOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const piggyGetContactAuthToken: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyGetContactAuthToken };
18
30
  //# sourceMappingURL=get-contact-auth-token.d.cts.map
@@ -12,7 +12,19 @@ declare const PiggyGetContactAuthTokenOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const piggyGetContactAuthToken: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyGetContactAuthToken };
18
30
  //# sourceMappingURL=get-contact-auth-token.d.mts.map
@@ -12,7 +12,19 @@ declare const PiggyGetContactsCreditBalanceOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const piggyGetContactsCreditBalance: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyGetContactsCreditBalance };
18
30
  //# sourceMappingURL=get-contacts-credit-balance.d.cts.map
@@ -12,7 +12,19 @@ declare const PiggyGetContactsCreditBalanceOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const piggyGetContactsCreditBalance: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyGetContactsCreditBalance };
18
30
  //# sourceMappingURL=get-contacts-credit-balance.d.mts.map
@@ -12,7 +12,19 @@ declare const PiggyListFormsOutput: z.ZodObject<{
12
12
  }, z.core.$loose>>;
13
13
  meta: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14
14
  }, z.core.$loose>;
15
- declare const piggyListForms: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const piggyListForms: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyListForms };
18
30
  //# sourceMappingURL=list-forms.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-forms.d.cts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-forms.d.cts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -12,7 +12,19 @@ declare const PiggyListFormsOutput: z.ZodObject<{
12
12
  }, z.core.$loose>>;
13
13
  meta: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14
14
  }, z.core.$loose>;
15
- declare const piggyListForms: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const piggyListForms: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyListForms };
18
30
  //# sourceMappingURL=list-forms.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-forms.d.mts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-forms.d.mts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -12,7 +12,19 @@ declare const PiggyListPerksOutput: z.ZodObject<{
12
12
  }, z.core.$loose>>>>;
13
13
  meta: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
14
14
  }, z.core.$loose>;
15
- declare const piggyListPerks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const piggyListPerks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyListPerks };
18
30
  //# sourceMappingURL=list-perks.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-perks.d.cts","names":[],"sources":["../../src/actions/list-perks.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-perks.d.cts","names":[],"sources":["../../src/actions/list-perks.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -12,7 +12,19 @@ declare const PiggyListPerksOutput: z.ZodObject<{
12
12
  }, z.core.$loose>>>>;
13
13
  meta: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
14
14
  }, z.core.$loose>;
15
- declare const piggyListPerks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const piggyListPerks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyListPerks };
18
30
  //# sourceMappingURL=list-perks.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-perks.d.mts","names":[],"sources":["../../src/actions/list-perks.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-perks.d.mts","names":[],"sources":["../../src/actions/list-perks.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQnB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;cAKpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -12,7 +12,19 @@ declare const PiggyMergeContactsOutput: z.ZodObject<{
12
12
  declare const piggyMergeContacts: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  source_contact_uuid: string;
14
14
  destination_contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyMergeContacts };
18
30
  //# sourceMappingURL=merge-contacts.d.cts.map
@@ -12,7 +12,19 @@ declare const PiggyMergeContactsOutput: z.ZodObject<{
12
12
  declare const piggyMergeContacts: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  source_contact_uuid: string;
14
14
  destination_contact_uuid: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { piggyMergeContacts };
18
30
  //# sourceMappingURL=merge-contacts.d.mts.map
@@ -13,7 +13,19 @@ declare const PiggySendContactVerificationEmailOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const piggySendContactVerificationEmail: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  email: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggySendContactVerificationEmail };
19
31
  //# sourceMappingURL=send-contact-verification-email.d.cts.map
@@ -13,7 +13,19 @@ declare const PiggySendContactVerificationEmailOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const piggySendContactVerificationEmail: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  email: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggySendContactVerificationEmail };
19
31
  //# sourceMappingURL=send-contact-verification-email.d.mts.map
@@ -33,7 +33,19 @@ declare const piggyUpdateBookings: import("@keystrokehq/action").WorkflowActionD
33
33
  checked_in_at?: string | undefined;
34
34
  prepaid_amount?: number | undefined;
35
35
  number_of_people?: number | undefined;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyUpdateBookings };
39
51
  //# sourceMappingURL=update-bookings.d.cts.map
@@ -33,7 +33,19 @@ declare const piggyUpdateBookings: import("@keystrokehq/action").WorkflowActionD
33
33
  checked_in_at?: string | undefined;
34
34
  prepaid_amount?: number | undefined;
35
35
  number_of_people?: number | undefined;
36
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
36
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", 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<"piggy", 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 { piggyUpdateBookings };
39
51
  //# sourceMappingURL=update-bookings.d.mts.map
@@ -20,7 +20,19 @@ declare const piggyUpdateContactIdentifiers: import("@keystrokehq/action").Workf
20
20
  contact_identifier_value: string;
21
21
  contact_identifier_name?: string | undefined;
22
22
  contact_identifier_active?: boolean | undefined;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { piggyUpdateContactIdentifiers };
26
38
  //# sourceMappingURL=update-contact-identifiers.d.cts.map
@@ -20,7 +20,19 @@ declare const piggyUpdateContactIdentifiers: import("@keystrokehq/action").Workf
20
20
  contact_identifier_value: string;
21
21
  contact_identifier_name?: string | undefined;
22
22
  contact_identifier_active?: boolean | undefined;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"piggy", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { piggyUpdateContactIdentifiers };
26
38
  //# sourceMappingURL=update-contact-identifiers.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 piggy = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const piggy = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "piggy",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.piggy = piggy;
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 piggy = defineApp({\n slug: \"piggy\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,SAAA,uCAAA,CAAA,CAAA,UAAA,CAAkB;CAC7B,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 piggy = defineApp({\n slug: \"piggy\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,SAAA,GAAA,2BAAA,UAAA,CAAkB;CAC7B,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 piggy: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const piggy: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"piggy", 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 { piggy };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,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 piggy: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const piggy: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"piggy", 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 { piggy };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,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 piggy = defineApp({
4
5
  slug: "piggy",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { piggy };
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 piggy = defineApp({\n slug: \"piggy\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,QAAQ,UAAU;CAC7B,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 piggy = defineApp({\n slug: \"piggy\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,QAAQ,UAAU;CAC7B,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/piggy",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"