@owox/connectors 0.15.0-next-20251203015916 → 0.15.0-next-20251203111540
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/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -20583,7 +20583,7 @@ const FacebookMarketing = (function() {
|
|
|
20583
20583
|
description: "Facebook API Access Token for authentication",
|
|
20584
20584
|
attributes: [CONFIG_ATTRIBUTES2.SECRET, CONFIG_ATTRIBUTES2.DEPRECATED, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
20585
20585
|
},
|
|
20586
|
-
|
|
20586
|
+
AccountIDs: {
|
|
20587
20587
|
isRequired: true,
|
|
20588
20588
|
label: "Account IDs",
|
|
20589
20589
|
description: "Facebook Ad Account IDs to fetch data from"
|
|
@@ -21050,7 +21050,7 @@ const FacebookMarketing = (function() {
|
|
|
21050
21050
|
}
|
|
21051
21051
|
//---- startImportProcess -------------------------------------------------
|
|
21052
21052
|
async startImportProcess() {
|
|
21053
|
-
let accountsIds = String(this.config.
|
|
21053
|
+
let accountsIds = String(this.config.AccountIDs.value).split(/[,;]\s*/);
|
|
21054
21054
|
let fields = this.config.Fields.value.split(", ").reduce((acc, pair) => {
|
|
21055
21055
|
let [key, value] = pair.split(" ");
|
|
21056
21056
|
(acc[key] = acc[key] || []).push(value.trim());
|
package/dist/index.js
CHANGED
|
@@ -20581,7 +20581,7 @@ const FacebookMarketing = (function() {
|
|
|
20581
20581
|
description: "Facebook API Access Token for authentication",
|
|
20582
20582
|
attributes: [CONFIG_ATTRIBUTES2.SECRET, CONFIG_ATTRIBUTES2.DEPRECATED, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
20583
20583
|
},
|
|
20584
|
-
|
|
20584
|
+
AccountIDs: {
|
|
20585
20585
|
isRequired: true,
|
|
20586
20586
|
label: "Account IDs",
|
|
20587
20587
|
description: "Facebook Ad Account IDs to fetch data from"
|
|
@@ -21048,7 +21048,7 @@ const FacebookMarketing = (function() {
|
|
|
21048
21048
|
}
|
|
21049
21049
|
//---- startImportProcess -------------------------------------------------
|
|
21050
21050
|
async startImportProcess() {
|
|
21051
|
-
let accountsIds = String(this.config.
|
|
21051
|
+
let accountsIds = String(this.config.AccountIDs.value).split(/[,;]\s*/);
|
|
21052
21052
|
let fields = this.config.Fields.value.split(", ").reduce((acc, pair) => {
|
|
21053
21053
|
let [key, value] = pair.split(" ");
|
|
21054
21054
|
(acc[key] = acc[key] || []).push(value.trim());
|