@keystrokehq/snowflake_basic 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/describe-table.d.cts +17 -1
- package/dist/actions/describe-table.d.mts +17 -1
- package/dist/actions/explore-columns.d.cts +17 -1
- package/dist/actions/explore-columns.d.mts +17 -1
- package/dist/actions/run-query.d.cts +17 -1
- package/dist/actions/run-query.d.mts +17 -1
- package/dist/actions/show-databases.d.cts +17 -1
- package/dist/actions/show-databases.d.cts.map +1 -1
- package/dist/actions/show-databases.d.mts +17 -1
- package/dist/actions/show-databases.d.mts.map +1 -1
- package/dist/actions/show-schemas.d.cts +17 -1
- package/dist/actions/show-schemas.d.mts +17 -1
- package/dist/actions/show-tables.d.cts +17 -1
- package/dist/actions/show-tables.d.mts +17 -1
- package/dist/app.cjs +9 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +11 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +11 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +7 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,23 @@ declare const snowflakeBasicDescribeTable: import("@keystrokehq/action").Workflo
|
|
|
21
21
|
database: string;
|
|
22
22
|
table_name: string;
|
|
23
23
|
schema_name: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
username: z.ZodString;
|
|
30
|
+
password: z.ZodString;
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
username: z.ZodString;
|
|
38
|
+
password: z.ZodString;
|
|
39
|
+
subdomain: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
25
41
|
//#endregion
|
|
26
42
|
export { snowflakeBasicDescribeTable };
|
|
27
43
|
//# sourceMappingURL=describe-table.d.cts.map
|
|
@@ -21,7 +21,23 @@ declare const snowflakeBasicDescribeTable: import("@keystrokehq/action").Workflo
|
|
|
21
21
|
database: string;
|
|
22
22
|
table_name: string;
|
|
23
23
|
schema_name: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
username: z.ZodString;
|
|
30
|
+
password: z.ZodString;
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
username: z.ZodString;
|
|
38
|
+
password: z.ZodString;
|
|
39
|
+
subdomain: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
25
41
|
//#endregion
|
|
26
42
|
export { snowflakeBasicDescribeTable };
|
|
27
43
|
//# sourceMappingURL=describe-table.d.mts.map
|
|
@@ -17,7 +17,23 @@ declare const snowflakeBasicExploreColumns: import("@keystrokehq/action").Workfl
|
|
|
17
17
|
schema_name: string;
|
|
18
18
|
limit?: number | undefined;
|
|
19
19
|
column_names?: string[] | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
username: z.ZodString;
|
|
26
|
+
password: z.ZodString;
|
|
27
|
+
subdomain: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
username: z.ZodString;
|
|
34
|
+
password: z.ZodString;
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
21
37
|
//#endregion
|
|
22
38
|
export { snowflakeBasicExploreColumns };
|
|
23
39
|
//# sourceMappingURL=explore-columns.d.cts.map
|
|
@@ -17,7 +17,23 @@ declare const snowflakeBasicExploreColumns: import("@keystrokehq/action").Workfl
|
|
|
17
17
|
schema_name: string;
|
|
18
18
|
limit?: number | undefined;
|
|
19
19
|
column_names?: string[] | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
username: z.ZodString;
|
|
26
|
+
password: z.ZodString;
|
|
27
|
+
subdomain: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
username: z.ZodString;
|
|
34
|
+
password: z.ZodString;
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
21
37
|
//#endregion
|
|
22
38
|
export { snowflakeBasicExploreColumns };
|
|
23
39
|
//# sourceMappingURL=explore-columns.d.mts.map
|
|
@@ -13,7 +13,23 @@ declare const snowflakeBasicRunQuery: import("@keystrokehq/action").WorkflowActi
|
|
|
13
13
|
query: string;
|
|
14
14
|
database: string;
|
|
15
15
|
schema_name: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
username: z.ZodString;
|
|
22
|
+
password: z.ZodString;
|
|
23
|
+
subdomain: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
username: z.ZodString;
|
|
30
|
+
password: z.ZodString;
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
17
33
|
//#endregion
|
|
18
34
|
export { snowflakeBasicRunQuery };
|
|
19
35
|
//# sourceMappingURL=run-query.d.cts.map
|
|
@@ -13,7 +13,23 @@ declare const snowflakeBasicRunQuery: import("@keystrokehq/action").WorkflowActi
|
|
|
13
13
|
query: string;
|
|
14
14
|
database: string;
|
|
15
15
|
schema_name: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
username: z.ZodString;
|
|
22
|
+
password: z.ZodString;
|
|
23
|
+
subdomain: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
username: z.ZodString;
|
|
30
|
+
password: z.ZodString;
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
17
33
|
//#endregion
|
|
18
34
|
export { snowflakeBasicRunQuery };
|
|
19
35
|
//# sourceMappingURL=run-query.d.mts.map
|
|
@@ -15,7 +15,23 @@ declare const SnowflakeBasicShowDatabasesOutput: z.ZodObject<{
|
|
|
15
15
|
retention_time: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
|
|
16
16
|
}, z.core.$loose>>>>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const snowflakeBasicShowDatabases: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const snowflakeBasicShowDatabases: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
username: z.ZodString;
|
|
24
|
+
password: z.ZodString;
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
username: z.ZodString;
|
|
32
|
+
password: z.ZodString;
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
19
35
|
//#endregion
|
|
20
36
|
export { snowflakeBasicShowDatabases };
|
|
21
37
|
//# sourceMappingURL=show-databases.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"show-databases.d.cts","names":[],"sources":["../../src/actions/show-databases.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"show-databases.d.cts","names":[],"sources":["../../src/actions/show-databases.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -15,7 +15,23 @@ declare const SnowflakeBasicShowDatabasesOutput: z.ZodObject<{
|
|
|
15
15
|
retention_time: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
|
|
16
16
|
}, z.core.$loose>>>>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const snowflakeBasicShowDatabases: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const snowflakeBasicShowDatabases: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
username: z.ZodString;
|
|
24
|
+
password: z.ZodString;
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
username: z.ZodString;
|
|
32
|
+
password: z.ZodString;
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
19
35
|
//#endregion
|
|
20
36
|
export { snowflakeBasicShowDatabases };
|
|
21
37
|
//# sourceMappingURL=show-databases.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"show-databases.d.mts","names":[],"sources":["../../src/actions/show-databases.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"show-databases.d.mts","names":[],"sources":["../../src/actions/show-databases.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -19,7 +19,23 @@ declare const SnowflakeBasicShowSchemasOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const snowflakeBasicShowSchemas: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
database: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
username: z.ZodString;
|
|
28
|
+
password: z.ZodString;
|
|
29
|
+
subdomain: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
username: z.ZodString;
|
|
36
|
+
password: z.ZodString;
|
|
37
|
+
subdomain: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
23
39
|
//#endregion
|
|
24
40
|
export { snowflakeBasicShowSchemas };
|
|
25
41
|
//# sourceMappingURL=show-schemas.d.cts.map
|
|
@@ -19,7 +19,23 @@ declare const SnowflakeBasicShowSchemasOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const snowflakeBasicShowSchemas: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
database: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
username: z.ZodString;
|
|
28
|
+
password: z.ZodString;
|
|
29
|
+
subdomain: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
username: z.ZodString;
|
|
36
|
+
password: z.ZodString;
|
|
37
|
+
subdomain: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
23
39
|
//#endregion
|
|
24
40
|
export { snowflakeBasicShowSchemas };
|
|
25
41
|
//# sourceMappingURL=show-schemas.d.mts.map
|
|
@@ -15,7 +15,23 @@ declare const SnowflakeBasicShowTablesOutput: z.ZodObject<{
|
|
|
15
15
|
declare const snowflakeBasicShowTables: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
database: string;
|
|
17
17
|
schema_name: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
username: z.ZodString;
|
|
24
|
+
password: z.ZodString;
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
username: z.ZodString;
|
|
32
|
+
password: z.ZodString;
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
19
35
|
//#endregion
|
|
20
36
|
export { snowflakeBasicShowTables };
|
|
21
37
|
//# sourceMappingURL=show-tables.d.cts.map
|
|
@@ -15,7 +15,23 @@ declare const SnowflakeBasicShowTablesOutput: z.ZodObject<{
|
|
|
15
15
|
declare const snowflakeBasicShowTables: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
database: string;
|
|
17
17
|
schema_name: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
username: z.ZodString;
|
|
24
|
+
password: z.ZodString;
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
username: z.ZodString;
|
|
32
|
+
password: z.ZodString;
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
19
35
|
//#endregion
|
|
20
36
|
export { snowflakeBasicShowTables };
|
|
21
37
|
//# sourceMappingURL=show-tables.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const snowflakeBasic = (0,
|
|
4
|
+
const snowflakeBasic = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "snowflake_basic",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
username: zod.z.string(),
|
|
9
|
+
password: zod.z.string(),
|
|
10
|
+
subdomain: zod.z.string()
|
|
11
|
+
}
|
|
5
12
|
});
|
|
6
13
|
//#endregion
|
|
7
14
|
exports.snowflakeBasic = snowflakeBasic;
|
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 snowflakeBasic = defineApp({\n slug: \"snowflake_basic\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
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 snowflakeBasic = defineApp({\n slug: \"snowflake_basic\",\n auth: \"keystroke\",\n credential: {\n username: z.string(),\n password: z.string(),\n subdomain: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,kBAAA,GAAA,2BAAA,UAAA,CAA2B;CACtC,MAAM;CACN,MAAM;CACN,YAAY;EACV,UAAUA,IAAAA,EAAE,OAAO;EACnB,UAAUA,IAAAA,EAAE,OAAO;EACnB,WAAWA,IAAAA,EAAE,OAAO;CACtB;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const snowflakeBasic: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const snowflakeBasic: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
username: z.ZodString;
|
|
10
|
+
password: z.ZodString;
|
|
11
|
+
subdomain: z.ZodString;
|
|
12
|
+
}, z.core.$strip>>>;
|
|
3
13
|
//#endregion
|
|
4
14
|
export { snowflakeBasic };
|
|
5
15
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,cAAA,6BAAc,GAAA,+BAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const snowflakeBasic: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const snowflakeBasic: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"snowflake_basic", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
username: z.ZodString;
|
|
10
|
+
password: z.ZodString;
|
|
11
|
+
subdomain: z.ZodString;
|
|
12
|
+
}, z.core.$strip>>>;
|
|
3
13
|
//#endregion
|
|
4
14
|
export { snowflakeBasic };
|
|
5
15
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,cAAA,6BAAc,GAAA,+BAAA,UAAA,oBAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const snowflakeBasic = defineApp({
|
|
4
5
|
slug: "snowflake_basic",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
username: z.string(),
|
|
9
|
+
password: z.string(),
|
|
10
|
+
subdomain: z.string()
|
|
11
|
+
}
|
|
6
12
|
});
|
|
7
13
|
//#endregion
|
|
8
14
|
export { snowflakeBasic };
|
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 snowflakeBasic = defineApp({\n slug: \"snowflake_basic\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
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 snowflakeBasic = defineApp({\n slug: \"snowflake_basic\",\n auth: \"keystroke\",\n credential: {\n username: z.string(),\n password: z.string(),\n subdomain: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,iBAAiB,UAAU;CACtC,MAAM;CACN,MAAM;CACN,YAAY;EACV,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,OAAO;EACnB,WAAW,EAAE,OAAO;CACtB;AACF,CAAC"}
|