@keystrokehq/snowflake 0.1.3 → 0.1.4

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 (57) hide show
  1. package/dist/actions/cancel-statement-execution.d.cts +13 -1
  2. package/dist/actions/cancel-statement-execution.d.mts +13 -1
  3. package/dist/actions/check-statement-status.d.cts +13 -1
  4. package/dist/actions/check-statement-status.d.mts +13 -1
  5. package/dist/actions/drop-warehouse.d.cts +13 -1
  6. package/dist/actions/drop-warehouse.d.mts +13 -1
  7. package/dist/actions/execute-sql.d.cts +13 -1
  8. package/dist/actions/execute-sql.d.cts.map +1 -1
  9. package/dist/actions/execute-sql.d.mts +13 -1
  10. package/dist/actions/execute-sql.d.mts.map +1 -1
  11. package/dist/actions/fetch-catalog-integration.d.cts +13 -1
  12. package/dist/actions/fetch-catalog-integration.d.mts +13 -1
  13. package/dist/actions/get-active-scheduled-maintenances.d.cts +13 -1
  14. package/dist/actions/get-active-scheduled-maintenances.d.cts.map +1 -1
  15. package/dist/actions/get-active-scheduled-maintenances.d.mts +13 -1
  16. package/dist/actions/get-active-scheduled-maintenances.d.mts.map +1 -1
  17. package/dist/actions/get-all-scheduled-maintenances.d.cts +13 -1
  18. package/dist/actions/get-all-scheduled-maintenances.d.cts.map +1 -1
  19. package/dist/actions/get-all-scheduled-maintenances.d.mts +13 -1
  20. package/dist/actions/get-all-scheduled-maintenances.d.mts.map +1 -1
  21. package/dist/actions/get-component-status.d.cts +13 -1
  22. package/dist/actions/get-component-status.d.mts +13 -1
  23. package/dist/actions/get-status-rollup.d.cts +13 -1
  24. package/dist/actions/get-status-rollup.d.cts.map +1 -1
  25. package/dist/actions/get-status-rollup.d.mts +13 -1
  26. package/dist/actions/get-status-rollup.d.mts.map +1 -1
  27. package/dist/actions/get-status-summary.d.cts +13 -1
  28. package/dist/actions/get-status-summary.d.cts.map +1 -1
  29. package/dist/actions/get-status-summary.d.mts +13 -1
  30. package/dist/actions/get-status-summary.d.mts.map +1 -1
  31. package/dist/actions/get-unresolved-incidents.d.cts +13 -1
  32. package/dist/actions/get-unresolved-incidents.d.cts.map +1 -1
  33. package/dist/actions/get-unresolved-incidents.d.mts +13 -1
  34. package/dist/actions/get-unresolved-incidents.d.mts.map +1 -1
  35. package/dist/actions/get-upcoming-scheduled-maintenances.d.cts +13 -1
  36. package/dist/actions/get-upcoming-scheduled-maintenances.d.cts.map +1 -1
  37. package/dist/actions/get-upcoming-scheduled-maintenances.d.mts +13 -1
  38. package/dist/actions/get-upcoming-scheduled-maintenances.d.mts.map +1 -1
  39. package/dist/actions/show-databases.d.cts +13 -1
  40. package/dist/actions/show-databases.d.mts +13 -1
  41. package/dist/actions/show-schemas.d.cts +13 -1
  42. package/dist/actions/show-schemas.d.mts +13 -1
  43. package/dist/actions/show-tables.d.cts +13 -1
  44. package/dist/actions/show-tables.d.mts +13 -1
  45. package/dist/actions/validate-credential.d.cts +13 -1
  46. package/dist/actions/validate-credential.d.cts.map +1 -1
  47. package/dist/actions/validate-credential.d.mts +13 -1
  48. package/dist/actions/validate-credential.d.mts.map +1 -1
  49. package/dist/app.cjs +5 -2
  50. package/dist/app.cjs.map +1 -1
  51. package/dist/app.d.cts +9 -1
  52. package/dist/app.d.cts.map +1 -1
  53. package/dist/app.d.mts +9 -1
  54. package/dist/app.d.mts.map +1 -1
  55. package/dist/app.mjs +3 -1
  56. package/dist/app.mjs.map +1 -1
  57. package/package.json +1 -1
