@pipedream/salesforce_rest_api 1.11.6 → 1.11.8

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.
@@ -11,6 +11,7 @@ export default {
11
11
  type: "string",
12
12
  label: "CSV File Path Or URL",
13
13
  description: "The path to the CSV file to process. Provide a path to a file in the `/tmp` directory (for example, `/tmp/data.csv`). If a URL is provided, the file will be downloaded to the `/tmp` directory. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_prepare_data.htm)",
14
+ format: "file-ref",
14
15
  },
15
16
  syncDir: {
16
17
  type: "dir",
@@ -5,7 +5,7 @@ export default {
5
5
  key: "salesforce_rest_api-create-accounts-batch",
6
6
  name: "Create Accounts (Batch)",
7
7
  description: "Create multiple Accounts in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  annotations: {
10
10
  destructiveHint: false,
11
11
  openWorldHint: true,
@@ -18,7 +18,7 @@ export default {
18
18
  key: "salesforce_rest_api-create-attachment",
19
19
  name: "Create Attachment",
20
20
  description: `Creates an Attachment on a parent object. [See the documentation](${docsLink})`,
21
- version: "0.5.5",
21
+ version: "0.5.7",
22
22
  annotations: {
23
23
  destructiveHint: false,
24
24
  openWorldHint: true,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "salesforce_rest_api-create-opportunities-batch",
6
6
  name: "Create Opportunities (Batch)",
7
7
  description: "Create multiple Opportunities in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  annotations: {
10
10
  destructiveHint: false,
11
11
  openWorldHint: true,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "salesforce_rest_api-update-accounts-batch",
6
6
  name: "Update Accounts (Batch)",
7
7
  description: "Update multiple Accounts in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  annotations: {
10
10
  destructiveHint: true,
11
11
  openWorldHint: true,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "salesforce_rest_api-update-opportunities-batch",
6
6
  name: "Update Opportunities (Batch)",
7
7
  description: "Update multiple Opportunities in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  annotations: {
10
10
  destructiveHint: true,
11
11
  openWorldHint: true,
@@ -11,6 +11,7 @@ export default {
11
11
  type: "string",
12
12
  label: "File Path, URL or Content",
13
13
  description: "The file to attach. Provide either a file URL, a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`), or base64-encoded file data.",
14
+ format: "file-ref",
14
15
  },
15
16
  ContentType: {
16
17
  type: "string",
@@ -22,6 +23,12 @@ export default {
22
23
  label: "Parent ID",
23
24
  description: "ID of the parent object of the attachment. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.object_reference.meta/object_reference/sforce_api_objects_attachment.htm) for supported objects.",
24
25
  },
26
+ syncDir: {
27
+ type: "dir",
28
+ accessMode: "read",
29
+ sync: true,
30
+ optional: true,
31
+ },
25
32
  },
26
33
  updateProps: {
27
34
  IsPartnerShared: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/salesforce_rest_api",
3
- "version": "1.11.6",
3
+ "version": "1.11.8",
4
4
  "description": "Pipedream Salesforce (REST API) Components",
5
5
  "main": "salesforce_rest_api.app.mjs",
6
6
  "keywords": [
@@ -11,7 +11,7 @@
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
13
  "@pipedream/platform": "^3.1.1",
14
- "fast-xml-parser": "^5.3.6",
14
+ "fast-xml-parser": "^5.3.8",
15
15
  "handlebars": "^4.7.7",
16
16
  "lodash": "^4.17.23",
17
17
  "lodash-es": "^4.17.23",