@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.
Files changed (2) hide show
  1. package/package.json +12 -12
  2. 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.40.6",
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.40.6",
26
- "@webiny/aws-sdk": "5.40.6",
27
- "@webiny/db-dynamodb": "5.40.6",
28
- "@webiny/error": "5.40.6",
29
- "@webiny/plugins": "5.40.6",
30
- "@webiny/utils": "5.40.6"
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.40.6",
38
- "@webiny/handler-db": "5.40.6",
39
- "@webiny/project-utils": "5.40.6",
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.7.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": "f9da84b373e62f9f269599c4301e5e4418a98d51"
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 declare type Attributes = Record<string, AttributeDefinition>;
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 declare type Entities = "form" | "submission" | "system" | "settings";
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>>;