@webiny/api-prerendering-service-so-ddb 5.37.2-beta.3 → 5.37.3-beta.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/definitions/queueJob.js +3 -1
- package/definitions/render.js +3 -1
- package/definitions/renderLegacy.js +3 -1
- package/definitions/settings.js +3 -1
- package/definitions/table.js +3 -1
- package/definitions/tagPathLink.js +3 -1
- package/definitions/tagPathLinkLegacy.js +3 -1
- package/definitions/tenantEntity.js +3 -1
- package/index.js +3 -1
- package/operations/queueJob.js +3 -1
- package/operations/render.js +3 -1
- package/operations/settings.js +3 -1
- package/operations/tenant.js +3 -1
- package/package.json +9 -9
- package/types.js +3 -1
package/definitions/queueJob.js
CHANGED
package/definitions/render.js
CHANGED
package/definitions/settings.js
CHANGED
package/definitions/table.js
CHANGED
@@ -25,4 +25,6 @@ const createTable = params => {
|
|
25
25
|
const config = typeof table === "function" ? table(tableConfig) : tableConfig;
|
26
26
|
return new _dynamodbToolbox.Table(config);
|
27
27
|
};
|
28
|
-
exports.createTable = createTable;
|
28
|
+
exports.createTable = createTable;
|
29
|
+
|
30
|
+
//# sourceMappingURL=table.js.map
|
package/index.js
CHANGED
@@ -82,4 +82,6 @@ const createPrerenderingServiceStorageOperations = params => {
|
|
82
82
|
entity: entities.tenant
|
83
83
|
}));
|
84
84
|
};
|
85
|
-
exports.createPrerenderingServiceStorageOperations = createPrerenderingServiceStorageOperations;
|
85
|
+
exports.createPrerenderingServiceStorageOperations = createPrerenderingServiceStorageOperations;
|
86
|
+
|
87
|
+
//# sourceMappingURL=index.js.map
|
package/operations/queueJob.js
CHANGED
@@ -89,4 +89,6 @@ const createQueueJobStorageOperations = params => {
|
|
89
89
|
listQueueJobs
|
90
90
|
};
|
91
91
|
};
|
92
|
-
exports.createQueueJobStorageOperations = createQueueJobStorageOperations;
|
92
|
+
exports.createQueueJobStorageOperations = createQueueJobStorageOperations;
|
93
|
+
|
94
|
+
//# sourceMappingURL=queueJob.js.map
|
package/operations/render.js
CHANGED
@@ -323,4 +323,6 @@ const createRenderStorageOperations = params => {
|
|
323
323
|
listTagPathLinks
|
324
324
|
};
|
325
325
|
};
|
326
|
-
exports.createRenderStorageOperations = createRenderStorageOperations;
|
326
|
+
exports.createRenderStorageOperations = createRenderStorageOperations;
|
327
|
+
|
328
|
+
//# sourceMappingURL=render.js.map
|
package/operations/settings.js
CHANGED
@@ -59,4 +59,6 @@ const createSettingsStorageOperations = params => {
|
|
59
59
|
saveSettings
|
60
60
|
};
|
61
61
|
};
|
62
|
-
exports.createSettingsStorageOperations = createSettingsStorageOperations;
|
62
|
+
exports.createSettingsStorageOperations = createSettingsStorageOperations;
|
63
|
+
|
64
|
+
//# sourceMappingURL=settings.js.map
|
package/operations/tenant.js
CHANGED
@@ -25,4 +25,6 @@ const createTenantStorageOperations = params => {
|
|
25
25
|
getTenantIds
|
26
26
|
};
|
27
27
|
};
|
28
|
-
exports.createTenantStorageOperations = createTenantStorageOperations;
|
28
|
+
exports.createTenantStorageOperations = createTenantStorageOperations;
|
29
|
+
|
30
|
+
//# sourceMappingURL=tenant.js.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@webiny/api-prerendering-service-so-ddb",
|
3
|
-
"version": "5.37.
|
3
|
+
"version": "5.37.3-beta.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -19,8 +19,8 @@
|
|
19
19
|
"license": "MIT",
|
20
20
|
"dependencies": {
|
21
21
|
"@babel/runtime": "7.22.6",
|
22
|
-
"@webiny/api-prerendering-service": "5.37.
|
23
|
-
"@webiny/error": "5.37.
|
22
|
+
"@webiny/api-prerendering-service": "5.37.3-beta.0",
|
23
|
+
"@webiny/error": "5.37.3-beta.0",
|
24
24
|
"dynamodb-toolbox": "0.3.5"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
@@ -29,11 +29,11 @@
|
|
29
29
|
"@babel/plugin-proposal-export-default-from": "7.18.10",
|
30
30
|
"@babel/preset-env": "7.22.7",
|
31
31
|
"@babel/preset-typescript": "7.22.5",
|
32
|
-
"@webiny/cli": "5.37.
|
33
|
-
"@webiny/db": "5.37.
|
34
|
-
"@webiny/db-dynamodb": "5.37.
|
35
|
-
"@webiny/handler-aws": "5.37.
|
36
|
-
"@webiny/project-utils": "5.37.
|
32
|
+
"@webiny/cli": "5.37.3-beta.0",
|
33
|
+
"@webiny/db": "5.37.3-beta.0",
|
34
|
+
"@webiny/db-dynamodb": "5.37.3-beta.0",
|
35
|
+
"@webiny/handler-aws": "5.37.3-beta.0",
|
36
|
+
"@webiny/project-utils": "5.37.3-beta.0",
|
37
37
|
"jest-dynalite": "3.6.1",
|
38
38
|
"prettier": "2.8.8",
|
39
39
|
"rimraf": "3.0.2",
|
@@ -55,5 +55,5 @@
|
|
55
55
|
]
|
56
56
|
}
|
57
57
|
},
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "5dbaca4f2294bd7a6718ece14752f5f554d0d842"
|
59
59
|
}
|