@owox/connectors 0.0.0 → 0.1.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 +4 -4
- package/dist/index.js +4 -4
- package/dist/manifest.json +2 -2
- package/dist/temp/index.js +17 -17
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8053,6 +8053,10 @@ const LinkedIn = function() {
|
|
|
8053
8053
|
return this.source.fieldsSchema[nodeName] && this.source.fieldsSchema[nodeName].isTimeSeries === true;
|
|
8054
8054
|
}
|
|
8055
8055
|
};
|
|
8056
|
+
var LinkedInApiTypes = {
|
|
8057
|
+
ADS: 1,
|
|
8058
|
+
PAGES: 2
|
|
8059
|
+
};
|
|
8056
8060
|
var followerStatisticsTimeBoundFields = {
|
|
8057
8061
|
"organization_urn": {
|
|
8058
8062
|
"description": "Organization URN",
|
|
@@ -8147,10 +8151,6 @@ const LinkedIn = function() {
|
|
|
8147
8151
|
"isTimeSeries": true
|
|
8148
8152
|
}
|
|
8149
8153
|
};
|
|
8150
|
-
var LinkedInApiTypes = {
|
|
8151
|
-
ADS: 1,
|
|
8152
|
-
PAGES: 2
|
|
8153
|
-
};
|
|
8154
8154
|
var creativesFields = {
|
|
8155
8155
|
"account": {
|
|
8156
8156
|
"description": "URN identifying the advertising account associated with the creative. This field is read-only.",
|
package/dist/index.js
CHANGED
|
@@ -8058,6 +8058,10 @@ OPTIONS(description="${this.description}")`;
|
|
|
8058
8058
|
return this.source.fieldsSchema[nodeName] && this.source.fieldsSchema[nodeName].isTimeSeries === true;
|
|
8059
8059
|
}
|
|
8060
8060
|
};
|
|
8061
|
+
var LinkedInApiTypes = {
|
|
8062
|
+
ADS: 1,
|
|
8063
|
+
PAGES: 2
|
|
8064
|
+
};
|
|
8061
8065
|
var followerStatisticsTimeBoundFields = {
|
|
8062
8066
|
"organization_urn": {
|
|
8063
8067
|
"description": "Organization URN",
|
|
@@ -8152,10 +8156,6 @@ OPTIONS(description="${this.description}")`;
|
|
|
8152
8156
|
"isTimeSeries": true
|
|
8153
8157
|
}
|
|
8154
8158
|
};
|
|
8155
|
-
var LinkedInApiTypes = {
|
|
8156
|
-
ADS: 1,
|
|
8157
|
-
PAGES: 2
|
|
8158
|
-
};
|
|
8159
8159
|
var creativesFields = {
|
|
8160
8160
|
"account": {
|
|
8161
8161
|
"description": "URN identifying the advertising account associated with the creative. This field is read-only.",
|
package/dist/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"buildDate": "2025-07-
|
|
3
|
+
"buildDate": "2025-07-01T21:45:08.139Z",
|
|
4
4
|
"connectors": [
|
|
5
5
|
{
|
|
6
6
|
"name": "XAds",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"src/Sources/LinkedIn/Source.js",
|
|
76
76
|
"src/Sources/LinkedIn/Helper.js",
|
|
77
77
|
"src/Sources/LinkedIn/Connector.js",
|
|
78
|
+
"src/Sources/LinkedIn/Constants/CommonConstants.js",
|
|
78
79
|
"src/Sources/LinkedIn/LinkedInPagesAPIReference/followerStatisticsTimeBoundFields.js",
|
|
79
80
|
"src/Sources/LinkedIn/LinkedInPagesAPIReference/followerStatisticsFields.js",
|
|
80
81
|
"src/Sources/LinkedIn/LinkedInPagesAPIReference/LinkedInPagesFieldsSchema.js",
|
|
81
|
-
"src/Sources/LinkedIn/Constants/CommonConstants.js",
|
|
82
82
|
"src/Sources/LinkedIn/LinkedInAdsAPIReference/creativesFields.js",
|
|
83
83
|
"src/Sources/LinkedIn/LinkedInAdsAPIReference/adCampaignGroupFields.js",
|
|
84
84
|
"src/Sources/LinkedIn/LinkedInAdsAPIReference/adCampaignFields.js",
|
package/dist/temp/index.js
CHANGED
|
@@ -10092,6 +10092,23 @@ const LinkedIn = (function() {
|
|
|
10092
10092
|
};
|
|
10093
10093
|
|
|
10094
10094
|
|
|
10095
|
+
// From src/Sources/LinkedIn/Constants/CommonConstants.js
|
|
10096
|
+
/**
|
|
10097
|
+
* Copyright (c) OWOX, Inc.
|
|
10098
|
+
*
|
|
10099
|
+
* For the full copyright and license information, please view the LICENSE
|
|
10100
|
+
* file that was distributed with this source code.
|
|
10101
|
+
*/
|
|
10102
|
+
|
|
10103
|
+
/**
|
|
10104
|
+
* Constants for LinkedIn API types
|
|
10105
|
+
*/
|
|
10106
|
+
var LinkedInApiTypes = {
|
|
10107
|
+
ADS: 1,
|
|
10108
|
+
PAGES: 2
|
|
10109
|
+
};
|
|
10110
|
+
|
|
10111
|
+
|
|
10095
10112
|
// From src/Sources/LinkedIn/LinkedInPagesAPIReference/followerStatisticsTimeBoundFields.js
|
|
10096
10113
|
/**
|
|
10097
10114
|
* Copyright (c) OWOX, Inc.
|
|
@@ -10216,23 +10233,6 @@ const LinkedIn = (function() {
|
|
|
10216
10233
|
};
|
|
10217
10234
|
|
|
10218
10235
|
|
|
10219
|
-
// From src/Sources/LinkedIn/Constants/CommonConstants.js
|
|
10220
|
-
/**
|
|
10221
|
-
* Copyright (c) OWOX, Inc.
|
|
10222
|
-
*
|
|
10223
|
-
* For the full copyright and license information, please view the LICENSE
|
|
10224
|
-
* file that was distributed with this source code.
|
|
10225
|
-
*/
|
|
10226
|
-
|
|
10227
|
-
/**
|
|
10228
|
-
* Constants for LinkedIn API types
|
|
10229
|
-
*/
|
|
10230
|
-
var LinkedInApiTypes = {
|
|
10231
|
-
ADS: 1,
|
|
10232
|
-
PAGES: 2
|
|
10233
|
-
};
|
|
10234
|
-
|
|
10235
|
-
|
|
10236
10236
|
// From src/Sources/LinkedIn/LinkedInAdsAPIReference/creativesFields.js
|
|
10237
10237
|
/**
|
|
10238
10238
|
* Copyright (c) OWOX, Inc.
|