@@ -15,7 +15,19 @@ declare const SnowflakeCancelStatementExecutionOutput: z.ZodObject<{
15
15
  declare const snowflakeCancelStatementExecution: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  statementHandle: string;
17
17
  request_id?: 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<"snowflake", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ accessToken: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ accessToken: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { snowflakeCancelStatementExecution };
21
33
  //# sourceMappingURL=cancel-statement-execution.d.cts.map
@@ -15,7 +15,19 @@ declare const SnowflakeCancelStatementExecutionOutput: z.ZodObject<{
15
15
  declare const snowflakeCancelStatementExecution: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  statementHandle: string;
17
17
  request_id?: 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<"snowflake", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ accessToken: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ accessToken: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { snowflakeCancelStatementExecution };
21
33
  //# sourceMappingURL=cancel-statement-execution.d.mts.map
@@ -41,7 +41,19 @@ declare const snowflakeCheckStatementStatus: import("@keystrokehq/action").Workf
41
41
  statementHandle: string;
42
42
  partition?: number | undefined;
43
43
  requestId?: string | undefined;
44
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
44
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ accessToken: z.ZodString;
50
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
51
+ connectionId: z.ZodString;
52
+ entityId: z.ZodString;
53
+ instanceId: z.ZodString;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ accessToken: z.ZodString;
56
+ }, z.core.$strip>>]>;
45
57
  //#endregion
46
58
  export { snowflakeCheckStatementStatus };
47
59
  //# sourceMappingURL=check-statement-status.d.cts.map
@@ -41,7 +41,19 @@ declare const snowflakeCheckStatementStatus: import("@keystrokehq/action").Workf
41
41
  statementHandle: string;
42
42
  partition?: number | undefined;
43
43
  requestId?: string | undefined;
44
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
44
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ accessToken: z.ZodString;
50
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
51
+ connectionId: z.ZodString;
52
+ entityId: z.ZodString;
53
+ instanceId: z.ZodString;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ accessToken: z.ZodString;
56
+ }, z.core.$strip>>]>;
45
57
  //#endregion
46
58
  export { snowflakeCheckStatementStatus };
47
59
  //# sourceMappingURL=check-statement-status.d.mts.map
@@ -14,7 +14,19 @@ declare const SnowflakeDropWarehouseOutput: z.ZodObject<{
14
14
  declare const snowflakeDropWarehouse: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  name: string;
16
16
  if_exists?: boolean | undefined;
17
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
18
+ connectionId: z.ZodString;
19
+ entityId: z.ZodString;
20
+ instanceId: z.ZodString;
21
+ }, z.core.$strip>, z.ZodObject<{
22
+ accessToken: z.ZodString;
23
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ accessToken: z.ZodString;
29
+ }, z.core.$strip>>]>;
18
30
  //#endregion
19
31
  export { snowflakeDropWarehouse };
20
32
  //# sourceMappingURL=drop-warehouse.d.cts.map
@@ -14,7 +14,19 @@ declare const SnowflakeDropWarehouseOutput: z.ZodObject<{
14
14
  declare const snowflakeDropWarehouse: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  name: string;
16
16
  if_exists?: boolean | undefined;
17
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
18
+ connectionId: z.ZodString;
19
+ entityId: z.ZodString;
20
+ instanceId: z.ZodString;
21
+ }, z.core.$strip>, z.ZodObject<{
22
+ accessToken: z.ZodString;
23
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ accessToken: z.ZodString;
29
+ }, z.core.$strip>>]>;
18
30
  //#endregion
19
31
  export { snowflakeDropWarehouse };
20
32
  //# sourceMappingURL=drop-warehouse.d.mts.map
@@ -52,7 +52,19 @@ declare const snowflakeExecuteSql: import("@keystrokehq/action").WorkflowActionD
52
52
  warehouse?: string | undefined;
53
53
  parameters?: Record<string, unknown> | undefined;
54
54
  schema_name?: string | undefined;
55
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
55
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
56
+ connectionId: z.ZodString;
57
+ entityId: z.ZodString;
58
+ instanceId: z.ZodString;
59
+ }, z.core.$strip>, z.ZodObject<{
60
+ accessToken: z.ZodString;
61
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
62
+ connectionId: z.ZodString;
63
+ entityId: z.ZodString;
64
+ instanceId: z.ZodString;
65
+ }, z.core.$strip>, z.ZodObject<{
66
+ accessToken: z.ZodString;
67
+ }, z.core.$strip>>]>;
56
68
  //#endregion
