@keystrokehq/simplesat 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-or-update-customer2.cjs +3 -3
- package/dist/actions/create-or-update-customer2.cjs.map +1 -1
- package/dist/actions/create-or-update-customer2.d.cts +25 -3
- package/dist/actions/create-or-update-customer2.d.cts.map +1 -1
- package/dist/actions/create-or-update-customer2.d.mts +25 -3
- package/dist/actions/create-or-update-customer2.d.mts.map +1 -1
- package/dist/actions/create-or-update-customer2.mjs +3 -3
- package/dist/actions/create-or-update-customer2.mjs.map +1 -1
- package/dist/actions/create-or-update-team-member.cjs +5 -5
- package/dist/actions/create-or-update-team-member.cjs.map +1 -1
- package/dist/actions/create-or-update-team-member.d.cts +25 -3
- package/dist/actions/create-or-update-team-member.d.cts.map +1 -1
- package/dist/actions/create-or-update-team-member.d.mts +25 -3
- package/dist/actions/create-or-update-team-member.d.mts.map +1 -1
- package/dist/actions/create-or-update-team-member.mjs +5 -5
- package/dist/actions/create-or-update-team-member.mjs.map +1 -1
- package/dist/actions/get-customer.cjs +3 -3
- package/dist/actions/get-customer.cjs.map +1 -1
- package/dist/actions/get-customer.d.cts +15 -3
- package/dist/actions/get-customer.d.cts.map +1 -1
- package/dist/actions/get-customer.d.mts +15 -3
- package/dist/actions/get-customer.d.mts.map +1 -1
- package/dist/actions/get-customer.mjs +3 -3
- package/dist/actions/get-customer.mjs.map +1 -1
- package/dist/actions/list-questions.cjs +8 -8
- package/dist/actions/list-questions.cjs.map +1 -1
- package/dist/actions/list-questions.d.cts +43 -3
- package/dist/actions/list-questions.d.cts.map +1 -1
- package/dist/actions/list-questions.d.mts +43 -3
- package/dist/actions/list-questions.d.mts.map +1 -1
- package/dist/actions/list-questions.mjs +8 -8
- package/dist/actions/list-questions.mjs.map +1 -1
- package/dist/actions/list-surveys.cjs +5 -5
- package/dist/actions/list-surveys.cjs.map +1 -1
- package/dist/actions/list-surveys.d.cts +15 -3
- package/dist/actions/list-surveys.d.cts.map +1 -1
- package/dist/actions/list-surveys.d.mts +15 -3
- package/dist/actions/list-surveys.d.mts.map +1 -1
- package/dist/actions/list-surveys.mjs +5 -5
- package/dist/actions/list-surveys.mjs.map +1 -1
- package/dist/actions/search-answers.cjs +11 -11
- package/dist/actions/search-answers.cjs.map +1 -1
- package/dist/actions/search-answers.d.cts +97 -3
- package/dist/actions/search-answers.d.cts.map +1 -1
- package/dist/actions/search-answers.d.mts +97 -3
- package/dist/actions/search-answers.d.mts.map +1 -1
- package/dist/actions/search-answers.mjs +11 -11
- package/dist/actions/search-answers.mjs.map +1 -1
- package/dist/actions/search-responses.cjs +3 -3
- package/dist/actions/search-responses.cjs.map +1 -1
- package/dist/actions/search-responses.d.cts +63 -3
- package/dist/actions/search-responses.d.cts.map +1 -1
- package/dist/actions/search-responses.d.mts +63 -3
- package/dist/actions/search-responses.d.mts.map +1 -1
- package/dist/actions/search-responses.mjs +3 -3
- package/dist/actions/search-responses.mjs.map +1 -1
- package/dist/actions/update-customer.cjs +3 -3
- package/dist/actions/update-customer.cjs.map +1 -1
- package/dist/actions/update-customer.d.cts +27 -3
- package/dist/actions/update-customer.d.cts.map +1 -1
- package/dist/actions/update-customer.d.mts +27 -3
- package/dist/actions/update-customer.d.mts.map +1 -1
- package/dist/actions/update-customer.mjs +3 -3
- package/dist/actions/update-customer.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,9 +1,33 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/update-customer.d.ts
|
|
4
|
-
declare const SimplesatUpdateCustomerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SimplesatUpdateCustomerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodString;
|
|
6
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8
|
+
email: z.ZodOptional<z.ZodString>;
|
|
9
|
+
company: z.ZodOptional<z.ZodString>;
|
|
10
|
+
external_id: z.ZodOptional<z.ZodNumber>;
|
|
11
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const SimplesatUpdateCustomerOutput: z.ZodObject<{
|
|
14
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
15
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
17
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
external_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
20
|
+
custom_attributes: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21
|
+
}, z.core.$loose>;
|
|
22
|
+
declare const simplesatUpdateCustomer: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
id: string;
|
|
24
|
+
name?: string | undefined;
|
|
25
|
+
tags?: string[] | undefined;
|
|
26
|
+
email?: string | undefined;
|
|
27
|
+
company?: string | undefined;
|
|
28
|
+
external_id?: number | undefined;
|
|
29
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
31
|
//#endregion
|
|
8
32
|
export { simplesatUpdateCustomer };
|
|
9
33
|
//# sourceMappingURL=update-customer.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-customer.d.cts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"update-customer.d.cts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAU7B,uBAAA,gCAAuB,wBAAA;;;;;;;sBAMlC,MAAA;AAAA"}
|
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/update-customer.d.ts
|
|
4
|
-
declare const SimplesatUpdateCustomerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SimplesatUpdateCustomerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodString;
|
|
6
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8
|
+
email: z.ZodOptional<z.ZodString>;
|
|
9
|
+
company: z.ZodOptional<z.ZodString>;
|
|
10
|
+
external_id: z.ZodOptional<z.ZodNumber>;
|
|
11
|
+
custom_attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const SimplesatUpdateCustomerOutput: z.ZodObject<{
|
|
14
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
15
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
17
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
external_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
20
|
+
custom_attributes: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21
|
+
}, z.core.$loose>;
|
|
22
|
+
declare const simplesatUpdateCustomer: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
id: string;
|
|
24
|
+
name?: string | undefined;
|
|
25
|
+
tags?: string[] | undefined;
|
|
26
|
+
email?: string | undefined;
|
|
27
|
+
company?: string | undefined;
|
|
28
|
+
external_id?: number | undefined;
|
|
29
|
+
custom_attributes?: Record<string, unknown> | undefined;
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
31
|
//#endregion
|
|
8
32
|
export { simplesatUpdateCustomer };
|
|
9
33
|
//# sourceMappingURL=update-customer.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-customer.d.mts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"update-customer.d.mts","names":[],"sources":["../../src/actions/update-customer.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAU7B,uBAAA,gCAAuB,wBAAA;;;;;;;sBAMlC,MAAA;AAAA"}
|
|
@@ -11,17 +11,17 @@ const simplesatUpdateCustomer = action("SIMPLESAT_UPDATE_CUSTOMER", {
|
|
|
11
11
|
email: z.string().describe("Email address of the customer").optional(),
|
|
12
12
|
company: z.string().describe("Company name of the customer").optional(),
|
|
13
13
|
external_id: z.number().int().describe("External identifier for the customer").optional(),
|
|
14
|
-
custom_attributes: z.
|
|
14
|
+
custom_attributes: z.record(z.string(), z.unknown()).describe("Custom attributes as key-value pairs. Any custom attribute fields that didn't previously exist will be created.").optional()
|
|
15
15
|
}),
|
|
16
16
|
output: z.object({
|
|
17
|
-
id: z.number().int().describe("Unique identifier of the customer"),
|
|
17
|
+
id: z.number().int().describe("Unique identifier of the customer").nullable(),
|
|
18
18
|
name: z.string().describe("Full name of the customer").nullable().optional(),
|
|
19
19
|
tags: z.array(z.string()).describe("List of tags associated with the customer").nullable().optional(),
|
|
20
20
|
email: z.string().describe("Email address of the customer").nullable().optional(),
|
|
21
21
|
company: z.string().describe("Company name of the customer").nullable().optional(),
|
|
22
22
|
external_id: z.number().int().describe("External identifier for the customer").nullable().optional(),
|
|
23
23
|
custom_attributes: z.record(z.string(), z.unknown()).describe("Custom attributes of the customer").nullable().optional()
|
|
24
|
-
})
|
|
24
|
+
}).passthrough()
|
|
25
25
|
});
|
|
26
26
|
//#endregion
|
|
27
27
|
export { simplesatUpdateCustomer };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-customer.mjs","names":[],"sources":["../../src/actions/update-customer.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SimplesatUpdateCustomerInput
|
|
1
|
+
{"version":3,"file":"update-customer.mjs","names":[],"sources":["../../src/actions/update-customer.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SimplesatUpdateCustomerInput = z.object({\n id: z.string().describe(\"The unique identifier of the customer to update\"),\n name: z.string().describe(\"Full name of the customer\").optional(),\n tags: z.array(z.string()).describe(\"Array of tags associated with the customer\").optional(),\n email: z.string().describe(\"Email address of the customer\").optional(),\n company: z.string().describe(\"Company name of the customer\").optional(),\n external_id: z.number().int().describe(\"External identifier for the customer\").optional(),\n custom_attributes: z.record(z.string(), z.unknown()).describe(\"Custom attributes as key-value pairs. Any custom attribute fields that didn't previously exist will be created.\").optional(),\n});\nexport const SimplesatUpdateCustomerOutput = z.object({\n id: z.number().int().describe(\"Unique identifier of the customer\").nullable(),\n name: z.string().describe(\"Full name of the customer\").nullable().optional(),\n tags: z.array(z.string()).describe(\"List of tags associated with the customer\").nullable().optional(),\n email: z.string().describe(\"Email address of the customer\").nullable().optional(),\n company: z.string().describe(\"Company name of the customer\").nullable().optional(),\n external_id: z.number().int().describe(\"External identifier for the customer\").nullable().optional(),\n custom_attributes: z.record(z.string(), z.unknown()).describe(\"Custom attributes of the customer\").nullable().optional(),\n}).passthrough();\n\nexport const simplesatUpdateCustomer = action(\"SIMPLESAT_UPDATE_CUSTOMER\", {\n slug: \"simplesat-update-customer\",\n name: \"Update Customer\",\n description: \"Tool to update an existing customer by their Simplesat ID. Use when you need to modify customer information such as name, email, company, external ID, tags, or custom attributes.\",\n input: SimplesatUpdateCustomerInput,\n output: SimplesatUpdateCustomerOutput,\n});\n"],"mappings":";;AAuBA,MAAa,0BAA0B,OAAO,6BAA6B;CACzE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAvB0C,EAAE,OAAO;EACnD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;EACzE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EAChE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;EAC1F,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACtE,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;EACxF,mBAAmB,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iHAAiH,CAAC,CAAC,SAAS;CAC5L,CAeS;CACP,QAf2C,EAAE,OAAO;EACpD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC5E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3E,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjF,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnG,mBAAmB,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzH,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const simplesatCatalog = {
|
|
|
7
7
|
"category": "CRM",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/simplesat",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your Simplesat API Token"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.simplesatCatalog = simplesatCatalog;
|
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 simplesatCatalog = {\n \"slug\": \"simplesat\",\n \"name\": \"Simplesat\",\n \"description\": \"Simplesat captures customer feedback and CSAT scores through surveys, integrating directly with helpdesk systems for real-time performance insights\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simplesat\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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 simplesatCatalog = {\n \"slug\": \"simplesat\",\n \"name\": \"Simplesat\",\n \"description\": \"Simplesat captures customer feedback and CSAT scores through surveys, integrating directly with helpdesk systems for real-time performance insights\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simplesat\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Simplesat API Token\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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 simplesatCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/simplesat";
|
|
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: "Your Simplesat API Token";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { simplesatCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const simplesatCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/simplesat";
|
|
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: "Your Simplesat API Token";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { simplesatCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const simplesatCatalog = {
|
|
|
7
7
|
"category": "CRM",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/simplesat",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your Simplesat API Token"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { simplesatCatalog };
|
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 simplesatCatalog = {\n \"slug\": \"simplesat\",\n \"name\": \"Simplesat\",\n \"description\": \"Simplesat captures customer feedback and CSAT scores through surveys, integrating directly with helpdesk systems for real-time performance insights\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simplesat\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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 simplesatCatalog = {\n \"slug\": \"simplesat\",\n \"name\": \"Simplesat\",\n \"description\": \"Simplesat captures customer feedback and CSAT scores through surveys, integrating directly with helpdesk systems for real-time performance insights\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simplesat\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Simplesat API Token\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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/simplesat",
|
|
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": {
|