@keystrokehq/remote_retrieval 0.1.0 → 0.1.2
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/create-order.cjs.map +1 -1
- package/dist/actions/create-order.d.cts +100 -3
- package/dist/actions/create-order.d.cts.map +1 -1
- package/dist/actions/create-order.d.mts +100 -3
- package/dist/actions/create-order.d.mts.map +1 -1
- package/dist/actions/create-order.mjs.map +1 -1
- package/dist/actions/get-all-orders.cjs +11 -11
- package/dist/actions/get-all-orders.cjs.map +1 -1
- package/dist/actions/get-all-orders.d.cts +38 -3
- package/dist/actions/get-all-orders.d.cts.map +1 -1
- package/dist/actions/get-all-orders.d.mts +38 -3
- package/dist/actions/get-all-orders.d.mts.map +1 -1
- package/dist/actions/get-all-orders.mjs +11 -11
- package/dist/actions/get-all-orders.mjs.map +1 -1
- package/dist/actions/get-company-details.cjs.map +1 -1
- package/dist/actions/get-company-details.d.cts +26 -3
- package/dist/actions/get-company-details.d.cts.map +1 -1
- package/dist/actions/get-company-details.d.mts +26 -3
- package/dist/actions/get-company-details.d.mts.map +1 -1
- package/dist/actions/get-company-details.mjs.map +1 -1
- package/dist/actions/get-device-prices.cjs +3 -3
- package/dist/actions/get-device-prices.cjs.map +1 -1
- package/dist/actions/get-device-prices.d.cts +9 -3
- package/dist/actions/get-device-prices.d.cts.map +1 -1
- package/dist/actions/get-device-prices.d.mts +9 -3
- package/dist/actions/get-device-prices.d.mts.map +1 -1
- package/dist/actions/get-device-prices.mjs +3 -3
- package/dist/actions/get-device-prices.mjs.map +1 -1
- package/dist/actions/get-order-details.cjs.map +1 -1
- package/dist/actions/get-order-details.d.cts +34 -3
- package/dist/actions/get-order-details.d.cts.map +1 -1
- package/dist/actions/get-order-details.d.mts +34 -3
- package/dist/actions/get-order-details.d.mts.map +1 -1
- package/dist/actions/get-order-details.mjs.map +1 -1
- package/dist/actions/list-pending-orders.cjs.map +1 -1
- package/dist/actions/list-pending-orders.d.cts +34 -3
- package/dist/actions/list-pending-orders.d.cts.map +1 -1
- package/dist/actions/list-pending-orders.d.mts +34 -3
- package/dist/actions/list-pending-orders.d.mts.map +1 -1
- package/dist/actions/list-pending-orders.mjs.map +1 -1
- package/dist/actions/validate-user.cjs +4 -4
- package/dist/actions/validate-user.cjs.map +1 -1
- package/dist/actions/validate-user.d.cts +8 -3
- package/dist/actions/validate-user.d.cts.map +1 -1
- package/dist/actions/validate-user.d.mts +8 -3
- package/dist/actions/validate-user.d.mts.map +1 -1
- package/dist/actions/validate-user.mjs +4 -4
- package/dist/actions/validate-user.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-user.d.cts","names":[],"sources":["../../src/actions/validate-user.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"validate-user.d.cts","names":[],"sources":["../../src/actions/validate-user.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAOjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/validate-user.d.ts
|
|
4
|
-
declare const RemoteRetrievalValidateUserInput: z.
|
|
5
|
-
declare const RemoteRetrievalValidateUserOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const RemoteRetrievalValidateUserInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const RemoteRetrievalValidateUserOutput: z.ZodObject<{
|
|
6
|
+
email: z.ZodNullable<z.ZodString>;
|
|
7
|
+
status: z.ZodNullable<z.ZodString>;
|
|
8
|
+
message: z.ZodNullable<z.ZodString>;
|
|
9
|
+
response_code: z.ZodNullable<z.ZodNumber>;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
declare const remoteRetrievalValidateUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
12
|
//#endregion
|
|
8
13
|
export { remoteRetrievalValidateUser };
|
|
9
14
|
//# sourceMappingURL=validate-user.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-user.d.mts","names":[],"sources":["../../src/actions/validate-user.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"validate-user.d.mts","names":[],"sources":["../../src/actions/validate-user.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAChC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAOjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -6,10 +6,10 @@ const remoteRetrievalValidateUser = action("REMOTE_RETRIEVAL_VALIDATE_USER", {
|
|
|
6
6
|
description: "Tool to validate the provided API key. Use when you need to confirm the API key's validity.",
|
|
7
7
|
input: z.object({}).describe("Request model for validating a user. No input fields required; API key is passed via the Authorization header."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
email: z.string().describe("Email associated with the API key"),
|
|
10
|
-
status: z.string().describe("Status of the validation, e.g., 'Success'"),
|
|
11
|
-
message: z.string().describe("Indicates the validation result, e.g., 'Valid Key!'"),
|
|
12
|
-
response_code: z.number().int().describe("HTTP response code, e.g., 200")
|
|
9
|
+
email: z.string().describe("Email associated with the API key").nullable(),
|
|
10
|
+
status: z.string().describe("Status of the validation, e.g., 'Success'").nullable(),
|
|
11
|
+
message: z.string().describe("Indicates the validation result, e.g., 'Valid Key!'").nullable(),
|
|
12
|
+
response_code: z.number().int().describe("HTTP response code, e.g., 200").nullable()
|
|
13
13
|
})
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-user.mjs","names":[],"sources":["../../src/actions/validate-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalValidateUserInput
|
|
1
|
+
{"version":3,"file":"validate-user.mjs","names":[],"sources":["../../src/actions/validate-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalValidateUserInput = z.object({}).describe(\"Request model for validating a user. No input fields required; API key is passed via the Authorization header.\");\nexport const RemoteRetrievalValidateUserOutput = z.object({\n email: z.string().describe(\"Email associated with the API key\").nullable(),\n status: z.string().describe(\"Status of the validation, e.g., 'Success'\").nullable(),\n message: z.string().describe(\"Indicates the validation result, e.g., 'Valid Key!'\").nullable(),\n response_code: z.number().int().describe(\"HTTP response code, e.g., 200\").nullable(),\n});\n\nexport const remoteRetrievalValidateUser = action(\"REMOTE_RETRIEVAL_VALIDATE_USER\", {\n slug: \"remote_retrieval-validate-user\",\n name: \"RemoteRetrieval: Validate User\",\n description: \"Tool to validate the provided API key. Use when you need to confirm the API key's validity.\",\n input: RemoteRetrievalValidateUserInput,\n output: RemoteRetrievalValidateUserOutput,\n});\n"],"mappings":";;AAYA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZ8C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gHAY7D;CACP,QAZ+C,EAAE,OAAO;EACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EACzE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;EAClF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;EAC7F,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACrF,CAOU;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const remoteRetrievalCatalog = {
|
|
|
7
7
|
"category": "IT Operations",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/remote_retrieval",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Remote Retrieval API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "The API key obtained from the Enterprise Remote Retrieval portal."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.remoteRetrievalCatalog = remoteRetrievalCatalog;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remoteRetrievalCatalog = {\n \"slug\": \"remote_retrieval\",\n \"name\": \"Remote Retrieval\",\n \"description\": \"Remote Retrieval automates the logistics of managing equipment returns, providing efficient tracking and management of laptop and monitor returns.\",\n \"category\": \"IT Operations\",\n \"logo\": \"https://logos.composio.dev/api/remote_retrieval\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remoteRetrievalCatalog = {\n \"slug\": \"remote_retrieval\",\n \"name\": \"Remote Retrieval\",\n \"description\": \"Remote Retrieval automates the logistics of managing equipment returns, providing efficient tracking and management of laptop and monitor returns.\",\n \"category\": \"IT Operations\",\n \"logo\": \"https://logos.composio.dev/api/remote_retrieval\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Remote Retrieval API Key\",\n \"secret\": true,\n \"description\": \"The API key obtained from the Enterprise Remote Retrieval portal.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const remoteRetrievalCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/remote_retrieval";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Remote Retrieval API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "The API key obtained from the Enterprise Remote Retrieval portal.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { remoteRetrievalCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const remoteRetrievalCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/remote_retrieval";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Remote Retrieval API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "The API key obtained from the Enterprise Remote Retrieval portal.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { remoteRetrievalCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const remoteRetrievalCatalog = {
|
|
|
7
7
|
"category": "IT Operations",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/remote_retrieval",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Remote Retrieval API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "The API key obtained from the Enterprise Remote Retrieval portal."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { remoteRetrievalCatalog };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remoteRetrievalCatalog = {\n \"slug\": \"remote_retrieval\",\n \"name\": \"Remote Retrieval\",\n \"description\": \"Remote Retrieval automates the logistics of managing equipment returns, providing efficient tracking and management of laptop and monitor returns.\",\n \"category\": \"IT Operations\",\n \"logo\": \"https://logos.composio.dev/api/remote_retrieval\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remoteRetrievalCatalog = {\n \"slug\": \"remote_retrieval\",\n \"name\": \"Remote Retrieval\",\n \"description\": \"Remote Retrieval automates the logistics of managing equipment returns, providing efficient tracking and management of laptop and monitor returns.\",\n \"category\": \"IT Operations\",\n \"logo\": \"https://logos.composio.dev/api/remote_retrieval\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Remote Retrieval API Key\",\n \"secret\": true,\n \"description\": \"The API key obtained from the Enterprise Remote Retrieval portal.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/remote_retrieval",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|