@keystrokehq/planyo_online_booking 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/add-reservation.cjs +2 -2
- package/dist/actions/add-reservation.cjs.map +1 -1
- package/dist/actions/add-reservation.d.cts +44 -3
- package/dist/actions/add-reservation.d.cts.map +1 -1
- package/dist/actions/add-reservation.d.mts +44 -3
- package/dist/actions/add-reservation.d.mts.map +1 -1
- package/dist/actions/add-reservation.mjs +2 -2
- package/dist/actions/add-reservation.mjs.map +1 -1
- package/dist/actions/add-user.cjs +3 -3
- package/dist/actions/add-user.cjs.map +1 -1
- package/dist/actions/add-user.d.cts +37 -3
- package/dist/actions/add-user.d.cts.map +1 -1
- package/dist/actions/add-user.d.mts +37 -3
- package/dist/actions/add-user.d.mts.map +1 -1
- package/dist/actions/add-user.mjs +3 -3
- package/dist/actions/add-user.mjs.map +1 -1
- package/dist/actions/get-addon-list.cjs +5 -5
- package/dist/actions/get-addon-list.cjs.map +1 -1
- package/dist/actions/get-addon-list.d.cts +28 -3
- package/dist/actions/get-addon-list.d.cts.map +1 -1
- package/dist/actions/get-addon-list.d.mts +28 -3
- package/dist/actions/get-addon-list.d.mts.map +1 -1
- package/dist/actions/get-addon-list.mjs +5 -5
- package/dist/actions/get-addon-list.mjs.map +1 -1
- package/dist/actions/get-coupon-list.cjs +8 -8
- package/dist/actions/get-coupon-list.cjs.map +1 -1
- package/dist/actions/get-coupon-list.d.cts +29 -3
- package/dist/actions/get-coupon-list.d.cts.map +1 -1
- package/dist/actions/get-coupon-list.d.mts +29 -3
- package/dist/actions/get-coupon-list.d.mts.map +1 -1
- package/dist/actions/get-coupon-list.mjs +8 -8
- package/dist/actions/get-coupon-list.mjs.map +1 -1
- package/dist/actions/get-resource-availability.cjs +6 -6
- package/dist/actions/get-resource-availability.cjs.map +1 -1
- package/dist/actions/get-resource-availability.d.cts +44 -3
- package/dist/actions/get-resource-availability.d.cts.map +1 -1
- package/dist/actions/get-resource-availability.d.mts +44 -3
- package/dist/actions/get-resource-availability.d.mts.map +1 -1
- package/dist/actions/get-resource-availability.mjs +6 -6
- package/dist/actions/get-resource-availability.mjs.map +1 -1
- package/dist/actions/get-resource-blackouts.cjs +6 -6
- package/dist/actions/get-resource-blackouts.cjs.map +1 -1
- package/dist/actions/get-resource-blackouts.d.cts +24 -3
- package/dist/actions/get-resource-blackouts.d.cts.map +1 -1
- package/dist/actions/get-resource-blackouts.d.mts +24 -3
- package/dist/actions/get-resource-blackouts.d.mts.map +1 -1
- package/dist/actions/get-resource-blackouts.mjs +6 -6
- package/dist/actions/get-resource-blackouts.mjs.map +1 -1
- package/dist/actions/get-resource-reviews.cjs +6 -6
- package/dist/actions/get-resource-reviews.cjs.map +1 -1
- package/dist/actions/get-resource-reviews.d.cts +19 -3
- package/dist/actions/get-resource-reviews.d.cts.map +1 -1
- package/dist/actions/get-resource-reviews.d.mts +19 -3
- package/dist/actions/get-resource-reviews.d.mts.map +1 -1
- package/dist/actions/get-resource-reviews.mjs +6 -6
- package/dist/actions/get-resource-reviews.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,13 +6,13 @@ const PlanyoOnlineBookingGetResourceReviewsInput = zod.z.object({
|
|
|
6
6
|
resource_id: zod.z.number().int().describe("ID of the resource to fetch reviews for")
|
|
7
7
|
}).describe("Request model for GET_RESOURCE_REVIEWS action.");
|
|
8
8
|
const PlanyoOnlineBookingGetResourceReviews_ReviewSchema = zod.z.object({
|
|
9
|
-
date: zod.z.string().describe("Date and time when the review was added (YYYY-MM-DD HH:MM:SS)"),
|
|
10
|
-
text: zod.z.string().describe("Comment text of the review"),
|
|
9
|
+
date: zod.z.string().describe("Date and time when the review was added (YYYY-MM-DD HH:MM:SS)").nullable(),
|
|
10
|
+
text: zod.z.string().describe("Comment text of the review").nullable(),
|
|
11
11
|
reply: zod.z.string().describe("Admin reply to the review, if any").nullable().optional(),
|
|
12
|
-
rating: zod.z.number().describe("Rating given by the client (1 to 5)"),
|
|
13
|
-
user_id: zod.z.number().int().describe("ID of the user who left the review"),
|
|
14
|
-
first_name: zod.z.string().describe("First name of the user who left the review"),
|
|
15
|
-
resource_id: zod.z.number().int().describe("ID of the resource related to the review")
|
|
12
|
+
rating: zod.z.number().describe("Rating given by the client (1 to 5)").nullable(),
|
|
13
|
+
user_id: zod.z.number().int().describe("ID of the user who left the review").nullable(),
|
|
14
|
+
first_name: zod.z.string().describe("First name of the user who left the review").nullable(),
|
|
15
|
+
resource_id: zod.z.number().int().describe("ID of the resource related to the review").nullable()
|
|
16
16
|
}).describe("Schema for a single review returned by the API.");
|
|
17
17
|
const PlanyoOnlineBookingGetResourceReviewsOutput = zod.z.object({ results: zod.z.array(PlanyoOnlineBookingGetResourceReviews_ReviewSchema).describe("List of reviews for the given resource") }).describe("Response model for GET_RESOURCE_REVIEWS action.");
|
|
18
18
|
const planyoOnlineBookingGetResourceReviews = require_action.action("PLANYO_ONLINE_BOOKING_GET_RESOURCE_REVIEWS", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-resource-reviews.cjs","names":["z","action"],"sources":["../../src/actions/get-resource-reviews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PlanyoOnlineBookingGetResourceReviewsInput
|
|
1
|
+
{"version":3,"file":"get-resource-reviews.cjs","names":["z","action"],"sources":["../../src/actions/get-resource-reviews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PlanyoOnlineBookingGetResourceReviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of reviews to return (1-500)\").optional(),\n resource_id: z.number().int().describe(\"ID of the resource to fetch reviews for\"),\n}).describe(\"Request model for GET_RESOURCE_REVIEWS action.\");\nconst PlanyoOnlineBookingGetResourceReviews_ReviewSchema = z.object({\n date: z.string().describe(\"Date and time when the review was added (YYYY-MM-DD HH:MM:SS)\").nullable(),\n text: z.string().describe(\"Comment text of the review\").nullable(),\n reply: z.string().describe(\"Admin reply to the review, if any\").nullable().optional(),\n rating: z.number().describe(\"Rating given by the client (1 to 5)\").nullable(),\n user_id: z.number().int().describe(\"ID of the user who left the review\").nullable(),\n first_name: z.string().describe(\"First name of the user who left the review\").nullable(),\n resource_id: z.number().int().describe(\"ID of the resource related to the review\").nullable(),\n}).describe(\"Schema for a single review returned by the API.\");\nexport const PlanyoOnlineBookingGetResourceReviewsOutput = z.object({\n results: z.array(PlanyoOnlineBookingGetResourceReviews_ReviewSchema).describe(\"List of reviews for the given resource\"),\n}).describe(\"Response model for GET_RESOURCE_REVIEWS action.\");\n\nexport const planyoOnlineBookingGetResourceReviews = action(\"PLANYO_ONLINE_BOOKING_GET_RESOURCE_REVIEWS\", {\n slug: \"planyo_online_booking-get-resource-reviews\",\n name: \"Get Resource Reviews\",\n description: \"Tool to fetch reviews and ratings for a specific resource. Use when you have a resource_id and need to display customer feedback.\",\n input: PlanyoOnlineBookingGetResourceReviewsInput,\n output: PlanyoOnlineBookingGetResourceReviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO;CACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CACzF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC;AAClF,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC5D,MAAM,qDAAqDA,IAAAA,EAAE,OAAO;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;CACpG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC5E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAClF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAa,8CAA8CA,IAAAA,EAAE,OAAO,EAClE,SAASA,IAAAA,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,wCAAwC,EACxH,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAE7D,MAAa,wCAAwCC,eAAAA,OAAO,8CAA8C;CACxG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-resource-reviews.d.ts
|
|
4
|
-
declare const PlanyoOnlineBookingGetResourceReviewsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PlanyoOnlineBookingGetResourceReviewsInput: z.ZodObject<{
|
|
5
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
resource_id: z.ZodNumber;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const PlanyoOnlineBookingGetResourceReviewsOutput: z.ZodObject<{
|
|
9
|
+
results: z.ZodArray<z.ZodObject<{
|
|
10
|
+
date: z.ZodNullable<z.ZodString>;
|
|
11
|
+
text: z.ZodNullable<z.ZodString>;
|
|
12
|
+
reply: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
rating: z.ZodNullable<z.ZodNumber>;
|
|
14
|
+
user_id: z.ZodNullable<z.ZodNumber>;
|
|
15
|
+
first_name: z.ZodNullable<z.ZodString>;
|
|
16
|
+
resource_id: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
}, z.core.$strip>>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const planyoOnlineBookingGetResourceReviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
resource_id: number;
|
|
21
|
+
limit?: number | undefined;
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
23
|
//#endregion
|
|
8
24
|
export { planyoOnlineBookingGetResourceReviews };
|
|
9
25
|
//# sourceMappingURL=get-resource-reviews.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-resource-reviews.d.cts","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"mappings":";;;cAIa,0CAAA,
|
|
1
|
+
{"version":3,"file":"get-resource-reviews.d.cts","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"mappings":";;;cAIa,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;cAa1C,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;;;;;;;;cAI3C,qCAAA,gCAAqC,wBAAA"}
|
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-resource-reviews.d.ts
|
|
4
|
-
declare const PlanyoOnlineBookingGetResourceReviewsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PlanyoOnlineBookingGetResourceReviewsInput: z.ZodObject<{
|
|
5
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
resource_id: z.ZodNumber;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const PlanyoOnlineBookingGetResourceReviewsOutput: z.ZodObject<{
|
|
9
|
+
results: z.ZodArray<z.ZodObject<{
|
|
10
|
+
date: z.ZodNullable<z.ZodString>;
|
|
11
|
+
text: z.ZodNullable<z.ZodString>;
|
|
12
|
+
reply: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
rating: z.ZodNullable<z.ZodNumber>;
|
|
14
|
+
user_id: z.ZodNullable<z.ZodNumber>;
|
|
15
|
+
first_name: z.ZodNullable<z.ZodString>;
|
|
16
|
+
resource_id: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
}, z.core.$strip>>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const planyoOnlineBookingGetResourceReviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
resource_id: number;
|
|
21
|
+
limit?: number | undefined;
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
23
|
//#endregion
|
|
8
24
|
export { planyoOnlineBookingGetResourceReviews };
|
|
9
25
|
//# sourceMappingURL=get-resource-reviews.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-resource-reviews.d.mts","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"mappings":";;;cAIa,0CAAA,
|
|
1
|
+
{"version":3,"file":"get-resource-reviews.d.mts","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"mappings":";;;cAIa,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;cAa1C,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;;;;;;;;cAI3C,qCAAA,gCAAqC,wBAAA"}
|
|
@@ -6,13 +6,13 @@ const PlanyoOnlineBookingGetResourceReviewsInput = z.object({
|
|
|
6
6
|
resource_id: z.number().int().describe("ID of the resource to fetch reviews for")
|
|
7
7
|
}).describe("Request model for GET_RESOURCE_REVIEWS action.");
|
|
8
8
|
const PlanyoOnlineBookingGetResourceReviews_ReviewSchema = z.object({
|
|
9
|
-
date: z.string().describe("Date and time when the review was added (YYYY-MM-DD HH:MM:SS)"),
|
|
10
|
-
text: z.string().describe("Comment text of the review"),
|
|
9
|
+
date: z.string().describe("Date and time when the review was added (YYYY-MM-DD HH:MM:SS)").nullable(),
|
|
10
|
+
text: z.string().describe("Comment text of the review").nullable(),
|
|
11
11
|
reply: z.string().describe("Admin reply to the review, if any").nullable().optional(),
|
|
12
|
-
rating: z.number().describe("Rating given by the client (1 to 5)"),
|
|
13
|
-
user_id: z.number().int().describe("ID of the user who left the review"),
|
|
14
|
-
first_name: z.string().describe("First name of the user who left the review"),
|
|
15
|
-
resource_id: z.number().int().describe("ID of the resource related to the review")
|
|
12
|
+
rating: z.number().describe("Rating given by the client (1 to 5)").nullable(),
|
|
13
|
+
user_id: z.number().int().describe("ID of the user who left the review").nullable(),
|
|
14
|
+
first_name: z.string().describe("First name of the user who left the review").nullable(),
|
|
15
|
+
resource_id: z.number().int().describe("ID of the resource related to the review").nullable()
|
|
16
16
|
}).describe("Schema for a single review returned by the API.");
|
|
17
17
|
const planyoOnlineBookingGetResourceReviews = action("PLANYO_ONLINE_BOOKING_GET_RESOURCE_REVIEWS", {
|
|
18
18
|
slug: "planyo_online_booking-get-resource-reviews",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-resource-reviews.mjs","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PlanyoOnlineBookingGetResourceReviewsInput
|
|
1
|
+
{"version":3,"file":"get-resource-reviews.mjs","names":[],"sources":["../../src/actions/get-resource-reviews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PlanyoOnlineBookingGetResourceReviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of reviews to return (1-500)\").optional(),\n resource_id: z.number().int().describe(\"ID of the resource to fetch reviews for\"),\n}).describe(\"Request model for GET_RESOURCE_REVIEWS action.\");\nconst PlanyoOnlineBookingGetResourceReviews_ReviewSchema = z.object({\n date: z.string().describe(\"Date and time when the review was added (YYYY-MM-DD HH:MM:SS)\").nullable(),\n text: z.string().describe(\"Comment text of the review\").nullable(),\n reply: z.string().describe(\"Admin reply to the review, if any\").nullable().optional(),\n rating: z.number().describe(\"Rating given by the client (1 to 5)\").nullable(),\n user_id: z.number().int().describe(\"ID of the user who left the review\").nullable(),\n first_name: z.string().describe(\"First name of the user who left the review\").nullable(),\n resource_id: z.number().int().describe(\"ID of the resource related to the review\").nullable(),\n}).describe(\"Schema for a single review returned by the API.\");\nexport const PlanyoOnlineBookingGetResourceReviewsOutput = z.object({\n results: z.array(PlanyoOnlineBookingGetResourceReviews_ReviewSchema).describe(\"List of reviews for the given resource\"),\n}).describe(\"Response model for GET_RESOURCE_REVIEWS action.\");\n\nexport const planyoOnlineBookingGetResourceReviews = action(\"PLANYO_ONLINE_BOOKING_GET_RESOURCE_REVIEWS\", {\n slug: \"planyo_online_booking-get-resource-reviews\",\n name: \"Get Resource Reviews\",\n description: \"Tool to fetch reviews and ratings for a specific resource. Use when you have a resource_id and need to display customer feedback.\",\n input: PlanyoOnlineBookingGetResourceReviewsInput,\n output: PlanyoOnlineBookingGetResourceReviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO;CACjE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CACzF,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC;AAClF,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC5D,MAAM,qDAAqD,EAAE,OAAO;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;CACpG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC5E,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAClF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAK7D,MAAa,wCAAwC,OAAO,8CAA8C;CACxG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyD,EAAE,OAAO,EAClE,SAAS,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,wCAAwC,EACxH,CAAC,CAAC,CAAC,SAAS,iDAOF;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const planyoOnlineBookingCatalog = {
|
|
|
7
7
|
"category": "Scheduling & Booking",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/planyo_online_booking",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.planyoOnlineBookingCatalog = planyoOnlineBookingCatalog;
|
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 planyoOnlineBookingCatalog = {\n \"slug\": \"planyo_online_booking\",\n \"name\": \"Planyo Online Booking\",\n \"description\": \"Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.\",\n \"category\": \"Scheduling & Booking\",\n \"logo\": \"https://logos.composio.dev/api/planyo_online_booking\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,6BAA6B;CACxC,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 planyoOnlineBookingCatalog = {\n \"slug\": \"planyo_online_booking\",\n \"name\": \"Planyo Online Booking\",\n \"description\": \"Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.\",\n \"category\": \"Scheduling & Booking\",\n \"logo\": \"https://logos.composio.dev/api/planyo_online_booking\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,6BAA6B;CACxC,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 planyoOnlineBookingCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/planyo_online_booking";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { planyoOnlineBookingCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const planyoOnlineBookingCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/planyo_online_booking";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { planyoOnlineBookingCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const planyoOnlineBookingCatalog = {
|
|
|
7
7
|
"category": "Scheduling & Booking",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/planyo_online_booking",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { planyoOnlineBookingCatalog };
|
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 planyoOnlineBookingCatalog = {\n \"slug\": \"planyo_online_booking\",\n \"name\": \"Planyo Online Booking\",\n \"description\": \"Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.\",\n \"category\": \"Scheduling & Booking\",\n \"logo\": \"https://logos.composio.dev/api/planyo_online_booking\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,6BAA6B;CACxC,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 planyoOnlineBookingCatalog = {\n \"slug\": \"planyo_online_booking\",\n \"name\": \"Planyo Online Booking\",\n \"description\": \"Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.\",\n \"category\": \"Scheduling & Booking\",\n \"logo\": \"https://logos.composio.dev/api/planyo_online_booking\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,6BAA6B;CACxC,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/planyo_online_booking",
|
|
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": {
|