@keystrokehq/simla_com 0.1.3 → 0.1.4
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/actions/create-custom-field.d.cts +4 -4
- package/dist/actions/create-custom-field.d.mts +4 -4
- package/dist/actions/edit-custom-field.d.cts +6 -6
- package/dist/actions/edit-custom-field.d.mts +6 -6
- package/dist/actions/get-custom-field.d.cts +3 -3
- package/dist/actions/get-custom-field.d.mts +3 -3
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7,13 +7,13 @@ declare const SimlaComCreateCustomFieldInput: z.ZodObject<{
|
|
|
7
7
|
type: z.ZodEnum<{
|
|
8
8
|
string: "string";
|
|
9
9
|
boolean: "boolean";
|
|
10
|
-
date: "date";
|
|
11
10
|
text: "text";
|
|
12
|
-
email: "email";
|
|
13
11
|
integer: "integer";
|
|
12
|
+
numeric: "numeric";
|
|
14
13
|
dictionary: "dictionary";
|
|
14
|
+
date: "date";
|
|
15
15
|
datetime: "datetime";
|
|
16
|
-
|
|
16
|
+
email: "email";
|
|
17
17
|
multiselect_dictionary: "multiselect_dictionary";
|
|
18
18
|
}>;
|
|
19
19
|
entity: z.ZodEnum<{
|
|
@@ -47,7 +47,7 @@ declare const SimlaComCreateCustomFieldOutput: z.ZodObject<{
|
|
|
47
47
|
}, z.core.$loose>;
|
|
48
48
|
declare const simlaComCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
49
49
|
name: string;
|
|
50
|
-
type: "string" | "boolean" | "
|
|
50
|
+
type: "string" | "boolean" | "text" | "integer" | "numeric" | "dictionary" | "date" | "datetime" | "email" | "multiselect_dictionary";
|
|
51
51
|
entity: "order" | "customer" | "loyalty_account";
|
|
52
52
|
code?: string | undefined;
|
|
53
53
|
inList?: boolean | undefined;
|
|
@@ -7,13 +7,13 @@ declare const SimlaComCreateCustomFieldInput: z.ZodObject<{
|
|
|
7
7
|
type: z.ZodEnum<{
|
|
8
8
|
string: "string";
|
|
9
9
|
boolean: "boolean";
|
|
10
|
-
date: "date";
|
|
11
10
|
text: "text";
|
|
12
|
-
email: "email";
|
|
13
11
|
integer: "integer";
|
|
12
|
+
numeric: "numeric";
|
|
14
13
|
dictionary: "dictionary";
|
|
14
|
+
date: "date";
|
|
15
15
|
datetime: "datetime";
|
|
16
|
-
|
|
16
|
+
email: "email";
|
|
17
17
|
multiselect_dictionary: "multiselect_dictionary";
|
|
18
18
|
}>;
|
|
19
19
|
entity: z.ZodEnum<{
|
|
@@ -47,7 +47,7 @@ declare const SimlaComCreateCustomFieldOutput: z.ZodObject<{
|
|
|
47
47
|
}, z.core.$loose>;
|
|
48
48
|
declare const simlaComCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
49
49
|
name: string;
|
|
50
|
-
type: "string" | "boolean" | "
|
|
50
|
+
type: "string" | "boolean" | "text" | "integer" | "numeric" | "dictionary" | "date" | "datetime" | "email" | "multiselect_dictionary";
|
|
51
51
|
entity: "order" | "customer" | "loyalty_account";
|
|
52
52
|
code?: string | undefined;
|
|
53
53
|
inList?: boolean | undefined;
|
|
@@ -8,18 +8,18 @@ declare const SimlaComEditCustomFieldInput: z.ZodObject<{
|
|
|
8
8
|
type: z.ZodOptional<z.ZodEnum<{
|
|
9
9
|
string: "string";
|
|
10
10
|
number: "number";
|
|
11
|
-
date: "date";
|
|
12
11
|
text: "text";
|
|
13
|
-
email: "email";
|
|
14
12
|
integer: "integer";
|
|
15
|
-
bool: "bool";
|
|
16
13
|
dictionary: "dictionary";
|
|
14
|
+
date: "date";
|
|
15
|
+
email: "email";
|
|
16
|
+
bool: "bool";
|
|
17
17
|
}>>;
|
|
18
18
|
entity: z.ZodEnum<{
|
|
19
19
|
order: "order";
|
|
20
20
|
customer: "customer";
|
|
21
|
-
corporate_customer: "corporate_customer";
|
|
22
21
|
company: "company";
|
|
22
|
+
corporate_customer: "corporate_customer";
|
|
23
23
|
}>;
|
|
24
24
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
25
25
|
settings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -35,10 +35,10 @@ declare const SimlaComEditCustomFieldOutput: z.ZodObject<{
|
|
|
35
35
|
}, z.core.$loose>;
|
|
36
36
|
declare const simlaComEditCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
37
37
|
code: string;
|
|
38
|
-
entity: "order" | "customer" | "
|
|
38
|
+
entity: "order" | "customer" | "company" | "corporate_customer";
|
|
39
39
|
name?: string | undefined;
|
|
40
40
|
sort?: number | undefined;
|
|
41
|
-
type?: "string" | "number" | "
|
|
41
|
+
type?: "string" | "number" | "text" | "integer" | "dictionary" | "date" | "email" | "bool" | undefined;
|
|
42
42
|
isActive?: boolean | undefined;
|
|
43
43
|
settings?: Record<string, unknown>[] | undefined;
|
|
44
44
|
isVisible?: boolean | undefined;
|
|
@@ -8,18 +8,18 @@ declare const SimlaComEditCustomFieldInput: z.ZodObject<{
|
|
|
8
8
|
type: z.ZodOptional<z.ZodEnum<{
|
|
9
9
|
string: "string";
|
|
10
10
|
number: "number";
|
|
11
|
-
date: "date";
|
|
12
11
|
text: "text";
|
|
13
|
-
email: "email";
|
|
14
12
|
integer: "integer";
|
|
15
|
-
bool: "bool";
|
|
16
13
|
dictionary: "dictionary";
|
|
14
|
+
date: "date";
|
|
15
|
+
email: "email";
|
|
16
|
+
bool: "bool";
|
|
17
17
|
}>>;
|
|
18
18
|
entity: z.ZodEnum<{
|
|
19
19
|
order: "order";
|
|
20
20
|
customer: "customer";
|
|
21
|
-
corporate_customer: "corporate_customer";
|
|
22
21
|
company: "company";
|
|
22
|
+
corporate_customer: "corporate_customer";
|
|
23
23
|
}>;
|
|
24
24
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
25
25
|
settings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -35,10 +35,10 @@ declare const SimlaComEditCustomFieldOutput: z.ZodObject<{
|
|
|
35
35
|
}, z.core.$loose>;
|
|
36
36
|
declare const simlaComEditCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
37
37
|
code: string;
|
|
38
|
-
entity: "order" | "customer" | "
|
|
38
|
+
entity: "order" | "customer" | "company" | "corporate_customer";
|
|
39
39
|
name?: string | undefined;
|
|
40
40
|
sort?: number | undefined;
|
|
41
|
-
type?: "string" | "number" | "
|
|
41
|
+
type?: "string" | "number" | "text" | "integer" | "dictionary" | "date" | "email" | "bool" | undefined;
|
|
42
42
|
isActive?: boolean | undefined;
|
|
43
43
|
settings?: Record<string, unknown>[] | undefined;
|
|
44
44
|
isVisible?: boolean | undefined;
|
|
@@ -17,13 +17,13 @@ declare const SimlaComGetCustomFieldOutput: z.ZodObject<{
|
|
|
17
17
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
18
18
|
string: "string";
|
|
19
19
|
boolean: "boolean";
|
|
20
|
-
date: "date";
|
|
21
20
|
text: "text";
|
|
22
|
-
email: "email";
|
|
23
21
|
integer: "integer";
|
|
22
|
+
numeric: "numeric";
|
|
24
23
|
dictionary: "dictionary";
|
|
24
|
+
date: "date";
|
|
25
25
|
datetime: "datetime";
|
|
26
|
-
|
|
26
|
+
email: "email";
|
|
27
27
|
multiselect_dictionary: "multiselect_dictionary";
|
|
28
28
|
}>>>;
|
|
29
29
|
entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
@@ -17,13 +17,13 @@ declare const SimlaComGetCustomFieldOutput: z.ZodObject<{
|
|
|
17
17
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
18
18
|
string: "string";
|
|
19
19
|
boolean: "boolean";
|
|
20
|
-
date: "date";
|
|
21
20
|
text: "text";
|
|
22
|
-
email: "email";
|
|
23
21
|
integer: "integer";
|
|
22
|
+
numeric: "numeric";
|
|
24
23
|
dictionary: "dictionary";
|
|
24
|
+
date: "date";
|
|
25
25
|
datetime: "datetime";
|
|
26
|
-
|
|
26
|
+
email: "email";
|
|
27
27
|
multiselect_dictionary: "multiselect_dictionary";
|
|
28
28
|
}>>>;
|
|
29
29
|
entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
package/dist/catalog.cjs
CHANGED
|
@@ -13,7 +13,7 @@ const simlaComCatalog = {
|
|
|
13
13
|
"label": "Account Subdomain",
|
|
14
14
|
"description": "Your Simla.com account subdomain."
|
|
15
15
|
},
|
|
16
|
-
"
|
|
16
|
+
"generic_api_key": {
|
|
17
17
|
"label": "Simla.com API Key",
|
|
18
18
|
"secret": true,
|
|
19
19
|
"description": "The API key provided by Simla.com for authentication."
|
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 simlaComCatalog = {\n \"slug\": \"simla_com\",\n \"name\": \"Simla.com\",\n \"description\": \"Simla.com is an omnichannel CRM platform with AI for automating communications, measuring team performance, managing customer data, and integrating delivery services and order management.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simla_com\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Account Subdomain\",\n \"description\": \"Your Simla.com account subdomain.\"\n },\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const simlaComCatalog = {\n \"slug\": \"simla_com\",\n \"name\": \"Simla.com\",\n \"description\": \"Simla.com is an omnichannel CRM platform with AI for automating communications, measuring team performance, managing customer data, and integrating delivery services and order management.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simla_com\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Account Subdomain\",\n \"description\": \"Your Simla.com account subdomain.\"\n },\n \"generic_api_key\": {\n \"label\": \"Simla.com API Key\",\n \"secret\": true,\n \"description\": \"The API key provided by Simla.com for authentication.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -13,7 +13,7 @@ declare const simlaComCatalog: {
|
|
|
13
13
|
readonly label: "Account Subdomain";
|
|
14
14
|
readonly description: "Your Simla.com account subdomain.";
|
|
15
15
|
};
|
|
16
|
-
readonly
|
|
16
|
+
readonly generic_api_key: {
|
|
17
17
|
readonly label: "Simla.com API Key";
|
|
18
18
|
readonly secret: true;
|
|
19
19
|
readonly description: "The API key provided by Simla.com for authentication.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ declare const simlaComCatalog: {
|
|
|
13
13
|
readonly label: "Account Subdomain";
|
|
14
14
|
readonly description: "Your Simla.com account subdomain.";
|
|
15
15
|
};
|
|
16
|
-
readonly
|
|
16
|
+
readonly generic_api_key: {
|
|
17
17
|
readonly label: "Simla.com API Key";
|
|
18
18
|
readonly secret: true;
|
|
19
19
|
readonly description: "The API key provided by Simla.com for authentication.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -13,7 +13,7 @@ const simlaComCatalog = {
|
|
|
13
13
|
"label": "Account Subdomain",
|
|
14
14
|
"description": "Your Simla.com account subdomain."
|
|
15
15
|
},
|
|
16
|
-
"
|
|
16
|
+
"generic_api_key": {
|
|
17
17
|
"label": "Simla.com API Key",
|
|
18
18
|
"secret": true,
|
|
19
19
|
"description": "The API key provided by Simla.com for authentication."
|
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 simlaComCatalog = {\n \"slug\": \"simla_com\",\n \"name\": \"Simla.com\",\n \"description\": \"Simla.com is an omnichannel CRM platform with AI for automating communications, measuring team performance, managing customer data, and integrating delivery services and order management.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simla_com\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Account Subdomain\",\n \"description\": \"Your Simla.com account subdomain.\"\n },\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const simlaComCatalog = {\n \"slug\": \"simla_com\",\n \"name\": \"Simla.com\",\n \"description\": \"Simla.com is an omnichannel CRM platform with AI for automating communications, measuring team performance, managing customer data, and integrating delivery services and order management.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/simla_com\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Account Subdomain\",\n \"description\": \"Your Simla.com account subdomain.\"\n },\n \"generic_api_key\": {\n \"label\": \"Simla.com API Key\",\n \"secret\": true,\n \"description\": \"The API key provided by Simla.com for authentication.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|