@owox/connectors 0.12.0-next-20251113104154 → 0.12.0
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 +107 -60
- package/dist/index.js +107 -60
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3721,7 +3721,7 @@ const XAds = (function() {
|
|
|
3721
3721
|
requiredType: "date",
|
|
3722
3722
|
label: "Start Date",
|
|
3723
3723
|
description: "Start date for data import",
|
|
3724
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
3724
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
3725
3725
|
},
|
|
3726
3726
|
EndDate: {
|
|
3727
3727
|
requiredType: "date",
|
|
@@ -3734,48 +3734,56 @@ const XAds = (function() {
|
|
|
3734
3734
|
isRequired: true,
|
|
3735
3735
|
default: 2,
|
|
3736
3736
|
label: "Reimport Lookback Window",
|
|
3737
|
-
description: "Number of days to look back when reimporting data"
|
|
3737
|
+
description: "Number of days to look back when reimporting data",
|
|
3738
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3738
3739
|
},
|
|
3739
3740
|
CleanUpToKeepWindow: {
|
|
3740
3741
|
requiredType: "number",
|
|
3741
3742
|
label: "Clean Up To Keep Window",
|
|
3742
|
-
description: "Number of days to keep data before cleaning up"
|
|
3743
|
+
description: "Number of days to keep data before cleaning up",
|
|
3744
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3743
3745
|
},
|
|
3744
3746
|
Version: {
|
|
3745
3747
|
requiredType: "string",
|
|
3746
3748
|
default: "12",
|
|
3747
3749
|
label: "API Version",
|
|
3748
|
-
description: "X Ads API version"
|
|
3750
|
+
description: "X Ads API version",
|
|
3751
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3749
3752
|
},
|
|
3750
3753
|
DataMaxCount: {
|
|
3751
3754
|
requiredType: "number",
|
|
3752
3755
|
default: 1e3,
|
|
3753
3756
|
label: "Max Data Count",
|
|
3754
|
-
description: "Maximum number of records to fetch per request"
|
|
3757
|
+
description: "Maximum number of records to fetch per request",
|
|
3758
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3755
3759
|
},
|
|
3756
3760
|
CardsMaxCountPerRequest: {
|
|
3757
3761
|
requiredType: "number",
|
|
3758
3762
|
default: 20,
|
|
3759
3763
|
label: "Max Cards Per Request",
|
|
3760
|
-
description: "Maximum number of cards to fetch per request"
|
|
3764
|
+
description: "Maximum number of cards to fetch per request",
|
|
3765
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3761
3766
|
},
|
|
3762
3767
|
AdsApiDelay: {
|
|
3763
3768
|
requiredType: "number",
|
|
3764
3769
|
default: 3.65,
|
|
3765
3770
|
label: "API Delay (seconds)",
|
|
3766
|
-
description: "Delay between API requests in seconds"
|
|
3771
|
+
description: "Delay between API requests in seconds",
|
|
3772
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3767
3773
|
},
|
|
3768
3774
|
StatsMaxEntityIds: {
|
|
3769
3775
|
requiredType: "number",
|
|
3770
3776
|
default: 20,
|
|
3771
3777
|
label: "Max Stats Entity IDs",
|
|
3772
|
-
description: "Maximum number of entity_ids allowed per request for stats endpoint"
|
|
3778
|
+
description: "Maximum number of entity_ids allowed per request for stats endpoint",
|
|
3779
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3773
3780
|
},
|
|
3774
3781
|
CreateEmptyTables: {
|
|
3775
3782
|
requiredType: "boolean",
|
|
3776
3783
|
default: true,
|
|
3777
3784
|
label: "Create Empty Tables",
|
|
3778
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
3785
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
3786
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3779
3787
|
}
|
|
3780
3788
|
}));
|
|
3781
3789
|
this.fieldsSchema = XAdsFieldsSchema;
|
|
@@ -5285,13 +5293,14 @@ const TikTokAds = (function() {
|
|
|
5285
5293
|
requiredType: "string",
|
|
5286
5294
|
default: "AUCTION_AD",
|
|
5287
5295
|
label: "Data Level",
|
|
5288
|
-
description: "Data level for ad_insights reports (AUCTION_ADVERTISER, AUCTION_CAMPAIGN, AUCTION_ADGROUP, AUCTION_AD)"
|
|
5296
|
+
description: "Data level for ad_insights reports (AUCTION_ADVERTISER, AUCTION_CAMPAIGN, AUCTION_ADGROUP, AUCTION_AD)",
|
|
5297
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5289
5298
|
},
|
|
5290
5299
|
StartDate: {
|
|
5291
5300
|
requiredType: "date",
|
|
5292
5301
|
label: "Start Date",
|
|
5293
5302
|
description: "Start date for data import",
|
|
5294
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
5303
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
5295
5304
|
},
|
|
5296
5305
|
EndDate: {
|
|
5297
5306
|
requiredType: "date",
|
|
@@ -5304,30 +5313,35 @@ const TikTokAds = (function() {
|
|
|
5304
5313
|
isRequired: true,
|
|
5305
5314
|
default: 2,
|
|
5306
5315
|
label: "Reimport Lookback Window",
|
|
5307
|
-
description: "Number of days to look back when reimporting data"
|
|
5316
|
+
description: "Number of days to look back when reimporting data",
|
|
5317
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5308
5318
|
},
|
|
5309
5319
|
CleanUpToKeepWindow: {
|
|
5310
5320
|
requiredType: "number",
|
|
5311
5321
|
label: "Clean Up To Keep Window",
|
|
5312
|
-
description: "Number of days to keep data before cleaning up"
|
|
5322
|
+
description: "Number of days to keep data before cleaning up",
|
|
5323
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5313
5324
|
},
|
|
5314
5325
|
IncludeDeleted: {
|
|
5315
5326
|
requiredType: "boolean",
|
|
5316
5327
|
default: false,
|
|
5317
5328
|
label: "Include Deleted",
|
|
5318
|
-
description: "Include deleted entities in results"
|
|
5329
|
+
description: "Include deleted entities in results",
|
|
5330
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5319
5331
|
},
|
|
5320
5332
|
SandboxMode: {
|
|
5321
5333
|
requiredType: "boolean",
|
|
5322
5334
|
default: false,
|
|
5323
5335
|
label: "Sandbox Mode",
|
|
5324
|
-
description: "Use sandbox environment for testing"
|
|
5336
|
+
description: "Use sandbox environment for testing",
|
|
5337
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5325
5338
|
},
|
|
5326
5339
|
CreateEmptyTables: {
|
|
5327
5340
|
requiredType: "boolean",
|
|
5328
5341
|
default: true,
|
|
5329
5342
|
label: "Create Empty Tables",
|
|
5330
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
5343
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
5344
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5331
5345
|
}
|
|
5332
5346
|
}));
|
|
5333
5347
|
this.fieldsSchema = TikTokAdsFieldsSchema;
|
|
@@ -8812,7 +8826,7 @@ const RedditAds = (function() {
|
|
|
8812
8826
|
requiredType: "date",
|
|
8813
8827
|
label: "Start Date",
|
|
8814
8828
|
description: "Start date for data import",
|
|
8815
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
8829
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
8816
8830
|
},
|
|
8817
8831
|
EndDate: {
|
|
8818
8832
|
requiredType: "date",
|
|
@@ -8830,18 +8844,21 @@ const RedditAds = (function() {
|
|
|
8830
8844
|
isRequired: true,
|
|
8831
8845
|
default: 2,
|
|
8832
8846
|
label: "Reimport Lookback Window",
|
|
8833
|
-
description: "Number of days to look back when reimporting data"
|
|
8847
|
+
description: "Number of days to look back when reimporting data",
|
|
8848
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8834
8849
|
},
|
|
8835
8850
|
CleanUpToKeepWindow: {
|
|
8836
8851
|
requiredType: "number",
|
|
8837
8852
|
label: "Clean Up To Keep Window",
|
|
8838
|
-
description: "Number of days to keep data before cleaning up"
|
|
8853
|
+
description: "Number of days to keep data before cleaning up",
|
|
8854
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8839
8855
|
},
|
|
8840
8856
|
CreateEmptyTables: {
|
|
8841
8857
|
requiredType: "boolean",
|
|
8842
8858
|
default: true,
|
|
8843
8859
|
label: "Create Empty Tables",
|
|
8844
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
8860
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
8861
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8845
8862
|
}
|
|
8846
8863
|
}));
|
|
8847
8864
|
this.fieldsSchema = RedditFieldsSchema;
|
|
@@ -9537,7 +9554,7 @@ const OpenHolidays = (function() {
|
|
|
9537
9554
|
requiredType: "date",
|
|
9538
9555
|
label: "Start Date",
|
|
9539
9556
|
description: "Start date for data import",
|
|
9540
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
9557
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
9541
9558
|
},
|
|
9542
9559
|
EndDate: {
|
|
9543
9560
|
requiredType: "date",
|
|
@@ -9550,12 +9567,14 @@ const OpenHolidays = (function() {
|
|
|
9550
9567
|
isRequired: true,
|
|
9551
9568
|
default: 2,
|
|
9552
9569
|
label: "Reimport Lookback Window",
|
|
9553
|
-
description: "Number of days to look back when reimporting data"
|
|
9570
|
+
description: "Number of days to look back when reimporting data",
|
|
9571
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9554
9572
|
},
|
|
9555
9573
|
CleanUpToKeepWindow: {
|
|
9556
9574
|
requiredType: "number",
|
|
9557
9575
|
label: "Clean Up To Keep Window",
|
|
9558
|
-
description: "Number of days to keep data before cleaning up"
|
|
9576
|
+
description: "Number of days to keep data before cleaning up",
|
|
9577
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9559
9578
|
},
|
|
9560
9579
|
Fields: {
|
|
9561
9580
|
isRequired: true,
|
|
@@ -9567,7 +9586,8 @@ const OpenHolidays = (function() {
|
|
|
9567
9586
|
requiredType: "boolean",
|
|
9568
9587
|
default: true,
|
|
9569
9588
|
label: "Create Empty Tables",
|
|
9570
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
9589
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
9590
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9571
9591
|
}
|
|
9572
9592
|
}));
|
|
9573
9593
|
this.fieldsSchema = OpenHolidaysFieldsSchema;
|
|
@@ -9835,7 +9855,7 @@ const OpenExchangeRates = (function() {
|
|
|
9835
9855
|
requiredType: "date",
|
|
9836
9856
|
label: "Start Date",
|
|
9837
9857
|
description: "Start date for data import",
|
|
9838
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
9858
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
9839
9859
|
},
|
|
9840
9860
|
EndDate: {
|
|
9841
9861
|
requiredType: "date",
|
|
@@ -9848,7 +9868,8 @@ const OpenExchangeRates = (function() {
|
|
|
9848
9868
|
isRequired: true,
|
|
9849
9869
|
default: 2,
|
|
9850
9870
|
label: "Reimport Lookback Window",
|
|
9851
|
-
description: "Number of days to look back when reimporting data"
|
|
9871
|
+
description: "Number of days to look back when reimporting data",
|
|
9872
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9852
9873
|
},
|
|
9853
9874
|
Symbols: {
|
|
9854
9875
|
requiredType: "string",
|
|
@@ -9861,13 +9882,15 @@ const OpenExchangeRates = (function() {
|
|
|
9861
9882
|
isRequired: true,
|
|
9862
9883
|
default: "USD",
|
|
9863
9884
|
label: "Base Currency",
|
|
9864
|
-
description: "Base currency for exchange rates (available for Developer+ plans)"
|
|
9885
|
+
description: "Base currency for exchange rates (available for Developer+ plans)",
|
|
9886
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9865
9887
|
},
|
|
9866
9888
|
CreateEmptyTables: {
|
|
9867
9889
|
requiredType: "boolean",
|
|
9868
9890
|
default: true,
|
|
9869
9891
|
label: "Create Empty Tables",
|
|
9870
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
9892
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
9893
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9871
9894
|
}
|
|
9872
9895
|
}));
|
|
9873
9896
|
this.fieldsSchema = OpenExchangeRatesFieldsSchema;
|
|
@@ -11157,7 +11180,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11157
11180
|
requiredType: "date",
|
|
11158
11181
|
label: "Start Date",
|
|
11159
11182
|
description: "Start date for data import",
|
|
11160
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
11183
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
11161
11184
|
},
|
|
11162
11185
|
EndDate: {
|
|
11163
11186
|
requiredType: "date",
|
|
@@ -11170,25 +11193,29 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11170
11193
|
isRequired: true,
|
|
11171
11194
|
default: 2,
|
|
11172
11195
|
label: "Reimport Lookback Window",
|
|
11173
|
-
description: "Number of days to look back when reimporting data"
|
|
11196
|
+
description: "Number of days to look back when reimporting data",
|
|
11197
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11174
11198
|
},
|
|
11175
11199
|
ReportTimezone: {
|
|
11176
11200
|
requiredType: "string",
|
|
11177
11201
|
default: "GreenwichMeanTimeDublinEdinburghLisbonLondon",
|
|
11178
11202
|
label: "Report Timezone",
|
|
11179
|
-
description: "Timezone for the report data"
|
|
11203
|
+
description: "Timezone for the report data",
|
|
11204
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11180
11205
|
},
|
|
11181
11206
|
Aggregation: {
|
|
11182
11207
|
requiredType: "string",
|
|
11183
11208
|
default: "Daily",
|
|
11184
11209
|
label: "Aggregation",
|
|
11185
|
-
description: "Aggregation for reports (e.g. Daily, Weekly, Monthly)"
|
|
11210
|
+
description: "Aggregation for reports (e.g. Daily, Weekly, Monthly)",
|
|
11211
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11186
11212
|
},
|
|
11187
11213
|
CreateEmptyTables: {
|
|
11188
11214
|
requiredType: "boolean",
|
|
11189
11215
|
default: true,
|
|
11190
11216
|
label: "Create Empty Tables",
|
|
11191
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
11217
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
11218
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11192
11219
|
}
|
|
11193
11220
|
}));
|
|
11194
11221
|
this.fieldsSchema = MicrosoftAdsFieldsSchema;
|
|
@@ -11864,18 +11891,20 @@ const LinkedInPages = (function() {
|
|
|
11864
11891
|
isRequired: true,
|
|
11865
11892
|
default: 2,
|
|
11866
11893
|
label: "Reimport Lookback Window",
|
|
11867
|
-
description: "Number of days to look back when reimporting data"
|
|
11894
|
+
description: "Number of days to look back when reimporting data",
|
|
11895
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11868
11896
|
},
|
|
11869
11897
|
CleanUpToKeepWindow: {
|
|
11870
11898
|
requiredType: "number",
|
|
11871
11899
|
label: "Clean Up To Keep Window",
|
|
11872
|
-
description: "Number of days to keep data before cleaning up"
|
|
11900
|
+
description: "Number of days to keep data before cleaning up",
|
|
11901
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11873
11902
|
},
|
|
11874
11903
|
StartDate: {
|
|
11875
11904
|
requiredType: "date",
|
|
11876
11905
|
label: "Start Date",
|
|
11877
11906
|
description: "Start date for data import",
|
|
11878
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
11907
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
11879
11908
|
},
|
|
11880
11909
|
EndDate: {
|
|
11881
11910
|
requiredType: "date",
|
|
@@ -11897,7 +11926,8 @@ const LinkedInPages = (function() {
|
|
|
11897
11926
|
requiredType: "boolean",
|
|
11898
11927
|
default: true,
|
|
11899
11928
|
label: "Create Empty Tables",
|
|
11900
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
11929
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
11930
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11901
11931
|
}
|
|
11902
11932
|
}));
|
|
11903
11933
|
this.fieldsSchema = LinkedInPagesFieldsSchema;
|
|
@@ -13128,18 +13158,20 @@ const LinkedInAds = (function() {
|
|
|
13128
13158
|
isRequired: true,
|
|
13129
13159
|
default: 2,
|
|
13130
13160
|
label: "Reimport Lookback Window",
|
|
13131
|
-
description: "Number of days to look back when reimporting data"
|
|
13161
|
+
description: "Number of days to look back when reimporting data",
|
|
13162
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13132
13163
|
},
|
|
13133
13164
|
CleanUpToKeepWindow: {
|
|
13134
13165
|
requiredType: "number",
|
|
13135
13166
|
label: "Clean Up To Keep Window",
|
|
13136
|
-
description: "Number of days to keep data before cleaning up"
|
|
13167
|
+
description: "Number of days to keep data before cleaning up",
|
|
13168
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13137
13169
|
},
|
|
13138
13170
|
StartDate: {
|
|
13139
13171
|
requiredType: "date",
|
|
13140
13172
|
label: "Start Date",
|
|
13141
13173
|
description: "Start date for data import",
|
|
13142
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
13174
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
13143
13175
|
},
|
|
13144
13176
|
EndDate: {
|
|
13145
13177
|
requiredType: "date",
|
|
@@ -13161,7 +13193,8 @@ const LinkedInAds = (function() {
|
|
|
13161
13193
|
requiredType: "boolean",
|
|
13162
13194
|
default: true,
|
|
13163
13195
|
label: "Create Empty Tables",
|
|
13164
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
13196
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
13197
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13165
13198
|
}
|
|
13166
13199
|
}));
|
|
13167
13200
|
this.fieldsSchema = LinkedInAdsFieldsSchema;
|
|
@@ -14424,7 +14457,7 @@ const GoogleAds = (function() {
|
|
|
14424
14457
|
requiredType: "date",
|
|
14425
14458
|
label: "Start Date",
|
|
14426
14459
|
description: "Start date for data import",
|
|
14427
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
14460
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
14428
14461
|
},
|
|
14429
14462
|
EndDate: {
|
|
14430
14463
|
requiredType: "date",
|
|
@@ -14441,19 +14474,22 @@ const GoogleAds = (function() {
|
|
|
14441
14474
|
requiredType: "boolean",
|
|
14442
14475
|
default: true,
|
|
14443
14476
|
label: "Create Empty Tables",
|
|
14444
|
-
description: "Create tables with all columns even if no data is returned from API (true/false)"
|
|
14477
|
+
description: "Create tables with all columns even if no data is returned from API (true/false)",
|
|
14478
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14445
14479
|
},
|
|
14446
14480
|
ReimportLookbackWindow: {
|
|
14447
14481
|
requiredType: "number",
|
|
14448
14482
|
isRequired: true,
|
|
14449
14483
|
default: 2,
|
|
14450
14484
|
label: "Reimport Lookback Window",
|
|
14451
|
-
description: "Number of days to look back when reimporting data"
|
|
14485
|
+
description: "Number of days to look back when reimporting data",
|
|
14486
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14452
14487
|
},
|
|
14453
14488
|
CleanUpToKeepWindow: {
|
|
14454
14489
|
requiredType: "number",
|
|
14455
14490
|
label: "Clean Up To Keep Window",
|
|
14456
|
-
description: "Number of days to keep data before cleaning up"
|
|
14491
|
+
description: "Number of days to keep data before cleaning up",
|
|
14492
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14457
14493
|
}
|
|
14458
14494
|
}));
|
|
14459
14495
|
this.fieldsSchema = GoogleAdsFieldsSchema;
|
|
@@ -15073,7 +15109,7 @@ const GitHub = (function() {
|
|
|
15073
15109
|
requiredType: "date",
|
|
15074
15110
|
label: "Start Date",
|
|
15075
15111
|
description: "Start date for data import",
|
|
15076
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
15112
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
15077
15113
|
},
|
|
15078
15114
|
EndDate: {
|
|
15079
15115
|
requiredType: "date",
|
|
@@ -15086,12 +15122,14 @@ const GitHub = (function() {
|
|
|
15086
15122
|
isRequired: true,
|
|
15087
15123
|
default: 2,
|
|
15088
15124
|
label: "Reimport Lookback Window",
|
|
15089
|
-
description: "Number of days to look back when reimporting data"
|
|
15125
|
+
description: "Number of days to look back when reimporting data",
|
|
15126
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15090
15127
|
},
|
|
15091
15128
|
CleanUpToKeepWindow: {
|
|
15092
15129
|
requiredType: "number",
|
|
15093
15130
|
label: "Clean Up To Keep Window",
|
|
15094
|
-
description: "Number of days to keep data before cleaning up"
|
|
15131
|
+
description: "Number of days to keep data before cleaning up",
|
|
15132
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15095
15133
|
},
|
|
15096
15134
|
Fields: {
|
|
15097
15135
|
isRequired: true,
|
|
@@ -15103,7 +15141,8 @@ const GitHub = (function() {
|
|
|
15103
15141
|
requiredType: "boolean",
|
|
15104
15142
|
default: true,
|
|
15105
15143
|
label: "Create Empty Tables",
|
|
15106
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
15144
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
15145
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15107
15146
|
}
|
|
15108
15147
|
}));
|
|
15109
15148
|
this.fieldsSchema = GitHubFieldsSchema;
|
|
@@ -19731,7 +19770,7 @@ const FacebookMarketing = (function() {
|
|
|
19731
19770
|
requiredType: "date",
|
|
19732
19771
|
label: "Start Date",
|
|
19733
19772
|
description: "Start date for data import",
|
|
19734
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
19773
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
19735
19774
|
},
|
|
19736
19775
|
EndDate: {
|
|
19737
19776
|
requiredType: "date",
|
|
@@ -19748,25 +19787,29 @@ const FacebookMarketing = (function() {
|
|
|
19748
19787
|
requiredType: "boolean",
|
|
19749
19788
|
default: true,
|
|
19750
19789
|
label: "Process Short Links",
|
|
19751
|
-
description: "Enable automatic processing of short links in link_url_asset field. Only available for ad-account/insights-by-link-url-asset endpoint as it requires breakdown by link_url_asset"
|
|
19790
|
+
description: "Enable automatic processing of short links in link_url_asset field. Only available for ad-account/insights-by-link-url-asset endpoint as it requires breakdown by link_url_asset",
|
|
19791
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19752
19792
|
},
|
|
19753
19793
|
CreateEmptyTables: {
|
|
19754
19794
|
requiredType: "boolean",
|
|
19755
19795
|
default: true,
|
|
19756
19796
|
label: "Create Empty Tables",
|
|
19757
|
-
description: "Create tables with all columns even if no data is returned from API (true/false)"
|
|
19797
|
+
description: "Create tables with all columns even if no data is returned from API (true/false)",
|
|
19798
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19758
19799
|
},
|
|
19759
19800
|
ReimportLookbackWindow: {
|
|
19760
19801
|
requiredType: "number",
|
|
19761
19802
|
isRequired: true,
|
|
19762
19803
|
default: 2,
|
|
19763
19804
|
label: "Reimport Lookback Window",
|
|
19764
|
-
description: "Number of days to look back when reimporting data"
|
|
19805
|
+
description: "Number of days to look back when reimporting data",
|
|
19806
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19765
19807
|
},
|
|
19766
19808
|
CleanUpToKeepWindow: {
|
|
19767
19809
|
requiredType: "number",
|
|
19768
19810
|
label: "Clean Up To Keep Window",
|
|
19769
|
-
description: "Number of days to keep data before cleaning up"
|
|
19811
|
+
description: "Number of days to keep data before cleaning up",
|
|
19812
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19770
19813
|
}
|
|
19771
19814
|
}));
|
|
19772
19815
|
this.fieldsSchema = FacebookMarketingFieldsSchema;
|
|
@@ -20990,7 +21033,7 @@ const CriteoAds = (function() {
|
|
|
20990
21033
|
requiredType: "date",
|
|
20991
21034
|
label: "Start Date",
|
|
20992
21035
|
description: "Start date for data import",
|
|
20993
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
21036
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
20994
21037
|
},
|
|
20995
21038
|
EndDate: {
|
|
20996
21039
|
requiredType: "date",
|
|
@@ -21014,12 +21057,14 @@ const CriteoAds = (function() {
|
|
|
21014
21057
|
isRequired: true,
|
|
21015
21058
|
default: 5,
|
|
21016
21059
|
label: "Reimport Lookback Window",
|
|
21017
|
-
description: "Number of days to look back when reimporting data"
|
|
21060
|
+
description: "Number of days to look back when reimporting data",
|
|
21061
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21018
21062
|
},
|
|
21019
21063
|
CleanUpToKeepWindow: {
|
|
21020
21064
|
requiredType: "number",
|
|
21021
21065
|
label: "Clean Up To Keep Window",
|
|
21022
|
-
description: "Number of days to keep data before cleaning up"
|
|
21066
|
+
description: "Number of days to keep data before cleaning up",
|
|
21067
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21023
21068
|
},
|
|
21024
21069
|
ClientId: {
|
|
21025
21070
|
isRequired: true,
|
|
@@ -21038,7 +21083,8 @@ const CriteoAds = (function() {
|
|
|
21038
21083
|
requiredType: "boolean",
|
|
21039
21084
|
default: true,
|
|
21040
21085
|
label: "Create Empty Tables",
|
|
21041
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
21086
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
21087
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21042
21088
|
}
|
|
21043
21089
|
}));
|
|
21044
21090
|
this.fieldsSchema = CriteoAdsFieldsSchema;
|
|
@@ -21362,7 +21408,7 @@ const BankOfCanada = (function() {
|
|
|
21362
21408
|
requiredType: "date",
|
|
21363
21409
|
label: "Start Date",
|
|
21364
21410
|
description: "Start date for data import",
|
|
21365
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
21411
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
21366
21412
|
},
|
|
21367
21413
|
EndDate: {
|
|
21368
21414
|
requiredType: "date",
|
|
@@ -21392,7 +21438,8 @@ const BankOfCanada = (function() {
|
|
|
21392
21438
|
requiredType: "boolean",
|
|
21393
21439
|
default: true,
|
|
21394
21440
|
label: "Create Empty Tables",
|
|
21395
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
21441
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
21442
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21396
21443
|
}
|
|
21397
21444
|
}));
|
|
21398
21445
|
this.fieldsSchema = BankOfCanadaFieldsSchema;
|
package/dist/index.js
CHANGED
|
@@ -3726,7 +3726,7 @@ OPTIONS(description="${this.description}")`;
|
|
|
3726
3726
|
requiredType: "date",
|
|
3727
3727
|
label: "Start Date",
|
|
3728
3728
|
description: "Start date for data import",
|
|
3729
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
3729
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
3730
3730
|
},
|
|
3731
3731
|
EndDate: {
|
|
3732
3732
|
requiredType: "date",
|
|
@@ -3739,48 +3739,56 @@ OPTIONS(description="${this.description}")`;
|
|
|
3739
3739
|
isRequired: true,
|
|
3740
3740
|
default: 2,
|
|
3741
3741
|
label: "Reimport Lookback Window",
|
|
3742
|
-
description: "Number of days to look back when reimporting data"
|
|
3742
|
+
description: "Number of days to look back when reimporting data",
|
|
3743
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3743
3744
|
},
|
|
3744
3745
|
CleanUpToKeepWindow: {
|
|
3745
3746
|
requiredType: "number",
|
|
3746
3747
|
label: "Clean Up To Keep Window",
|
|
3747
|
-
description: "Number of days to keep data before cleaning up"
|
|
3748
|
+
description: "Number of days to keep data before cleaning up",
|
|
3749
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3748
3750
|
},
|
|
3749
3751
|
Version: {
|
|
3750
3752
|
requiredType: "string",
|
|
3751
3753
|
default: "12",
|
|
3752
3754
|
label: "API Version",
|
|
3753
|
-
description: "X Ads API version"
|
|
3755
|
+
description: "X Ads API version",
|
|
3756
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3754
3757
|
},
|
|
3755
3758
|
DataMaxCount: {
|
|
3756
3759
|
requiredType: "number",
|
|
3757
3760
|
default: 1e3,
|
|
3758
3761
|
label: "Max Data Count",
|
|
3759
|
-
description: "Maximum number of records to fetch per request"
|
|
3762
|
+
description: "Maximum number of records to fetch per request",
|
|
3763
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3760
3764
|
},
|
|
3761
3765
|
CardsMaxCountPerRequest: {
|
|
3762
3766
|
requiredType: "number",
|
|
3763
3767
|
default: 20,
|
|
3764
3768
|
label: "Max Cards Per Request",
|
|
3765
|
-
description: "Maximum number of cards to fetch per request"
|
|
3769
|
+
description: "Maximum number of cards to fetch per request",
|
|
3770
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3766
3771
|
},
|
|
3767
3772
|
AdsApiDelay: {
|
|
3768
3773
|
requiredType: "number",
|
|
3769
3774
|
default: 3.65,
|
|
3770
3775
|
label: "API Delay (seconds)",
|
|
3771
|
-
description: "Delay between API requests in seconds"
|
|
3776
|
+
description: "Delay between API requests in seconds",
|
|
3777
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3772
3778
|
},
|
|
3773
3779
|
StatsMaxEntityIds: {
|
|
3774
3780
|
requiredType: "number",
|
|
3775
3781
|
default: 20,
|
|
3776
3782
|
label: "Max Stats Entity IDs",
|
|
3777
|
-
description: "Maximum number of entity_ids allowed per request for stats endpoint"
|
|
3783
|
+
description: "Maximum number of entity_ids allowed per request for stats endpoint",
|
|
3784
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3778
3785
|
},
|
|
3779
3786
|
CreateEmptyTables: {
|
|
3780
3787
|
requiredType: "boolean",
|
|
3781
3788
|
default: true,
|
|
3782
3789
|
label: "Create Empty Tables",
|
|
3783
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
3790
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
3791
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
3784
3792
|
}
|
|
3785
3793
|
}));
|
|
3786
3794
|
this.fieldsSchema = XAdsFieldsSchema;
|
|
@@ -5290,13 +5298,14 @@ OPTIONS(description="${this.description}")`;
|
|
|
5290
5298
|
requiredType: "string",
|
|
5291
5299
|
default: "AUCTION_AD",
|
|
5292
5300
|
label: "Data Level",
|
|
5293
|
-
description: "Data level for ad_insights reports (AUCTION_ADVERTISER, AUCTION_CAMPAIGN, AUCTION_ADGROUP, AUCTION_AD)"
|
|
5301
|
+
description: "Data level for ad_insights reports (AUCTION_ADVERTISER, AUCTION_CAMPAIGN, AUCTION_ADGROUP, AUCTION_AD)",
|
|
5302
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5294
5303
|
},
|
|
5295
5304
|
StartDate: {
|
|
5296
5305
|
requiredType: "date",
|
|
5297
5306
|
label: "Start Date",
|
|
5298
5307
|
description: "Start date for data import",
|
|
5299
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
5308
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
5300
5309
|
},
|
|
5301
5310
|
EndDate: {
|
|
5302
5311
|
requiredType: "date",
|
|
@@ -5309,30 +5318,35 @@ OPTIONS(description="${this.description}")`;
|
|
|
5309
5318
|
isRequired: true,
|
|
5310
5319
|
default: 2,
|
|
5311
5320
|
label: "Reimport Lookback Window",
|
|
5312
|
-
description: "Number of days to look back when reimporting data"
|
|
5321
|
+
description: "Number of days to look back when reimporting data",
|
|
5322
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5313
5323
|
},
|
|
5314
5324
|
CleanUpToKeepWindow: {
|
|
5315
5325
|
requiredType: "number",
|
|
5316
5326
|
label: "Clean Up To Keep Window",
|
|
5317
|
-
description: "Number of days to keep data before cleaning up"
|
|
5327
|
+
description: "Number of days to keep data before cleaning up",
|
|
5328
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5318
5329
|
},
|
|
5319
5330
|
IncludeDeleted: {
|
|
5320
5331
|
requiredType: "boolean",
|
|
5321
5332
|
default: false,
|
|
5322
5333
|
label: "Include Deleted",
|
|
5323
|
-
description: "Include deleted entities in results"
|
|
5334
|
+
description: "Include deleted entities in results",
|
|
5335
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5324
5336
|
},
|
|
5325
5337
|
SandboxMode: {
|
|
5326
5338
|
requiredType: "boolean",
|
|
5327
5339
|
default: false,
|
|
5328
5340
|
label: "Sandbox Mode",
|
|
5329
|
-
description: "Use sandbox environment for testing"
|
|
5341
|
+
description: "Use sandbox environment for testing",
|
|
5342
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5330
5343
|
},
|
|
5331
5344
|
CreateEmptyTables: {
|
|
5332
5345
|
requiredType: "boolean",
|
|
5333
5346
|
default: true,
|
|
5334
5347
|
label: "Create Empty Tables",
|
|
5335
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
5348
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
5349
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
5336
5350
|
}
|
|
5337
5351
|
}));
|
|
5338
5352
|
this.fieldsSchema = TikTokAdsFieldsSchema;
|
|
@@ -8817,7 +8831,7 @@ OPTIONS(description="${this.description}")`;
|
|
|
8817
8831
|
requiredType: "date",
|
|
8818
8832
|
label: "Start Date",
|
|
8819
8833
|
description: "Start date for data import",
|
|
8820
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
8834
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
8821
8835
|
},
|
|
8822
8836
|
EndDate: {
|
|
8823
8837
|
requiredType: "date",
|
|
@@ -8835,18 +8849,21 @@ OPTIONS(description="${this.description}")`;
|
|
|
8835
8849
|
isRequired: true,
|
|
8836
8850
|
default: 2,
|
|
8837
8851
|
label: "Reimport Lookback Window",
|
|
8838
|
-
description: "Number of days to look back when reimporting data"
|
|
8852
|
+
description: "Number of days to look back when reimporting data",
|
|
8853
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8839
8854
|
},
|
|
8840
8855
|
CleanUpToKeepWindow: {
|
|
8841
8856
|
requiredType: "number",
|
|
8842
8857
|
label: "Clean Up To Keep Window",
|
|
8843
|
-
description: "Number of days to keep data before cleaning up"
|
|
8858
|
+
description: "Number of days to keep data before cleaning up",
|
|
8859
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8844
8860
|
},
|
|
8845
8861
|
CreateEmptyTables: {
|
|
8846
8862
|
requiredType: "boolean",
|
|
8847
8863
|
default: true,
|
|
8848
8864
|
label: "Create Empty Tables",
|
|
8849
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
8865
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
8866
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
8850
8867
|
}
|
|
8851
8868
|
}));
|
|
8852
8869
|
this.fieldsSchema = RedditFieldsSchema;
|
|
@@ -9542,7 +9559,7 @@ OPTIONS(description="${this.description}")`;
|
|
|
9542
9559
|
requiredType: "date",
|
|
9543
9560
|
label: "Start Date",
|
|
9544
9561
|
description: "Start date for data import",
|
|
9545
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
9562
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
9546
9563
|
},
|
|
9547
9564
|
EndDate: {
|
|
9548
9565
|
requiredType: "date",
|
|
@@ -9555,12 +9572,14 @@ OPTIONS(description="${this.description}")`;
|
|
|
9555
9572
|
isRequired: true,
|
|
9556
9573
|
default: 2,
|
|
9557
9574
|
label: "Reimport Lookback Window",
|
|
9558
|
-
description: "Number of days to look back when reimporting data"
|
|
9575
|
+
description: "Number of days to look back when reimporting data",
|
|
9576
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9559
9577
|
},
|
|
9560
9578
|
CleanUpToKeepWindow: {
|
|
9561
9579
|
requiredType: "number",
|
|
9562
9580
|
label: "Clean Up To Keep Window",
|
|
9563
|
-
description: "Number of days to keep data before cleaning up"
|
|
9581
|
+
description: "Number of days to keep data before cleaning up",
|
|
9582
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9564
9583
|
},
|
|
9565
9584
|
Fields: {
|
|
9566
9585
|
isRequired: true,
|
|
@@ -9572,7 +9591,8 @@ OPTIONS(description="${this.description}")`;
|
|
|
9572
9591
|
requiredType: "boolean",
|
|
9573
9592
|
default: true,
|
|
9574
9593
|
label: "Create Empty Tables",
|
|
9575
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
9594
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
9595
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9576
9596
|
}
|
|
9577
9597
|
}));
|
|
9578
9598
|
this.fieldsSchema = OpenHolidaysFieldsSchema;
|
|
@@ -9840,7 +9860,7 @@ OPTIONS(description="${this.description}")`;
|
|
|
9840
9860
|
requiredType: "date",
|
|
9841
9861
|
label: "Start Date",
|
|
9842
9862
|
description: "Start date for data import",
|
|
9843
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
9863
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
9844
9864
|
},
|
|
9845
9865
|
EndDate: {
|
|
9846
9866
|
requiredType: "date",
|
|
@@ -9853,7 +9873,8 @@ OPTIONS(description="${this.description}")`;
|
|
|
9853
9873
|
isRequired: true,
|
|
9854
9874
|
default: 2,
|
|
9855
9875
|
label: "Reimport Lookback Window",
|
|
9856
|
-
description: "Number of days to look back when reimporting data"
|
|
9876
|
+
description: "Number of days to look back when reimporting data",
|
|
9877
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9857
9878
|
},
|
|
9858
9879
|
Symbols: {
|
|
9859
9880
|
requiredType: "string",
|
|
@@ -9866,13 +9887,15 @@ OPTIONS(description="${this.description}")`;
|
|
|
9866
9887
|
isRequired: true,
|
|
9867
9888
|
default: "USD",
|
|
9868
9889
|
label: "Base Currency",
|
|
9869
|
-
description: "Base currency for exchange rates (available for Developer+ plans)"
|
|
9890
|
+
description: "Base currency for exchange rates (available for Developer+ plans)",
|
|
9891
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9870
9892
|
},
|
|
9871
9893
|
CreateEmptyTables: {
|
|
9872
9894
|
requiredType: "boolean",
|
|
9873
9895
|
default: true,
|
|
9874
9896
|
label: "Create Empty Tables",
|
|
9875
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
9897
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
9898
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
9876
9899
|
}
|
|
9877
9900
|
}));
|
|
9878
9901
|
this.fieldsSchema = OpenExchangeRatesFieldsSchema;
|
|
@@ -11162,7 +11185,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11162
11185
|
requiredType: "date",
|
|
11163
11186
|
label: "Start Date",
|
|
11164
11187
|
description: "Start date for data import",
|
|
11165
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
11188
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
11166
11189
|
},
|
|
11167
11190
|
EndDate: {
|
|
11168
11191
|
requiredType: "date",
|
|
@@ -11175,25 +11198,29 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11175
11198
|
isRequired: true,
|
|
11176
11199
|
default: 2,
|
|
11177
11200
|
label: "Reimport Lookback Window",
|
|
11178
|
-
description: "Number of days to look back when reimporting data"
|
|
11201
|
+
description: "Number of days to look back when reimporting data",
|
|
11202
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11179
11203
|
},
|
|
11180
11204
|
ReportTimezone: {
|
|
11181
11205
|
requiredType: "string",
|
|
11182
11206
|
default: "GreenwichMeanTimeDublinEdinburghLisbonLondon",
|
|
11183
11207
|
label: "Report Timezone",
|
|
11184
|
-
description: "Timezone for the report data"
|
|
11208
|
+
description: "Timezone for the report data",
|
|
11209
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11185
11210
|
},
|
|
11186
11211
|
Aggregation: {
|
|
11187
11212
|
requiredType: "string",
|
|
11188
11213
|
default: "Daily",
|
|
11189
11214
|
label: "Aggregation",
|
|
11190
|
-
description: "Aggregation for reports (e.g. Daily, Weekly, Monthly)"
|
|
11215
|
+
description: "Aggregation for reports (e.g. Daily, Weekly, Monthly)",
|
|
11216
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11191
11217
|
},
|
|
11192
11218
|
CreateEmptyTables: {
|
|
11193
11219
|
requiredType: "boolean",
|
|
11194
11220
|
default: true,
|
|
11195
11221
|
label: "Create Empty Tables",
|
|
11196
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
11222
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
11223
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11197
11224
|
}
|
|
11198
11225
|
}));
|
|
11199
11226
|
this.fieldsSchema = MicrosoftAdsFieldsSchema;
|
|
@@ -11869,18 +11896,20 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11869
11896
|
isRequired: true,
|
|
11870
11897
|
default: 2,
|
|
11871
11898
|
label: "Reimport Lookback Window",
|
|
11872
|
-
description: "Number of days to look back when reimporting data"
|
|
11899
|
+
description: "Number of days to look back when reimporting data",
|
|
11900
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11873
11901
|
},
|
|
11874
11902
|
CleanUpToKeepWindow: {
|
|
11875
11903
|
requiredType: "number",
|
|
11876
11904
|
label: "Clean Up To Keep Window",
|
|
11877
|
-
description: "Number of days to keep data before cleaning up"
|
|
11905
|
+
description: "Number of days to keep data before cleaning up",
|
|
11906
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11878
11907
|
},
|
|
11879
11908
|
StartDate: {
|
|
11880
11909
|
requiredType: "date",
|
|
11881
11910
|
label: "Start Date",
|
|
11882
11911
|
description: "Start date for data import",
|
|
11883
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
11912
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
11884
11913
|
},
|
|
11885
11914
|
EndDate: {
|
|
11886
11915
|
requiredType: "date",
|
|
@@ -11902,7 +11931,8 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
11902
11931
|
requiredType: "boolean",
|
|
11903
11932
|
default: true,
|
|
11904
11933
|
label: "Create Empty Tables",
|
|
11905
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
11934
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
11935
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
11906
11936
|
}
|
|
11907
11937
|
}));
|
|
11908
11938
|
this.fieldsSchema = LinkedInPagesFieldsSchema;
|
|
@@ -13133,18 +13163,20 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
13133
13163
|
isRequired: true,
|
|
13134
13164
|
default: 2,
|
|
13135
13165
|
label: "Reimport Lookback Window",
|
|
13136
|
-
description: "Number of days to look back when reimporting data"
|
|
13166
|
+
description: "Number of days to look back when reimporting data",
|
|
13167
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13137
13168
|
},
|
|
13138
13169
|
CleanUpToKeepWindow: {
|
|
13139
13170
|
requiredType: "number",
|
|
13140
13171
|
label: "Clean Up To Keep Window",
|
|
13141
|
-
description: "Number of days to keep data before cleaning up"
|
|
13172
|
+
description: "Number of days to keep data before cleaning up",
|
|
13173
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13142
13174
|
},
|
|
13143
13175
|
StartDate: {
|
|
13144
13176
|
requiredType: "date",
|
|
13145
13177
|
label: "Start Date",
|
|
13146
13178
|
description: "Start date for data import",
|
|
13147
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
13179
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
13148
13180
|
},
|
|
13149
13181
|
EndDate: {
|
|
13150
13182
|
requiredType: "date",
|
|
@@ -13166,7 +13198,8 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
13166
13198
|
requiredType: "boolean",
|
|
13167
13199
|
default: true,
|
|
13168
13200
|
label: "Create Empty Tables",
|
|
13169
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
13201
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
13202
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
13170
13203
|
}
|
|
13171
13204
|
}));
|
|
13172
13205
|
this.fieldsSchema = LinkedInAdsFieldsSchema;
|
|
@@ -14429,7 +14462,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
14429
14462
|
requiredType: "date",
|
|
14430
14463
|
label: "Start Date",
|
|
14431
14464
|
description: "Start date for data import",
|
|
14432
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
14465
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
14433
14466
|
},
|
|
14434
14467
|
EndDate: {
|
|
14435
14468
|
requiredType: "date",
|
|
@@ -14446,19 +14479,22 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
14446
14479
|
requiredType: "boolean",
|
|
14447
14480
|
default: true,
|
|
14448
14481
|
label: "Create Empty Tables",
|
|
14449
|
-
description: "Create tables with all columns even if no data is returned from API (true/false)"
|
|
14482
|
+
description: "Create tables with all columns even if no data is returned from API (true/false)",
|
|
14483
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14450
14484
|
},
|
|
14451
14485
|
ReimportLookbackWindow: {
|
|
14452
14486
|
requiredType: "number",
|
|
14453
14487
|
isRequired: true,
|
|
14454
14488
|
default: 2,
|
|
14455
14489
|
label: "Reimport Lookback Window",
|
|
14456
|
-
description: "Number of days to look back when reimporting data"
|
|
14490
|
+
description: "Number of days to look back when reimporting data",
|
|
14491
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14457
14492
|
},
|
|
14458
14493
|
CleanUpToKeepWindow: {
|
|
14459
14494
|
requiredType: "number",
|
|
14460
14495
|
label: "Clean Up To Keep Window",
|
|
14461
|
-
description: "Number of days to keep data before cleaning up"
|
|
14496
|
+
description: "Number of days to keep data before cleaning up",
|
|
14497
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
14462
14498
|
}
|
|
14463
14499
|
}));
|
|
14464
14500
|
this.fieldsSchema = GoogleAdsFieldsSchema;
|
|
@@ -15078,7 +15114,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
15078
15114
|
requiredType: "date",
|
|
15079
15115
|
label: "Start Date",
|
|
15080
15116
|
description: "Start date for data import",
|
|
15081
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
15117
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
15082
15118
|
},
|
|
15083
15119
|
EndDate: {
|
|
15084
15120
|
requiredType: "date",
|
|
@@ -15091,12 +15127,14 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
15091
15127
|
isRequired: true,
|
|
15092
15128
|
default: 2,
|
|
15093
15129
|
label: "Reimport Lookback Window",
|
|
15094
|
-
description: "Number of days to look back when reimporting data"
|
|
15130
|
+
description: "Number of days to look back when reimporting data",
|
|
15131
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15095
15132
|
},
|
|
15096
15133
|
CleanUpToKeepWindow: {
|
|
15097
15134
|
requiredType: "number",
|
|
15098
15135
|
label: "Clean Up To Keep Window",
|
|
15099
|
-
description: "Number of days to keep data before cleaning up"
|
|
15136
|
+
description: "Number of days to keep data before cleaning up",
|
|
15137
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15100
15138
|
},
|
|
15101
15139
|
Fields: {
|
|
15102
15140
|
isRequired: true,
|
|
@@ -15108,7 +15146,8 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
15108
15146
|
requiredType: "boolean",
|
|
15109
15147
|
default: true,
|
|
15110
15148
|
label: "Create Empty Tables",
|
|
15111
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
15149
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
15150
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
15112
15151
|
}
|
|
15113
15152
|
}));
|
|
15114
15153
|
this.fieldsSchema = GitHubFieldsSchema;
|
|
@@ -19736,7 +19775,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
19736
19775
|
requiredType: "date",
|
|
19737
19776
|
label: "Start Date",
|
|
19738
19777
|
description: "Start date for data import",
|
|
19739
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
19778
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
19740
19779
|
},
|
|
19741
19780
|
EndDate: {
|
|
19742
19781
|
requiredType: "date",
|
|
@@ -19753,25 +19792,29 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
19753
19792
|
requiredType: "boolean",
|
|
19754
19793
|
default: true,
|
|
19755
19794
|
label: "Process Short Links",
|
|
19756
|
-
description: "Enable automatic processing of short links in link_url_asset field. Only available for ad-account/insights-by-link-url-asset endpoint as it requires breakdown by link_url_asset"
|
|
19795
|
+
description: "Enable automatic processing of short links in link_url_asset field. Only available for ad-account/insights-by-link-url-asset endpoint as it requires breakdown by link_url_asset",
|
|
19796
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19757
19797
|
},
|
|
19758
19798
|
CreateEmptyTables: {
|
|
19759
19799
|
requiredType: "boolean",
|
|
19760
19800
|
default: true,
|
|
19761
19801
|
label: "Create Empty Tables",
|
|
19762
|
-
description: "Create tables with all columns even if no data is returned from API (true/false)"
|
|
19802
|
+
description: "Create tables with all columns even if no data is returned from API (true/false)",
|
|
19803
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19763
19804
|
},
|
|
19764
19805
|
ReimportLookbackWindow: {
|
|
19765
19806
|
requiredType: "number",
|
|
19766
19807
|
isRequired: true,
|
|
19767
19808
|
default: 2,
|
|
19768
19809
|
label: "Reimport Lookback Window",
|
|
19769
|
-
description: "Number of days to look back when reimporting data"
|
|
19810
|
+
description: "Number of days to look back when reimporting data",
|
|
19811
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19770
19812
|
},
|
|
19771
19813
|
CleanUpToKeepWindow: {
|
|
19772
19814
|
requiredType: "number",
|
|
19773
19815
|
label: "Clean Up To Keep Window",
|
|
19774
|
-
description: "Number of days to keep data before cleaning up"
|
|
19816
|
+
description: "Number of days to keep data before cleaning up",
|
|
19817
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
19775
19818
|
}
|
|
19776
19819
|
}));
|
|
19777
19820
|
this.fieldsSchema = FacebookMarketingFieldsSchema;
|
|
@@ -20995,7 +21038,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
20995
21038
|
requiredType: "date",
|
|
20996
21039
|
label: "Start Date",
|
|
20997
21040
|
description: "Start date for data import",
|
|
20998
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
21041
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
20999
21042
|
},
|
|
21000
21043
|
EndDate: {
|
|
21001
21044
|
requiredType: "date",
|
|
@@ -21019,12 +21062,14 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
21019
21062
|
isRequired: true,
|
|
21020
21063
|
default: 5,
|
|
21021
21064
|
label: "Reimport Lookback Window",
|
|
21022
|
-
description: "Number of days to look back when reimporting data"
|
|
21065
|
+
description: "Number of days to look back when reimporting data",
|
|
21066
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21023
21067
|
},
|
|
21024
21068
|
CleanUpToKeepWindow: {
|
|
21025
21069
|
requiredType: "number",
|
|
21026
21070
|
label: "Clean Up To Keep Window",
|
|
21027
|
-
description: "Number of days to keep data before cleaning up"
|
|
21071
|
+
description: "Number of days to keep data before cleaning up",
|
|
21072
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21028
21073
|
},
|
|
21029
21074
|
ClientId: {
|
|
21030
21075
|
isRequired: true,
|
|
@@ -21043,7 +21088,8 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
21043
21088
|
requiredType: "boolean",
|
|
21044
21089
|
default: true,
|
|
21045
21090
|
label: "Create Empty Tables",
|
|
21046
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
21091
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
21092
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21047
21093
|
}
|
|
21048
21094
|
}));
|
|
21049
21095
|
this.fieldsSchema = CriteoAdsFieldsSchema;
|
|
@@ -21367,7 +21413,7 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
21367
21413
|
requiredType: "date",
|
|
21368
21414
|
label: "Start Date",
|
|
21369
21415
|
description: "Start date for data import",
|
|
21370
|
-
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL]
|
|
21416
|
+
attributes: [CONFIG_ATTRIBUTES2.MANUAL_BACKFILL, CONFIG_ATTRIBUTES2.HIDE_IN_CONFIG_FORM]
|
|
21371
21417
|
},
|
|
21372
21418
|
EndDate: {
|
|
21373
21419
|
requiredType: "date",
|
|
@@ -21397,7 +21443,8 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
|
|
|
21397
21443
|
requiredType: "boolean",
|
|
21398
21444
|
default: true,
|
|
21399
21445
|
label: "Create Empty Tables",
|
|
21400
|
-
description: "Create tables with all columns even if no data is returned from API"
|
|
21446
|
+
description: "Create tables with all columns even if no data is returned from API",
|
|
21447
|
+
attributes: [CONFIG_ATTRIBUTES2.ADVANCED]
|
|
21401
21448
|
}
|
|
21402
21449
|
}));
|
|
21403
21450
|
this.fieldsSchema = BankOfCanadaFieldsSchema;
|