57
69
  export { snowflakeExecuteSql };
58
70
  //# sourceMappingURL=execute-sql.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"execute-sql.d.cts","names":[],"sources":["../../src/actions/execute-sql.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAiCxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA;;;;aAM9B,MAAA;;;eAAA,MAAA"}
1
+ {"version":3,"file":"execute-sql.d.cts","names":[],"sources":["../../src/actions/execute-sql.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAiCxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
@@ -52,7 +52,19 @@ declare const snowflakeExecuteSql: import("@keystrokehq/action").WorkflowActionD
52
52
  warehouse?: string | undefined;
53
53
  parameters?: Record<string, unknown> | undefined;
54
54
  schema_name?: string | undefined;
55
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
55
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
56
+ connectionId: z.ZodString;
57
+ entityId: z.ZodString;
58
+ instanceId: z.ZodString;
59
+ }, z.core.$strip>, z.ZodObject<{
60
+ accessToken: z.ZodString;
61
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
62
+ connectionId: z.ZodString;
63
+ entityId: z.ZodString;
64
+ instanceId: z.ZodString;
65
+ }, z.core.$strip>, z.ZodObject<{
66
+ accessToken: z.ZodString;
67
+ }, z.core.$strip>>]>;
56
68
  //#endregion
57
69
  export { snowflakeExecuteSql };
58
70
  //# sourceMappingURL=execute-sql.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"execute-sql.d.mts","names":[],"sources":["../../src/actions/execute-sql.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAiCxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA;;;;aAM9B,MAAA;;;eAAA,MAAA"}
1
+ {"version":3,"file":"execute-sql.d.mts","names":[],"sources":["../../src/actions/execute-sql.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAiCxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
@@ -18,7 +18,19 @@ declare const SnowflakeFetchCatalogIntegrationOutput: z.ZodObject<{
18
18
  }, z.core.$loose>;
19
19
  declare const snowflakeFetchCatalogIntegration: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  name: string;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ accessToken: z.ZodString;
27
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
28
+ connectionId: z.ZodString;
29
+ entityId: z.ZodString;
30
+ instanceId: z.ZodString;
31
+ }, z.core.$strip>, z.ZodObject<{
32
+ accessToken: z.ZodString;
33
+ }, z.core.$strip>>]>;
22
34
  //#endregion
23
35
  export { snowflakeFetchCatalogIntegration };
24
36
  //# sourceMappingURL=fetch-catalog-integration.d.cts.map
@@ -18,7 +18,19 @@ declare const SnowflakeFetchCatalogIntegrationOutput: z.ZodObject<{
18
18
  }, z.core.$loose>;
19
19
  declare const snowflakeFetchCatalogIntegration: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  name: string;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ accessToken: z.ZodString;
27
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
28
+ connectionId: z.ZodString;
29
+ entityId: z.ZodString;
30
+ instanceId: z.ZodString;
31
+ }, z.core.$strip>, z.ZodObject<{
32
+ accessToken: z.ZodString;
33
+ }, z.core.$strip>>]>;
22
34
  //#endregion
23
35
  export { snowflakeFetchCatalogIntegration };
24
36
  //# sourceMappingURL=fetch-catalog-integration.d.mts.map
@@ -35,7 +35,19 @@ declare const SnowflakeGetActiveScheduledMaintenancesOutput: z.ZodObject<{
35
35
  }, z.core.$loose>>;
36
36
  }, z.core.$loose>>;
37
37
  }, z.core.$loose>;
38
- declare const snowflakeGetActiveScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ declare const snowflakeGetActiveScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ accessToken: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ accessToken: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { snowflakeGetActiveScheduledMaintenances };
41
53
  //# sourceMappingURL=get-active-scheduled-maintenances.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-active-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-active-scheduled-maintenances.ts"],"mappings":";;;cAIa,4CAAA,EAA4C,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiC5C,6CAAA,EAA6C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK7C,uCAAA,gCAAuC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-active-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-active-scheduled-maintenances.ts"],"mappings":";;;cAIa,4CAAA,EAA4C,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiC5C,6CAAA,EAA6C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK7C,uCAAA,gCAAuC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -35,7 +35,19 @@ declare const SnowflakeGetActiveScheduledMaintenancesOutput: z.ZodObject<{
35
35
  }, z.core.$loose>>;
36
36
  }, z.core.$loose>>;
