@pipedream/salesforce_rest_api 1.14.1 → 2.0.1

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.
Files changed (84) hide show
  1. package/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +1 -1
  2. package/actions/add-lead-to-campaign/add-lead-to-campaign.mjs +1 -1
  3. package/actions/common/base-create-update.mjs +2 -34
  4. package/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs +1 -1
  5. package/actions/create-account/create-account.mjs +1 -11
  6. package/actions/create-accounts-batch/create-accounts-batch.mjs +1 -1
  7. package/actions/create-attachment/create-attachment.mjs +8 -13
  8. package/actions/create-campaign/create-campaign.mjs +1 -17
  9. package/actions/create-case/create-case.mjs +1 -16
  10. package/actions/create-casecomment/create-casecomment.mjs +13 -13
  11. package/actions/create-contact/create-contact.mjs +1 -16
  12. package/actions/create-content-note/create-content-note.mjs +43 -33
  13. package/actions/create-crm-record/create-crm-record.mjs +2 -2
  14. package/actions/create-event/create-event.mjs +27 -25
  15. package/actions/create-lead/create-lead.mjs +1 -11
  16. package/actions/create-note/create-note.mjs +13 -9
  17. package/actions/create-opportunities-batch/create-opportunities-batch.mjs +1 -1
  18. package/actions/create-opportunity/create-opportunity.mjs +1 -11
  19. package/actions/create-record/create-record.mjs +15 -54
  20. package/actions/create-task/create-task.mjs +2 -21
  21. package/actions/create-user/create-user.mjs +1 -11
  22. package/actions/delete-crm-record/delete-crm-record.mjs +2 -2
  23. package/actions/delete-note/delete-note.mjs +1 -1
  24. package/actions/delete-opportunity/delete-opportunity.mjs +1 -1
  25. package/actions/delete-record/delete-record.mjs +1 -1
  26. package/actions/describe-object/describe-object.mjs +1 -1
  27. package/actions/find-records/find-records.mjs +1 -1
  28. package/actions/get-case/get-case.mjs +1 -1
  29. package/actions/get-current-user/get-current-user.mjs +1 -1
  30. package/actions/get-knowledge-articles/get-knowledge-articles.mjs +1 -1
  31. package/actions/get-knowledge-data-category-groups/get-knowledge-data-category-groups.mjs +1 -1
  32. package/actions/get-record-by-id/get-record-by-id.mjs +1 -1
  33. package/actions/get-related-records/get-related-records.mjs +1 -1
  34. package/actions/get-user/get-user.mjs +1 -1
  35. package/actions/get-user-info/get-user-info.mjs +1 -1
  36. package/actions/insert-blob-data/insert-blob-data.mjs +1 -1
  37. package/actions/list-case-comments/list-case-comments.mjs +1 -1
  38. package/actions/list-case-feed-items/list-case-feed-items.mjs +1 -1
  39. package/actions/list-cases/list-cases.mjs +1 -1
  40. package/actions/list-email-messages/list-email-messages.mjs +1 -1
  41. package/actions/list-email-templates/list-email-templates.mjs +1 -1
  42. package/actions/list-knowledge-articles/list-knowledge-articles.mjs +1 -1
  43. package/actions/list-object-fields/list-object-fields.mjs +1 -1
  44. package/actions/list-objects/list-objects.mjs +1 -1
  45. package/actions/post-feed-to-chatter/post-feed-to-chatter.mjs +1 -1
  46. package/actions/search-string/search-string.mjs +1 -1
  47. package/actions/send-email/send-email.mjs +1 -1
  48. package/actions/soql-query/soql-query.mjs +1 -1
  49. package/actions/soql-search/soql-search.mjs +1 -1
  50. package/actions/sosl-search/sosl-search.mjs +1 -1
  51. package/actions/text-search/text-search.mjs +1 -1
  52. package/actions/update-account/update-account.mjs +8 -22
  53. package/actions/update-accounts-batch/update-accounts-batch.mjs +1 -1
  54. package/actions/update-contact/update-contact.mjs +8 -27
  55. package/actions/update-content-note/update-content-note.mjs +8 -19
  56. package/actions/update-crm-record/update-crm-record.mjs +2 -2
  57. package/actions/update-email-template/update-email-template.mjs +13 -62
  58. package/actions/update-note/update-note.mjs +8 -19
  59. package/actions/update-opportunities-batch/update-opportunities-batch.mjs +1 -1
  60. package/actions/update-opportunity/update-opportunity.mjs +8 -22
  61. package/actions/update-record/update-record.mjs +24 -80
  62. package/actions/upsert-record/upsert-record.mjs +32 -76
  63. package/common/sobjects/attachment.mjs +2 -11
  64. package/common/sobjects/caseComment.mjs +2 -11
  65. package/common/sobjects/content-note.mjs +3 -11
  66. package/common/sobjects/event.mjs +3 -17
  67. package/common/sobjects/note.mjs +3 -12
  68. package/common/sobjects/opportunity.mjs +2 -10
  69. package/common/sobjects/user.mjs +2 -10
  70. package/package.json +1 -1
  71. package/salesforce_rest_api.app.mjs +0 -16
  72. package/sources/case-updated-instant/case-updated-instant.mjs +1 -1
  73. package/sources/common/common-feed.mjs +65 -6
  74. package/sources/email-template-updated-instant/email-template-updated-instant.mjs +1 -1
  75. package/sources/knowledge-article-updated-instant/knowledge-article-updated-instant.mjs +1 -1
  76. package/sources/new-case-instant/new-case-instant.mjs +1 -1
  77. package/sources/new-email-template-instant/new-email-template-instant.mjs +1 -1
  78. package/sources/new-feed-comment/new-feed-comment.mjs +3 -3
  79. package/sources/new-feed-item/new-feed-item.mjs +2 -2
  80. package/sources/new-knowledge-article-instant/new-knowledge-article-instant.mjs +1 -1
  81. package/sources/new-outbound-message/new-outbound-message.mjs +1 -1
  82. package/sources/new-record-instant/new-record-instant.mjs +1 -1
  83. package/sources/record-deleted-instant/record-deleted-instant.mjs +1 -1
  84. package/sources/record-updated-instant/record-updated-instant.mjs +1 -1
