@webiny/api-headless-cms-ddb-es 6.4.0-beta.2 → 6.4.0-beta.3
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/features/CmsEntryOpenSearchFieldIndex/feature.js +2 -0
- package/features/CmsEntryOpenSearchFieldIndex/feature.js.map +1 -1
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.d.ts +2 -1
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.js +2 -1
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.js.map +1 -1
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextEncryptedFieldIndex.d.ts +15 -0
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextEncryptedFieldIndex.js +40 -0
- package/features/CmsEntryOpenSearchFieldIndex/fields/TextEncryptedFieldIndex.js.map +1 -0
- package/package.json +22 -22
|
@@ -8,6 +8,7 @@ import { DefaultFieldIndex } from "./fields/DefaultFieldIndex.js";
|
|
|
8
8
|
import { DateTimeFieldIndex } from "./fields/DateTimeFieldIndex.js";
|
|
9
9
|
import { ObjectFieldIndex } from "./fields/ObjectFieldIndex.js";
|
|
10
10
|
import { TextCompressedFieldIndex } from "./fields/TextCompressedFieldIndex.js";
|
|
11
|
+
import { TextEncryptedFieldIndex } from "./fields/TextEncryptedFieldIndex.js";
|
|
11
12
|
const CmsEntryOpenSearchFieldIndexFeature = createFeature({
|
|
12
13
|
name: "Cms/Entry/OpenSearch/FieldIndexFeature",
|
|
13
14
|
register: (container)=>{
|
|
@@ -19,6 +20,7 @@ const CmsEntryOpenSearchFieldIndexFeature = createFeature({
|
|
|
19
20
|
container.register(DateTimeFieldIndex).inSingletonScope();
|
|
20
21
|
container.register(ObjectFieldIndex).inSingletonScope();
|
|
21
22
|
container.register(TextCompressedFieldIndex).inSingletonScope();
|
|
23
|
+
container.register(TextEncryptedFieldIndex).inSingletonScope();
|
|
22
24
|
container.register(CmsEntryOpenSearchFieldIndexRegistry).inSingletonScope();
|
|
23
25
|
}
|
|
24
26
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"features/CmsEntryOpenSearchFieldIndex/feature.js","sources":["../../../src/features/CmsEntryOpenSearchFieldIndex/feature.ts"],"sourcesContent":["import { createFeature } from \"@webiny/feature/api\";\nimport { CmsEntryOpenSearchFieldIndexRegistry } from \"./CmsEntryOpenSearchFieldIndexRegistry.js\";\nimport { RichTextFieldIndex } from \"./fields/RichTextFieldIndex.js\";\nimport { JsonFieldIndex } from \"./fields/JsonFieldIndex.js\";\nimport { LongTextFieldIndex } from \"./fields/LongTextFieldIndex.js\";\nimport { NumberFieldIndex } from \"./fields/NumberFieldIndex.js\";\nimport { DefaultFieldIndex } from \"./fields/DefaultFieldIndex.js\";\nimport { DateTimeFieldIndex } from \"./fields/DateTimeFieldIndex.js\";\nimport { ObjectFieldIndex } from \"./fields/ObjectFieldIndex.js\";\nimport { TextCompressedFieldIndex } from \"
|
|
1
|
+
{"version":3,"file":"features/CmsEntryOpenSearchFieldIndex/feature.js","sources":["../../../src/features/CmsEntryOpenSearchFieldIndex/feature.ts"],"sourcesContent":["import { createFeature } from \"@webiny/feature/api\";\nimport { CmsEntryOpenSearchFieldIndexRegistry } from \"./CmsEntryOpenSearchFieldIndexRegistry.js\";\nimport { RichTextFieldIndex } from \"./fields/RichTextFieldIndex.js\";\nimport { JsonFieldIndex } from \"./fields/JsonFieldIndex.js\";\nimport { LongTextFieldIndex } from \"./fields/LongTextFieldIndex.js\";\nimport { NumberFieldIndex } from \"./fields/NumberFieldIndex.js\";\nimport { DefaultFieldIndex } from \"./fields/DefaultFieldIndex.js\";\nimport { DateTimeFieldIndex } from \"./fields/DateTimeFieldIndex.js\";\nimport { ObjectFieldIndex } from \"./fields/ObjectFieldIndex.js\";\nimport { TextCompressedFieldIndex } from \"./fields/TextCompressedFieldIndex.js\";\nimport { TextEncryptedFieldIndex } from \"./fields/TextEncryptedFieldIndex.js\";\n\nexport const CmsEntryOpenSearchFieldIndexFeature = createFeature({\n name: \"Cms/Entry/OpenSearch/FieldIndexFeature\",\n register: container => {\n container.register(RichTextFieldIndex).inSingletonScope();\n container.register(JsonFieldIndex).inSingletonScope();\n container.register(LongTextFieldIndex).inSingletonScope();\n container.register(NumberFieldIndex).inSingletonScope();\n container.register(DefaultFieldIndex).inSingletonScope();\n container.register(DateTimeFieldIndex).inSingletonScope();\n container.register(ObjectFieldIndex).inSingletonScope();\n container.register(TextCompressedFieldIndex).inSingletonScope();\n container.register(TextEncryptedFieldIndex).inSingletonScope();\n\n // must be registered last\n container.register(CmsEntryOpenSearchFieldIndexRegistry).inSingletonScope();\n }\n});\n"],"names":["CmsEntryOpenSearchFieldIndexFeature","createFeature","container","RichTextFieldIndex","JsonFieldIndex","LongTextFieldIndex","NumberFieldIndex","DefaultFieldIndex","DateTimeFieldIndex","ObjectFieldIndex","TextCompressedFieldIndex","TextEncryptedFieldIndex","CmsEntryOpenSearchFieldIndexRegistry"],"mappings":";;;;;;;;;;;AAYO,MAAMA,sCAAsCC,cAAc;IAC7D,MAAM;IACN,UAAUC,CAAAA;QACNA,UAAU,QAAQ,CAACC,oBAAoB,gBAAgB;QACvDD,UAAU,QAAQ,CAACE,gBAAgB,gBAAgB;QACnDF,UAAU,QAAQ,CAACG,oBAAoB,gBAAgB;QACvDH,UAAU,QAAQ,CAACI,kBAAkB,gBAAgB;QACrDJ,UAAU,QAAQ,CAACK,mBAAmB,gBAAgB;QACtDL,UAAU,QAAQ,CAACM,oBAAoB,gBAAgB;QACvDN,UAAU,QAAQ,CAACO,kBAAkB,gBAAgB;QACrDP,UAAU,QAAQ,CAACQ,0BAA0B,gBAAgB;QAC7DR,UAAU,QAAQ,CAACS,yBAAyB,gBAAgB;QAG5DT,UAAU,QAAQ,CAACU,sCAAsC,gBAAgB;IAC7E;AACJ"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { CmsEntryOpenSearchFieldIndex } from "../abstractions/CmsEntryOpenSearchFieldIndex.js";
|
|
2
2
|
import { CmsModelFieldToGraphQLRegistry } from "@webiny/api-headless-cms/exports/api/cms/graphql.js";
|
|
3
|
+
import { TextFieldTypes } from "@webiny/api-headless-cms/features/modelBuilder/index.js";
|
|
3
4
|
declare class TextCompressedFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {
|
|
4
5
|
private readonly fieldRegistry;
|
|
5
|
-
readonly fieldType =
|
|
6
|
+
readonly fieldType = TextFieldTypes.COMPRESSED;
|
|
6
7
|
constructor(fieldRegistry: CmsModelFieldToGraphQLRegistry.Interface);
|
|
7
8
|
toIndex(params: CmsEntryOpenSearchFieldIndex.ToIndex): CmsEntryOpenSearchFieldIndex.ToValue;
|
|
8
9
|
fromIndex(params: CmsEntryOpenSearchFieldIndex.FromIndex): any;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { CmsEntryOpenSearchFieldIndex } from "../abstractions/CmsEntryOpenSearchFieldIndex.js";
|
|
2
2
|
import { CmsModelFieldToGraphQLRegistry } from "@webiny/api-headless-cms/exports/api/cms/graphql.js";
|
|
3
|
+
import { TextFieldTypes } from "@webiny/api-headless-cms/features/modelBuilder/index.js";
|
|
3
4
|
class TextCompressedFieldIndexImpl {
|
|
4
5
|
constructor(fieldRegistry){
|
|
5
6
|
this.fieldRegistry = fieldRegistry;
|
|
6
|
-
this.fieldType =
|
|
7
|
+
this.fieldType = TextFieldTypes.COMPRESSED;
|
|
7
8
|
}
|
|
8
9
|
toIndex(params) {
|
|
9
10
|
const { field, value } = params;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.js","sources":["../../../../src/features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.ts"],"sourcesContent":["import { CmsEntryOpenSearchFieldIndex } from \"../abstractions/CmsEntryOpenSearchFieldIndex.js\";\nimport type { CmsModelField } from \"@webiny/api-headless-cms/types/index.js\";\nimport { CmsModelFieldToGraphQLRegistry } from \"@webiny/api-headless-cms/exports/api/cms/graphql.js\";\n\nclass TextCompressedFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {\n public readonly fieldType =
|
|
1
|
+
{"version":3,"file":"features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.js","sources":["../../../../src/features/CmsEntryOpenSearchFieldIndex/fields/TextCompressedFieldIndex.ts"],"sourcesContent":["import { CmsEntryOpenSearchFieldIndex } from \"../abstractions/CmsEntryOpenSearchFieldIndex.js\";\nimport type { CmsModelField } from \"@webiny/api-headless-cms/types/index.js\";\nimport { CmsModelFieldToGraphQLRegistry } from \"@webiny/api-headless-cms/exports/api/cms/graphql.js\";\nimport { TextFieldTypes } from \"@webiny/api-headless-cms/features/modelBuilder/index.js\";\n\nclass TextCompressedFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {\n public readonly fieldType = TextFieldTypes.COMPRESSED;\n\n public constructor(private readonly fieldRegistry: CmsModelFieldToGraphQLRegistry.Interface) {}\n\n public toIndex(\n params: CmsEntryOpenSearchFieldIndex.ToIndex\n ): CmsEntryOpenSearchFieldIndex.ToValue {\n const { field, value } = params;\n const isSearchable = this.isSearchable(field);\n\n if (isSearchable) {\n return { value };\n }\n\n return {\n rawValue: value\n };\n }\n\n public fromIndex(params: CmsEntryOpenSearchFieldIndex.FromIndex): any {\n const { field, value, rawValue } = params;\n const isSearchable = this.isSearchable(field);\n\n if (isSearchable) {\n return value === undefined ? rawValue : value;\n }\n return rawValue === undefined ? value : rawValue;\n }\n\n private isSearchable(field: CmsModelField): boolean {\n const fieldType = this.fieldRegistry.get(field.type);\n if (!fieldType?.isSearchable) {\n return false;\n } else if (field.settings?.disableFullTextSearch === true) {\n return false;\n }\n return true;\n }\n}\n\nexport const TextCompressedFieldIndex = CmsEntryOpenSearchFieldIndex.createImplementation({\n implementation: TextCompressedFieldIndexImpl,\n dependencies: [CmsModelFieldToGraphQLRegistry]\n});\n"],"names":["TextCompressedFieldIndexImpl","fieldRegistry","TextFieldTypes","params","field","value","isSearchable","rawValue","undefined","fieldType","TextCompressedFieldIndex","CmsEntryOpenSearchFieldIndex","CmsModelFieldToGraphQLRegistry"],"mappings":";;;AAKA,MAAMA;IAGF,YAAoCC,aAAuD,CAAE;aAAzDA,aAAa,GAAbA;aAFpB,SAAS,GAAGC,eAAe,UAAU;IAEyC;IAEvF,QACHC,MAA4C,EACR;QACpC,MAAM,EAAEC,KAAK,EAAEC,KAAK,EAAE,GAAGF;QACzB,MAAMG,eAAe,IAAI,CAAC,YAAY,CAACF;QAEvC,IAAIE,cACA,OAAO;YAAED;QAAM;QAGnB,OAAO;YACH,UAAUA;QACd;IACJ;IAEO,UAAUF,MAA8C,EAAO;QAClE,MAAM,EAAEC,KAAK,EAAEC,KAAK,EAAEE,QAAQ,EAAE,GAAGJ;QACnC,MAAMG,eAAe,IAAI,CAAC,YAAY,CAACF;QAEvC,IAAIE,cACA,OAAOD,AAAUG,WAAVH,QAAsBE,WAAWF;QAE5C,OAAOE,AAAaC,WAAbD,WAAyBF,QAAQE;IAC5C;IAEQ,aAAaH,KAAoB,EAAW;QAChD,MAAMK,YAAY,IAAI,CAAC,aAAa,CAAC,GAAG,CAACL,MAAM,IAAI;QACnD,IAAI,CAACK,WAAW,cACZ,OAAO;QACJ,IAAIL,MAAM,QAAQ,EAAE,0BAA0B,MACjD,OAAO;QAEX,OAAO;IACX;AACJ;AAEO,MAAMM,2BAA2BC,6BAA6B,oBAAoB,CAAC;IACtF,gBAAgBX;IAChB,cAAc;QAACY;KAA+B;AAClD"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CmsEntryOpenSearchFieldIndex } from "../abstractions/CmsEntryOpenSearchFieldIndex.js";
|
|
2
|
+
import { CmsModelFieldToGraphQLRegistry } from "@webiny/api-headless-cms/exports/api/cms/graphql.js";
|
|
3
|
+
import { TextFieldTypes } from "@webiny/api-headless-cms/features/modelBuilder/index.js";
|
|
4
|
+
declare class TextEncryptedFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {
|
|
5
|
+
private readonly fieldRegistry;
|
|
6
|
+
readonly fieldType = TextFieldTypes.ENCRYPTED;
|
|
7
|
+
constructor(fieldRegistry: CmsModelFieldToGraphQLRegistry.Interface);
|
|
8
|
+
toIndex(params: CmsEntryOpenSearchFieldIndex.ToIndex): CmsEntryOpenSearchFieldIndex.ToValue;
|
|
9
|
+
fromIndex(params: CmsEntryOpenSearchFieldIndex.FromIndex): any;
|
|
10
|
+
private isSearchable;
|
|
11
|
+
}
|
|
12
|
+
export declare const TextEncryptedFieldIndex: typeof TextEncryptedFieldIndexImpl & {
|
|
13
|
+
__abstraction: import("@webiny/di").Abstraction<import("../abstractions/CmsEntryOpenSearchFieldIndex.js").ICmsEntryOpenSearchFieldIndex>;
|
|
14
|
+
};
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { CmsEntryOpenSearchFieldIndex } from "../abstractions/CmsEntryOpenSearchFieldIndex.js";
|
|
2
|
+
import { CmsModelFieldToGraphQLRegistry } from "@webiny/api-headless-cms/exports/api/cms/graphql.js";
|
|
3
|
+
import { TextFieldTypes } from "@webiny/api-headless-cms/features/modelBuilder/index.js";
|
|
4
|
+
class TextEncryptedFieldIndexImpl {
|
|
5
|
+
constructor(fieldRegistry){
|
|
6
|
+
this.fieldRegistry = fieldRegistry;
|
|
7
|
+
this.fieldType = TextFieldTypes.ENCRYPTED;
|
|
8
|
+
}
|
|
9
|
+
toIndex(params) {
|
|
10
|
+
const { field, value } = params;
|
|
11
|
+
const isSearchable = this.isSearchable(field);
|
|
12
|
+
if (isSearchable) return {
|
|
13
|
+
value
|
|
14
|
+
};
|
|
15
|
+
return {
|
|
16
|
+
rawValue: value
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
fromIndex(params) {
|
|
20
|
+
const { field, value, rawValue } = params;
|
|
21
|
+
const isSearchable = this.isSearchable(field);
|
|
22
|
+
if (isSearchable) return void 0 === value ? rawValue : value;
|
|
23
|
+
return void 0 === rawValue ? value : rawValue;
|
|
24
|
+
}
|
|
25
|
+
isSearchable(field) {
|
|
26
|
+
const fieldType = this.fieldRegistry.get(field.type);
|
|
27
|
+
if (!fieldType?.isSearchable) return false;
|
|
28
|
+
if (field.settings?.disableFullTextSearch === true) return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
const TextEncryptedFieldIndex = CmsEntryOpenSearchFieldIndex.createImplementation({
|
|
33
|
+
implementation: TextEncryptedFieldIndexImpl,
|
|
34
|
+
dependencies: [
|
|
35
|
+
CmsModelFieldToGraphQLRegistry
|
|
36
|
+
]
|
|
37
|
+
});
|
|
38
|
+
export { TextEncryptedFieldIndex };
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=TextEncryptedFieldIndex.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"features/CmsEntryOpenSearchFieldIndex/fields/TextEncryptedFieldIndex.js","sources":["../../../../src/features/CmsEntryOpenSearchFieldIndex/fields/TextEncryptedFieldIndex.ts"],"sourcesContent":["import { CmsEntryOpenSearchFieldIndex } from \"../abstractions/CmsEntryOpenSearchFieldIndex.js\";\nimport type { CmsModelField } from \"@webiny/api-headless-cms/types/index.js\";\nimport { CmsModelFieldToGraphQLRegistry } from \"@webiny/api-headless-cms/exports/api/cms/graphql.js\";\nimport { TextFieldTypes } from \"@webiny/api-headless-cms/features/modelBuilder/index.js\";\n\nclass TextEncryptedFieldIndexImpl implements CmsEntryOpenSearchFieldIndex.Interface {\n public readonly fieldType = TextFieldTypes.ENCRYPTED;\n\n public constructor(private readonly fieldRegistry: CmsModelFieldToGraphQLRegistry.Interface) {}\n\n public toIndex(\n params: CmsEntryOpenSearchFieldIndex.ToIndex\n ): CmsEntryOpenSearchFieldIndex.ToValue {\n const { field, value } = params;\n const isSearchable = this.isSearchable(field);\n\n if (isSearchable) {\n return { value };\n }\n\n return {\n rawValue: value\n };\n }\n\n public fromIndex(params: CmsEntryOpenSearchFieldIndex.FromIndex): any {\n const { field, value, rawValue } = params;\n const isSearchable = this.isSearchable(field);\n\n if (isSearchable) {\n return value === undefined ? rawValue : value;\n }\n return rawValue === undefined ? value : rawValue;\n }\n\n private isSearchable(field: CmsModelField): boolean {\n const fieldType = this.fieldRegistry.get(field.type);\n if (!fieldType?.isSearchable) {\n return false;\n } else if (field.settings?.disableFullTextSearch === true) {\n return false;\n }\n return true;\n }\n}\n\nexport const TextEncryptedFieldIndex = CmsEntryOpenSearchFieldIndex.createImplementation({\n implementation: TextEncryptedFieldIndexImpl,\n dependencies: [CmsModelFieldToGraphQLRegistry]\n});\n"],"names":["TextEncryptedFieldIndexImpl","fieldRegistry","TextFieldTypes","params","field","value","isSearchable","rawValue","undefined","fieldType","TextEncryptedFieldIndex","CmsEntryOpenSearchFieldIndex","CmsModelFieldToGraphQLRegistry"],"mappings":";;;AAKA,MAAMA;IAGF,YAAoCC,aAAuD,CAAE;aAAzDA,aAAa,GAAbA;aAFpB,SAAS,GAAGC,eAAe,SAAS;IAE0C;IAEvF,QACHC,MAA4C,EACR;QACpC,MAAM,EAAEC,KAAK,EAAEC,KAAK,EAAE,GAAGF;QACzB,MAAMG,eAAe,IAAI,CAAC,YAAY,CAACF;QAEvC,IAAIE,cACA,OAAO;YAAED;QAAM;QAGnB,OAAO;YACH,UAAUA;QACd;IACJ;IAEO,UAAUF,MAA8C,EAAO;QAClE,MAAM,EAAEC,KAAK,EAAEC,KAAK,EAAEE,QAAQ,EAAE,GAAGJ;QACnC,MAAMG,eAAe,IAAI,CAAC,YAAY,CAACF;QAEvC,IAAIE,cACA,OAAOD,AAAUG,WAAVH,QAAsBE,WAAWF;QAE5C,OAAOE,AAAaC,WAAbD,WAAyBF,QAAQE;IAC5C;IAEQ,aAAaH,KAAoB,EAAW;QAChD,MAAMK,YAAY,IAAI,CAAC,aAAa,CAAC,GAAG,CAACL,MAAM,IAAI;QACnD,IAAI,CAACK,WAAW,cACZ,OAAO;QACJ,IAAIL,MAAM,QAAQ,EAAE,0BAA0B,MACjD,OAAO;QAEX,OAAO;IACX;AACJ;AAEO,MAAMM,0BAA0BC,6BAA6B,oBAAoB,CAAC;IACrF,gBAAgBX;IAChB,cAAc;QAACY;KAA+B;AAClD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-headless-cms-ddb-es",
|
|
3
|
-
"version": "6.4.0-beta.
|
|
3
|
+
"version": "6.4.0-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.js",
|
|
@@ -30,32 +30,32 @@
|
|
|
30
30
|
],
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@webiny/api": "6.4.0-beta.
|
|
34
|
-
"@webiny/api-elasticsearch-tasks": "6.4.0-beta.
|
|
35
|
-
"@webiny/api-headless-cms": "6.4.0-beta.
|
|
36
|
-
"@webiny/api-opensearch": "6.4.0-beta.
|
|
37
|
-
"@webiny/aws-sdk": "6.4.0-beta.
|
|
38
|
-
"@webiny/db-dynamodb": "6.4.0-beta.
|
|
39
|
-
"@webiny/error": "6.4.0-beta.
|
|
40
|
-
"@webiny/feature": "6.4.0-beta.
|
|
41
|
-
"@webiny/handler-db": "6.4.0-beta.
|
|
42
|
-
"@webiny/plugins": "6.4.0-beta.
|
|
43
|
-
"@webiny/utils": "6.4.0-beta.
|
|
33
|
+
"@webiny/api": "6.4.0-beta.3",
|
|
34
|
+
"@webiny/api-elasticsearch-tasks": "6.4.0-beta.3",
|
|
35
|
+
"@webiny/api-headless-cms": "6.4.0-beta.3",
|
|
36
|
+
"@webiny/api-opensearch": "6.4.0-beta.3",
|
|
37
|
+
"@webiny/aws-sdk": "6.4.0-beta.3",
|
|
38
|
+
"@webiny/db-dynamodb": "6.4.0-beta.3",
|
|
39
|
+
"@webiny/error": "6.4.0-beta.3",
|
|
40
|
+
"@webiny/feature": "6.4.0-beta.3",
|
|
41
|
+
"@webiny/handler-db": "6.4.0-beta.3",
|
|
42
|
+
"@webiny/plugins": "6.4.0-beta.3",
|
|
43
|
+
"@webiny/utils": "6.4.0-beta.3",
|
|
44
44
|
"dataloader": "2.2.3",
|
|
45
45
|
"lodash": "4.18.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/jsonpack": "1.1.6",
|
|
49
|
-
"@webiny/api-core": "6.4.0-beta.
|
|
50
|
-
"@webiny/api-dynamodb-to-elasticsearch": "6.4.0-beta.
|
|
51
|
-
"@webiny/build-tools": "6.4.0-beta.
|
|
49
|
+
"@webiny/api-core": "6.4.0-beta.3",
|
|
50
|
+
"@webiny/api-dynamodb-to-elasticsearch": "6.4.0-beta.3",
|
|
51
|
+
"@webiny/build-tools": "6.4.0-beta.3",
|
|
52
52
|
"@webiny/di": "1.0.1",
|
|
53
|
-
"@webiny/handler": "6.4.0-beta.
|
|
54
|
-
"@webiny/handler-aws": "6.4.0-beta.
|
|
55
|
-
"@webiny/handler-graphql": "6.4.0-beta.
|
|
56
|
-
"@webiny/project-utils": "6.4.0-beta.
|
|
57
|
-
"@webiny/tasks": "6.4.0-beta.
|
|
58
|
-
"@webiny/wcp": "6.4.0-beta.
|
|
53
|
+
"@webiny/handler": "6.4.0-beta.3",
|
|
54
|
+
"@webiny/handler-aws": "6.4.0-beta.3",
|
|
55
|
+
"@webiny/handler-graphql": "6.4.0-beta.3",
|
|
56
|
+
"@webiny/project-utils": "6.4.0-beta.3",
|
|
57
|
+
"@webiny/tasks": "6.4.0-beta.3",
|
|
58
|
+
"@webiny/wcp": "6.4.0-beta.3",
|
|
59
59
|
"jest-dynalite": "3.6.1",
|
|
60
60
|
"rimraf": "6.1.3",
|
|
61
61
|
"typescript": "6.0.3",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"access": "public",
|
|
66
66
|
"directory": "dist"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "2e58681d4344024bfb60e6180338e2f154ec87f0"
|
|
69
69
|
}
|