37
37
  }, z.core.$loose>;
38
- declare const snowflakeGetActiveScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ declare const snowflakeGetActiveScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ accessToken: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ accessToken: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { snowflakeGetActiveScheduledMaintenances };
41
53
  //# sourceMappingURL=get-active-scheduled-maintenances.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-active-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-active-scheduled-maintenances.ts"],"mappings":";;;cAIa,4CAAA,EAA4C,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiC5C,6CAAA,EAA6C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK7C,uCAAA,gCAAuC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-active-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-active-scheduled-maintenances.ts"],"mappings":";;;cAIa,4CAAA,EAA4C,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiC5C,6CAAA,EAA6C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK7C,uCAAA,gCAAuC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -44,7 +44,19 @@ declare const SnowflakeGetAllScheduledMaintenancesOutput: z.ZodObject<{
44
44
  }, z.core.$loose>>;
45
45
  }, z.core.$loose>>;
46
46
  }, z.core.$loose>;
47
- declare const snowflakeGetAllScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ declare const snowflakeGetAllScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ accessToken: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ accessToken: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { snowflakeGetAllScheduledMaintenances };
50
62
  //# sourceMappingURL=get-all-scheduled-maintenances.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-all-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-all-scheduled-maintenances.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA2CzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK1C,oCAAA,gCAAoC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-all-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-all-scheduled-maintenances.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA2CzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK1C,oCAAA,gCAAoC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -44,7 +44,19 @@ declare const SnowflakeGetAllScheduledMaintenancesOutput: z.ZodObject<{
44
44
  }, z.core.$loose>>;
45
45
  }, z.core.$loose>>;
46
46
  }, z.core.$loose>;
47
- declare const snowflakeGetAllScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ declare const snowflakeGetAllScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ accessToken: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ accessToken: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { snowflakeGetAllScheduledMaintenances };
50
62
  //# sourceMappingURL=get-all-scheduled-maintenances.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-all-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-all-scheduled-maintenances.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA2CzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK1C,oCAAA,gCAAoC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-all-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-all-scheduled-maintenances.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA2CzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK1C,oCAAA,gCAAoC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -29,7 +29,19 @@ declare const SnowflakeGetComponentStatusOutput: z.ZodObject<{
29
29
  }, z.core.$loose>;
30
30
  declare const snowflakeGetComponentStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  limit?: 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<"snowflake", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ accessToken: z.ZodString;
38
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ accessToken: z.ZodString;
44
+ }, z.core.$strip>>]>;
33
45
  //#endregion
34
46
  export { snowflakeGetComponentStatus };
35
47
  //# sourceMappingURL=get-component-status.d.cts.map
@@ -29,7 +29,19 @@ declare const SnowflakeGetComponentStatusOutput: z.ZodObject<{
29
29
  }, z.core.$loose>;
30
30
  declare const snowflakeGetComponentStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
31
31
  limit?: 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<"snowflake", z.ZodObject<{
33
+ connectionId: z.ZodString;
34
+ entityId: z.ZodString;
35
+ instanceId: z.ZodString;
36
+ }, z.core.$strip>, z.ZodObject<{
37
+ accessToken: z.ZodString;
38
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ accessToken: z.ZodString;
44
+ }, z.core.$strip>>]>;
33
45
  //#endregion
34
46
  export { snowflakeGetComponentStatus };
35
47
  //# sourceMappingURL=get-component-status.d.mts.map
@@ -15,7 +15,19 @@ declare const SnowflakeGetStatusRollupOutput: z.ZodObject<{
15
15
  description: z.ZodNullable<z.ZodString>;
16
16
  }, z.core.$loose>>;
17
17
  }, z.core.$loose>;
18
- declare const snowflakeGetStatusRollup: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ declare const snowflakeGetStatusRollup: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ accessToken: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ accessToken: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { snowflakeGetStatusRollup };
21
33
  //# sourceMappingURL=get-status-rollup.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-status-rollup.d.cts","names":[],"sources":["../../src/actions/get-status-rollup.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAY7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-status-rollup.d.cts","names":[],"sources":["../../src/actions/get-status-rollup.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAY7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -15,7 +15,19 @@ declare const SnowflakeGetStatusRollupOutput: z.ZodObject<{
15
15
  description: z.ZodNullable<z.ZodString>;
16
16
  }, z.core.$loose>>;
