You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/hubspot/actions/search-crm/search-crm.mjs
+33-3Lines changed: 33 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ export default {
18
18
name: "Search CRM",
19
19
description:
20
20
"Search companies, contacts, deals, feedback submissions, products, tickets, line-items, quotes, leads, or custom objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/search)",
21
-
version: "1.0.12",
21
+
version: "1.0.13",
22
22
type: "action",
23
23
props: {
24
24
hubspot,
@@ -42,6 +42,13 @@ export default {
42
42
"Set to `true` to search for an exact match of the search value. If `false`, partial matches will be returned. Default: `true`",
43
43
default: true,
44
44
optional: true,
45
+
reloadProps: true,
46
+
},
47
+
createdAfter: {
48
+
type: "string",
49
+
label: "Created After",
50
+
description: "Filter results to only include objects created after this date. Example: `2023-03-03T16:16:24.400Z`. Recommended when `Exact Match` is set to `false`.",
51
+
optional: true,
45
52
},
46
53
createIfNotFound: {
47
54
type: "boolean",
@@ -56,6 +63,14 @@ export default {
56
63
asyncadditionalProps(){
57
64
constprops={};
58
65
66
+
if(this.exactMatch===false&&!this.createdAfter){
67
+
props.exactMatchAlert={
68
+
type: "alert",
69
+
alertType: "info",
70
+
content: "It is recommended to set `Created After` when `Exact Match` is set to `false` to avoid potential timeouts.",
0 commit comments