@webiny/api-form-builder-so-ddb 5.40.6 → 5.41.0-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/package.json +12 -12
- package/types.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-form-builder-so-ddb",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.41.0-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"@webiny/api-form-builder",
|
|
@@ -22,27 +22,27 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@babel/runtime": "7.24.1",
|
|
25
|
-
"@webiny/api-form-builder": "5.
|
|
26
|
-
"@webiny/aws-sdk": "5.
|
|
27
|
-
"@webiny/db-dynamodb": "5.
|
|
28
|
-
"@webiny/error": "5.
|
|
29
|
-
"@webiny/plugins": "5.
|
|
30
|
-
"@webiny/utils": "5.
|
|
25
|
+
"@webiny/api-form-builder": "5.41.0-beta.0",
|
|
26
|
+
"@webiny/aws-sdk": "5.41.0-beta.0",
|
|
27
|
+
"@webiny/db-dynamodb": "5.41.0-beta.0",
|
|
28
|
+
"@webiny/error": "5.41.0-beta.0",
|
|
29
|
+
"@webiny/plugins": "5.41.0-beta.0",
|
|
30
|
+
"@webiny/utils": "5.41.0-beta.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@babel/cli": "7.24.1",
|
|
34
34
|
"@babel/core": "7.24.3",
|
|
35
35
|
"@babel/preset-env": "7.24.3",
|
|
36
36
|
"@babel/preset-typescript": "7.24.1",
|
|
37
|
-
"@webiny/cli": "5.
|
|
38
|
-
"@webiny/handler-db": "5.
|
|
39
|
-
"@webiny/project-utils": "5.
|
|
37
|
+
"@webiny/cli": "5.41.0-beta.0",
|
|
38
|
+
"@webiny/handler-db": "5.41.0-beta.0",
|
|
39
|
+
"@webiny/project-utils": "5.41.0-beta.0",
|
|
40
40
|
"csvtojson": "2.0.10",
|
|
41
41
|
"jest": "29.7.0",
|
|
42
42
|
"jest-dynalite": "3.6.1",
|
|
43
43
|
"rimraf": "5.0.5",
|
|
44
44
|
"ttypescript": "1.5.15",
|
|
45
|
-
"typescript": "4.
|
|
45
|
+
"typescript": "4.9.5"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"build": "yarn webiny run build",
|
|
53
53
|
"watch": "yarn webiny run watch"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "9ce5e75fc577aa4de2cf08d5ca734b3c98fe65b6"
|
|
56
56
|
}
|
package/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
|
3
3
|
import { Entity, Table } from "@webiny/db-dynamodb/toolbox";
|
|
4
4
|
import { AttributeDefinition } from "@webiny/db-dynamodb/toolbox";
|
|
5
5
|
import { Plugin } from "@webiny/plugins";
|
|
6
|
-
export
|
|
6
|
+
export type Attributes = Record<string, AttributeDefinition>;
|
|
7
7
|
export declare enum ENTITIES {
|
|
8
8
|
FORM = "FormBuilderForm",
|
|
9
9
|
SUBMISSION = "FormBuilderSubmission",
|
|
@@ -53,7 +53,7 @@ export interface FormBuilderSettingsStorageOperations extends BaseFormBuilderSet
|
|
|
53
53
|
createSettingsPartitionKey: (params: FormBuilderSettingsStorageOperationsCreatePartitionKeyParams) => string;
|
|
54
54
|
createSettingsSortKey: () => string;
|
|
55
55
|
}
|
|
56
|
-
export
|
|
56
|
+
export type Entities = "form" | "submission" | "system" | "settings";
|
|
57
57
|
export interface FormBuilderStorageOperations extends BaseFormBuilderStorageOperations, FormBuilderSettingsStorageOperations, FormBuilderSubmissionStorageOperations, FormBuilderFormStorageOperations, FormBuilderSystemStorageOperations {
|
|
58
58
|
getTable(): Table<string, string, string>;
|
|
59
59
|
getEntities(): Record<Entities, Entity<any>>;
|