17
17
  }, z.core.$loose>;
18
- declare const snowflakeGetStatusRollup: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ declare const snowflakeGetStatusRollup: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ accessToken: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ accessToken: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { snowflakeGetStatusRollup };
21
33
  //# sourceMappingURL=get-status-rollup.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-status-rollup.d.mts","names":[],"sources":["../../src/actions/get-status-rollup.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAY7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-status-rollup.d.mts","names":[],"sources":["../../src/actions/get-status-rollup.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAY7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -75,7 +75,19 @@ declare const SnowflakeGetStatusSummaryOutput: z.ZodObject<{
75
75
  }, z.core.$loose>>>>>;
76
76
  }, z.core.$loose>>>>>;
77
77
  }, z.core.$loose>;
78
- declare const snowflakeGetStatusSummary: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
78
+ declare const snowflakeGetStatusSummary: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
79
+ connectionId: z.ZodString;
80
+ entityId: z.ZodString;
81
+ instanceId: z.ZodString;
82
+ }, z.core.$strip>, z.ZodObject<{
83
+ accessToken: z.ZodString;
84
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
85
+ connectionId: z.ZodString;
86
+ entityId: z.ZodString;
87
+ instanceId: z.ZodString;
88
+ }, z.core.$strip>, z.ZodObject<{
89
+ accessToken: z.ZodString;
90
+ }, z.core.$strip>>]>;
79
91
  //#endregion
80
92
  export { snowflakeGetStatusSummary };
81
93
  //# sourceMappingURL=get-status-summary.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-status-summary.d.cts","names":[],"sources":["../../src/actions/get-status-summary.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiE9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-status-summary.d.cts","names":[],"sources":["../../src/actions/get-status-summary.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiE9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -75,7 +75,19 @@ declare const SnowflakeGetStatusSummaryOutput: z.ZodObject<{
75
75
  }, z.core.$loose>>>>>;
76
76
  }, z.core.$loose>>>>>;
77
77
  }, z.core.$loose>;
78
- declare const snowflakeGetStatusSummary: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
78
+ declare const snowflakeGetStatusSummary: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
79
+ connectionId: z.ZodString;
80
+ entityId: z.ZodString;
81
+ instanceId: z.ZodString;
82
+ }, z.core.$strip>, z.ZodObject<{
83
+ accessToken: z.ZodString;
84
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
85
+ connectionId: z.ZodString;
86
+ entityId: z.ZodString;
87
+ instanceId: z.ZodString;
88
+ }, z.core.$strip>, z.ZodObject<{
89
+ accessToken: z.ZodString;
90
+ }, z.core.$strip>>]>;
79
91
  //#endregion
80
92
  export { snowflakeGetStatusSummary };
81
93
  //# sourceMappingURL=get-status-summary.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-status-summary.d.mts","names":[],"sources":["../../src/actions/get-status-summary.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiE9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-status-summary.d.mts","names":[],"sources":["../../src/actions/get-status-summary.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAiE9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -32,7 +32,19 @@ declare const SnowflakeGetUnresolvedIncidentsOutput: z.ZodObject<{
32
32
  }, z.core.$loose>>;
33
33
  }, z.core.$loose>>;
34
34
  }, z.core.$loose>;
35
- declare const snowflakeGetUnresolvedIncidents: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ declare const snowflakeGetUnresolvedIncidents: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ accessToken: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { snowflakeGetUnresolvedIncidents };
38
50
  //# sourceMappingURL=get-unresolved-incidents.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-unresolved-incidents.d.cts","names":[],"sources":["../../src/actions/get-unresolved-incidents.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8BpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKrC,+BAAA,gCAA+B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-unresolved-incidents.d.cts","names":[],"sources":["../../src/actions/get-unresolved-incidents.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8BpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKrC,+BAAA,gCAA+B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -32,7 +32,19 @@ declare const SnowflakeGetUnresolvedIncidentsOutput: z.ZodObject<{
32
32
  }, z.core.$loose>>;
33
33
  }, z.core.$loose>>;
34
34
  }, z.core.$loose>;
