@keystrokehq/sanity 0.1.3 → 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/add-default-role-to-users.d.cts +17 -1
- package/dist/actions/add-default-role-to-users.d.mts +17 -1
- package/dist/actions/create-attr-definition.d.cts +17 -1
- package/dist/actions/create-attr-definition.d.mts +17 -1
- package/dist/actions/create-prompt-post.d.cts +17 -1
- package/dist/actions/create-prompt-post.d.cts.map +1 -1
- package/dist/actions/create-prompt-post.d.mts +17 -1
- package/dist/actions/create-prompt-post.d.mts.map +1 -1
- package/dist/actions/delete-attr-definition.d.cts +17 -1
- package/dist/actions/delete-attr-definition.d.mts +17 -1
- package/dist/actions/delete-document.d.cts +17 -1
- package/dist/actions/delete-document.d.cts.map +1 -1
- package/dist/actions/delete-document.d.mts +17 -1
- package/dist/actions/delete-document.d.mts.map +1 -1
- package/dist/actions/delete-user-attributes.d.cts +17 -1
- package/dist/actions/delete-user-attributes.d.mts +17 -1
- package/dist/actions/get-document.d.cts +17 -1
- package/dist/actions/get-document.d.mts +17 -1
- package/dist/actions/get-invite-by-token.d.cts +17 -1
- package/dist/actions/get-invite-by-token.d.mts +17 -1
- package/dist/actions/get-org-role.d.cts +17 -1
- package/dist/actions/get-org-role.d.mts +17 -1
- package/dist/actions/get-permission.d.cts +17 -1
- package/dist/actions/get-permission.d.mts +17 -1
- package/dist/actions/get-project.d.cts +17 -1
- package/dist/actions/get-project.d.mts +17 -1
- package/dist/actions/get-robots.d.cts +17 -1
- package/dist/actions/get-robots.d.mts +17 -1
- package/dist/actions/get-role.d.cts +17 -1
- package/dist/actions/get-role.d.mts +17 -1
- package/dist/actions/get-users.d.cts +17 -1
- package/dist/actions/get-users.d.mts +17 -1
- package/dist/actions/list-org-roles.d.cts +17 -1
- package/dist/actions/list-org-roles.d.mts +17 -1
- package/dist/actions/list-user-attributes.d.cts +17 -1
- package/dist/actions/list-user-attributes.d.mts +17 -1
- package/dist/actions/query-all-screening.d.cts +17 -1
- package/dist/actions/query-all-screening.d.cts.map +1 -1
- package/dist/actions/query-all-screening.d.mts +17 -1
- package/dist/actions/query-all-screening.d.mts.map +1 -1
- package/dist/actions/query-documents.d.cts +17 -1
- package/dist/actions/query-documents.d.cts.map +1 -1
- package/dist/actions/query-documents.d.mts +17 -1
- package/dist/actions/query-documents.d.mts.map +1 -1
- package/dist/actions/update-org-acl.d.cts +17 -1
- package/dist/actions/update-org-acl.d.mts +17 -1
- package/dist/actions/update-user-attributes-values.d.cts +17 -1
- package/dist/actions/update-user-attributes-values.d.cts.map +1 -1
- package/dist/actions/update-user-attributes-values.d.mts +17 -1
- package/dist/actions/update-user-attributes-values.d.mts.map +1 -1
- package/dist/actions/validate-credential.d.cts +17 -1
- package/dist/actions/validate-credential.d.cts.map +1 -1
- package/dist/actions/validate-credential.d.mts +17 -1
- package/dist/actions/validate-credential.d.mts.map +1 -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/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,23 @@ declare const SanityAddDefaultRoleToUsersOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const sanityAddDefaultRoleToUsers: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
resource_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
version: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
version: z.ZodString;
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
14
30
|
//#endregion
|
|
15
31
|
export { sanityAddDefaultRoleToUsers };
|
|
16
32
|
//# sourceMappingURL=add-default-role-to-users.d.cts.map
|
|
@@ -10,7 +10,23 @@ declare const SanityAddDefaultRoleToUsersOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const sanityAddDefaultRoleToUsers: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
resource_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
version: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
version: z.ZodString;
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
14
30
|
//#endregion
|
|
15
31
|
export { sanityAddDefaultRoleToUsers };
|
|
16
32
|
//# sourceMappingURL=add-default-role-to-users.d.mts.map
|
|
@@ -32,7 +32,23 @@ declare const sanityCreateAttrDefinition: import("@keystrokehq/action").Workflow
|
|
|
32
32
|
list?: boolean | undefined;
|
|
33
33
|
read_only?: boolean | undefined;
|
|
34
34
|
description?: string | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
version: z.ZodString;
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
subdomain: z.ZodString;
|
|
49
|
+
version: z.ZodString;
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
36
52
|
//#endregion
|
|
37
53
|
export { sanityCreateAttrDefinition };
|
|
38
54
|
//# sourceMappingURL=create-attr-definition.d.cts.map
|
|
@@ -32,7 +32,23 @@ declare const sanityCreateAttrDefinition: import("@keystrokehq/action").Workflow
|
|
|
32
32
|
list?: boolean | undefined;
|
|
33
33
|
read_only?: boolean | undefined;
|
|
34
34
|
description?: string | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
version: z.ZodString;
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
subdomain: z.ZodString;
|
|
49
|
+
version: z.ZodString;
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
36
52
|
//#endregion
|
|
37
53
|
export { sanityCreateAttrDefinition };
|
|
38
54
|
//# sourceMappingURL=create-attr-definition.d.mts.map
|
|
@@ -23,7 +23,23 @@ declare const sanityCreatePromptPost: import("@keystrokehq/action").WorkflowActi
|
|
|
23
23
|
config?: Record<string, unknown> | undefined;
|
|
24
24
|
format?: "markdown" | "directives" | undefined;
|
|
25
25
|
instructions?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
version: z.ZodString;
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
subdomain: z.ZodString;
|
|
40
|
+
version: z.ZodString;
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
27
43
|
//#endregion
|
|
28
44
|
export { sanityCreatePromptPost };
|
|
29
45
|
//# sourceMappingURL=create-prompt-post.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-prompt-post.d.cts","names":[],"sources":["../../src/actions/create-prompt-post.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;cAO3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;cAO5B,sBAAA,gCAAsB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-prompt-post.d.cts","names":[],"sources":["../../src/actions/create-prompt-post.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;cAO3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;cAO5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -23,7 +23,23 @@ declare const sanityCreatePromptPost: import("@keystrokehq/action").WorkflowActi
|
|
|
23
23
|
config?: Record<string, unknown> | undefined;
|
|
24
24
|
format?: "markdown" | "directives" | undefined;
|
|
25
25
|
instructions?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
subdomain: z.ZodString;
|
|
32
|
+
version: z.ZodString;
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
subdomain: z.ZodString;
|
|
40
|
+
version: z.ZodString;
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
27
43
|
//#endregion
|
|
28
44
|
export { sanityCreatePromptPost };
|
|
29
45
|
//# sourceMappingURL=create-prompt-post.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-prompt-post.d.mts","names":[],"sources":["../../src/actions/create-prompt-post.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;cAO3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;cAO5B,sBAAA,gCAAsB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-prompt-post.d.mts","names":[],"sources":["../../src/actions/create-prompt-post.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;cAO3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;cAO5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -16,7 +16,23 @@ declare const sanityDeleteAttrDefinition: import("@keystrokehq/action").Workflow
|
|
|
16
16
|
resource_id: string;
|
|
17
17
|
definition_id: string;
|
|
18
18
|
resource_type: "organization" | "project";
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
version: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
subdomain: z.ZodString;
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
20
36
|
//#endregion
|
|
21
37
|
export { sanityDeleteAttrDefinition };
|
|
22
38
|
//# sourceMappingURL=delete-attr-definition.d.cts.map
|
|
@@ -16,7 +16,23 @@ declare const sanityDeleteAttrDefinition: import("@keystrokehq/action").Workflow
|
|
|
16
16
|
resource_id: string;
|
|
17
17
|
definition_id: string;
|
|
18
18
|
resource_type: "organization" | "project";
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
version: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
subdomain: z.ZodString;
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
20
36
|
//#endregion
|
|
21
37
|
export { sanityDeleteAttrDefinition };
|
|
22
38
|
//# sourceMappingURL=delete-attr-definition.d.mts.map
|
|
@@ -27,7 +27,23 @@ declare const sanityDeleteDocument: import("@keystrokehq/action").WorkflowAction
|
|
|
27
27
|
return_ids?: boolean | undefined;
|
|
28
28
|
document_id?: string | undefined;
|
|
29
29
|
return_documents?: boolean | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityDeleteDocument };
|
|
33
49
|
//# sourceMappingURL=delete-document.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-document.d.cts","names":[],"sources":["../../src/actions/delete-document.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAWzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAM1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"delete-document.d.cts","names":[],"sources":["../../src/actions/delete-document.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAWzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAM1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -27,7 +27,23 @@ declare const sanityDeleteDocument: import("@keystrokehq/action").WorkflowAction
|
|
|
27
27
|
return_ids?: boolean | undefined;
|
|
28
28
|
document_id?: string | undefined;
|
|
29
29
|
return_documents?: boolean | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityDeleteDocument };
|
|
33
49
|
//# sourceMappingURL=delete-document.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-document.d.mts","names":[],"sources":["../../src/actions/delete-document.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAWzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAM1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"delete-document.d.mts","names":[],"sources":["../../src/actions/delete-document.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAWzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAM1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -27,7 +27,23 @@ declare const sanityDeleteUserAttributes: import("@keystrokehq/action").Workflow
|
|
|
27
27
|
}[];
|
|
28
28
|
sanity_user_id: string;
|
|
29
29
|
organization_id: string;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityDeleteUserAttributes };
|
|
33
49
|
//# sourceMappingURL=delete-user-attributes.d.cts.map
|
|
@@ -27,7 +27,23 @@ declare const sanityDeleteUserAttributes: import("@keystrokehq/action").Workflow
|
|
|
27
27
|
}[];
|
|
28
28
|
sanity_user_id: string;
|
|
29
29
|
organization_id: string;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityDeleteUserAttributes };
|
|
33
49
|
//# sourceMappingURL=delete-user-attributes.d.mts.map
|
|
@@ -24,7 +24,23 @@ declare const sanityGetDocument: import("@keystrokehq/action").WorkflowActionDef
|
|
|
24
24
|
dataset: string;
|
|
25
25
|
project_id: string;
|
|
26
26
|
document_id: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
subdomain: z.ZodString;
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
version: z.ZodString;
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
28
44
|
//#endregion
|
|
29
45
|
export { sanityGetDocument };
|
|
30
46
|
//# sourceMappingURL=get-document.d.cts.map
|
|
@@ -24,7 +24,23 @@ declare const sanityGetDocument: import("@keystrokehq/action").WorkflowActionDef
|
|
|
24
24
|
dataset: string;
|
|
25
25
|
project_id: string;
|
|
26
26
|
document_id: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
subdomain: z.ZodString;
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
version: z.ZodString;
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
28
44
|
//#endregion
|
|
29
45
|
export { sanityGetDocument };
|
|
30
46
|
//# sourceMappingURL=get-document.d.mts.map
|
|
@@ -46,7 +46,23 @@ declare const sanityGetInviteByToken: import("@keystrokehq/action").WorkflowActi
|
|
|
46
46
|
resourceId: string;
|
|
47
47
|
inviteToken: string;
|
|
48
48
|
resourceType: "organization" | "project" | "media-library" | "canvas" | "dashboard" | "view";
|
|
49
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
49
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
subdomain: z.ZodString;
|
|
55
|
+
version: z.ZodString;
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
subdomain: z.ZodString;
|
|
63
|
+
version: z.ZodString;
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
50
66
|
//#endregion
|
|
51
67
|
export { sanityGetInviteByToken };
|
|
52
68
|
//# sourceMappingURL=get-invite-by-token.d.cts.map
|
|
@@ -46,7 +46,23 @@ declare const sanityGetInviteByToken: import("@keystrokehq/action").WorkflowActi
|
|
|
46
46
|
resourceId: string;
|
|
47
47
|
inviteToken: string;
|
|
48
48
|
resourceType: "organization" | "project" | "media-library" | "canvas" | "dashboard" | "view";
|
|
49
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
49
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
subdomain: z.ZodString;
|
|
55
|
+
version: z.ZodString;
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
subdomain: z.ZodString;
|
|
63
|
+
version: z.ZodString;
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
50
66
|
//#endregion
|
|
51
67
|
export { sanityGetInviteByToken };
|
|
52
68
|
//# sourceMappingURL=get-invite-by-token.d.mts.map
|
|
@@ -27,7 +27,23 @@ declare const SanityGetOrgRoleOutput: z.ZodObject<{
|
|
|
27
27
|
declare const sanityGetOrgRole: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
28
28
|
roleId: string;
|
|
29
29
|
organizationId: string;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityGetOrgRole };
|
|
33
49
|
//# sourceMappingURL=get-org-role.d.cts.map
|
|
@@ -27,7 +27,23 @@ declare const SanityGetOrgRoleOutput: z.ZodObject<{
|
|
|
27
27
|
declare const sanityGetOrgRole: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
28
28
|
roleId: string;
|
|
29
29
|
organizationId: string;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
subdomain: z.ZodString;
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
version: z.ZodString;
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
31
47
|
//#endregion
|
|
32
48
|
export { sanityGetOrgRole };
|
|
33
49
|
//# sourceMappingURL=get-org-role.d.mts.map
|
|
@@ -25,7 +25,23 @@ declare const sanityGetPermission: import("@keystrokehq/action").WorkflowActionD
|
|
|
25
25
|
resource_id: string;
|
|
26
26
|
resource_type: string;
|
|
27
27
|
permission_name: string;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
version: z.ZodString;
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
subdomain: z.ZodString;
|
|
42
|
+
version: z.ZodString;
|
|
43
|
+
generic_api_key: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
29
45
|
//#endregion
|
|
30
46
|
export { sanityGetPermission };
|
|
31
47
|
//# sourceMappingURL=get-permission.d.cts.map
|
|
@@ -25,7 +25,23 @@ declare const sanityGetPermission: import("@keystrokehq/action").WorkflowActionD
|
|
|
25
25
|
resource_id: string;
|
|
26
26
|
resource_type: string;
|
|
27
27
|
permission_name: string;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
subdomain: z.ZodString;
|
|
34
|
+
version: z.ZodString;
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
subdomain: z.ZodString;
|
|
42
|
+
version: z.ZodString;
|
|
43
|
+
generic_api_key: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
29
45
|
//#endregion
|
|
30
46
|
export { sanityGetPermission };
|
|
31
47
|
//# sourceMappingURL=get-permission.d.mts.map
|
|
@@ -34,7 +34,23 @@ declare const SanityGetProjectOutput: z.ZodObject<{
|
|
|
34
34
|
}, z.core.$loose>;
|
|
35
35
|
declare const sanityGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
36
|
project_id: string;
|
|
37
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
subdomain: z.ZodString;
|
|
43
|
+
version: z.ZodString;
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
subdomain: z.ZodString;
|
|
51
|
+
version: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>;
|
|
38
54
|
//#endregion
|
|
39
55
|
export { sanityGetProject };
|
|
40
56
|
//# sourceMappingURL=get-project.d.cts.map
|
|
@@ -34,7 +34,23 @@ declare const SanityGetProjectOutput: z.ZodObject<{
|
|
|
34
34
|
}, z.core.$loose>;
|
|
35
35
|
declare const sanityGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
36
|
project_id: string;
|
|
37
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
subdomain: z.ZodString;
|
|
43
|
+
version: z.ZodString;
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
subdomain: z.ZodString;
|
|
51
|
+
version: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>;
|
|
38
54
|
//#endregion
|
|
39
55
|
export { sanityGetProject };
|
|
40
56
|
//# sourceMappingURL=get-project.d.mts.map
|
|
@@ -37,7 +37,23 @@ declare const sanityGetRobots: import("@keystrokehq/action").WorkflowActionDefin
|
|
|
37
37
|
limit?: number | undefined;
|
|
38
38
|
next_cursor?: string | undefined;
|
|
39
39
|
include_children?: boolean | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
subdomain: z.ZodString;
|
|
46
|
+
version: z.ZodString;
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
subdomain: z.ZodString;
|
|
54
|
+
version: z.ZodString;
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
41
57
|
//#endregion
|
|
42
58
|
export { sanityGetRobots };
|
|
43
59
|
//# sourceMappingURL=get-robots.d.cts.map
|
|
@@ -37,7 +37,23 @@ declare const sanityGetRobots: import("@keystrokehq/action").WorkflowActionDefin
|
|
|
37
37
|
limit?: number | undefined;
|
|
38
38
|
next_cursor?: string | undefined;
|
|
39
39
|
include_children?: boolean | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
subdomain: z.ZodString;
|
|
46
|
+
version: z.ZodString;
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sanity", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
subdomain: z.ZodString;
|
|
54
|
+
version: z.ZodString;
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
41
57
|
//#endregion
|
|
42
58
|
export { sanityGetRobots };
|
|
43
59
|
//# sourceMappingURL=get-robots.d.mts.map
|