@keystrokehq/salesflare 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 +2 -2
- package/dist/actions/create-custom-field.d.mts +2 -2
- package/dist/actions/delete-custom-field.d.cts +2 -2
- package/dist/actions/delete-custom-field.d.mts +2 -2
- package/dist/actions/get-custom-field.d.cts +2 -2
- package/dist/actions/get-custom-field.d.mts +2 -2
- package/dist/actions/list-accounts.d.cts +1 -1
- package/dist/actions/list-accounts.d.mts +1 -1
- package/dist/actions/list-custom-field-options.d.cts +2 -2
- package/dist/actions/list-custom-field-options.d.mts +2 -2
- package/dist/actions/list-custom-fields.d.cts +2 -2
- package/dist/actions/list-custom-fields.d.mts +2 -2
- package/dist/actions/list-filter-fields.d.cts +6 -6
- package/dist/actions/list-filter-fields.d.mts +6 -6
- package/dist/actions/list-opportunities.d.cts +1 -1
- package/dist/actions/list-opportunities.d.mts +1 -1
- package/dist/actions/update-custom-field.d.cts +2 -2
- package/dist/actions/update-custom-field.d.mts +2 -2
- 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
|
@@ -17,8 +17,8 @@ declare const SalesflareCreateCustomFieldInput: z.ZodObject<{
|
|
|
17
17
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
18
18
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
19
19
|
item_class: z.ZodEnum<{
|
|
20
|
-
accounts: "accounts";
|
|
21
20
|
contacts: "contacts";
|
|
21
|
+
accounts: "accounts";
|
|
22
22
|
opportunities: "opportunities";
|
|
23
23
|
}>;
|
|
24
24
|
max_number: z.ZodOptional<z.ZodNumber>;
|
|
@@ -32,7 +32,7 @@ declare const SalesflareCreateCustomFieldOutput: z.ZodObject<{
|
|
|
32
32
|
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
33
33
|
}, z.core.$loose>;
|
|
34
34
|
declare const salesflareCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
35
|
-
item_class: "
|
|
35
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
36
36
|
name?: string | undefined;
|
|
37
37
|
type?: number | undefined;
|
|
38
38
|
enabled?: boolean | undefined;
|
|
@@ -17,8 +17,8 @@ declare const SalesflareCreateCustomFieldInput: z.ZodObject<{
|
|
|
17
17
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
18
18
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
19
19
|
item_class: z.ZodEnum<{
|
|
20
|
-
accounts: "accounts";
|
|
21
20
|
contacts: "contacts";
|
|
21
|
+
accounts: "accounts";
|
|
22
22
|
opportunities: "opportunities";
|
|
23
23
|
}>;
|
|
24
24
|
max_number: z.ZodOptional<z.ZodNumber>;
|
|
@@ -32,7 +32,7 @@ declare const SalesflareCreateCustomFieldOutput: z.ZodObject<{
|
|
|
32
32
|
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
33
33
|
}, z.core.$loose>;
|
|
34
34
|
declare const salesflareCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
35
|
-
item_class: "
|
|
35
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
36
36
|
name?: string | undefined;
|
|
37
37
|
type?: number | undefined;
|
|
38
38
|
enabled?: boolean | undefined;
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareDeleteCustomFieldInput: z.ZodObject<{
|
|
5
5
|
id: z.ZodNumber;
|
|
6
6
|
item_class: z.ZodEnum<{
|
|
7
|
-
accounts: "accounts";
|
|
8
7
|
contacts: "contacts";
|
|
8
|
+
accounts: "accounts";
|
|
9
9
|
opportunities: "opportunities";
|
|
10
10
|
}>;
|
|
11
11
|
}, z.core.$strip>;
|
|
@@ -15,7 +15,7 @@ declare const SalesflareDeleteCustomFieldOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const salesflareDeleteCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
id: number;
|
|
18
|
-
item_class: "
|
|
18
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
19
19
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { salesflareDeleteCustomField };
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareDeleteCustomFieldInput: z.ZodObject<{
|
|
5
5
|
id: z.ZodNumber;
|
|
6
6
|
item_class: z.ZodEnum<{
|
|
7
|
-
accounts: "accounts";
|
|
8
7
|
contacts: "contacts";
|
|
8
|
+
accounts: "accounts";
|
|
9
9
|
opportunities: "opportunities";
|
|
10
10
|
}>;
|
|
11
11
|
}, z.core.$strip>;
|
|
@@ -15,7 +15,7 @@ declare const SalesflareDeleteCustomFieldOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const salesflareDeleteCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
id: number;
|
|
18
|
-
item_class: "
|
|
18
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
19
19
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { salesflareDeleteCustomField };
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareGetCustomFieldInput: z.ZodObject<{
|
|
5
5
|
id: z.ZodNumber;
|
|
6
6
|
item_class: z.ZodEnum<{
|
|
7
|
-
accounts: "accounts";
|
|
8
7
|
contacts: "contacts";
|
|
8
|
+
accounts: "accounts";
|
|
9
9
|
opportunities: "opportunities";
|
|
10
10
|
}>;
|
|
11
11
|
}, z.core.$strip>;
|
|
@@ -40,7 +40,7 @@ declare const SalesflareGetCustomFieldOutput: z.ZodObject<{
|
|
|
40
40
|
}, z.core.$loose>;
|
|
41
41
|
declare const salesflareGetCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
42
42
|
id: number;
|
|
43
|
-
item_class: "
|
|
43
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
44
44
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { salesflareGetCustomField };
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareGetCustomFieldInput: z.ZodObject<{
|
|
5
5
|
id: z.ZodNumber;
|
|
6
6
|
item_class: z.ZodEnum<{
|
|
7
|
-
accounts: "accounts";
|
|
8
7
|
contacts: "contacts";
|
|
8
|
+
accounts: "accounts";
|
|
9
9
|
opportunities: "opportunities";
|
|
10
10
|
}>;
|
|
11
11
|
}, z.core.$strip>;
|
|
@@ -40,7 +40,7 @@ declare const SalesflareGetCustomFieldOutput: z.ZodObject<{
|
|
|
40
40
|
}, z.core.$loose>;
|
|
41
41
|
declare const salesflareGetCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
42
42
|
id: number;
|
|
43
|
-
item_class: "
|
|
43
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
44
44
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { salesflareGetCustomField };
|
|
@@ -74,7 +74,7 @@ declare const salesflareListAccounts: import("@keystrokehq/action").WorkflowActi
|
|
|
74
74
|
offset?: number | undefined;
|
|
75
75
|
search?: string | undefined;
|
|
76
76
|
details?: boolean | undefined;
|
|
77
|
-
hotness?: 1 |
|
|
77
|
+
hotness?: 1 | 2 | 3 | undefined;
|
|
78
78
|
max_size?: number | undefined;
|
|
79
79
|
min_size?: number | undefined;
|
|
80
80
|
order_by?: string[] | undefined;
|
|
@@ -74,7 +74,7 @@ declare const salesflareListAccounts: import("@keystrokehq/action").WorkflowActi
|
|
|
74
74
|
offset?: number | undefined;
|
|
75
75
|
search?: string | undefined;
|
|
76
76
|
details?: boolean | undefined;
|
|
77
|
-
hotness?: 1 |
|
|
77
|
+
hotness?: 1 | 2 | 3 | undefined;
|
|
78
78
|
max_size?: number | undefined;
|
|
79
79
|
min_size?: number | undefined;
|
|
80
80
|
order_by?: string[] | undefined;
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-custom-field-options.d.ts
|
|
4
4
|
declare const SalesflareListCustomFieldOptionsInput: z.ZodObject<{
|
|
5
5
|
item_class: z.ZodEnum<{
|
|
6
|
-
accounts: "accounts";
|
|
7
6
|
contacts: "contacts";
|
|
7
|
+
accounts: "accounts";
|
|
8
8
|
opportunities: "opportunities";
|
|
9
9
|
}>;
|
|
10
10
|
search_string: z.ZodOptional<z.ZodString>;
|
|
@@ -14,7 +14,7 @@ declare const SalesflareListCustomFieldOptionsOutput: z.ZodObject<{
|
|
|
14
14
|
options: z.ZodArray<z.ZodString>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const salesflareListCustomFieldOptions: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
|
-
item_class: "
|
|
17
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
18
18
|
custom_field_api_field: string;
|
|
19
19
|
search_string?: string | undefined;
|
|
20
20
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-custom-field-options.d.ts
|
|
4
4
|
declare const SalesflareListCustomFieldOptionsInput: z.ZodObject<{
|
|
5
5
|
item_class: z.ZodEnum<{
|
|
6
|
-
accounts: "accounts";
|
|
7
6
|
contacts: "contacts";
|
|
7
|
+
accounts: "accounts";
|
|
8
8
|
opportunities: "opportunities";
|
|
9
9
|
}>;
|
|
10
10
|
search_string: z.ZodOptional<z.ZodString>;
|
|
@@ -14,7 +14,7 @@ declare const SalesflareListCustomFieldOptionsOutput: z.ZodObject<{
|
|
|
14
14
|
options: z.ZodArray<z.ZodString>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const salesflareListCustomFieldOptions: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
|
-
item_class: "
|
|
17
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
18
18
|
custom_field_api_field: string;
|
|
19
19
|
search_string?: string | undefined;
|
|
20
20
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -5,8 +5,8 @@ declare const SalesflareListCustomFieldsInput: z.ZodObject<{
|
|
|
5
5
|
name: z.ZodOptional<z.ZodString>;
|
|
6
6
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
7
7
|
itemClass: z.ZodEnum<{
|
|
8
|
-
accounts: "accounts";
|
|
9
8
|
contacts: "contacts";
|
|
9
|
+
accounts: "accounts";
|
|
10
10
|
opportunities: "opportunities";
|
|
11
11
|
}>;
|
|
12
12
|
includeDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41,7 +41,7 @@ declare const SalesflareListCustomFieldsOutput: z.ZodObject<{
|
|
|
41
41
|
}, z.core.$loose>>>>;
|
|
42
42
|
}, z.core.$loose>;
|
|
43
43
|
declare const salesflareListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
44
|
-
itemClass: "
|
|
44
|
+
itemClass: "contacts" | "accounts" | "opportunities";
|
|
45
45
|
name?: string | undefined;
|
|
46
46
|
pipeline?: number | undefined;
|
|
47
47
|
includeDisabled?: boolean | undefined;
|
|
@@ -5,8 +5,8 @@ declare const SalesflareListCustomFieldsInput: z.ZodObject<{
|
|
|
5
5
|
name: z.ZodOptional<z.ZodString>;
|
|
6
6
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
7
7
|
itemClass: z.ZodEnum<{
|
|
8
|
-
accounts: "accounts";
|
|
9
8
|
contacts: "contacts";
|
|
9
|
+
accounts: "accounts";
|
|
10
10
|
opportunities: "opportunities";
|
|
11
11
|
}>;
|
|
12
12
|
includeDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41,7 +41,7 @@ declare const SalesflareListCustomFieldsOutput: z.ZodObject<{
|
|
|
41
41
|
}, z.core.$loose>>>>;
|
|
42
42
|
}, z.core.$loose>;
|
|
43
43
|
declare const salesflareListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
44
|
-
itemClass: "
|
|
44
|
+
itemClass: "contacts" | "accounts" | "opportunities";
|
|
45
45
|
name?: string | undefined;
|
|
46
46
|
pipeline?: number | undefined;
|
|
47
47
|
includeDisabled?: boolean | undefined;
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareListFilterFieldsInput: z.ZodObject<{
|
|
5
5
|
entity: z.ZodEnum<{
|
|
6
6
|
account: "account";
|
|
7
|
-
campaign: "campaign";
|
|
8
7
|
tag: "tag";
|
|
8
|
+
campaign: "campaign";
|
|
9
9
|
person: "person";
|
|
10
10
|
workflow: "workflow";
|
|
11
11
|
opportunity: "opportunity";
|
|
@@ -37,8 +37,8 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
37
37
|
label: z.ZodNullable<z.ZodString>;
|
|
38
38
|
entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
39
39
|
account: "account";
|
|
40
|
-
campaign: "campaign";
|
|
41
40
|
tag: "tag";
|
|
41
|
+
campaign: "campaign";
|
|
42
42
|
person: "person";
|
|
43
43
|
workflow: "workflow";
|
|
44
44
|
opportunity: "opportunity";
|
|
@@ -55,11 +55,11 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
55
55
|
param_less: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
56
56
|
validation: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
57
57
|
search_entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
58
|
-
pipeline: "pipeline";
|
|
59
58
|
user: "user";
|
|
60
59
|
account: "account";
|
|
61
60
|
contact: "contact";
|
|
62
61
|
tag: "tag";
|
|
62
|
+
pipeline: "pipeline";
|
|
63
63
|
workflow: "workflow";
|
|
64
64
|
lead: "lead";
|
|
65
65
|
}>>>;
|
|
@@ -76,6 +76,8 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
76
76
|
}>>>;
|
|
77
77
|
fixed_operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
78
78
|
in: "in";
|
|
79
|
+
after: "after";
|
|
80
|
+
before: "before";
|
|
79
81
|
equal: "equal";
|
|
80
82
|
not_equal: "not_equal";
|
|
81
83
|
not_in: "not_in";
|
|
@@ -103,9 +105,7 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
103
105
|
future_less: "future_less";
|
|
104
106
|
future_exactly: "future_exactly";
|
|
105
107
|
future_more_than: "future_more_than";
|
|
106
|
-
after: "after";
|
|
107
108
|
on: "on";
|
|
108
|
-
before: "before";
|
|
109
109
|
is: "is";
|
|
110
110
|
is_not: "is_not";
|
|
111
111
|
}>>>;
|
|
@@ -113,7 +113,7 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
113
113
|
}, z.core.$loose>>;
|
|
114
114
|
}, z.core.$loose>;
|
|
115
115
|
declare const salesflareListFilterFields: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
116
|
-
entity: "account" | "
|
|
116
|
+
entity: "account" | "tag" | "campaign" | "person" | "workflow" | "opportunity" | "task" | "workflow_record" | "workflow_step_record" | "lead";
|
|
117
117
|
pipeline?: number | undefined;
|
|
118
118
|
includePipelineSpecificPredefinedFilterFields?: boolean | undefined;
|
|
119
119
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -4,8 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const SalesflareListFilterFieldsInput: z.ZodObject<{
|
|
5
5
|
entity: z.ZodEnum<{
|
|
6
6
|
account: "account";
|
|
7
|
-
campaign: "campaign";
|
|
8
7
|
tag: "tag";
|
|
8
|
+
campaign: "campaign";
|
|
9
9
|
person: "person";
|
|
10
10
|
workflow: "workflow";
|
|
11
11
|
opportunity: "opportunity";
|
|
@@ -37,8 +37,8 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
37
37
|
label: z.ZodNullable<z.ZodString>;
|
|
38
38
|
entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
39
39
|
account: "account";
|
|
40
|
-
campaign: "campaign";
|
|
41
40
|
tag: "tag";
|
|
41
|
+
campaign: "campaign";
|
|
42
42
|
person: "person";
|
|
43
43
|
workflow: "workflow";
|
|
44
44
|
opportunity: "opportunity";
|
|
@@ -55,11 +55,11 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
55
55
|
param_less: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
56
56
|
validation: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
57
57
|
search_entity: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
58
|
-
pipeline: "pipeline";
|
|
59
58
|
user: "user";
|
|
60
59
|
account: "account";
|
|
61
60
|
contact: "contact";
|
|
62
61
|
tag: "tag";
|
|
62
|
+
pipeline: "pipeline";
|
|
63
63
|
workflow: "workflow";
|
|
64
64
|
lead: "lead";
|
|
65
65
|
}>>>;
|
|
@@ -76,6 +76,8 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
76
76
|
}>>>;
|
|
77
77
|
fixed_operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
78
78
|
in: "in";
|
|
79
|
+
after: "after";
|
|
80
|
+
before: "before";
|
|
79
81
|
equal: "equal";
|
|
80
82
|
not_equal: "not_equal";
|
|
81
83
|
not_in: "not_in";
|
|
@@ -103,9 +105,7 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
103
105
|
future_less: "future_less";
|
|
104
106
|
future_exactly: "future_exactly";
|
|
105
107
|
future_more_than: "future_more_than";
|
|
106
|
-
after: "after";
|
|
107
108
|
on: "on";
|
|
108
|
-
before: "before";
|
|
109
109
|
is: "is";
|
|
110
110
|
is_not: "is_not";
|
|
111
111
|
}>>>;
|
|
@@ -113,7 +113,7 @@ declare const SalesflareListFilterFieldsOutput: z.ZodObject<{
|
|
|
113
113
|
}, z.core.$loose>>;
|
|
114
114
|
}, z.core.$loose>;
|
|
115
115
|
declare const salesflareListFilterFields: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
116
|
-
entity: "account" | "
|
|
116
|
+
entity: "account" | "tag" | "campaign" | "person" | "workflow" | "opportunity" | "task" | "workflow_record" | "workflow_step_record" | "lead";
|
|
117
117
|
pipeline?: number | undefined;
|
|
118
118
|
includePipelineSpecificPredefinedFilterFields?: boolean | undefined;
|
|
119
119
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -114,7 +114,7 @@ declare const salesflareListOpportunities: import("@keystrokehq/action").Workflo
|
|
|
114
114
|
search?: string | undefined;
|
|
115
115
|
account?: number | undefined;
|
|
116
116
|
details?: boolean | undefined;
|
|
117
|
-
hotness?: 1 |
|
|
117
|
+
hotness?: 1 | 2 | 3 | undefined;
|
|
118
118
|
assignee?: number | undefined;
|
|
119
119
|
order_by?: string[] | undefined;
|
|
120
120
|
pipeline?: number | undefined;
|
|
@@ -114,7 +114,7 @@ declare const salesflareListOpportunities: import("@keystrokehq/action").Workflo
|
|
|
114
114
|
search?: string | undefined;
|
|
115
115
|
account?: number | undefined;
|
|
116
116
|
details?: boolean | undefined;
|
|
117
|
-
hotness?: 1 |
|
|
117
|
+
hotness?: 1 | 2 | 3 | undefined;
|
|
118
118
|
assignee?: number | undefined;
|
|
119
119
|
order_by?: string[] | undefined;
|
|
120
120
|
pipeline?: number | undefined;
|
|
@@ -18,8 +18,8 @@ declare const SalesflareUpdateCustomFieldInput: z.ZodObject<{
|
|
|
18
18
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
19
19
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
item_class: z.ZodEnum<{
|
|
21
|
-
accounts: "accounts";
|
|
22
21
|
contacts: "contacts";
|
|
22
|
+
accounts: "accounts";
|
|
23
23
|
opportunities: "opportunities";
|
|
24
24
|
}>;
|
|
25
25
|
max_number: z.ZodOptional<z.ZodNumber>;
|
|
@@ -55,7 +55,7 @@ declare const SalesflareUpdateCustomFieldOutput: z.ZodObject<{
|
|
|
55
55
|
}, z.core.$loose>;
|
|
56
56
|
declare const salesflareUpdateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
57
57
|
id: number;
|
|
58
|
-
item_class: "
|
|
58
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
59
59
|
name?: string | undefined;
|
|
60
60
|
order?: number | undefined;
|
|
61
61
|
enabled?: boolean | undefined;
|
|
@@ -18,8 +18,8 @@ declare const SalesflareUpdateCustomFieldInput: z.ZodObject<{
|
|
|
18
18
|
pipeline: z.ZodOptional<z.ZodNumber>;
|
|
19
19
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
item_class: z.ZodEnum<{
|
|
21
|
-
accounts: "accounts";
|
|
22
21
|
contacts: "contacts";
|
|
22
|
+
accounts: "accounts";
|
|
23
23
|
opportunities: "opportunities";
|
|
24
24
|
}>;
|
|
25
25
|
max_number: z.ZodOptional<z.ZodNumber>;
|
|
@@ -55,7 +55,7 @@ declare const SalesflareUpdateCustomFieldOutput: z.ZodObject<{
|
|
|
55
55
|
}, z.core.$loose>;
|
|
56
56
|
declare const salesflareUpdateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
57
57
|
id: number;
|
|
58
|
-
item_class: "
|
|
58
|
+
item_class: "contacts" | "accounts" | "opportunities";
|
|
59
59
|
name?: string | undefined;
|
|
60
60
|
order?: number | undefined;
|
|
61
61
|
enabled?: boolean | undefined;
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const salesflareCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/salesflare",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)"
|
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 salesflareCatalog = {\n \"slug\": \"salesflare\",\n \"name\": \"Salesflare\",\n \"description\": \"Salesflare is a CRM platform that helps small and medium-sized B2B businesses track and manage their sales pipelines, contacts, and customer relationships with automated data entry and smart insights.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/salesflare\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const salesflareCatalog = {\n \"slug\": \"salesflare\",\n \"name\": \"Salesflare\",\n \"description\": \"Salesflare is a CRM platform that helps small and medium-sized B2B businesses track and manage their sales pipelines, contacts, and customer relationships with automated data entry and smart insights.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/salesflare\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const salesflareCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const salesflareCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const salesflareCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/salesflare",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)"
|
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 salesflareCatalog = {\n \"slug\": \"salesflare\",\n \"name\": \"Salesflare\",\n \"description\": \"Salesflare is a CRM platform that helps small and medium-sized B2B businesses track and manage their sales pipelines, contacts, and customer relationships with automated data entry and smart insights.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/salesflare\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const salesflareCatalog = {\n \"slug\": \"salesflare\",\n \"name\": \"Salesflare\",\n \"description\": \"Salesflare is a CRM platform that helps small and medium-sized B2B businesses track and manage their sales pipelines, contacts, and customer relationships with automated data entry and smart insights.\",\n \"category\": \"CRM\",\n \"logo\": \"https://logos.composio.dev/api/salesflare\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"API key generated from Settings > API Keys in Salesflare (https://app.salesflare.com/#/settings/apikeys)\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|