@@ -5,14 +5,10 @@ import { NOTE_INFO_PROP } from "../../common/props-info.mjs";
5
5
 
6
6
  const docsLink = "https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_note.htm";
7
7
 
8
- /* eslint-disable no-unused-vars */
9
- const {
10
- useAdvancedProps, ...props
11
- } = getProps({
8
+ const props = getProps({
12
9
  objType: note,
13
10
  docsLink,
14
11
  });
15
- /* eslint-enable no-unused-vars */
16
12
 
17
13
  export default {
18
14
  ...common,
@@ -23,13 +19,16 @@ export default {
23
19
  + " Use **Find Records** to get the parent record ID first."
24
20
  + " "
25
21
  + `[See the documentation](${docsLink})`,
26
- version: "0.3.8",
22
+ version: "0.3.9",
27
23
  annotations: {
28
24
  destructiveHint: false,
29
25
  openWorldHint: true,
30
26
  readOnlyHint: false,
31
27
  },
32
28
  type: "action",
29
+ methods: {
30
+ ...common.methods,
31
+ },
33
32
  props: {
34
33
  noteInfo: NOTE_INFO_PROP,
35
34
  ...props,
@@ -38,15 +37,20 @@ export default {
38
37
  /* eslint-disable no-unused-vars */
39
38
  const {
40
39
  salesforce,
41
- getAdvancedProps,
42
40
  getAdditionalFields,
43
41
  formatDateTimeProps,
44
- docsInfo, noteInfo, ...data
42
+ docsInfo,
43
+ noteInfo,
44
+ additionalFields,
45
+ ...data
45
46
  } = this;
46
47
  /* eslint-enable no-unused-vars */
47
48
  const response = await salesforce.createRecord("Note", {
48
49
  $,
49
- data,
50
+ data: {
51
+ ...data,
52
+ ...getAdditionalFields(),
53
+ },
50
54
  });
51
55
  $.export("$summary", `Successfully created note "${this.Title}"`);
52
56
  return response;
@@ -12,7 +12,7 @@ export default {
12
12
  + " Poll the job in Salesforce to confirm completion; a successful response means the job was accepted, not that every row loaded."
13
13
  + " "
14
14
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
15
- version: "0.0.6",
15
+ version: "0.0.7",
16
16
  annotations: {
17
17
  destructiveHint: false,
18
18
  openWorldHint: true,
@@ -13,7 +13,7 @@ export default {
13
13
  + " Use **Find Records** on `Account` to get the `AccountId` to attach the deal to."
14
14
  + " "
15
15
  + `[See the documentation](${docsLink})`,
16
- version: "0.3.7",
16
+ version: "0.4.0",
17
17
  annotations: {
18
18
  destructiveHint: false,
19
19
  openWorldHint: true,
@@ -22,28 +22,18 @@ export default {
22
22
  type: "action",
23
23
  methods: {
24
24
  ...common.methods,
25
- getObjectType() {
26
- return "Opportunity";
27
- },
28
- getAdvancedProps() {
29
- return opportunity.extraProps;
30
- },
31
25
  },
32
26
  props: getProps({
33
27
  objType: opportunity,
34
28
  docsLink,
35
29
  showDateInfo: true,
36
- advancedProps: false,
37
30
  }),
38
31
  async run({ $ }) {
39
32
  /* eslint-disable no-unused-vars */
40
33
  const {
41
34
  salesforce,
42
- getAdvancedProps,
43
- getObjectType,
44
35
  getAdditionalFields,
45
36
  formatDateTimeProps,
46
- useAdvancedProps,
47
37
  docsInfo,
48
38
  dateInfo,
49
39
  additionalFields,
@@ -1,19 +1,14 @@
1
1
  // x-pd-ai: optimized
2
- import {
3
- convertFieldsToProps, getAdditionalFields,
4
- } from "../../common/props-utils.mjs";
5
2
  import salesforce from "../../salesforce_rest_api.app.mjs";
6
- import { additionalFields } from "../common/base-create-update.mjs";
7
3
 
8
4
  export default {
9
5
  key: "salesforce_rest_api-create-record",
10
6
  name: "Create Record",
11
- description: "Create a Salesforce record of any object type, choosing fields interactively."
12
- + " Prefer **Create CRM Record** in agent and API contexts - this action builds its field list dynamically, so the available inputs are not visible until an object type is chosen."
7
+ description: "Create a Salesforce record of any object type."
13
8
  + " Use **List Objects** to discover object types and **Describe Object** to discover fields."
14
9
  + " "
15
10
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_create.htm)",
16
- version: "0.3.7",
11
+ version: "1.0.0",
17
12
  annotations: {
18
13
  destructiveHint: false,
19
14
  openWorldHint: true,
@@ -23,58 +18,24 @@ export default {
23
18
  props: {
24
19
  salesforce,
25
20
  objectType: {
26
- propDefinition: [
27
- salesforce,
28
- "objectType",
29
- ],
30
- description: "The type of object to create a record of",
31
- reloadProps: true,
21
+ type: "string",
22
+ label: "Object Type",
23
+ description:
24
+ "The Salesforce object API name (e.g. `Account`, `Contact`, `Lead`, `Opportunity`, `Case`, `Task`, `Event`). Use **List Objects** to discover custom object types (ending in `__c`).",
25
+ },
26
+ fields: {
27
+ type: "object",
28
+ label: "Fields",
29
+ description:
30
+ "Field name -> value pairs for the new record. Example for Contact: `{\"LastName\": \"Smith\", \"Email\": \"smith@acme.com\", \"AccountId\": \"001xxx\"}`. Use **Describe Object** to discover valid field names and picklist values.",
32
31
  },
33
- },
34
- methods: {
35
- getAdditionalFields,
36
- convertFieldsToProps,
37
- },
38
- async additionalProps() {
39
- const { objectType } = this;
40
- const fields = await this.salesforce.getFieldsForObjectType(objectType);
41
-
42
- const requiredFields = fields.filter((field) => {
43
- return field.createable && !field.nillable && !field.defaultedOnCreate;
44
- });
45
-
46
- const requiredFieldProps = this.convertFieldsToProps(requiredFields);
47
-
48
- return {
49
- docsInfo: {
50
- type: "alert",
51
- alertType: "info",
52
- content: `[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_${objectType.toLowerCase()}.htm) for information on all available fields.`,
53
- },
54
- ...requiredFieldProps,
55
- additionalFields,
56
- };
57
32
  },
58
33
  async run({ $ }) {
59
- /* eslint-disable no-unused-vars */
60
- const {
61
- salesforce,
62
- objectType,
63
- getAdditionalFields: getData,
64
- convertFieldsToProps,
65
- docsInfo,
66
- additionalFields,
67
- ...data
68
- } = this;
69
- /* eslint-enable no-unused-vars */
70
- const response = await salesforce.createRecord(objectType, {
34
+ const response = await this.salesforce.createRecord(this.objectType, {
71
35
  $,
72
- data: {
73
- ...data,
74
- ...getData(),
75
- },
36
+ data: this.fields,
76
37
  });
77
- $.export("$summary", `Successfully created ${objectType} record (ID: ${response.id})`);
38
+ $.export("$summary", `Successfully created ${this.objectType} record (ID: ${response.id})`);
78
39
  return response;
79
40
  },
80
41
  };
@@ -14,7 +14,7 @@ export default {
14
14
  + " Use **Find Records** to get the `WhoId` (contact or lead) and `WhatId` (related record) to link the task to."
15
15
  + " "
16
16
  + `[See the documentation](${docsLink})`,
17
- version: "0.4.7",
17
+ version: "1.0.0",
18
18
  annotations: {
19
19
  destructiveHint: false,
20
20
  openWorldHint: true,
@@ -23,12 +23,6 @@ export default {
23
23
  type: "action",
24
24
  methods: {
25
25
  ...common.methods,
26
- getObjectType() {
27
- return "Task";
28
- },
29
- getAdvancedProps() {
30
- return task.extraProps;
31
- },
32
26
  },
33
27
  props: getProps({
34
28
  objType: task,
@@ -39,19 +33,12 @@ export default {
39
33
  /* eslint-disable no-unused-vars */
40
34
  const {
41
35
  salesforce,
42
- getAdvancedProps,
43
- getObjectType,
44
36
  getAdditionalFields,
45
37
  formatDateTimeProps,
46
- useAdvancedProps,
47
38
  docsInfo,
48
39
  dateInfo,
49
40
  additionalFields,
50
41
  ActivityDate,
51
- RecurrenceEndDateOnly,
52
- RecurrenceStartDateOnly,
53
- ReminderDateTime,
54
- RecurrenceDayOfWeekMask,
55
42
  ...data
56
43
  } = this;
57
44
  /* eslint-enable no-unused-vars */
@@ -61,17 +48,11 @@ export default {
61
48
  ...data,
62
49
  ...formatDateTimeProps({
63
50
  ActivityDate,
64
- RecurrenceEndDateOnly,
65
- RecurrenceStartDateOnly,
66
- ReminderDateTime,
67
51
  }),
68
- RecurrenceDayOfWeekMask: RecurrenceDayOfWeekMask?.reduce?.((acc, val) => acc + val, 0),
69
52
  ...getAdditionalFields(),
70
53
  },
71
54
  });
72
- $.export("$summary", `Succcessfully created task${this.Subject
73
- ? ` "${this.Subject}"`
74
- : ""}`);
55
+ $.export("$summary", `Successfully created task (ID: ${response.id})`);
75
56
  return response;
76
57
  },
77
58
  };
@@ -14,7 +14,7 @@ export default {
14
14
  + " Use **Get User** or **Find Records** on `User` to check whether the person already has an account."
15
15
  + " "
16
16
  + `[See the documentation](${docsLink})`,
17
- version: "0.1.7",
17
+ version: "0.1.8",
18
18
  annotations: {
19
19
  destructiveHint: false,
20
20
  openWorldHint: true,
@@ -23,12 +23,6 @@ export default {
23
23
  type: "action",
24
24
  methods: {
25
25
  ...common.methods,
26
- getObjectType() {
27
- return "User";
28
- },
29
- getAdvancedProps() {
30
- return user.extraProps;
31
- },
32
26
  },
33
27
  props: getProps({
34
28
  objType: user,
@@ -38,13 +32,9 @@ export default {
38
32
  /* eslint-disable no-unused-vars */
39
33
  const {
40
34
  salesforce,
41
- getAdvancedProps,
42
- getObjectType,
43
35
  getAdditionalFields,
44
36
  formatDateTimeProps,
45
- useAdvancedProps,
46
37
  docsInfo,
47
- dateInfo,
48
38
  additionalFields,
49
39
  ...data
50
40
  } = this;
@@ -3,13 +3,13 @@ import salesforce from "../../salesforce_rest_api.app.mjs";
3
3
 
4
4
  export default {
5
5
  key: "salesforce_rest_api-delete-crm-record",
6
- name: "Delete Record",
6
+ name: "Delete CRM Record",
7
7
  description:
8
8
  "Delete a Salesforce record. This moves it to the Recycle Bin, where it stays recoverable for up to 15 days - storage limits can purge it sooner."
9
9
  + " Use **SOQL Query** to find the record ID if you only have the record name."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_delete_record.htm)",
12
- version: "0.0.2",
12
+ version: "0.0.3",
13
13
  type: "action",
14
14
  annotations: {
15
15
  readOnlyHint: false,
@@ -10,7 +10,7 @@ export default {
10
10
  + " Use **Find Records** on `Note` or `ContentNote` to get the ID first."
11
11
  + " "
12
12
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_sobject_retrieve_delete.htm)",
13
- version: "0.0.3",
13
+ version: "0.0.4",
14
14
  type: "action",
15
15
  annotations: {
16
16
  destructiveHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Use **Find Records** on `Opportunity` to get the ID first, and prefer **Update Opportunity** to set a Closed Lost stage when you want to keep the history."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.api_rest.meta/api_rest/dome_delete_record.htm)",
12
- version: "0.3.5",
12
+ version: "0.3.6",
13
13
  annotations: {
14
14
  destructiveHint: true,
15
15
  openWorldHint: true,
@@ -10,7 +10,7 @@ export default {
10
10
  + " Use **Find Records** or **SOQL Query** to confirm you have the right record ID before deleting."
11
11
  + " "
12
12
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_sobject_retrieve_delete.htm)",
13
- version: "0.2.5",
13
+ version: "0.2.6",
14
14
  annotations: {
15
15
  destructiveHint: true,
16
16
  openWorldHint: true,
@@ -13,7 +13,7 @@ export default {
13
13
  + " Use **List Objects** if you're unsure of the object's API name."
14
14
  + " "
15
15
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_describe.htm)",
16
- version: "0.0.2",
16
+ version: "0.0.3",
17
17
  type: "action",
18
18
  annotations: {
19
19
  readOnlyHint: true,
@@ -15,7 +15,7 @@ export default {
15
15
  + " Leaving `Record ID(s)` empty returns recent records, not every record - Salesforce sends one batch, so set `Limit` and use **SOQL Query** when you need everything."
16
16
  + " Newest-first ordering needs `CreatedDate`, so results are unordered on the few object types that lack it."
17
17
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_query.htm)",
18
- version: "0.3.0",
18
+ version: "0.3.1",
19
19
  annotations: {
20
20
  destructiveHint: false,
21
21
  openWorldHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Use **List Case Feed Items** and **List Case Comments** to read the case's activity and comment thread."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
12
- version: "0.0.6",
12
+ version: "0.0.7",
13
13
  annotations: {
14
14
  destructiveHint: false,
15
15
  openWorldHint: true,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "salesforce_rest_api-get-current-user",
6
6
  name: "Get Current User",
7
7
  description: "Returns the authenticated Salesforce user's ID, name, email, and organization ID. Call this first when the user says 'my leads', 'my opportunities', 'my cases', or any first-person query. Use `user_id` as the OwnerId filter in **SOQL Search** (e.g. `WHERE OwnerId = '{user_id}'`) and `organization_id` to construct Salesforce UI URLs. [See the documentation](https://help.salesforce.com/s/articleView?id=sf.remoteaccess_using_userinfo_endpoint.htm).",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
9
  type: "action",
10
10
  annotations: {
11
11
  destructiveHint: false,
@@ -10,7 +10,7 @@ export default {
10
10
  + " Returns published article content, so responses can be large - narrow by category or search term."
11
11
  + " "
12
12
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.knowledge_dev.meta/knowledge_dev/sforce_api_rest_retrieve_article_list.htm)",
13
- version: "0.0.4",
13
+ version: "0.0.5",
14
14
  annotations: {
15
15
  destructiveHint: false,
16
16
  openWorldHint: true,
@@ -10,7 +10,7 @@ export default {
10
10
  + " Returns only categories the authenticated user can see, so results vary per user."
11
11
  + " "
12
12
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.knowledge_dev.meta/knowledge_dev/resources_knowledge_support_dcgroups.htm)",
13
- version: "0.0.4",
13
+ version: "0.0.5",
14
14
  annotations: {
15
15
  destructiveHint: false,
16
16
  openWorldHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Use **List Objects** to discover object types if you are unsure of the type name."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
12
- version: "0.0.3",
12
+ version: "0.0.4",
13
13
  type: "action",
14
14
  annotations: {
15
15
  destructiveHint: false,
@@ -14,7 +14,7 @@ export default {
14
14
  + " (look for `relationshipName` on reference fields)."
15
15
  + " "
16
16
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_sobject_relationships.htm)",
17
- version: "0.0.2",
17
+ version: "0.0.3",
18
18
  type: "action",
19
19
  annotations: {
20
20
  readOnlyHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Record owner fields such as `OwnerId` hold user IDs - pass one here to resolve it to a name and email."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
12
- version: "0.0.6",
12
+ version: "0.0.7",
13
13
  annotations: {
14
14
  destructiveHint: false,
15
15
  openWorldHint: true,
@@ -12,7 +12,7 @@ export default {
12
12
  + " `{instanceUrl}/lightning/r/{objectType}/{recordId}/view`."
13
13
  + " "
14
14
  + "[See the documentation](https://help.salesforce.com/s/articleView?id=sf.remoteaccess_using_userinfo_endpoint.htm&type=5)",
15
- version: "0.0.2",
15
+ version: "0.0.3",
16
16
  type: "action",
17
17
  annotations: {
18
18
  readOnlyHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " The file content must be supplied as a file path or URL, not as raw bytes in the request."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.api_rest.meta/api_rest/dome_sobject_insert_update_blob.htm)",
12
- version: "0.2.13",
12
+ version: "0.2.14",
13
13
  annotations: {
14
14
  destructiveHint: false,
15
15
  openWorldHint: true,
@@ -13,7 +13,7 @@ export default {
13
13
  + " Find the case ID with **List Cases** first."
14
14
  + " For example, case ID `5005g00001ABCDeAAI` with `Limit` `20` returns that case's twenty most recent comments."
15
15
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_casecomment.htm)",
16
- version: "0.1.0",
16
+ version: "0.1.1",
17
17
  annotations: {
18
18
  destructiveHint: false,
19
19
  openWorldHint: true,
@@ -12,7 +12,7 @@ export default {
12
12
  + " Use this to read a case's activity trail - text posts, status changes, logged calls, email events and case comment events - in one call."
13
13
  + " The case feed only exists when feed tracking is enabled for Cases in the Salesforce org, so an org without it returns no records."
14
14
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_associated_objects_feed.htm)",
15
- version: "0.0.1",
15
+ version: "0.0.2",
16
16
  annotations: {
17
17
  destructiveHint: false,
18
18
  openWorldHint: true,
@@ -14,7 +14,7 @@ export default {
14
14
  + " For example, `Status` `New` with `Limit` `10` returns the ten newest open cases."
15
15
  + " Status values are org-configurable."
16
16
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_case.htm)",
17
- version: "0.0.1",
17
+ version: "0.0.2",
18
18
  annotations: {
19
19
  destructiveHint: false,
20
20
  openWorldHint: true,
@@ -13,7 +13,7 @@ export default {
13
13
  + " Find the case ID with **List Cases** first."
14
14
  + " Omit `Case ID` to list the most recent emails across the org, which can be large - set `Limit`."
15
15
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailmessage.htm)",
16
- version: "0.1.0",
16
+ version: "0.1.1",
17
17
  annotations: {
18
18
  destructiveHint: false,
19
19
  openWorldHint: true,
@@ -12,7 +12,7 @@ export default {
12
12
  + " Use this to find a template and its ID before sending with **Send Email**, or before editing with **Update Email Template**."
13
13
  + " For example, run with `Limit` `50`, then pass the `Id` of the template you want to **Send Email**."
14
14
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailtemplate.htm)",
15
- version: "0.1.0",
15
+ version: "0.1.1",
16
16
  annotations: {
17
17
  destructiveHint: false,
18
18
  openWorldHint: true,
@@ -12,7 +12,7 @@ export default {
12
12
  + " Returns the article container records (`KnowledgeArticle`), not the published article bodies - use **Get Knowledge Articles** to read article content, and **List Knowledge Data Category Groups** to discover the categories articles are filed under."
13
13
  + " This can return a lot of records on a mature org, so set `Limit`."
14
14
  + " [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_knowledgearticle.htm)",
15
- version: "0.1.0",
15
+ version: "0.1.1",
16
16
  annotations: {
17
17
  destructiveHint: false,
18
18
  openWorldHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Use **Describe Object** instead when you also need field types, required flags and picklist values."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_describe.htm)",
12
- version: "0.0.3",
12
+ version: "0.0.4",
13
13
  type: "action",
14
14
  annotations: {
15
15
  destructiveHint: false,
@@ -12,7 +12,7 @@ export default {
12
12
  + " Use **Describe Object** to get field details for a specific object type."
13
13
  + " "
14
14
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_describeGlobal.htm)",
15
- version: "0.0.2",
15
+ version: "0.0.3",
16
16
  type: "action",
17
17
  annotations: {
18
18
  readOnlyHint: true,
@@ -10,7 +10,7 @@ export default {
10
10
  + " The message is built from segments - a plain string becomes text, and `{ \"type\": \"Mention\", \"username\": \"jsmith\" }` mentions a user."
11
11
  + " "
12
12
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/quickreference_post_feed_item.htm)",
13
- version: "0.1.5",
13
+ version: "0.1.6",
14
14
  annotations: {
15
15
  destructiveHint: false,
16
16
  openWorldHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " SOSL matches indexed text fields, so it finds partial words but will not filter on numeric or date criteria."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_parameterized_get.htm)",
12
- version: "0.0.9",
12
+ version: "0.0.10",
13
13
  annotations: {
14
14
  destructiveHint: false,
15
15
  openWorldHint: true,
@@ -9,7 +9,7 @@ export default {
9
9
  + " Sent mail is logged against the related record - use **List Email Messages** to read it back."
10
10
  + " "
11
11
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_action.meta/api_action/actions_obj_email_simple.htm)",
12
- version: "0.1.1",
12
+ version: "0.1.2",
13
13
  annotations: {
14
14
  destructiveHint: false,
15
15
  openWorldHint: true,
@@ -28,7 +28,7 @@ export default {
28
28
  + " using the format `{instanceUrl}/lightning/r/{objectType}/{Id}/view` (get `instanceUrl` from **Get User Info**)."
29
29
  + " "
30
30
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_query.htm)",
31
- version: "0.0.2",
31
+ version: "0.0.3",
32
32
  type: "action",
33
33
  annotations: {
34
34
  readOnlyHint: true,
@@ -12,7 +12,7 @@ export default {
12
12
  + " SOQL filters on exact field values; use **Text Search** for keyword search."
13
13
  + " "
14
14
  + `[See the documentation](${docsLink})`,
15
- version: "0.2.14",
15
+ version: "0.2.15",
16
16
  annotations: {
17
17
  destructiveHint: false,
18
18
  openWorldHint: true,
@@ -17,7 +17,7 @@ export default {
17
17
  + " SOSL matches indexed text fields, so it finds partial words but will not filter on numeric or date criteria."
18
18
  + " "
19
19
  + `[See the documentation](${docsLink})`,
20
- version: "0.2.13",
20
+ version: "0.2.14",
21
21
  annotations: {
22
22
  destructiveHint: false,
23
23
  openWorldHint: true,
@@ -11,7 +11,7 @@ export default {
11
11
  + " Results are grouped by object type."
12
12
  + " "
13
13
  + "[See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search.htm)",
14
- version: "0.0.2",
14
+ version: "0.0.3",
15
15
  type: "action",
16
16
  annotations: {
17
17
  readOnlyHint: true,