35
- declare const snowflakeGetUnresolvedIncidents: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ declare const snowflakeGetUnresolvedIncidents: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ accessToken: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { snowflakeGetUnresolvedIncidents };
38
50
  //# sourceMappingURL=get-unresolved-incidents.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-unresolved-incidents.d.mts","names":[],"sources":["../../src/actions/get-unresolved-incidents.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8BpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKrC,+BAAA,gCAA+B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-unresolved-incidents.d.mts","names":[],"sources":["../../src/actions/get-unresolved-incidents.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8BpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKrC,+BAAA,gCAA+B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -34,7 +34,19 @@ declare const SnowflakeGetUpcomingScheduledMaintenancesOutput: z.ZodObject<{
34
34
  }, z.core.$loose>>;
35
35
  }, z.core.$loose>>;
36
36
  }, z.core.$loose>;
37
- declare const snowflakeGetUpcomingScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, unknown>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
37
+ declare const snowflakeGetUpcomingScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, unknown>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ accessToken: z.ZodString;
43
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ accessToken: z.ZodString;
49
+ }, z.core.$strip>>]>;
38
50
  //#endregion
39
51
  export { snowflakeGetUpcomingScheduledMaintenances };
40
52
  //# sourceMappingURL=get-upcoming-scheduled-maintenances.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-upcoming-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-upcoming-scheduled-maintenances.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAgC9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK/C,yCAAA,gCAAyC,wBAAA,CAAA,MAAA,0DAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-upcoming-scheduled-maintenances.d.cts","names":[],"sources":["../../src/actions/get-upcoming-scheduled-maintenances.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAgC9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK/C,yCAAA,gCAAyC,wBAAA,CAAA,MAAA,0DAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -34,7 +34,19 @@ declare const SnowflakeGetUpcomingScheduledMaintenancesOutput: z.ZodObject<{
34
34
  }, z.core.$loose>>;
35
35
  }, z.core.$loose>>;
36
36
  }, z.core.$loose>;
37
- declare const snowflakeGetUpcomingScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, unknown>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
37
+ declare const snowflakeGetUpcomingScheduledMaintenances: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, unknown>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ accessToken: z.ZodString;
43
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
44
+ connectionId: z.ZodString;
45
+ entityId: z.ZodString;
46
+ instanceId: z.ZodString;
47
+ }, z.core.$strip>, z.ZodObject<{
48
+ accessToken: z.ZodString;
49
+ }, z.core.$strip>>]>;
38
50
  //#endregion
39
51
  export { snowflakeGetUpcomingScheduledMaintenances };
40
52
  //# sourceMappingURL=get-upcoming-scheduled-maintenances.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-upcoming-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-upcoming-scheduled-maintenances.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAgC9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK/C,yCAAA,gCAAyC,wBAAA,CAAA,MAAA,0DAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-upcoming-scheduled-maintenances.d.mts","names":[],"sources":["../../src/actions/get-upcoming-scheduled-maintenances.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAgC9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAK/C,yCAAA,gCAAyC,wBAAA,CAAA,MAAA,0DAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -26,7 +26,19 @@ declare const snowflakeShowDatabases: import("@keystrokehq/action").WorkflowActi
26
26
  warehouse?: string | undefined;
27
27
  starts_with?: string | undefined;
28
28
  like_pattern?: string | undefined;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ accessToken: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { snowflakeShowDatabases };
32
44
  //# sourceMappingURL=show-databases.d.cts.map
@@ -26,7 +26,19 @@ declare const snowflakeShowDatabases: import("@keystrokehq/action").WorkflowActi
26
26
  warehouse?: string | undefined;
27
27
  starts_with?: string | undefined;
28
28
  like_pattern?: string | undefined;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ accessToken: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { snowflakeShowDatabases };
32
44
  //# sourceMappingURL=show-databases.d.mts.map
@@ -30,7 +30,19 @@ declare const snowflakeShowSchemas: import("@keystrokehq/action").WorkflowAction
30
30
  warehouse?: string | undefined;
31
31
  starts_with?: string | undefined;
32
32
  like_pattern?: string | undefined;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ accessToken: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ accessToken: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { snowflakeShowSchemas };
36
48
  //# sourceMappingURL=show-schemas.d.cts.map
@@ -30,7 +30,19 @@ declare const snowflakeShowSchemas: import("@keystrokehq/action").WorkflowAction
30
30
  warehouse?: string | undefined;
31
31
  starts_with?: string | undefined;
32
32
  like_pattern?: string | undefined;
