@keystrokehq/saucelabs 0.1.4 → 0.1.6
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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/get-api-definition.cjs +1 -0
- package/dist/actions/get-api-definition.cjs.map +1 -1
- package/dist/actions/get-api-definition.d.cts +3 -1
- package/dist/actions/get-api-definition.d.cts.map +1 -1
- package/dist/actions/get-api-definition.d.mts +3 -1
- package/dist/actions/get-api-definition.d.mts.map +1 -1
- package/dist/actions/get-api-definition.mjs +1 -0
- package/dist/actions/get-api-definition.mjs.map +1 -1
- package/dist/actions/get-api-status.cjs +1 -0
- package/dist/actions/get-api-status.cjs.map +1 -1
- package/dist/actions/get-api-status.d.cts +3 -1
- package/dist/actions/get-api-status.d.cts.map +1 -1
- package/dist/actions/get-api-status.d.mts +3 -1
- package/dist/actions/get-api-status.d.mts.map +1 -1
- package/dist/actions/get-api-status.mjs +1 -0
- package/dist/actions/get-api-status.mjs.map +1 -1
- package/dist/actions/get-appium-eol.cjs +1 -0
- package/dist/actions/get-appium-eol.cjs.map +1 -1
- package/dist/actions/get-appium-eol.d.cts +3 -1
- package/dist/actions/get-appium-eol.d.cts.map +1 -1
- package/dist/actions/get-appium-eol.d.mts +3 -1
- package/dist/actions/get-appium-eol.d.mts.map +1 -1
- package/dist/actions/get-appium-eol.mjs +1 -0
- package/dist/actions/get-appium-eol.mjs.map +1 -1
- package/dist/actions/get-platforms.cjs +1 -0
- package/dist/actions/get-platforms.cjs.map +1 -1
- package/dist/actions/get-platforms.d.cts +3 -3
- package/dist/actions/get-platforms.d.cts.map +1 -1
- package/dist/actions/get-platforms.d.mts +3 -3
- package/dist/actions/get-platforms.d.mts.map +1 -1
- package/dist/actions/get-platforms.mjs +1 -0
- package/dist/actions/get-platforms.mjs.map +1 -1
- package/dist/actions/get-tunnel-versions.cjs +1 -0
- package/dist/actions/get-tunnel-versions.cjs.map +1 -1
- package/dist/actions/get-tunnel-versions.d.cts +3 -5
- package/dist/actions/get-tunnel-versions.d.cts.map +1 -1
- package/dist/actions/get-tunnel-versions.d.mts +3 -5
- package/dist/actions/get-tunnel-versions.d.mts.map +1 -1
- package/dist/actions/get-tunnel-versions.mjs +1 -0
- package/dist/actions/get-tunnel-versions.mjs.map +1 -1
- package/dist/actions/list-jobs.cjs +1 -0
- package/dist/actions/list-jobs.cjs.map +1 -1
- package/dist/actions/list-jobs.d.cts +3 -13
- package/dist/actions/list-jobs.d.cts.map +1 -1
- package/dist/actions/list-jobs.d.mts +3 -13
- package/dist/actions/list-jobs.d.mts.map +1 -1
- package/dist/actions/list-jobs.mjs +1 -0
- package/dist/actions/list-jobs.mjs.map +1 -1
- package/dist/app.cjs +10 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +7 -2
- package/dist/app.mjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["saucelabs","executeSaucelabsTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { saucelabs } from \"./app\";\nimport { executeSaucelabsTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["saucelabs","executeSaucelabsTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { saucelabs } from \"./app\";\nimport { executeSaucelabsTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof saucelabs.credential> {\n return saucelabs.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSaucelabsTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOyD;CACzD,OAAOA,YAAAA,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { saucelabs } from \"./app\";\nimport { executeSaucelabsTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { saucelabs } from \"./app\";\nimport { executeSaucelabsTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof saucelabs.credential> {\n return saucelabs.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSaucelabsTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOyD;CACzD,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-definition.cjs","names":["z","action"],"sources":["../../src/actions/get-api-definition.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetApiDefinitionInput = z.object({}).describe(\"Request model for getting the Performance API Swagger definition.\\nNo parameters required.\");\nexport const SaucelabsGetApiDefinitionOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"API information including title, version, description, and contact details\").nullable().optional(),\n paths: z.record(z.string(), z.unknown()).describe(\"API paths and their operations\").nullable().optional(),\n openapi: z.string().describe(\"OpenAPI version (e.g., '3.0.3')\").nullable().optional(),\n servers: z.array(z.record(z.string(), z.unknown())).describe(\"List of server URLs for the API\").nullable().optional(),\n security: z.array(z.record(z.string(), z.unknown())).describe(\"Security requirements for the API\").nullable().optional(),\n components: z.record(z.string(), z.unknown()).describe(\"Reusable components including schemas, responses, parameters, and security schemes\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the complete OpenAPI/Swagger specification for the Performance API.\");\n\nexport const saucelabsGetApiDefinition = action(\"SAUCELABS_GET_API_DEFINITION\", {\n slug: \"saucelabs-get-api-definition\",\n name: \"Get Performance API Definition\",\n description: \"Tool to retrieve the OpenAPI/Swagger JSON documentation for the Sauce Labs Performance API. Use when you need to understand the API specification, endpoints, or schemas available in the Performance API.\",\n input: SaucelabsGetApiDefinitionInput,\n output: SaucelabsGetApiDefinitionOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-definition.cjs","names":["z","action"],"sources":["../../src/actions/get-api-definition.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetApiDefinitionInput = z.object({}).describe(\"Request model for getting the Performance API Swagger definition.\\nNo parameters required.\");\nexport const SaucelabsGetApiDefinitionOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"API information including title, version, description, and contact details\").nullable().optional(),\n paths: z.record(z.string(), z.unknown()).describe(\"API paths and their operations\").nullable().optional(),\n openapi: z.string().describe(\"OpenAPI version (e.g., '3.0.3')\").nullable().optional(),\n servers: z.array(z.record(z.string(), z.unknown())).describe(\"List of server URLs for the API\").nullable().optional(),\n security: z.array(z.record(z.string(), z.unknown())).describe(\"Security requirements for the API\").nullable().optional(),\n components: z.record(z.string(), z.unknown()).describe(\"Reusable components including schemas, responses, parameters, and security schemes\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the complete OpenAPI/Swagger specification for the Performance API.\");\n\nexport const saucelabsGetApiDefinition: AppAction<\n typeof SaucelabsGetApiDefinitionInput,\n typeof SaucelabsGetApiDefinitionOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_API_DEFINITION\", {\n slug: \"saucelabs-get-api-definition\",\n name: \"Get Performance API Definition\",\n description: \"Tool to retrieve the OpenAPI/Swagger JSON documentation for the Sauce Labs Performance API. Use when you need to understand the API specification, endpoints, or schemas available in the Performance API.\",\n input: SaucelabsGetApiDefinitionInput,\n output: SaucelabsGetApiDefinitionOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4FAA4F;AAChK,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnJ,OAAOA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,YAAYA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnK,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+FAA+F;AAEzH,MAAa,4BAITC,eAAAA,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-definition.d.ts
|
|
@@ -10,7 +12,7 @@ declare const SaucelabsGetApiDefinitionOutput: z.ZodObject<{
|
|
|
10
12
|
security: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
11
13
|
components: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const saucelabsGetApiDefinition:
|
|
15
|
+
declare const saucelabsGetApiDefinition: AppAction<typeof SaucelabsGetApiDefinitionInput, typeof SaucelabsGetApiDefinitionOutput, typeof saucelabs.credential>;
|
|
14
16
|
//#endregion
|
|
15
17
|
export { saucelabsGetApiDefinition };
|
|
16
18
|
//# sourceMappingURL=get-api-definition.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-definition.d.cts","names":[],"sources":["../../src/actions/get-api-definition.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-definition.d.cts","names":[],"sources":["../../src/actions/get-api-definition.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAS/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-definition.d.ts
|
|
@@ -10,7 +12,7 @@ declare const SaucelabsGetApiDefinitionOutput: z.ZodObject<{
|
|
|
10
12
|
security: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
11
13
|
components: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const saucelabsGetApiDefinition:
|
|
15
|
+
declare const saucelabsGetApiDefinition: AppAction<typeof SaucelabsGetApiDefinitionInput, typeof SaucelabsGetApiDefinitionOutput, typeof saucelabs.credential>;
|
|
14
16
|
//#endregion
|
|
15
17
|
export { saucelabsGetApiDefinition };
|
|
16
18
|
//# sourceMappingURL=get-api-definition.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-definition.d.mts","names":[],"sources":["../../src/actions/get-api-definition.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-definition.d.mts","names":[],"sources":["../../src/actions/get-api-definition.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAS/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-definition.mjs","names":[],"sources":["../../src/actions/get-api-definition.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetApiDefinitionInput = z.object({}).describe(\"Request model for getting the Performance API Swagger definition.\\nNo parameters required.\");\nexport const SaucelabsGetApiDefinitionOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"API information including title, version, description, and contact details\").nullable().optional(),\n paths: z.record(z.string(), z.unknown()).describe(\"API paths and their operations\").nullable().optional(),\n openapi: z.string().describe(\"OpenAPI version (e.g., '3.0.3')\").nullable().optional(),\n servers: z.array(z.record(z.string(), z.unknown())).describe(\"List of server URLs for the API\").nullable().optional(),\n security: z.array(z.record(z.string(), z.unknown())).describe(\"Security requirements for the API\").nullable().optional(),\n components: z.record(z.string(), z.unknown()).describe(\"Reusable components including schemas, responses, parameters, and security schemes\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the complete OpenAPI/Swagger specification for the Performance API.\");\n\nexport const saucelabsGetApiDefinition = action(\"SAUCELABS_GET_API_DEFINITION\", {\n slug: \"saucelabs-get-api-definition\",\n name: \"Get Performance API Definition\",\n description: \"Tool to retrieve the OpenAPI/Swagger JSON documentation for the Sauce Labs Performance API. Use when you need to understand the API specification, endpoints, or schemas available in the Performance API.\",\n input: SaucelabsGetApiDefinitionInput,\n output: SaucelabsGetApiDefinitionOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-definition.mjs","names":[],"sources":["../../src/actions/get-api-definition.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetApiDefinitionInput = z.object({}).describe(\"Request model for getting the Performance API Swagger definition.\\nNo parameters required.\");\nexport const SaucelabsGetApiDefinitionOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"API information including title, version, description, and contact details\").nullable().optional(),\n paths: z.record(z.string(), z.unknown()).describe(\"API paths and their operations\").nullable().optional(),\n openapi: z.string().describe(\"OpenAPI version (e.g., '3.0.3')\").nullable().optional(),\n servers: z.array(z.record(z.string(), z.unknown())).describe(\"List of server URLs for the API\").nullable().optional(),\n security: z.array(z.record(z.string(), z.unknown())).describe(\"Security requirements for the API\").nullable().optional(),\n components: z.record(z.string(), z.unknown()).describe(\"Reusable components including schemas, responses, parameters, and security schemes\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the complete OpenAPI/Swagger specification for the Performance API.\");\n\nexport const saucelabsGetApiDefinition: AppAction<\n typeof SaucelabsGetApiDefinitionInput,\n typeof SaucelabsGetApiDefinitionOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_API_DEFINITION\", {\n slug: \"saucelabs-get-api-definition\",\n name: \"Get Performance API Definition\",\n description: \"Tool to retrieve the OpenAPI/Swagger JSON documentation for the Sauce Labs Performance API. Use when you need to understand the API specification, endpoints, or schemas available in the Performance API.\",\n input: SaucelabsGetApiDefinitionInput,\n output: SaucelabsGetApiDefinitionOutput,\n});\n"],"mappings":";;;AAgBA,MAAa,4BAIT,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlB4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4FAkB3D;CACP,QAlB6C,EAAE,OAAO;EACtD,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnJ,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpH,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvH,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnK,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+FAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-status.cjs","names":["z","action"],"sources":["../../src/actions/get-api-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetApiStatusInput = z.object({}).describe(\"Request model for getting the Sauce Labs API status.\\nNo parameters required.\");\nexport const SaucelabsGetApiStatusOutput = z.object({\n wait_time: z.number().describe(\"Current wait time for service operations (in seconds)\").nullable().optional(),\n status_message: z.string().describe(\"Human-readable status message describing the current service state\").nullable().optional(),\n service_operational: z.boolean().describe(\"Boolean indicating whether the Sauce Labs service is operational\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the current operational status of Sauce Labs services.\");\n\nexport const saucelabsGetApiStatus = action(\"SAUCELABS_GET_API_STATUS\", {\n slug: \"saucelabs-get-api-status\",\n name: \"Get API Status\",\n description: \"Tool to retrieve the current operational status of Sauce Labs services. Use when you need to check if Sauce Labs is up and running or to get current wait times.\",\n input: SaucelabsGetApiStatusInput,\n output: SaucelabsGetApiStatusOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-status.cjs","names":["z","action"],"sources":["../../src/actions/get-api-status.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetApiStatusInput = z.object({}).describe(\"Request model for getting the Sauce Labs API status.\\nNo parameters required.\");\nexport const SaucelabsGetApiStatusOutput = z.object({\n wait_time: z.number().describe(\"Current wait time for service operations (in seconds)\").nullable().optional(),\n status_message: z.string().describe(\"Human-readable status message describing the current service state\").nullable().optional(),\n service_operational: z.boolean().describe(\"Boolean indicating whether the Sauce Labs service is operational\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the current operational status of Sauce Labs services.\");\n\nexport const saucelabsGetApiStatus: AppAction<\n typeof SaucelabsGetApiStatusInput,\n typeof SaucelabsGetApiStatusOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_API_STATUS\", {\n slug: \"saucelabs-get-api-status\",\n name: \"Get API Status\",\n description: \"Tool to retrieve the current operational status of Sauce Labs services. Use when you need to check if Sauce Labs is up and running or to get current wait times.\",\n input: SaucelabsGetApiStatusInput,\n output: SaucelabsGetApiStatusOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC/I,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAAkF;AAE5G,MAAa,wBAITC,eAAAA,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-status.d.ts
|
|
@@ -7,7 +9,7 @@ declare const SaucelabsGetApiStatusOutput: z.ZodObject<{
|
|
|
7
9
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
10
|
service_operational: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const saucelabsGetApiStatus:
|
|
12
|
+
declare const saucelabsGetApiStatus: AppAction<typeof SaucelabsGetApiStatusInput, typeof SaucelabsGetApiStatusOutput, typeof saucelabs.credential>;
|
|
11
13
|
//#endregion
|
|
12
14
|
export { saucelabsGetApiStatus };
|
|
13
15
|
//# sourceMappingURL=get-api-status.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-status.d.cts","names":[],"sources":["../../src/actions/get-api-status.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-status.d.cts","names":[],"sources":["../../src/actions/get-api-status.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;cAM3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-status.d.ts
|
|
@@ -7,7 +9,7 @@ declare const SaucelabsGetApiStatusOutput: z.ZodObject<{
|
|
|
7
9
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
10
|
service_operational: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const saucelabsGetApiStatus:
|
|
12
|
+
declare const saucelabsGetApiStatus: AppAction<typeof SaucelabsGetApiStatusInput, typeof SaucelabsGetApiStatusOutput, typeof saucelabs.credential>;
|
|
11
13
|
//#endregion
|
|
12
14
|
export { saucelabsGetApiStatus };
|
|
13
15
|
//# sourceMappingURL=get-api-status.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-status.d.mts","names":[],"sources":["../../src/actions/get-api-status.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-status.d.mts","names":[],"sources":["../../src/actions/get-api-status.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;cAM3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-status.mjs","names":[],"sources":["../../src/actions/get-api-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetApiStatusInput = z.object({}).describe(\"Request model for getting the Sauce Labs API status.\\nNo parameters required.\");\nexport const SaucelabsGetApiStatusOutput = z.object({\n wait_time: z.number().describe(\"Current wait time for service operations (in seconds)\").nullable().optional(),\n status_message: z.string().describe(\"Human-readable status message describing the current service state\").nullable().optional(),\n service_operational: z.boolean().describe(\"Boolean indicating whether the Sauce Labs service is operational\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the current operational status of Sauce Labs services.\");\n\nexport const saucelabsGetApiStatus = action(\"SAUCELABS_GET_API_STATUS\", {\n slug: \"saucelabs-get-api-status\",\n name: \"Get API Status\",\n description: \"Tool to retrieve the current operational status of Sauce Labs services. Use when you need to check if Sauce Labs is up and running or to get current wait times.\",\n input: SaucelabsGetApiStatusInput,\n output: SaucelabsGetApiStatusOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-status.mjs","names":[],"sources":["../../src/actions/get-api-status.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetApiStatusInput = z.object({}).describe(\"Request model for getting the Sauce Labs API status.\\nNo parameters required.\");\nexport const SaucelabsGetApiStatusOutput = z.object({\n wait_time: z.number().describe(\"Current wait time for service operations (in seconds)\").nullable().optional(),\n status_message: z.string().describe(\"Human-readable status message describing the current service state\").nullable().optional(),\n service_operational: z.boolean().describe(\"Boolean indicating whether the Sauce Labs service is operational\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the current operational status of Sauce Labs services.\");\n\nexport const saucelabsGetApiStatus: AppAction<\n typeof SaucelabsGetApiStatusInput,\n typeof SaucelabsGetApiStatusOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_API_STATUS\", {\n slug: \"saucelabs-get-api-status\",\n name: \"Get API Status\",\n description: \"Tool to retrieve the current operational status of Sauce Labs services. Use when you need to check if Sauce Labs is up and running or to get current wait times.\",\n input: SaucelabsGetApiStatusInput,\n output: SaucelabsGetApiStatusOutput,\n});\n"],"mappings":";;;AAaA,MAAa,wBAIT,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAevD;CACP,QAfyC,EAAE,OAAO;EAClD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9H,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-appium-eol.cjs","names":["z","action"],"sources":["../../src/actions/get-appium-eol.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetAppiumEolInput = z.object({}).describe(\"Request model for retrieving Appium EOL information. No parameters required.\");\nexport const SaucelabsGetAppiumEolOutput = z.object({\n eol_data: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Appium version strings to Unix timestamp integers (end-of-life date) or null if no discontinuation date is set\"),\n}).passthrough().describe(\"Response containing Appium version end-of-life dates.\\nEach field represents an Appium version with its EOL date as Unix timestamp or null.\");\n\nexport const saucelabsGetAppiumEol = action(\"SAUCELABS_GET_APPIUM_EOL\", {\n slug: \"saucelabs-get-appium-eol\",\n name: \"Get Appium EOL\",\n description: \"Tool to retrieve end-of-life information for Appium versions. Returns Unix timestamps indicating when Sauce Labs support for each Appium version will be discontinued. Use when checking version compatibility or planning Appium upgrades.\",\n input: SaucelabsGetAppiumEolInput,\n output: SaucelabsGetAppiumEolOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-appium-eol.cjs","names":["z","action"],"sources":["../../src/actions/get-appium-eol.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetAppiumEolInput = z.object({}).describe(\"Request model for retrieving Appium EOL information. No parameters required.\");\nexport const SaucelabsGetAppiumEolOutput = z.object({\n eol_data: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Appium version strings to Unix timestamp integers (end-of-life date) or null if no discontinuation date is set\"),\n}).passthrough().describe(\"Response containing Appium version end-of-life dates.\\nEach field represents an Appium version with its EOL date as Unix timestamp or null.\");\n\nexport const saucelabsGetAppiumEol: AppAction<\n typeof SaucelabsGetAppiumEolInput,\n typeof SaucelabsGetAppiumEolOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_APPIUM_EOL\", {\n slug: \"saucelabs-get-appium-eol\",\n name: \"Get Appium EOL\",\n description: \"Tool to retrieve end-of-life information for Appium versions. Returns Unix timestamps indicating when Sauce Labs support for each Appium version will be discontinued. Use when checking version compatibility or planning Appium upgrades.\",\n input: SaucelabsGetAppiumEolInput,\n output: SaucelabsGetAppiumEolOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAA8E;AAC9I,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mIAAmI,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6IAA6I;AAEvK,MAAa,wBAITC,eAAAA,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-appium-eol.d.ts
|
|
@@ -5,7 +7,7 @@ declare const SaucelabsGetAppiumEolInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const SaucelabsGetAppiumEolOutput: z.ZodObject<{
|
|
6
8
|
eol_data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const saucelabsGetAppiumEol:
|
|
10
|
+
declare const saucelabsGetAppiumEol: AppAction<typeof SaucelabsGetAppiumEolInput, typeof SaucelabsGetAppiumEolOutput, typeof saucelabs.credential>;
|
|
9
11
|
//#endregion
|
|
10
12
|
export { saucelabsGetAppiumEol };
|
|
11
13
|
//# sourceMappingURL=get-appium-eol.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-appium-eol.d.cts","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-appium-eol.d.cts","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAI3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-appium-eol.d.ts
|
|
@@ -5,7 +7,7 @@ declare const SaucelabsGetAppiumEolInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const SaucelabsGetAppiumEolOutput: z.ZodObject<{
|
|
6
8
|
eol_data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const saucelabsGetAppiumEol:
|
|
10
|
+
declare const saucelabsGetAppiumEol: AppAction<typeof SaucelabsGetAppiumEolInput, typeof SaucelabsGetAppiumEolOutput, typeof saucelabs.credential>;
|
|
9
11
|
//#endregion
|
|
10
12
|
export { saucelabsGetAppiumEol };
|
|
11
13
|
//# sourceMappingURL=get-appium-eol.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-appium-eol.d.mts","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-appium-eol.d.mts","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAI3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-appium-eol.mjs","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetAppiumEolInput = z.object({}).describe(\"Request model for retrieving Appium EOL information. No parameters required.\");\nexport const SaucelabsGetAppiumEolOutput = z.object({\n eol_data: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Appium version strings to Unix timestamp integers (end-of-life date) or null if no discontinuation date is set\"),\n}).passthrough().describe(\"Response containing Appium version end-of-life dates.\\nEach field represents an Appium version with its EOL date as Unix timestamp or null.\");\n\nexport const saucelabsGetAppiumEol = action(\"SAUCELABS_GET_APPIUM_EOL\", {\n slug: \"saucelabs-get-appium-eol\",\n name: \"Get Appium EOL\",\n description: \"Tool to retrieve end-of-life information for Appium versions. Returns Unix timestamps indicating when Sauce Labs support for each Appium version will be discontinued. Use when checking version compatibility or planning Appium upgrades.\",\n input: SaucelabsGetAppiumEolInput,\n output: SaucelabsGetAppiumEolOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-appium-eol.mjs","names":[],"sources":["../../src/actions/get-appium-eol.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetAppiumEolInput = z.object({}).describe(\"Request model for retrieving Appium EOL information. No parameters required.\");\nexport const SaucelabsGetAppiumEolOutput = z.object({\n eol_data: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Appium version strings to Unix timestamp integers (end-of-life date) or null if no discontinuation date is set\"),\n}).passthrough().describe(\"Response containing Appium version end-of-life dates.\\nEach field represents an Appium version with its EOL date as Unix timestamp or null.\");\n\nexport const saucelabsGetAppiumEol: AppAction<\n typeof SaucelabsGetAppiumEolInput,\n typeof SaucelabsGetAppiumEolOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_APPIUM_EOL\", {\n slug: \"saucelabs-get-appium-eol\",\n name: \"Get Appium EOL\",\n description: \"Tool to retrieve end-of-life information for Appium versions. Returns Unix timestamps indicating when Sauce Labs support for each Appium version will be discontinued. Use when checking version compatibility or planning Appium upgrades.\",\n input: SaucelabsGetAppiumEolInput,\n output: SaucelabsGetAppiumEolOutput,\n});\n"],"mappings":";;;AAWA,MAAa,wBAIT,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAavD;CACP,QAbyC,EAAE,OAAO,EAClD,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mIAAmI,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6IAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-platforms.cjs","names":["z","action"],"sources":["../../src/actions/get-platforms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetPlatformsInput = z.object({\n automation_api: z.enum([\"appium\", \"webdriver\", \"all\"]).describe(\"The automation API to get platforms for. Use 'appium' for Appium platforms, 'webdriver' for WebDriver platforms, or 'all' for all supported platforms.\"),\n}).describe(\"Request model for getting supported platforms for an automation API.\");\nconst SaucelabsGetPlatforms_PlatformSchema = z.object({\n os: z.string().describe(\"Operating system\").nullable().optional(),\n device: z.string().describe(\"Device type or name\").nullable().optional(),\n api_name: z.string().describe(\"API name of the platform\").nullable().optional(),\n long_name: z.string().describe(\"Long name of the platform\").nullable().optional(),\n long_version: z.string().describe(\"Long version string\").nullable().optional(),\n short_version: z.string().describe(\"Short version string\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for this platform\").nullable().optional(),\n latest_stable_version: z.string().describe(\"Latest stable version available\").nullable().optional(),\n supported_backend_versions: z.array(z.string()).describe(\"List of supported backend versions\").nullable().optional(),\n deprecated_backend_versions: z.array(z.string()).describe(\"List of deprecated backend versions\").nullable().optional(),\n recommended_backend_version: z.string().describe(\"Recommended backend version\").nullable().optional(),\n}).passthrough().describe(\"Platform information.\");\nexport const SaucelabsGetPlatformsOutput = z.object({\n platforms: z.array(SaucelabsGetPlatforms_PlatformSchema).describe(\"List of platforms that Sauce Labs supports for the specified automation API\"),\n}).passthrough().describe(\"Response model containing list of supported platforms.\");\n\nexport const saucelabsGetPlatforms = action(\"SAUCELABS_GET_PLATFORMS\", {\n slug: \"saucelabs-get-platforms\",\n name: \"Get Supported Platforms\",\n description: \"Tool to get supported platforms for an automation API. Use when you need to retrieve available platforms for Appium, WebDriver, or all automation APIs on Sauce Labs.\",\n input: SaucelabsGetPlatformsInput,\n output: SaucelabsGetPlatformsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-platforms.cjs","names":["z","action"],"sources":["../../src/actions/get-platforms.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetPlatformsInput = z.object({\n automation_api: z.enum([\"appium\", \"webdriver\", \"all\"]).describe(\"The automation API to get platforms for. Use 'appium' for Appium platforms, 'webdriver' for WebDriver platforms, or 'all' for all supported platforms.\"),\n}).describe(\"Request model for getting supported platforms for an automation API.\");\nconst SaucelabsGetPlatforms_PlatformSchema = z.object({\n os: z.string().describe(\"Operating system\").nullable().optional(),\n device: z.string().describe(\"Device type or name\").nullable().optional(),\n api_name: z.string().describe(\"API name of the platform\").nullable().optional(),\n long_name: z.string().describe(\"Long name of the platform\").nullable().optional(),\n long_version: z.string().describe(\"Long version string\").nullable().optional(),\n short_version: z.string().describe(\"Short version string\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for this platform\").nullable().optional(),\n latest_stable_version: z.string().describe(\"Latest stable version available\").nullable().optional(),\n supported_backend_versions: z.array(z.string()).describe(\"List of supported backend versions\").nullable().optional(),\n deprecated_backend_versions: z.array(z.string()).describe(\"List of deprecated backend versions\").nullable().optional(),\n recommended_backend_version: z.string().describe(\"Recommended backend version\").nullable().optional(),\n}).passthrough().describe(\"Platform information.\");\nexport const SaucelabsGetPlatformsOutput = z.object({\n platforms: z.array(SaucelabsGetPlatforms_PlatformSchema).describe(\"List of platforms that Sauce Labs supports for the specified automation API\"),\n}).passthrough().describe(\"Response model containing list of supported platforms.\");\n\nexport const saucelabsGetPlatforms: AppAction<\n typeof SaucelabsGetPlatformsInput,\n typeof SaucelabsGetPlatformsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_PLATFORMS\", {\n slug: \"saucelabs-get-platforms\",\n name: \"Get Supported Platforms\",\n description: \"Tool to get supported platforms for an automation API. Use when you need to retrieve available platforms for Appium, WebDriver, or all automation APIs on Sauce Labs.\",\n input: SaucelabsGetPlatformsInput,\n output: SaucelabsGetPlatformsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,gBAAgBA,IAAAA,EAAE,KAAK;CAAC;CAAU;CAAa;AAAK,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC1N,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAClF,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,uBAAuBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,4BAA4BA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,6BAA6BA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrH,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uBAAuB;AACjD,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,WAAWA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,6EAA6E,EACjJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAAwD;AAElF,MAAa,wBAITC,eAAAA,OAAO,2BAA2B;CACpC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-platforms.d.ts
|
|
@@ -23,9 +25,7 @@ declare const SaucelabsGetPlatformsOutput: z.ZodObject<{
|
|
|
23
25
|
recommended_backend_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
26
|
}, z.core.$loose>>;
|
|
25
27
|
}, z.core.$loose>;
|
|
26
|
-
declare const saucelabsGetPlatforms:
|
|
27
|
-
automation_api: "appium" | "webdriver" | "all";
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
28
|
+
declare const saucelabsGetPlatforms: AppAction<typeof SaucelabsGetPlatformsInput, typeof SaucelabsGetPlatformsOutput, typeof saucelabs.credential>;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { saucelabsGetPlatforms };
|
|
31
31
|
//# sourceMappingURL=get-platforms.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-platforms.d.cts","names":[],"sources":["../../src/actions/get-platforms.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-platforms.d.cts","names":[],"sources":["../../src/actions/get-platforms.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAgB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-platforms.d.ts
|
|
@@ -23,9 +25,7 @@ declare const SaucelabsGetPlatformsOutput: z.ZodObject<{
|
|
|
23
25
|
recommended_backend_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
26
|
}, z.core.$loose>>;
|
|
25
27
|
}, z.core.$loose>;
|
|
26
|
-
declare const saucelabsGetPlatforms:
|
|
27
|
-
automation_api: "appium" | "webdriver" | "all";
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
28
|
+
declare const saucelabsGetPlatforms: AppAction<typeof SaucelabsGetPlatformsInput, typeof SaucelabsGetPlatformsOutput, typeof saucelabs.credential>;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { saucelabsGetPlatforms };
|
|
31
31
|
//# sourceMappingURL=get-platforms.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-platforms.d.mts","names":[],"sources":["../../src/actions/get-platforms.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-platforms.d.mts","names":[],"sources":["../../src/actions/get-platforms.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAgB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-platforms.mjs","names":[],"sources":["../../src/actions/get-platforms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetPlatformsInput = z.object({\n automation_api: z.enum([\"appium\", \"webdriver\", \"all\"]).describe(\"The automation API to get platforms for. Use 'appium' for Appium platforms, 'webdriver' for WebDriver platforms, or 'all' for all supported platforms.\"),\n}).describe(\"Request model for getting supported platforms for an automation API.\");\nconst SaucelabsGetPlatforms_PlatformSchema = z.object({\n os: z.string().describe(\"Operating system\").nullable().optional(),\n device: z.string().describe(\"Device type or name\").nullable().optional(),\n api_name: z.string().describe(\"API name of the platform\").nullable().optional(),\n long_name: z.string().describe(\"Long name of the platform\").nullable().optional(),\n long_version: z.string().describe(\"Long version string\").nullable().optional(),\n short_version: z.string().describe(\"Short version string\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for this platform\").nullable().optional(),\n latest_stable_version: z.string().describe(\"Latest stable version available\").nullable().optional(),\n supported_backend_versions: z.array(z.string()).describe(\"List of supported backend versions\").nullable().optional(),\n deprecated_backend_versions: z.array(z.string()).describe(\"List of deprecated backend versions\").nullable().optional(),\n recommended_backend_version: z.string().describe(\"Recommended backend version\").nullable().optional(),\n}).passthrough().describe(\"Platform information.\");\nexport const SaucelabsGetPlatformsOutput = z.object({\n platforms: z.array(SaucelabsGetPlatforms_PlatformSchema).describe(\"List of platforms that Sauce Labs supports for the specified automation API\"),\n}).passthrough().describe(\"Response model containing list of supported platforms.\");\n\nexport const saucelabsGetPlatforms = action(\"SAUCELABS_GET_PLATFORMS\", {\n slug: \"saucelabs-get-platforms\",\n name: \"Get Supported Platforms\",\n description: \"Tool to get supported platforms for an automation API. Use when you need to retrieve available platforms for Appium, WebDriver, or all automation APIs on Sauce Labs.\",\n input: SaucelabsGetPlatformsInput,\n output: SaucelabsGetPlatformsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-platforms.mjs","names":[],"sources":["../../src/actions/get-platforms.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetPlatformsInput = z.object({\n automation_api: z.enum([\"appium\", \"webdriver\", \"all\"]).describe(\"The automation API to get platforms for. Use 'appium' for Appium platforms, 'webdriver' for WebDriver platforms, or 'all' for all supported platforms.\"),\n}).describe(\"Request model for getting supported platforms for an automation API.\");\nconst SaucelabsGetPlatforms_PlatformSchema = z.object({\n os: z.string().describe(\"Operating system\").nullable().optional(),\n device: z.string().describe(\"Device type or name\").nullable().optional(),\n api_name: z.string().describe(\"API name of the platform\").nullable().optional(),\n long_name: z.string().describe(\"Long name of the platform\").nullable().optional(),\n long_version: z.string().describe(\"Long version string\").nullable().optional(),\n short_version: z.string().describe(\"Short version string\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for this platform\").nullable().optional(),\n latest_stable_version: z.string().describe(\"Latest stable version available\").nullable().optional(),\n supported_backend_versions: z.array(z.string()).describe(\"List of supported backend versions\").nullable().optional(),\n deprecated_backend_versions: z.array(z.string()).describe(\"List of deprecated backend versions\").nullable().optional(),\n recommended_backend_version: z.string().describe(\"Recommended backend version\").nullable().optional(),\n}).passthrough().describe(\"Platform information.\");\nexport const SaucelabsGetPlatformsOutput = z.object({\n platforms: z.array(SaucelabsGetPlatforms_PlatformSchema).describe(\"List of platforms that Sauce Labs supports for the specified automation API\"),\n}).passthrough().describe(\"Response model containing list of supported platforms.\");\n\nexport const saucelabsGetPlatforms: AppAction<\n typeof SaucelabsGetPlatformsInput,\n typeof SaucelabsGetPlatformsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_PLATFORMS\", {\n slug: \"saucelabs-get-platforms\",\n name: \"Get Supported Platforms\",\n description: \"Tool to get supported platforms for an automation API. Use when you need to retrieve available platforms for Appium, WebDriver, or all automation APIs on Sauce Labs.\",\n input: SaucelabsGetPlatformsInput,\n output: SaucelabsGetPlatformsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,6BAA6B,EAAE,OAAO,EACjD,gBAAgB,EAAE,KAAK;CAAC;CAAU;CAAa;AAAK,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC1N,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAClF,MAAM,uCAAuC,EAAE,OAAO;CACpD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,uBAAuB,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,4BAA4B,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,6BAA6B,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrH,6BAA6B,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uBAAuB;AAKjD,MAAa,wBAIT,OAAO,2BAA2B;CACpC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbyC,EAAE,OAAO,EAClD,WAAW,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,6EAA6E,EACjJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-tunnel-versions.cjs","names":["z","action"],"sources":["../../src/actions/get-tunnel-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetTunnelVersionsInput = z.object({\n all: z.boolean().describe(\"Set to true to return download information for all available versions.\").optional(),\n client_host: z.string().describe(\"Returns info for a specific host OS and CPU architecture (e.g., 'darwin-amd64', 'linux', 'win32').\").optional(),\n client_version: z.string().describe(\"Returns download info for a specific Sauce Connect client version (e.g., '4.7.1').\").optional(),\n}).describe(\"Request model for retrieving Sauce Connect tunnel version information.\");\nexport const SaucelabsGetTunnelVersionsOutput = z.object({\n sha1: z.string().describe(\"SHA1 checksum for the download when requesting a specific platform.\").nullable().optional(),\n status: z.string().describe(\"Upgrade status indicator (e.g., 'UPGRADE').\").nullable().optional(),\n warning: z.array(z.string()).describe(\"Optional warning messages from the API.\").nullable().optional(),\n info_url: z.string().describe(\"Link to Sauce Connect installation documentation.\").nullable().optional(),\n downloads: z.record(z.string(), z.unknown()).describe(\"Download URLs and SHA1 hashes for platform-specific versions (linux, linux-arm64, osx, win32).\").nullable().optional(),\n download_url: z.string().describe(\"Direct download link when requesting a specific platform (client_host parameter).\").nullable().optional(),\n all_downloads: z.record(z.string(), z.unknown()).describe(\"When 'all' parameter is true, nested structure mapping version numbers to platform downloads.\").nullable().optional(),\n client_version: z.string().describe(\"Requested client version identifier.\").nullable().optional(),\n latest_version: z.string().describe(\"Current latest version number of Sauce Connect.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing Sauce Connect tunnel version and download information.\");\n\nexport const saucelabsGetTunnelVersions = action(\"SAUCELABS_GET_TUNNEL_VERSIONS\", {\n slug: \"saucelabs-get-tunnel-versions\",\n name: \"Get Tunnel Versions\",\n description: \"Tool to retrieve information about available Sauce Connect tunnel versions. Use when checking for the latest version, downloading specific platform binaries, or listing all available versions.\",\n input: SaucelabsGetTunnelVersionsInput,\n output: SaucelabsGetTunnelVersionsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-tunnel-versions.cjs","names":["z","action"],"sources":["../../src/actions/get-tunnel-versions.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetTunnelVersionsInput = z.object({\n all: z.boolean().describe(\"Set to true to return download information for all available versions.\").optional(),\n client_host: z.string().describe(\"Returns info for a specific host OS and CPU architecture (e.g., 'darwin-amd64', 'linux', 'win32').\").optional(),\n client_version: z.string().describe(\"Returns download info for a specific Sauce Connect client version (e.g., '4.7.1').\").optional(),\n}).describe(\"Request model for retrieving Sauce Connect tunnel version information.\");\nexport const SaucelabsGetTunnelVersionsOutput = z.object({\n sha1: z.string().describe(\"SHA1 checksum for the download when requesting a specific platform.\").nullable().optional(),\n status: z.string().describe(\"Upgrade status indicator (e.g., 'UPGRADE').\").nullable().optional(),\n warning: z.array(z.string()).describe(\"Optional warning messages from the API.\").nullable().optional(),\n info_url: z.string().describe(\"Link to Sauce Connect installation documentation.\").nullable().optional(),\n downloads: z.record(z.string(), z.unknown()).describe(\"Download URLs and SHA1 hashes for platform-specific versions (linux, linux-arm64, osx, win32).\").nullable().optional(),\n download_url: z.string().describe(\"Direct download link when requesting a specific platform (client_host parameter).\").nullable().optional(),\n all_downloads: z.record(z.string(), z.unknown()).describe(\"When 'all' parameter is true, nested structure mapping version numbers to platform downloads.\").nullable().optional(),\n client_version: z.string().describe(\"Requested client version identifier.\").nullable().optional(),\n latest_version: z.string().describe(\"Current latest version number of Sauce Connect.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing Sauce Connect tunnel version and download information.\");\n\nexport const saucelabsGetTunnelVersions: AppAction<\n typeof SaucelabsGetTunnelVersionsInput,\n typeof SaucelabsGetTunnelVersionsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_TUNNEL_VERSIONS\", {\n slug: \"saucelabs-get-tunnel-versions\",\n name: \"Get Tunnel Versions\",\n description: \"Tool to retrieve information about available Sauce Connect tunnel versions. Use when checking for the latest version, downloading specific platform binaries, or listing all available versions.\",\n input: SaucelabsGetTunnelVersionsInput,\n output: SaucelabsGetTunnelVersionsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,KAAKA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAC7G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CAChJ,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;AACrI,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrH,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,WAAWA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5K,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3I,eAAeA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/K,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAAkF;AAE5G,MAAa,6BAITC,eAAAA,OAAO,iCAAiC;CAC1C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-tunnel-versions.d.ts
|
|
@@ -17,11 +19,7 @@ declare const SaucelabsGetTunnelVersionsOutput: z.ZodObject<{
|
|
|
17
19
|
client_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
20
|
latest_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
21
|
}, z.core.$loose>;
|
|
20
|
-
declare const saucelabsGetTunnelVersions:
|
|
21
|
-
all?: boolean | undefined;
|
|
22
|
-
client_host?: string | undefined;
|
|
23
|
-
client_version?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
22
|
+
declare const saucelabsGetTunnelVersions: AppAction<typeof SaucelabsGetTunnelVersionsInput, typeof SaucelabsGetTunnelVersionsOutput, typeof saucelabs.credential>;
|
|
25
23
|
//#endregion
|
|
26
24
|
export { saucelabsGetTunnelVersions };
|
|
27
25
|
//# sourceMappingURL=get-tunnel-versions.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-tunnel-versions.d.cts","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-tunnel-versions.d.cts","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"mappings":";;;;;cAMa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;cAK/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;cAYhC,0BAAA,EAA4B,SAAA,QAChC,+BAAA,SACA,gCAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-tunnel-versions.d.ts
|
|
@@ -17,11 +19,7 @@ declare const SaucelabsGetTunnelVersionsOutput: z.ZodObject<{
|
|
|
17
19
|
client_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
20
|
latest_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
21
|
}, z.core.$loose>;
|
|
20
|
-
declare const saucelabsGetTunnelVersions:
|
|
21
|
-
all?: boolean | undefined;
|
|
22
|
-
client_host?: string | undefined;
|
|
23
|
-
client_version?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
22
|
+
declare const saucelabsGetTunnelVersions: AppAction<typeof SaucelabsGetTunnelVersionsInput, typeof SaucelabsGetTunnelVersionsOutput, typeof saucelabs.credential>;
|
|
25
23
|
//#endregion
|
|
26
24
|
export { saucelabsGetTunnelVersions };
|
|
27
25
|
//# sourceMappingURL=get-tunnel-versions.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-tunnel-versions.d.mts","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-tunnel-versions.d.mts","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"mappings":";;;;;cAMa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;cAK/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;cAYhC,0BAAA,EAA4B,SAAA,QAChC,+BAAA,SACA,gCAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-tunnel-versions.mjs","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsGetTunnelVersionsInput = z.object({\n all: z.boolean().describe(\"Set to true to return download information for all available versions.\").optional(),\n client_host: z.string().describe(\"Returns info for a specific host OS and CPU architecture (e.g., 'darwin-amd64', 'linux', 'win32').\").optional(),\n client_version: z.string().describe(\"Returns download info for a specific Sauce Connect client version (e.g., '4.7.1').\").optional(),\n}).describe(\"Request model for retrieving Sauce Connect tunnel version information.\");\nexport const SaucelabsGetTunnelVersionsOutput = z.object({\n sha1: z.string().describe(\"SHA1 checksum for the download when requesting a specific platform.\").nullable().optional(),\n status: z.string().describe(\"Upgrade status indicator (e.g., 'UPGRADE').\").nullable().optional(),\n warning: z.array(z.string()).describe(\"Optional warning messages from the API.\").nullable().optional(),\n info_url: z.string().describe(\"Link to Sauce Connect installation documentation.\").nullable().optional(),\n downloads: z.record(z.string(), z.unknown()).describe(\"Download URLs and SHA1 hashes for platform-specific versions (linux, linux-arm64, osx, win32).\").nullable().optional(),\n download_url: z.string().describe(\"Direct download link when requesting a specific platform (client_host parameter).\").nullable().optional(),\n all_downloads: z.record(z.string(), z.unknown()).describe(\"When 'all' parameter is true, nested structure mapping version numbers to platform downloads.\").nullable().optional(),\n client_version: z.string().describe(\"Requested client version identifier.\").nullable().optional(),\n latest_version: z.string().describe(\"Current latest version number of Sauce Connect.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing Sauce Connect tunnel version and download information.\");\n\nexport const saucelabsGetTunnelVersions = action(\"SAUCELABS_GET_TUNNEL_VERSIONS\", {\n slug: \"saucelabs-get-tunnel-versions\",\n name: \"Get Tunnel Versions\",\n description: \"Tool to retrieve information about available Sauce Connect tunnel versions. Use when checking for the latest version, downloading specific platform binaries, or listing all available versions.\",\n input: SaucelabsGetTunnelVersionsInput,\n output: SaucelabsGetTunnelVersionsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-tunnel-versions.mjs","names":[],"sources":["../../src/actions/get-tunnel-versions.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsGetTunnelVersionsInput = z.object({\n all: z.boolean().describe(\"Set to true to return download information for all available versions.\").optional(),\n client_host: z.string().describe(\"Returns info for a specific host OS and CPU architecture (e.g., 'darwin-amd64', 'linux', 'win32').\").optional(),\n client_version: z.string().describe(\"Returns download info for a specific Sauce Connect client version (e.g., '4.7.1').\").optional(),\n}).describe(\"Request model for retrieving Sauce Connect tunnel version information.\");\nexport const SaucelabsGetTunnelVersionsOutput = z.object({\n sha1: z.string().describe(\"SHA1 checksum for the download when requesting a specific platform.\").nullable().optional(),\n status: z.string().describe(\"Upgrade status indicator (e.g., 'UPGRADE').\").nullable().optional(),\n warning: z.array(z.string()).describe(\"Optional warning messages from the API.\").nullable().optional(),\n info_url: z.string().describe(\"Link to Sauce Connect installation documentation.\").nullable().optional(),\n downloads: z.record(z.string(), z.unknown()).describe(\"Download URLs and SHA1 hashes for platform-specific versions (linux, linux-arm64, osx, win32).\").nullable().optional(),\n download_url: z.string().describe(\"Direct download link when requesting a specific platform (client_host parameter).\").nullable().optional(),\n all_downloads: z.record(z.string(), z.unknown()).describe(\"When 'all' parameter is true, nested structure mapping version numbers to platform downloads.\").nullable().optional(),\n client_version: z.string().describe(\"Requested client version identifier.\").nullable().optional(),\n latest_version: z.string().describe(\"Current latest version number of Sauce Connect.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing Sauce Connect tunnel version and download information.\");\n\nexport const saucelabsGetTunnelVersions: AppAction<\n typeof SaucelabsGetTunnelVersionsInput,\n typeof SaucelabsGetTunnelVersionsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_GET_TUNNEL_VERSIONS\", {\n slug: \"saucelabs-get-tunnel-versions\",\n name: \"Get Tunnel Versions\",\n description: \"Tool to retrieve information about available Sauce Connect tunnel versions. Use when checking for the latest version, downloading specific platform binaries, or listing all available versions.\",\n input: SaucelabsGetTunnelVersionsInput,\n output: SaucelabsGetTunnelVersionsOutput,\n});\n"],"mappings":";;;AAuBA,MAAa,6BAIT,OAAO,iCAAiC;CAC1C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAzB6C,EAAE,OAAO;EACtD,KAAK,EAAE,QAAQ,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAC7G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;EAChJ,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACrI,CAAC,CAAC,CAAC,SAAS,wEAqBH;CACP,QArB8C,EAAE,OAAO;EACvD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrH,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/F,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrG,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,WAAW,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5K,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3I,eAAe,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/K,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-jobs.cjs","names":["z","action"],"sources":["../../src/actions/list-jobs.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsListJobsInput = z.object({\n to: z.number().int().describe(\"Receive jobs until specific timestamp\").optional(),\n from: z.number().int().describe(\"Receive jobs beginning from a specific timestamp\").optional(),\n full: z.boolean().describe(\"Should the return result contain everything or just the basics\").optional(),\n name: z.string().describe(\"Filter by name of the job\").optional(),\n limit: z.number().int().default(50).describe(\"Number of results to return (default: 50)\").optional(),\n owner: z.string().describe(\"Filter by username of owner of the jobs\").optional(),\n username: z.string().describe(\"SauceLabs username to fetch jobs for\"),\n auto_only: z.boolean().default(false).describe(\"Only return automated jobs (default: false)\").optional(),\n owner_type: z.string().describe(\"Filter by owner type for jobs\").optional(),\n manual_only: z.boolean().default(false).describe(\"Only return manual jobs (default: false)\").optional(),\n subaccounts: z.boolean().default(false).describe(\"Include subaccounts in list of jobs (default: false)\").optional(),\n}).describe(\"Request model for listing SauceLabs jobs.\");\nconst SaucelabsListJobs_JobSchema = z.object({\n id: z.string().describe(\"Unique identifier for the job\").nullable(),\n os: z.string().describe(\"Operating system used\").nullable().optional(),\n name: z.string().describe(\"Name of the job\").nullable().optional(),\n tags: z.array(z.string()).describe(\"Tags associated with the job\").nullable().optional(),\n build: z.string().describe(\"Build identifier\").nullable().optional(),\n owner: z.string().describe(\"Username of the job owner\").nullable().optional(),\n manual: z.boolean().describe(\"Whether this is a manual job\").nullable().optional(),\n passed: z.boolean().describe(\"Whether the test passed\").nullable().optional(),\n public: z.string().describe(\"Public visibility setting\").nullable().optional(),\n status: z.string().describe(\"Current status of the job\").nullable().optional(),\n browser: z.string().describe(\"Browser name used for the test\").nullable().optional(),\n log_url: z.string().describe(\"URL to access job logs\").nullable().optional(),\n proxied: z.boolean().describe(\"Whether the job was proxied\").nullable().optional(),\n end_time: z.string().describe(\"Job end timestamp\").nullable().optional(),\n video_url: z.string().describe(\"URL to access job video\").nullable().optional(),\n proxy_host: z.boolean().describe(\"Proxy host used\").nullable().optional(),\n start_time: z.string().describe(\"Job start timestamp\").nullable().optional(),\n base_config: z.record(z.string(), z.unknown()).describe(\"Base configuration object\").nullable().optional(),\n \"custom-data\": z.string().describe(\"Custom data associated with the job\").nullable().optional(),\n breakpointed: z.string().describe(\"Breakpoint status of the job\").nullable().optional(),\n record_video: z.boolean().describe(\"Whether video was recorded\").nullable().optional(),\n video_secret: z.string().describe(\"Secret token for video access\").nullable().optional(),\n creation_time: z.string().describe(\"Job creation timestamp\").nullable().optional(),\n deletion_time: z.string().describe(\"Job deletion timestamp\").nullable().optional(),\n command_counts: z.record(z.string(), z.unknown()).describe(\"Count of commands executed\").nullable().optional(),\n browser_version: z.string().describe(\"Full browser version\").nullable().optional(),\n selenium_version: z.string().describe(\"Selenium version used\").nullable().optional(),\n modification_time: z.string().describe(\"Last modification timestamp\").nullable().optional(),\n assigned_tunnel_id: z.string().describe(\"ID of the assigned tunnel\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for the job\").nullable().optional(),\n record_screenshots: z.boolean().describe(\"Whether screenshots were recorded\").nullable().optional(),\n consolidated_status: z.string().describe(\"Consolidated status of the job\").nullable().optional(),\n browser_short_version: z.string().describe(\"Short version of the browser\").nullable().optional(),\n collects_automator_log: z.boolean().describe(\"Whether automator logs are collected\").nullable().optional(),\n commands_not_successful: z.number().int().describe(\"Number of unsuccessful commands\").nullable().optional(),\n}).passthrough().describe(\"Individual job object containing test execution details.\");\nexport const SaucelabsListJobsOutput = z.object({\n jobs: z.array(SaucelabsListJobs_JobSchema).describe(\"List of jobs matching the criteria\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing SauceLabs jobs.\");\n\nexport const saucelabsListJobs = action(\"SAUCELABS_LIST_JOBS\", {\n slug: \"saucelabs-list-jobs\",\n name: \"List Jobs\",\n description: \"Tool to retrieve all jobs for a SauceLabs user. Use when you need to list test execution jobs with optional filters for time range, job type, or owner.\",\n input: SaucelabsListJobsInput,\n output: SaucelabsListJobsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-jobs.cjs","names":["z","action"],"sources":["../../src/actions/list-jobs.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsListJobsInput = z.object({\n to: z.number().int().describe(\"Receive jobs until specific timestamp\").optional(),\n from: z.number().int().describe(\"Receive jobs beginning from a specific timestamp\").optional(),\n full: z.boolean().describe(\"Should the return result contain everything or just the basics\").optional(),\n name: z.string().describe(\"Filter by name of the job\").optional(),\n limit: z.number().int().default(50).describe(\"Number of results to return (default: 50)\").optional(),\n owner: z.string().describe(\"Filter by username of owner of the jobs\").optional(),\n username: z.string().describe(\"SauceLabs username to fetch jobs for\"),\n auto_only: z.boolean().default(false).describe(\"Only return automated jobs (default: false)\").optional(),\n owner_type: z.string().describe(\"Filter by owner type for jobs\").optional(),\n manual_only: z.boolean().default(false).describe(\"Only return manual jobs (default: false)\").optional(),\n subaccounts: z.boolean().default(false).describe(\"Include subaccounts in list of jobs (default: false)\").optional(),\n}).describe(\"Request model for listing SauceLabs jobs.\");\nconst SaucelabsListJobs_JobSchema = z.object({\n id: z.string().describe(\"Unique identifier for the job\").nullable(),\n os: z.string().describe(\"Operating system used\").nullable().optional(),\n name: z.string().describe(\"Name of the job\").nullable().optional(),\n tags: z.array(z.string()).describe(\"Tags associated with the job\").nullable().optional(),\n build: z.string().describe(\"Build identifier\").nullable().optional(),\n owner: z.string().describe(\"Username of the job owner\").nullable().optional(),\n manual: z.boolean().describe(\"Whether this is a manual job\").nullable().optional(),\n passed: z.boolean().describe(\"Whether the test passed\").nullable().optional(),\n public: z.string().describe(\"Public visibility setting\").nullable().optional(),\n status: z.string().describe(\"Current status of the job\").nullable().optional(),\n browser: z.string().describe(\"Browser name used for the test\").nullable().optional(),\n log_url: z.string().describe(\"URL to access job logs\").nullable().optional(),\n proxied: z.boolean().describe(\"Whether the job was proxied\").nullable().optional(),\n end_time: z.string().describe(\"Job end timestamp\").nullable().optional(),\n video_url: z.string().describe(\"URL to access job video\").nullable().optional(),\n proxy_host: z.boolean().describe(\"Proxy host used\").nullable().optional(),\n start_time: z.string().describe(\"Job start timestamp\").nullable().optional(),\n base_config: z.record(z.string(), z.unknown()).describe(\"Base configuration object\").nullable().optional(),\n \"custom-data\": z.string().describe(\"Custom data associated with the job\").nullable().optional(),\n breakpointed: z.string().describe(\"Breakpoint status of the job\").nullable().optional(),\n record_video: z.boolean().describe(\"Whether video was recorded\").nullable().optional(),\n video_secret: z.string().describe(\"Secret token for video access\").nullable().optional(),\n creation_time: z.string().describe(\"Job creation timestamp\").nullable().optional(),\n deletion_time: z.string().describe(\"Job deletion timestamp\").nullable().optional(),\n command_counts: z.record(z.string(), z.unknown()).describe(\"Count of commands executed\").nullable().optional(),\n browser_version: z.string().describe(\"Full browser version\").nullable().optional(),\n selenium_version: z.string().describe(\"Selenium version used\").nullable().optional(),\n modification_time: z.string().describe(\"Last modification timestamp\").nullable().optional(),\n assigned_tunnel_id: z.string().describe(\"ID of the assigned tunnel\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for the job\").nullable().optional(),\n record_screenshots: z.boolean().describe(\"Whether screenshots were recorded\").nullable().optional(),\n consolidated_status: z.string().describe(\"Consolidated status of the job\").nullable().optional(),\n browser_short_version: z.string().describe(\"Short version of the browser\").nullable().optional(),\n collects_automator_log: z.boolean().describe(\"Whether automator logs are collected\").nullable().optional(),\n commands_not_successful: z.number().int().describe(\"Number of unsuccessful commands\").nullable().optional(),\n}).passthrough().describe(\"Individual job object containing test execution details.\");\nexport const SaucelabsListJobsOutput = z.object({\n jobs: z.array(SaucelabsListJobs_JobSchema).describe(\"List of jobs matching the criteria\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing SauceLabs jobs.\");\n\nexport const saucelabsListJobs: AppAction<\n typeof SaucelabsListJobsInput,\n typeof SaucelabsListJobsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_LIST_JOBS\", {\n slug: \"saucelabs-list-jobs\",\n name: \"List Jobs\",\n description: \"Tool to retrieve all jobs for a SauceLabs user. Use when you need to list test execution jobs with optional filters for time range, job type, or owner.\",\n input: SaucelabsListJobsInput,\n output: SaucelabsListJobsOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-jobs.d.ts
|
|
@@ -53,19 +55,7 @@ declare const SaucelabsListJobsOutput: z.ZodObject<{
|
|
|
53
55
|
commands_not_successful: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
54
56
|
}, z.core.$loose>>>>;
|
|
55
57
|
}, z.core.$loose>;
|
|
56
|
-
declare const saucelabsListJobs:
|
|
57
|
-
username: string;
|
|
58
|
-
to?: number | undefined;
|
|
59
|
-
from?: number | undefined;
|
|
60
|
-
full?: boolean | undefined;
|
|
61
|
-
name?: string | undefined;
|
|
62
|
-
limit?: number | undefined;
|
|
63
|
-
owner?: string | undefined;
|
|
64
|
-
auto_only?: boolean | undefined;
|
|
65
|
-
owner_type?: string | undefined;
|
|
66
|
-
manual_only?: boolean | undefined;
|
|
67
|
-
subaccounts?: boolean | undefined;
|
|
68
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
58
|
+
declare const saucelabsListJobs: AppAction<typeof SaucelabsListJobsInput, typeof SaucelabsListJobsOutput, typeof saucelabs.credential>;
|
|
69
59
|
//#endregion
|
|
70
60
|
export { saucelabsListJobs };
|
|
71
61
|
//# sourceMappingURL=list-jobs.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-jobs.d.cts","names":[],"sources":["../../src/actions/list-jobs.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-jobs.d.cts","names":[],"sources":["../../src/actions/list-jobs.ts"],"mappings":";;;;;cAMa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAkDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIvB,iBAAA,EAAmB,SAAA,QACvB,sBAAA,SACA,uBAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { saucelabs } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-jobs.d.ts
|
|
@@ -53,19 +55,7 @@ declare const SaucelabsListJobsOutput: z.ZodObject<{
|
|
|
53
55
|
commands_not_successful: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
54
56
|
}, z.core.$loose>>>>;
|
|
55
57
|
}, z.core.$loose>;
|
|
56
|
-
declare const saucelabsListJobs:
|
|
57
|
-
username: string;
|
|
58
|
-
to?: number | undefined;
|
|
59
|
-
from?: number | undefined;
|
|
60
|
-
full?: boolean | undefined;
|
|
61
|
-
name?: string | undefined;
|
|
62
|
-
limit?: number | undefined;
|
|
63
|
-
owner?: string | undefined;
|
|
64
|
-
auto_only?: boolean | undefined;
|
|
65
|
-
owner_type?: string | undefined;
|
|
66
|
-
manual_only?: boolean | undefined;
|
|
67
|
-
subaccounts?: boolean | undefined;
|
|
68
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
58
|
+
declare const saucelabsListJobs: AppAction<typeof SaucelabsListJobsInput, typeof SaucelabsListJobsOutput, typeof saucelabs.credential>;
|
|
69
59
|
//#endregion
|
|
70
60
|
export { saucelabsListJobs };
|
|
71
61
|
//# sourceMappingURL=list-jobs.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-jobs.d.mts","names":[],"sources":["../../src/actions/list-jobs.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-jobs.d.mts","names":[],"sources":["../../src/actions/list-jobs.ts"],"mappings":";;;;;cAMa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAkDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIvB,iBAAA,EAAmB,SAAA,QACvB,sBAAA,SACA,uBAAA,SACA,SAAA,CAAU,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-jobs.mjs","names":[],"sources":["../../src/actions/list-jobs.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SaucelabsListJobsInput = z.object({\n to: z.number().int().describe(\"Receive jobs until specific timestamp\").optional(),\n from: z.number().int().describe(\"Receive jobs beginning from a specific timestamp\").optional(),\n full: z.boolean().describe(\"Should the return result contain everything or just the basics\").optional(),\n name: z.string().describe(\"Filter by name of the job\").optional(),\n limit: z.number().int().default(50).describe(\"Number of results to return (default: 50)\").optional(),\n owner: z.string().describe(\"Filter by username of owner of the jobs\").optional(),\n username: z.string().describe(\"SauceLabs username to fetch jobs for\"),\n auto_only: z.boolean().default(false).describe(\"Only return automated jobs (default: false)\").optional(),\n owner_type: z.string().describe(\"Filter by owner type for jobs\").optional(),\n manual_only: z.boolean().default(false).describe(\"Only return manual jobs (default: false)\").optional(),\n subaccounts: z.boolean().default(false).describe(\"Include subaccounts in list of jobs (default: false)\").optional(),\n}).describe(\"Request model for listing SauceLabs jobs.\");\nconst SaucelabsListJobs_JobSchema = z.object({\n id: z.string().describe(\"Unique identifier for the job\").nullable(),\n os: z.string().describe(\"Operating system used\").nullable().optional(),\n name: z.string().describe(\"Name of the job\").nullable().optional(),\n tags: z.array(z.string()).describe(\"Tags associated with the job\").nullable().optional(),\n build: z.string().describe(\"Build identifier\").nullable().optional(),\n owner: z.string().describe(\"Username of the job owner\").nullable().optional(),\n manual: z.boolean().describe(\"Whether this is a manual job\").nullable().optional(),\n passed: z.boolean().describe(\"Whether the test passed\").nullable().optional(),\n public: z.string().describe(\"Public visibility setting\").nullable().optional(),\n status: z.string().describe(\"Current status of the job\").nullable().optional(),\n browser: z.string().describe(\"Browser name used for the test\").nullable().optional(),\n log_url: z.string().describe(\"URL to access job logs\").nullable().optional(),\n proxied: z.boolean().describe(\"Whether the job was proxied\").nullable().optional(),\n end_time: z.string().describe(\"Job end timestamp\").nullable().optional(),\n video_url: z.string().describe(\"URL to access job video\").nullable().optional(),\n proxy_host: z.boolean().describe(\"Proxy host used\").nullable().optional(),\n start_time: z.string().describe(\"Job start timestamp\").nullable().optional(),\n base_config: z.record(z.string(), z.unknown()).describe(\"Base configuration object\").nullable().optional(),\n \"custom-data\": z.string().describe(\"Custom data associated with the job\").nullable().optional(),\n breakpointed: z.string().describe(\"Breakpoint status of the job\").nullable().optional(),\n record_video: z.boolean().describe(\"Whether video was recorded\").nullable().optional(),\n video_secret: z.string().describe(\"Secret token for video access\").nullable().optional(),\n creation_time: z.string().describe(\"Job creation timestamp\").nullable().optional(),\n deletion_time: z.string().describe(\"Job deletion timestamp\").nullable().optional(),\n command_counts: z.record(z.string(), z.unknown()).describe(\"Count of commands executed\").nullable().optional(),\n browser_version: z.string().describe(\"Full browser version\").nullable().optional(),\n selenium_version: z.string().describe(\"Selenium version used\").nullable().optional(),\n modification_time: z.string().describe(\"Last modification timestamp\").nullable().optional(),\n assigned_tunnel_id: z.string().describe(\"ID of the assigned tunnel\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for the job\").nullable().optional(),\n record_screenshots: z.boolean().describe(\"Whether screenshots were recorded\").nullable().optional(),\n consolidated_status: z.string().describe(\"Consolidated status of the job\").nullable().optional(),\n browser_short_version: z.string().describe(\"Short version of the browser\").nullable().optional(),\n collects_automator_log: z.boolean().describe(\"Whether automator logs are collected\").nullable().optional(),\n commands_not_successful: z.number().int().describe(\"Number of unsuccessful commands\").nullable().optional(),\n}).passthrough().describe(\"Individual job object containing test execution details.\");\nexport const SaucelabsListJobsOutput = z.object({\n jobs: z.array(SaucelabsListJobs_JobSchema).describe(\"List of jobs matching the criteria\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing SauceLabs jobs.\");\n\nexport const saucelabsListJobs = action(\"SAUCELABS_LIST_JOBS\", {\n slug: \"saucelabs-list-jobs\",\n name: \"List Jobs\",\n description: \"Tool to retrieve all jobs for a SauceLabs user. Use when you need to list test execution jobs with optional filters for time range, job type, or owner.\",\n input: SaucelabsListJobsInput,\n output: SaucelabsListJobsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-jobs.mjs","names":[],"sources":["../../src/actions/list-jobs.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { saucelabs } from \"../app\";\n\nexport const SaucelabsListJobsInput = z.object({\n to: z.number().int().describe(\"Receive jobs until specific timestamp\").optional(),\n from: z.number().int().describe(\"Receive jobs beginning from a specific timestamp\").optional(),\n full: z.boolean().describe(\"Should the return result contain everything or just the basics\").optional(),\n name: z.string().describe(\"Filter by name of the job\").optional(),\n limit: z.number().int().default(50).describe(\"Number of results to return (default: 50)\").optional(),\n owner: z.string().describe(\"Filter by username of owner of the jobs\").optional(),\n username: z.string().describe(\"SauceLabs username to fetch jobs for\"),\n auto_only: z.boolean().default(false).describe(\"Only return automated jobs (default: false)\").optional(),\n owner_type: z.string().describe(\"Filter by owner type for jobs\").optional(),\n manual_only: z.boolean().default(false).describe(\"Only return manual jobs (default: false)\").optional(),\n subaccounts: z.boolean().default(false).describe(\"Include subaccounts in list of jobs (default: false)\").optional(),\n}).describe(\"Request model for listing SauceLabs jobs.\");\nconst SaucelabsListJobs_JobSchema = z.object({\n id: z.string().describe(\"Unique identifier for the job\").nullable(),\n os: z.string().describe(\"Operating system used\").nullable().optional(),\n name: z.string().describe(\"Name of the job\").nullable().optional(),\n tags: z.array(z.string()).describe(\"Tags associated with the job\").nullable().optional(),\n build: z.string().describe(\"Build identifier\").nullable().optional(),\n owner: z.string().describe(\"Username of the job owner\").nullable().optional(),\n manual: z.boolean().describe(\"Whether this is a manual job\").nullable().optional(),\n passed: z.boolean().describe(\"Whether the test passed\").nullable().optional(),\n public: z.string().describe(\"Public visibility setting\").nullable().optional(),\n status: z.string().describe(\"Current status of the job\").nullable().optional(),\n browser: z.string().describe(\"Browser name used for the test\").nullable().optional(),\n log_url: z.string().describe(\"URL to access job logs\").nullable().optional(),\n proxied: z.boolean().describe(\"Whether the job was proxied\").nullable().optional(),\n end_time: z.string().describe(\"Job end timestamp\").nullable().optional(),\n video_url: z.string().describe(\"URL to access job video\").nullable().optional(),\n proxy_host: z.boolean().describe(\"Proxy host used\").nullable().optional(),\n start_time: z.string().describe(\"Job start timestamp\").nullable().optional(),\n base_config: z.record(z.string(), z.unknown()).describe(\"Base configuration object\").nullable().optional(),\n \"custom-data\": z.string().describe(\"Custom data associated with the job\").nullable().optional(),\n breakpointed: z.string().describe(\"Breakpoint status of the job\").nullable().optional(),\n record_video: z.boolean().describe(\"Whether video was recorded\").nullable().optional(),\n video_secret: z.string().describe(\"Secret token for video access\").nullable().optional(),\n creation_time: z.string().describe(\"Job creation timestamp\").nullable().optional(),\n deletion_time: z.string().describe(\"Job deletion timestamp\").nullable().optional(),\n command_counts: z.record(z.string(), z.unknown()).describe(\"Count of commands executed\").nullable().optional(),\n browser_version: z.string().describe(\"Full browser version\").nullable().optional(),\n selenium_version: z.string().describe(\"Selenium version used\").nullable().optional(),\n modification_time: z.string().describe(\"Last modification timestamp\").nullable().optional(),\n assigned_tunnel_id: z.string().describe(\"ID of the assigned tunnel\").nullable().optional(),\n automation_backend: z.string().describe(\"Automation backend used for the job\").nullable().optional(),\n record_screenshots: z.boolean().describe(\"Whether screenshots were recorded\").nullable().optional(),\n consolidated_status: z.string().describe(\"Consolidated status of the job\").nullable().optional(),\n browser_short_version: z.string().describe(\"Short version of the browser\").nullable().optional(),\n collects_automator_log: z.boolean().describe(\"Whether automator logs are collected\").nullable().optional(),\n commands_not_successful: z.number().int().describe(\"Number of unsuccessful commands\").nullable().optional(),\n}).passthrough().describe(\"Individual job object containing test execution details.\");\nexport const SaucelabsListJobsOutput = z.object({\n jobs: z.array(SaucelabsListJobs_JobSchema).describe(\"List of jobs matching the criteria\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing SauceLabs jobs.\");\n\nexport const saucelabsListJobs: AppAction<\n typeof SaucelabsListJobsInput,\n typeof SaucelabsListJobsOutput,\n typeof saucelabs.credential\n> = action(\"SAUCELABS_LIST_JOBS\", {\n slug: \"saucelabs-list-jobs\",\n name: \"List Jobs\",\n description: \"Tool to retrieve all jobs for a SauceLabs user. Use when you need to list test execution jobs with optional filters for time range, job type, or owner.\",\n input: SaucelabsListJobsInput,\n output: SaucelabsListJobsOutput,\n});\n"],"mappings":"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"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const
|
|
4
|
+
const credential = {
|
|
5
|
+
region: zod.z.string(),
|
|
6
|
+
username: zod.z.string(),
|
|
7
|
+
password: zod.z.string()
|
|
8
|
+
};
|
|
9
|
+
const saucelabs = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
10
|
slug: "saucelabs",
|
|
4
|
-
auth: "keystroke"
|
|
11
|
+
auth: "keystroke",
|
|
12
|
+
credential
|
|
5
13
|
});
|
|
6
14
|
//#endregion
|
|
7
15
|
exports.saucelabs = saucelabs;
|
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 saucelabs = defineApp({\n slug: \"saucelabs\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n region: z.string(),\n username: z.string(),\n password: z.string(),\n};\n\nexport const saucelabs: KeystrokeApp<\"saucelabs\", typeof credential> = defineApp({\n slug: \"saucelabs\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;;AAGA,MAAM,aAAa;CACjB,QAAQA,IAAAA,EAAE,OAAO;CACjB,UAAUA,IAAAA,EAAE,OAAO;CACnB,UAAUA,IAAAA,EAAE,OAAO;AACrB;AAEA,MAAa,aAAA,GAAA,2BAAA,UAAA,CAAoE;CAC/E,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
region: z.ZodString;
|
|
7
|
+
username: z.ZodString;
|
|
8
|
+
password: z.ZodString;
|
|
9
|
+
};
|
|
10
|
+
declare const saucelabs: KeystrokeApp<"saucelabs", typeof credential>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { saucelabs };
|
|
5
13
|
//# 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":";;;;cAGM,UAAA;;;;;cAMO,SAAA,EAAW,YAAY,qBAAqB,UAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
region: z.ZodString;
|
|
7
|
+
username: z.ZodString;
|
|
8
|
+
password: z.ZodString;
|
|
9
|
+
};
|
|
10
|
+
declare const saucelabs: KeystrokeApp<"saucelabs", typeof credential>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { saucelabs };
|
|
5
13
|
//# 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":";;;;cAGM,UAAA;;;;;cAMO,SAAA,EAAW,YAAY,qBAAqB,UAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
-
|
|
2
|
+
import { z } from "zod";
|
|
3
3
|
const saucelabs = defineApp({
|
|
4
4
|
slug: "saucelabs",
|
|
5
|
-
auth: "keystroke"
|
|
5
|
+
auth: "keystroke",
|
|
6
|
+
credential: {
|
|
7
|
+
region: z.string(),
|
|
8
|
+
username: z.string(),
|
|
9
|
+
password: z.string()
|
|
10
|
+
}
|
|
6
11
|
});
|
|
7
12
|
//#endregion
|
|
8
13
|
export { saucelabs };
|
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 saucelabs = defineApp({\n slug: \"saucelabs\",\n auth: \"keystroke\",\n});\n"],"mappings":";;
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n region: z.string(),\n username: z.string(),\n password: z.string(),\n};\n\nexport const saucelabs: KeystrokeApp<\"saucelabs\", typeof credential> = defineApp({\n slug: \"saucelabs\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AASA,MAAa,YAA0D,UAAU;CAC/E,MAAM;CACN,MAAM;CACN;EARA,QAAQ,EAAE,OAAO;EACjB,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,OAAO;CAMnB;AACF,CAAC"}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { saucelabs } from "./app.cjs";
|
|
1
2
|
import { saucelabsGetApiDefinition } from "./actions/get-api-definition.cjs";
|
|
2
3
|
import { saucelabsGetApiStatus } from "./actions/get-api-status.cjs";
|
|
3
4
|
import { saucelabsGetAppiumEol } from "./actions/get-appium-eol.cjs";
|
|
4
5
|
import { saucelabsGetPlatforms } from "./actions/get-platforms.cjs";
|
|
5
6
|
import { saucelabsGetTunnelVersions } from "./actions/get-tunnel-versions.cjs";
|
|
6
7
|
import { saucelabsListJobs } from "./actions/list-jobs.cjs";
|
|
7
|
-
import { saucelabs } from "./app.cjs";
|
|
8
8
|
import { saucelabsCatalog } from "./catalog.cjs";
|
|
9
9
|
export { saucelabs, saucelabsCatalog, saucelabsGetApiDefinition, saucelabsGetApiStatus, saucelabsGetAppiumEol, saucelabsGetPlatforms, saucelabsGetTunnelVersions, saucelabsListJobs };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { saucelabs } from "./app.mjs";
|
|
1
2
|
import { saucelabsGetApiDefinition } from "./actions/get-api-definition.mjs";
|
|
2
3
|
import { saucelabsGetApiStatus } from "./actions/get-api-status.mjs";
|
|
3
4
|
import { saucelabsGetAppiumEol } from "./actions/get-appium-eol.mjs";
|
|
4
5
|
import { saucelabsGetPlatforms } from "./actions/get-platforms.mjs";
|
|
5
6
|
import { saucelabsGetTunnelVersions } from "./actions/get-tunnel-versions.mjs";
|
|
6
7
|
import { saucelabsListJobs } from "./actions/list-jobs.mjs";
|
|
7
|
-
import { saucelabs } from "./app.mjs";
|
|
8
8
|
import { saucelabsCatalog } from "./catalog.mjs";
|
|
9
9
|
export { saucelabs, saucelabsCatalog, saucelabsGetApiDefinition, saucelabsGetApiStatus, saucelabsGetAppiumEol, saucelabsGetPlatforms, saucelabsGetTunnelVersions, saucelabsListJobs };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/saucelabs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": ">=0.1.
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.104",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|