agrs-sequelize-sdk 1.0.27 → 1.0.28
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/LICENSE +0 -0
- package/README.md +0 -0
- package/config/config.json +0 -0
- package/index.js +0 -0
- package/jq.exe +0 -0
- package/models/ActivityHistory.js +0 -0
- package/models/Ad.js +0 -0
- package/models/AdAccount.js +0 -0
- package/models/AdCreative.js +0 -0
- package/models/AdPerformance.js +0 -0
- package/models/AdPerformanceHourly.js +0 -0
- package/models/AdSet.js +0 -0
- package/models/Campaign.js +0 -0
- package/models/CodefuelCampaign.js +0 -0
- package/models/CodefuelCampaignKWHistory.js +0 -0
- package/models/CodefuelKeywords.js +0 -0
- package/models/CurrencyRate.js +0 -0
- package/models/Files.js +0 -0
- package/models/Folders.js +0 -0
- package/models/KeywordPerformance.js +0 -0
- package/models/KeywordRotationState.js +0 -0
- package/models/Rule.js +0 -0
- package/models/TonicCampaign.js +0 -0
- package/models/Users.js +8 -0
- package/models/pixel.js +0 -0
- package/models/pixels.js +0 -0
- package/package.json +21 -19
- package/run.ps1 +0 -0
- package/run.sh +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/config/config.json
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
File without changes
|
package/jq.exe
CHANGED
|
File without changes
|
|
File without changes
|
package/models/Ad.js
CHANGED
|
File without changes
|
package/models/AdAccount.js
CHANGED
|
File without changes
|
package/models/AdCreative.js
CHANGED
|
File without changes
|
package/models/AdPerformance.js
CHANGED
|
File without changes
|
|
File without changes
|
package/models/AdSet.js
CHANGED
|
File without changes
|
package/models/Campaign.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/models/CurrencyRate.js
CHANGED
|
File without changes
|
package/models/Files.js
CHANGED
|
File without changes
|
package/models/Folders.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/models/Rule.js
CHANGED
|
File without changes
|
package/models/TonicCampaign.js
CHANGED
|
File without changes
|
package/models/Users.js
CHANGED
|
@@ -56,6 +56,14 @@ module.exports = (sequelize, DataTypes) => {
|
|
|
56
56
|
allowNull: true,
|
|
57
57
|
defaultValue: [],
|
|
58
58
|
},
|
|
59
|
+
LastEntrance: {
|
|
60
|
+
type: DataTypes.DATE, // Array of organization IDs
|
|
61
|
+
allowNull: true,
|
|
62
|
+
},
|
|
63
|
+
Status: {
|
|
64
|
+
type: DataTypes.STRING, // Array of organization IDs
|
|
65
|
+
allowNull: true,
|
|
66
|
+
},
|
|
59
67
|
},
|
|
60
68
|
{
|
|
61
69
|
tableName: "Users",
|
package/models/pixel.js
CHANGED
|
File without changes
|
package/models/pixels.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "agrs-sequelize-sdk",
|
|
3
|
+
"version": "1.0.28",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"start": "node index.js",
|
|
7
|
+
"sync": "node services/sequelizeService.js",
|
|
8
|
+
"test": "echo \"Error: no test specified\" \u0026\u0026 exit 1"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
|
|
12
|
+
],
|
|
13
|
+
"author": "",
|
|
14
|
+
"license": "ISC",
|
|
15
|
+
"description": "",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"pg": "^8.13.0",
|
|
18
|
+
"pg-hstore": "^2.3.4",
|
|
19
|
+
"sequelize": "^6.37.4"
|
|
20
|
+
}
|
|
21
|
+
}
|
package/run.ps1
CHANGED
|
File without changes
|
package/run.sh
CHANGED
|
File without changes
|