33
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ accessToken: z.ZodString;
39
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
40
+ connectionId: z.ZodString;
41
+ entityId: z.ZodString;
42
+ instanceId: z.ZodString;
43
+ }, z.core.$strip>, z.ZodObject<{
44
+ accessToken: z.ZodString;
45
+ }, z.core.$strip>>]>;
34
46
  //#endregion
35
47
  export { snowflakeShowSchemas };
36
48
  //# sourceMappingURL=show-schemas.d.mts.map
@@ -32,7 +32,19 @@ declare const snowflakeShowTables: import("@keystrokehq/action").WorkflowActionD
32
32
  warehouse?: string | undefined;
33
33
  starts_with?: string | undefined;
34
34
  like_pattern?: 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<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ accessToken: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { snowflakeShowTables };
38
50
  //# sourceMappingURL=show-tables.d.cts.map
@@ -32,7 +32,19 @@ declare const snowflakeShowTables: import("@keystrokehq/action").WorkflowActionD
32
32
  warehouse?: string | undefined;
33
33
  starts_with?: string | undefined;
34
34
  like_pattern?: 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<"snowflake", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ accessToken: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ accessToken: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { snowflakeShowTables };
38
50
  //# sourceMappingURL=show-tables.d.mts.map
@@ -7,7 +7,19 @@ declare const SnowflakeValidateCredentialOutput: z.ZodObject<{
7
7
  is_valid: z.ZodNullable<z.ZodBoolean>;
8
8
  session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  }, z.core.$loose>;
10
- declare const snowflakeValidateCredential: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
+ declare const snowflakeValidateCredential: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
11
+ connectionId: z.ZodString;
12
+ entityId: z.ZodString;
13
+ instanceId: z.ZodString;
14
+ }, z.core.$strip>, z.ZodObject<{
15
+ accessToken: z.ZodString;
16
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ accessToken: z.ZodString;
22
+ }, z.core.$strip>>]>;
11
23
  //#endregion
12
24
  export { snowflakeValidateCredential };
13
25
  //# sourceMappingURL=validate-credential.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"validate-credential.d.cts","names":[],"sources":["../../src/actions/validate-credential.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;cAMjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"validate-credential.d.cts","names":[],"sources":["../../src/actions/validate-credential.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;cAMjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
@@ -7,7 +7,19 @@ declare const SnowflakeValidateCredentialOutput: z.ZodObject<{
7
7
  is_valid: z.ZodNullable<z.ZodBoolean>;
8
8
  session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  }, z.core.$loose>;
10
- declare const snowflakeValidateCredential: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
+ declare const snowflakeValidateCredential: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
11
+ connectionId: z.ZodString;
12
+ entityId: z.ZodString;
13
+ instanceId: z.ZodString;
14
+ }, z.core.$strip>, z.ZodObject<{
15
+ accessToken: z.ZodString;
16
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ accessToken: z.ZodString;
22
+ }, z.core.$strip>>]>;
11
23
  //#endregion
12
24
  export { snowflakeValidateCredential };
13
25
  //# sourceMappingURL=validate-credential.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"validate-credential.d.mts","names":[],"sources":["../../src/actions/validate-credential.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;cAMjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"validate-credential.d.mts","names":[],"sources":["../../src/actions/validate-credential.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;cAMjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
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 snowflake = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const snowflake = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "snowflake",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { accessToken: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.snowflake = snowflake;
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 snowflake = defineApp({\n slug: \"snowflake\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,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 snowflake = defineApp({\n slug: \"snowflake\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,aAAA,GAAA,2BAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAaA,IAAAA,EAAE,OAAO,EACxB;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 snowflake: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const snowflake: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ accessToken: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { snowflake };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,SAAA,6BAAS,GAAA,+BAAA,UAAA,cAAA,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 snowflake: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const snowflake: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"snowflake", z.ZodObject<{
5
+ connectionId: z.ZodString;
6
+ entityId: z.ZodString;
7
+ instanceId: z.ZodString;
8
+ }, z.core.$strip>, z.ZodObject<{
9
+ accessToken: z.ZodString;
10
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { snowflake };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,SAAA,6BAAS,GAAA,+BAAA,UAAA,cAAA,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 snowflake = defineApp({
4
5
  slug: "snowflake",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { accessToken: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { snowflake };
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 snowflake = defineApp({\n slug: \"snowflake\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,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 snowflake = defineApp({\n slug: \"snowflake\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAa,EAAE,OAAO,EACxB;AACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/snowflake",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"