@keystrokehq/remote_retrieval 0.1.0 → 0.1.3
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 +2 -2
- package/dist/actions/create-order.cjs.map +1 -1
- package/dist/actions/create-order.d.cts +101 -3
- package/dist/actions/create-order.d.cts.map +1 -1
- package/dist/actions/create-order.d.mts +101 -3
- package/dist/actions/create-order.d.mts.map +1 -1
- package/dist/actions/create-order.mjs +2 -2
- package/dist/actions/create-order.mjs.map +1 -1
- package/dist/actions/get-all-orders.cjs +14 -14
- 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 +14 -14
- package/dist/actions/get-all-orders.mjs.map +1 -1
- package/dist/actions/get-company-details.cjs +2 -2
- 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 +2 -2
- package/dist/actions/get-company-details.mjs.map +1 -1
- package/dist/actions/get-device-prices.cjs +5 -5
- 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 +5 -5
- package/dist/actions/get-device-prices.mjs.map +1 -1
- package/dist/actions/get-order-details.cjs +5 -5
- 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 +5 -5
- package/dist/actions/get-order-details.mjs.map +1 -1
- package/dist/actions/list-pending-orders.cjs +5 -5
- 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 +5 -5
- package/dist/actions/list-pending-orders.mjs.map +1 -1
- package/dist/actions/validate-user.cjs +5 -5
- 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 +5 -5
- 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
|
@@ -6,7 +6,7 @@ const RemoteRetrievalListPendingOrders_ShipmentsSchema = zod.z.object({
|
|
|
6
6
|
device_type: zod.z.string().describe("Type of device being shipped").nullable().optional(),
|
|
7
7
|
send_status: zod.z.string().describe("Status of the outbound shipment").nullable().optional(),
|
|
8
8
|
return_status: zod.z.string().describe("Status of the return shipment").nullable().optional()
|
|
9
|
-
}).describe("Shipment information for a pending order.");
|
|
9
|
+
}).passthrough().describe("Shipment information for a pending order.");
|
|
10
10
|
const RemoteRetrievalListPendingOrders_CompanyInfoSchema = zod.z.object({
|
|
11
11
|
zip: zod.z.string().describe("Postal/ZIP code").nullable().optional(),
|
|
12
12
|
city: zod.z.string().describe("City name").nullable().optional(),
|
|
@@ -15,7 +15,7 @@ const RemoteRetrievalListPendingOrders_CompanyInfoSchema = zod.z.object({
|
|
|
15
15
|
state: zod.z.string().describe("State or province").nullable().optional(),
|
|
16
16
|
address_line_1: zod.z.string().describe("Primary address line").nullable().optional(),
|
|
17
17
|
address_line_2: zod.z.string().describe("Secondary address line").nullable().optional()
|
|
18
|
-
}).describe("Company information for a pending order.");
|
|
18
|
+
}).passthrough().describe("Company information for a pending order.");
|
|
19
19
|
const RemoteRetrievalListPendingOrders_EmployeeInfoSchema = zod.z.object({
|
|
20
20
|
zip: zod.z.string().describe("Postal/ZIP code").nullable().optional(),
|
|
21
21
|
city: zod.z.string().describe("City name").nullable().optional(),
|
|
@@ -24,14 +24,14 @@ const RemoteRetrievalListPendingOrders_EmployeeInfoSchema = zod.z.object({
|
|
|
24
24
|
state: zod.z.string().describe("State or province").nullable().optional(),
|
|
25
25
|
address_line_1: zod.z.string().describe("Primary address line").nullable().optional(),
|
|
26
26
|
address_line_2: zod.z.string().describe("Secondary address line").nullable().optional()
|
|
27
|
-
}).describe("Employee information for a pending order.");
|
|
27
|
+
}).passthrough().describe("Employee information for a pending order.");
|
|
28
28
|
const RemoteRetrievalListPendingOrders_PendingOrderSchema = zod.z.object({
|
|
29
29
|
order_id: zod.z.number().int().describe("Unique order identifier").nullable().optional(),
|
|
30
30
|
shipments: RemoteRetrievalListPendingOrders_ShipmentsSchema.nullable().optional(),
|
|
31
31
|
company_info: RemoteRetrievalListPendingOrders_CompanyInfoSchema.nullable().optional(),
|
|
32
32
|
employee_info: RemoteRetrievalListPendingOrders_EmployeeInfoSchema.nullable().optional()
|
|
33
|
-
}).describe("Details of a single pending order.");
|
|
34
|
-
const RemoteRetrievalListPendingOrdersOutput = zod.z.object({ orders: zod.z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe("List of pending orders awaiting payment completion").nullable().optional() }).describe("Response model for retrieving pending orders.");
|
|
33
|
+
}).passthrough().describe("Details of a single pending order.");
|
|
34
|
+
const RemoteRetrievalListPendingOrdersOutput = zod.z.object({ orders: zod.z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe("List of pending orders awaiting payment completion").nullable().optional() }).passthrough().describe("Response model for retrieving pending orders.");
|
|
35
35
|
const remoteRetrievalListPendingOrders = require_action.action("REMOTE_RETRIEVAL_LIST_PENDING_ORDERS", {
|
|
36
36
|
slug: "remote_retrieval-list-pending-orders",
|
|
37
37
|
name: "List Pending Orders",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-pending-orders.cjs","names":["z","action"],"sources":["../../src/actions/list-pending-orders.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalListPendingOrdersInput
|
|
1
|
+
{"version":3,"file":"list-pending-orders.cjs","names":["z","action"],"sources":["../../src/actions/list-pending-orders.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalListPendingOrdersInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. Results are paginated up to 25 per page.\").optional(),\n}).describe(\"Request parameters for retrieving pending orders.\");\nconst RemoteRetrievalListPendingOrders_ShipmentsSchema = z.object({\n device_type: z.string().describe(\"Type of device being shipped\").nullable().optional(),\n send_status: z.string().describe(\"Status of the outbound shipment\").nullable().optional(),\n return_status: z.string().describe(\"Status of the return shipment\").nullable().optional(),\n}).passthrough().describe(\"Shipment information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_CompanyInfoSchema = z.object({\n zip: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n name: z.string().describe(\"Company name\").nullable().optional(),\n email: z.string().describe(\"Company contact email address\").nullable().optional(),\n state: z.string().describe(\"State or province\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n}).passthrough().describe(\"Company information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_EmployeeInfoSchema = z.object({\n zip: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n name: z.string().describe(\"Employee name\").nullable().optional(),\n email: z.string().describe(\"Employee contact email address\").nullable().optional(),\n state: z.string().describe(\"State or province\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n}).passthrough().describe(\"Employee information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_PendingOrderSchema = z.object({\n order_id: z.number().int().describe(\"Unique order identifier\").nullable().optional(),\n shipments: RemoteRetrievalListPendingOrders_ShipmentsSchema.nullable().optional(),\n company_info: RemoteRetrievalListPendingOrders_CompanyInfoSchema.nullable().optional(),\n employee_info: RemoteRetrievalListPendingOrders_EmployeeInfoSchema.nullable().optional(),\n}).passthrough().describe(\"Details of a single pending order.\");\nexport const RemoteRetrievalListPendingOrdersOutput = z.object({\n orders: z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe(\"List of pending orders awaiting payment completion\").nullable().optional(),\n}).passthrough().describe(\"Response model for retrieving pending orders.\");\n\nexport const remoteRetrievalListPendingOrders = action(\"REMOTE_RETRIEVAL_LIST_PENDING_ORDERS\", {\n slug: \"remote_retrieval-list-pending-orders\",\n name: \"List Pending Orders\",\n description: \"Tool to retrieve list of all pending orders. Use when you need to check orders awaiting payment completion. Results are paginated up to 25 per page.\",\n input: RemoteRetrievalListPendingOrdersInput,\n output: RemoteRetrievalListPendingOrdersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC/D,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AACrE,MAAM,qDAAqDA,IAAAA,EAAE,OAAO;CAClE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0CAA0C;AACpE,MAAM,sDAAsDA,IAAAA,EAAE,OAAO;CACnE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AACrE,MAAM,sDAAsDA,IAAAA,EAAE,OAAO;CACnE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,WAAW,iDAAiD,SAAS,CAAC,CAAC,SAAS;CAChF,cAAc,mDAAmD,SAAS,CAAC,CAAC,SAAS;CACrF,eAAe,oDAAoD,SAAS,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAC9D,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,QAAQA,IAAAA,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC1J,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAA+C;AAEzE,MAAa,mCAAmCC,eAAAA,OAAO,wCAAwC;CAC7F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-pending-orders.d.ts
|
|
4
|
-
declare const RemoteRetrievalListPendingOrdersInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RemoteRetrievalListPendingOrdersInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RemoteRetrievalListPendingOrdersOutput: z.ZodObject<{
|
|
8
|
+
orders: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
9
|
+
order_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
shipments: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11
|
+
device_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
send_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
return_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
}, z.core.$loose>>>;
|
|
15
|
+
company_info: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
|
+
zip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
+
address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
+
}, z.core.$loose>>>;
|
|
24
|
+
employee_info: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25
|
+
zip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
|
+
address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
|
+
address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
|
+
}, z.core.$loose>>>;
|
|
33
|
+
}, z.core.$loose>>>>;
|
|
34
|
+
}, z.core.$loose>;
|
|
35
|
+
declare const remoteRetrievalListPendingOrders: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
page?: number | undefined;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { remoteRetrievalListPendingOrders };
|
|
9
40
|
//# sourceMappingURL=list-pending-orders.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-pending-orders.d.cts","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"mappings":";;;cAIa,qCAAA,
|
|
1
|
+
{"version":3,"file":"list-pending-orders.d.cts","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAgCrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-pending-orders.d.ts
|
|
4
|
-
declare const RemoteRetrievalListPendingOrdersInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RemoteRetrievalListPendingOrdersInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RemoteRetrievalListPendingOrdersOutput: z.ZodObject<{
|
|
8
|
+
orders: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
9
|
+
order_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
shipments: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11
|
+
device_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
send_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
return_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
}, z.core.$loose>>>;
|
|
15
|
+
company_info: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
|
+
zip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
+
address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
+
}, z.core.$loose>>>;
|
|
24
|
+
employee_info: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25
|
+
zip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
|
+
address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
|
+
address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
|
+
}, z.core.$loose>>>;
|
|
33
|
+
}, z.core.$loose>>>>;
|
|
34
|
+
}, z.core.$loose>;
|
|
35
|
+
declare const remoteRetrievalListPendingOrders: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
page?: number | undefined;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { remoteRetrievalListPendingOrders };
|
|
9
40
|
//# sourceMappingURL=list-pending-orders.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-pending-orders.d.mts","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"mappings":";;;cAIa,qCAAA,
|
|
1
|
+
{"version":3,"file":"list-pending-orders.d.mts","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAgCrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAItC,gCAAA,gCAAgC,wBAAA"}
|
|
@@ -6,7 +6,7 @@ const RemoteRetrievalListPendingOrders_ShipmentsSchema = z.object({
|
|
|
6
6
|
device_type: z.string().describe("Type of device being shipped").nullable().optional(),
|
|
7
7
|
send_status: z.string().describe("Status of the outbound shipment").nullable().optional(),
|
|
8
8
|
return_status: z.string().describe("Status of the return shipment").nullable().optional()
|
|
9
|
-
}).describe("Shipment information for a pending order.");
|
|
9
|
+
}).passthrough().describe("Shipment information for a pending order.");
|
|
10
10
|
const RemoteRetrievalListPendingOrders_CompanyInfoSchema = z.object({
|
|
11
11
|
zip: z.string().describe("Postal/ZIP code").nullable().optional(),
|
|
12
12
|
city: z.string().describe("City name").nullable().optional(),
|
|
@@ -15,7 +15,7 @@ const RemoteRetrievalListPendingOrders_CompanyInfoSchema = z.object({
|
|
|
15
15
|
state: z.string().describe("State or province").nullable().optional(),
|
|
16
16
|
address_line_1: z.string().describe("Primary address line").nullable().optional(),
|
|
17
17
|
address_line_2: z.string().describe("Secondary address line").nullable().optional()
|
|
18
|
-
}).describe("Company information for a pending order.");
|
|
18
|
+
}).passthrough().describe("Company information for a pending order.");
|
|
19
19
|
const RemoteRetrievalListPendingOrders_EmployeeInfoSchema = z.object({
|
|
20
20
|
zip: z.string().describe("Postal/ZIP code").nullable().optional(),
|
|
21
21
|
city: z.string().describe("City name").nullable().optional(),
|
|
@@ -24,19 +24,19 @@ const RemoteRetrievalListPendingOrders_EmployeeInfoSchema = z.object({
|
|
|
24
24
|
state: z.string().describe("State or province").nullable().optional(),
|
|
25
25
|
address_line_1: z.string().describe("Primary address line").nullable().optional(),
|
|
26
26
|
address_line_2: z.string().describe("Secondary address line").nullable().optional()
|
|
27
|
-
}).describe("Employee information for a pending order.");
|
|
27
|
+
}).passthrough().describe("Employee information for a pending order.");
|
|
28
28
|
const RemoteRetrievalListPendingOrders_PendingOrderSchema = z.object({
|
|
29
29
|
order_id: z.number().int().describe("Unique order identifier").nullable().optional(),
|
|
30
30
|
shipments: RemoteRetrievalListPendingOrders_ShipmentsSchema.nullable().optional(),
|
|
31
31
|
company_info: RemoteRetrievalListPendingOrders_CompanyInfoSchema.nullable().optional(),
|
|
32
32
|
employee_info: RemoteRetrievalListPendingOrders_EmployeeInfoSchema.nullable().optional()
|
|
33
|
-
}).describe("Details of a single pending order.");
|
|
33
|
+
}).passthrough().describe("Details of a single pending order.");
|
|
34
34
|
const remoteRetrievalListPendingOrders = action("REMOTE_RETRIEVAL_LIST_PENDING_ORDERS", {
|
|
35
35
|
slug: "remote_retrieval-list-pending-orders",
|
|
36
36
|
name: "List Pending Orders",
|
|
37
37
|
description: "Tool to retrieve list of all pending orders. Use when you need to check orders awaiting payment completion. Results are paginated up to 25 per page.",
|
|
38
38
|
input: RemoteRetrievalListPendingOrdersInput,
|
|
39
|
-
output: z.object({ orders: z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe("List of pending orders awaiting payment completion").nullable().optional() }).describe("Response model for retrieving pending orders.")
|
|
39
|
+
output: z.object({ orders: z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe("List of pending orders awaiting payment completion").nullable().optional() }).passthrough().describe("Response model for retrieving pending orders.")
|
|
40
40
|
});
|
|
41
41
|
//#endregion
|
|
42
42
|
export { remoteRetrievalListPendingOrders };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-pending-orders.mjs","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalListPendingOrdersInput
|
|
1
|
+
{"version":3,"file":"list-pending-orders.mjs","names":[],"sources":["../../src/actions/list-pending-orders.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemoteRetrievalListPendingOrdersInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. Results are paginated up to 25 per page.\").optional(),\n}).describe(\"Request parameters for retrieving pending orders.\");\nconst RemoteRetrievalListPendingOrders_ShipmentsSchema = z.object({\n device_type: z.string().describe(\"Type of device being shipped\").nullable().optional(),\n send_status: z.string().describe(\"Status of the outbound shipment\").nullable().optional(),\n return_status: z.string().describe(\"Status of the return shipment\").nullable().optional(),\n}).passthrough().describe(\"Shipment information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_CompanyInfoSchema = z.object({\n zip: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n name: z.string().describe(\"Company name\").nullable().optional(),\n email: z.string().describe(\"Company contact email address\").nullable().optional(),\n state: z.string().describe(\"State or province\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n}).passthrough().describe(\"Company information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_EmployeeInfoSchema = z.object({\n zip: z.string().describe(\"Postal/ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n name: z.string().describe(\"Employee name\").nullable().optional(),\n email: z.string().describe(\"Employee contact email address\").nullable().optional(),\n state: z.string().describe(\"State or province\").nullable().optional(),\n address_line_1: z.string().describe(\"Primary address line\").nullable().optional(),\n address_line_2: z.string().describe(\"Secondary address line\").nullable().optional(),\n}).passthrough().describe(\"Employee information for a pending order.\");\nconst RemoteRetrievalListPendingOrders_PendingOrderSchema = z.object({\n order_id: z.number().int().describe(\"Unique order identifier\").nullable().optional(),\n shipments: RemoteRetrievalListPendingOrders_ShipmentsSchema.nullable().optional(),\n company_info: RemoteRetrievalListPendingOrders_CompanyInfoSchema.nullable().optional(),\n employee_info: RemoteRetrievalListPendingOrders_EmployeeInfoSchema.nullable().optional(),\n}).passthrough().describe(\"Details of a single pending order.\");\nexport const RemoteRetrievalListPendingOrdersOutput = z.object({\n orders: z.array(RemoteRetrievalListPendingOrders_PendingOrderSchema).describe(\"List of pending orders awaiting payment completion\").nullable().optional(),\n}).passthrough().describe(\"Response model for retrieving pending orders.\");\n\nexport const remoteRetrievalListPendingOrders = action(\"REMOTE_RETRIEVAL_LIST_PENDING_ORDERS\", {\n slug: \"remote_retrieval-list-pending-orders\",\n name: \"List Pending Orders\",\n description: \"Tool to retrieve list of all pending orders. Use when you need to check orders awaiting payment completion. Results are paginated up to 25 per page.\",\n input: RemoteRetrievalListPendingOrdersInput,\n output: RemoteRetrievalListPendingOrdersOutput,\n});\n"],"mappings":"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"}
|
|
@@ -3,11 +3,11 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/validate-user.ts
|
|
4
4
|
const RemoteRetrievalValidateUserInput = zod.z.object({}).describe("Request model for validating a user. No input fields required; API key is passed via the Authorization header.");
|
|
5
5
|
const RemoteRetrievalValidateUserOutput = zod.z.object({
|
|
6
|
-
email: zod.z.string().describe("Email associated with the API key"),
|
|
7
|
-
status: zod.z.string().describe("Status of the validation, e.g., 'Success'"),
|
|
8
|
-
message: zod.z.string().describe("Indicates the validation result, e.g., 'Valid Key!'"),
|
|
9
|
-
response_code: zod.z.number().int().describe("HTTP response code, e.g., 200")
|
|
10
|
-
});
|
|
6
|
+
email: zod.z.string().describe("Email associated with the API key").nullable(),
|
|
7
|
+
status: zod.z.string().describe("Status of the validation, e.g., 'Success'").nullable(),
|
|
8
|
+
message: zod.z.string().describe("Indicates the validation result, e.g., 'Valid Key!'").nullable(),
|
|
9
|
+
response_code: zod.z.number().int().describe("HTTP response code, e.g., 200").nullable()
|
|
10
|
+
}).passthrough();
|
|
11
11
|
const remoteRetrievalValidateUser = require_action.action("REMOTE_RETRIEVAL_VALIDATE_USER", {
|
|
12
12
|
slug: "remote_retrieval-validate-user",
|
|
13
13
|
name: "RemoteRetrieval: Validate User",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-user.cjs","names":["z","action"],"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.cjs","names":["z","action"],"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}).passthrough();\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":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gHAAgH;AACtL,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACzE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CAClF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC7F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -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.$loose>;
|
|
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.cts.map
|
|
@@ -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.$loose>;
|
|
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,11 +6,11 @@ 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")
|
|
13
|
-
})
|
|
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
|
+
}).passthrough()
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
16
16
|
export { remoteRetrievalValidateUser };
|
|
@@ -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}).passthrough();\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,CAAC,CAAC,CAAC,YAOO;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.3",
|
|
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": {
|