@webiny/api-headless-cms-ddb 6.2.0-beta.0 → 6.3.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import type { CmsModelField } from \"@webiny/api-headless-cms/types/index.js\";\nimport type { CreatePathCallable } from \"~/plugins/index.js\";\n\ninterface FieldValueTransform {\n (value: any): any;\n}\n\nexport interface FieldParent {\n fieldId: string;\n list?: boolean;\n}\n\nexport interface Field\n extends
|
|
1
|
+
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import type { CmsModelField } from \"@webiny/api-headless-cms/types/index.js\";\nimport type { CreatePathCallable } from \"~/plugins/index.js\";\n\ninterface FieldValueTransform {\n (value: any): any;\n}\n\nexport interface FieldParent {\n fieldId: string;\n list?: boolean;\n}\n\nexport interface Field\n extends\n Partial<Omit<CmsModelField, \"id\" | \"type\" | \"storageId\" | \"fieldId\">>,\n Pick<CmsModelField, \"id\" | \"type\" | \"storageId\" | \"fieldId\"> {\n /**\n * A list od fieldId of all parents of the current field.\n *\n * This is used to check if we need to iterate through an array of parent values.\n */\n parents: FieldParent[];\n /**\n * The method which creates a path for the filtering.\n *\n * Always exists. In most cases it will return some fixed value.\n * When having a CmsEntryFieldFilterPathPlugin then it is executed to create a path.\n */\n createPath: CreatePathCallable;\n /**\n * In most cases, return value of this method is what ever is the input.\n *\n * In some cases there might be a CmsFieldFilterValueTransformPlugin, which transforms value to a comparable one.\n * For example, time in format 15:45:58 is not comparable, so we transform it into the seconds and then compare.\n */\n transform: FieldValueTransform;\n /**\n * Is the field a system field?\n * System fields are built into the code and cannot be changed.\n */\n system: boolean;\n}\n\nexport interface FilterItemFromStorage {\n <T = any>(field: CmsModelField, value: any): Promise<T>;\n}\n"],"mappings":"","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-headless-cms-ddb",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
],
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@webiny/api": "6.
|
|
27
|
-
"@webiny/api-headless-cms": "6.
|
|
28
|
-
"@webiny/aws-sdk": "6.
|
|
29
|
-
"@webiny/db-dynamodb": "6.
|
|
30
|
-
"@webiny/error": "6.
|
|
31
|
-
"@webiny/feature": "6.
|
|
32
|
-
"@webiny/handler": "6.
|
|
33
|
-
"@webiny/handler-db": "6.
|
|
34
|
-
"@webiny/utils": "6.
|
|
26
|
+
"@webiny/api": "6.3.0-beta.0",
|
|
27
|
+
"@webiny/api-headless-cms": "6.3.0-beta.0",
|
|
28
|
+
"@webiny/aws-sdk": "6.3.0-beta.0",
|
|
29
|
+
"@webiny/db-dynamodb": "6.3.0-beta.0",
|
|
30
|
+
"@webiny/error": "6.3.0-beta.0",
|
|
31
|
+
"@webiny/feature": "6.3.0-beta.0",
|
|
32
|
+
"@webiny/handler": "6.3.0-beta.0",
|
|
33
|
+
"@webiny/handler-db": "6.3.0-beta.0",
|
|
34
|
+
"@webiny/utils": "6.3.0-beta.0",
|
|
35
35
|
"dataloader": "2.2.3",
|
|
36
36
|
"dot-object": "2.1.5",
|
|
37
37
|
"dot-prop": "10.1.0",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/dot-object": "2.1.6",
|
|
42
42
|
"@types/jsonpack": "1.1.6",
|
|
43
|
-
"@webiny/build-tools": "6.
|
|
43
|
+
"@webiny/build-tools": "6.3.0-beta.0",
|
|
44
44
|
"@webiny/di": "0.2.3",
|
|
45
|
-
"@webiny/plugins": "6.
|
|
46
|
-
"@webiny/project-utils": "6.
|
|
45
|
+
"@webiny/plugins": "6.3.0-beta.0",
|
|
46
|
+
"@webiny/project-utils": "6.3.0-beta.0",
|
|
47
47
|
"jest-dynalite": "3.6.1",
|
|
48
|
-
"typescript": "
|
|
48
|
+
"typescript": "6.0.3",
|
|
49
49
|
"vitest": "4.1.4"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public",
|
|
53
53
|
"directory": "dist"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
|
|
56
56
|
}
|