@webiny/api-headless-cms-ddb 0.0.0-unstable.40876133bb → 0.0.0-unstable.496cf268ac

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 (122) hide show
  1. package/definitions/entry.js +3 -5
  2. package/definitions/entry.js.map +1 -1
  3. package/definitions/group.js +0 -5
  4. package/definitions/group.js.map +1 -1
  5. package/definitions/model.js +22 -5
  6. package/definitions/model.js.map +1 -1
  7. package/definitions/settings.js +0 -5
  8. package/definitions/settings.js.map +1 -1
  9. package/definitions/system.js +0 -5
  10. package/definitions/system.js.map +1 -1
  11. package/definitions/table.js +0 -3
  12. package/definitions/table.js.map +1 -1
  13. package/dynamoDb/index.d.ts +1 -1
  14. package/dynamoDb/index.js +0 -7
  15. package/dynamoDb/index.js.map +1 -1
  16. package/dynamoDb/path/plainObject.js +1 -8
  17. package/dynamoDb/path/plainObject.js.map +1 -1
  18. package/dynamoDb/storage/date.d.ts +2 -1
  19. package/dynamoDb/storage/date.js +11 -19
  20. package/dynamoDb/storage/date.js.map +1 -1
  21. package/dynamoDb/storage/longText.d.ts +1 -1
  22. package/dynamoDb/storage/longText.js +7 -17
  23. package/dynamoDb/storage/longText.js.map +1 -1
  24. package/dynamoDb/storage/richText.d.ts +1 -1
  25. package/dynamoDb/storage/richText.js +0 -18
  26. package/dynamoDb/storage/richText.js.map +1 -1
  27. package/dynamoDb/transformValue/datetime.js +1 -8
  28. package/dynamoDb/transformValue/datetime.js.map +1 -1
  29. package/index.js +15 -27
  30. package/index.js.map +1 -1
  31. package/operations/entry/dataLoaders.js +1 -44
  32. package/operations/entry/dataLoaders.js.map +1 -1
  33. package/operations/entry/filtering/createExpressions.d.ts +26 -0
  34. package/operations/entry/filtering/createExpressions.js +176 -0
  35. package/operations/entry/filtering/createExpressions.js.map +1 -0
  36. package/operations/entry/filtering/createFields.d.ts +14 -0
  37. package/operations/entry/filtering/createFields.js +105 -0
  38. package/operations/entry/filtering/createFields.js.map +1 -0
  39. package/operations/entry/filtering/extractSort.d.ts +17 -0
  40. package/operations/entry/filtering/extractSort.js +67 -0
  41. package/operations/entry/filtering/extractSort.js.map +1 -0
  42. package/operations/entry/filtering/filter.d.ts +15 -0
  43. package/operations/entry/filtering/filter.js +143 -0
  44. package/operations/entry/filtering/filter.js.map +1 -0
  45. package/operations/entry/filtering/fullTextSearch.d.ts +14 -0
  46. package/operations/entry/filtering/fullTextSearch.js +48 -0
  47. package/operations/entry/filtering/fullTextSearch.js.map +1 -0
  48. package/operations/entry/filtering/getValue.d.ts +5 -0
  49. package/operations/entry/filtering/getValue.js +63 -0
  50. package/operations/entry/filtering/getValue.js.map +1 -0
  51. package/operations/entry/filtering/index.d.ts +2 -0
  52. package/operations/entry/filtering/index.js +19 -0
  53. package/operations/entry/filtering/index.js.map +1 -0
  54. package/operations/entry/filtering/mapPlugins.d.ts +8 -0
  55. package/operations/entry/filtering/mapPlugins.js +31 -0
  56. package/operations/entry/filtering/mapPlugins.js.map +1 -0
  57. package/operations/entry/filtering/plugins/defaultFilterCreate.d.ts +2 -0
  58. package/operations/entry/filtering/plugins/defaultFilterCreate.js +41 -0
  59. package/operations/entry/filtering/plugins/defaultFilterCreate.js.map +1 -0
  60. package/operations/entry/filtering/plugins/index.d.ts +1 -0
  61. package/operations/entry/filtering/plugins/index.js +13 -0
  62. package/operations/entry/filtering/plugins/index.js.map +1 -0
  63. package/operations/entry/filtering/plugins/objectFilterCreate.d.ts +2 -0
  64. package/operations/entry/filtering/plugins/objectFilterCreate.js +86 -0
  65. package/operations/entry/filtering/plugins/objectFilterCreate.js.map +1 -0
  66. package/operations/entry/filtering/plugins/refFilterCreate.d.ts +2 -0
  67. package/operations/entry/filtering/plugins/refFilterCreate.js +71 -0
  68. package/operations/entry/filtering/plugins/refFilterCreate.js.map +1 -0
  69. package/operations/entry/filtering/sort.d.ts +12 -0
  70. package/operations/entry/filtering/sort.js +69 -0
  71. package/operations/entry/filtering/sort.js.map +1 -0
  72. package/operations/entry/filtering/systemFields.d.ts +4 -0
  73. package/operations/entry/filtering/systemFields.js +70 -0
  74. package/operations/entry/filtering/systemFields.js.map +1 -0
  75. package/operations/entry/filtering/transform.d.ts +6 -0
  76. package/operations/entry/filtering/transform.js +16 -0
  77. package/operations/entry/filtering/transform.js.map +1 -0
  78. package/operations/entry/filtering/types.d.ts +40 -0
  79. package/operations/entry/filtering/types.js +5 -0
  80. package/operations/entry/filtering/types.js.map +1 -0
  81. package/operations/entry/filtering/values.d.ts +2 -0
  82. package/operations/entry/filtering/values.js +22 -0
  83. package/operations/entry/filtering/values.js.map +1 -0
  84. package/operations/entry/filtering/where.d.ts +5 -0
  85. package/operations/entry/filtering/where.js +32 -0
  86. package/operations/entry/filtering/where.js.map +1 -0
  87. package/operations/entry/index.js +37 -107
  88. package/operations/entry/index.js.map +1 -1
  89. package/operations/entry/keys.js +0 -18
  90. package/operations/entry/keys.js.map +1 -1
  91. package/operations/entry/systemFields.js +0 -2
  92. package/operations/entry/systemFields.js.map +1 -1
  93. package/operations/group/index.js +2 -32
  94. package/operations/group/index.js.map +1 -1
  95. package/operations/model/index.js +0 -25
  96. package/operations/model/index.js.map +1 -1
  97. package/operations/settings/index.js +0 -24
  98. package/operations/settings/index.js.map +1 -1
  99. package/operations/system/index.js +0 -17
  100. package/operations/system/index.js.map +1 -1
  101. package/package.json +13 -13
  102. package/plugins/CmsEntryFieldFilterPathPlugin.d.ts +2 -2
  103. package/plugins/CmsEntryFieldFilterPathPlugin.js +0 -14
  104. package/plugins/CmsEntryFieldFilterPathPlugin.js.map +1 -1
  105. package/plugins/CmsEntryFieldFilterPlugin.d.ts +43 -0
  106. package/plugins/CmsEntryFieldFilterPlugin.js +24 -0
  107. package/plugins/CmsEntryFieldFilterPlugin.js.map +1 -0
  108. package/plugins/CmsEntryFieldSortingPlugin.d.ts +42 -0
  109. package/plugins/CmsEntryFieldSortingPlugin.js +28 -0
  110. package/plugins/CmsEntryFieldSortingPlugin.js.map +1 -0
  111. package/plugins/CmsFieldFilterValueTransformPlugin.d.ts +11 -0
  112. package/plugins/CmsFieldFilterValueTransformPlugin.js +24 -0
  113. package/plugins/CmsFieldFilterValueTransformPlugin.js.map +1 -0
  114. package/plugins/index.d.ts +3 -0
  115. package/plugins/index.js +33 -2
  116. package/plugins/index.js.map +1 -1
  117. package/types.d.ts +1 -1
  118. package/types.js +0 -1
  119. package/types.js.map +1 -1
  120. package/operations/entry/utils.d.ts +0 -36
  121. package/operations/entry/utils.js +0 -680
  122. package/operations/entry/utils.js.map +0 -1
@@ -0,0 +1,43 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { ValueFilterPlugin } from "@webiny/db-dynamodb/plugins/definitions/ValueFilterPlugin";
3
+ import { Field } from "../operations/entry/filtering/types";
4
+ import { CmsFieldFilterValueTransformPlugin } from "../types";
5
+ /**
6
+ * This plugin is used to create the filter.
7
+ * Internally we have default one + the one for the reference field - because it is actually an object when filtering.
8
+ */
9
+ interface CmsEntryFieldFilterPluginParams {
10
+ fieldType: string;
11
+ create: (params: CmsEntryFieldFilterPluginCreateParams) => null | CmsEntryFieldFilterPluginCreateResponse | CmsEntryFieldFilterPluginCreateResponse[];
12
+ }
13
+ interface CmsEntryFieldFilterPluginCreateParams {
14
+ key: string;
15
+ value: any;
16
+ field: Field;
17
+ fields: Record<string, Field>;
18
+ operation: string;
19
+ valueFilterPlugins: Record<string, ValueFilterPlugin>;
20
+ transformValuePlugins: Record<string, CmsFieldFilterValueTransformPlugin>;
21
+ getFilterCreatePlugin: (type: string) => CmsEntryFieldFilterPlugin;
22
+ negate: boolean;
23
+ compareValue: any;
24
+ transformValue: <I = any, O = any>(value: I) => O;
25
+ }
26
+ export interface CmsEntryFieldFilterPluginCreateResponse {
27
+ field: Field;
28
+ path: string;
29
+ fieldPathId: string;
30
+ plugin: ValueFilterPlugin;
31
+ negate: boolean;
32
+ compareValue: any;
33
+ transformValue: <I = any, O = any>(value: I) => O;
34
+ }
35
+ export declare class CmsEntryFieldFilterPlugin extends Plugin {
36
+ static readonly type: string;
37
+ static readonly ALL: string;
38
+ private readonly config;
39
+ readonly fieldType: string;
40
+ constructor(config: CmsEntryFieldFilterPluginParams);
41
+ create(params: CmsEntryFieldFilterPluginCreateParams): CmsEntryFieldFilterPluginCreateResponse | CmsEntryFieldFilterPluginCreateResponse[] | null;
42
+ }
43
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.CmsEntryFieldFilterPlugin = void 0;
8
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
+ var _plugins = require("@webiny/plugins");
10
+ class CmsEntryFieldFilterPlugin extends _plugins.Plugin {
11
+ constructor(config) {
12
+ super();
13
+ (0, _defineProperty2.default)(this, "config", void 0);
14
+ (0, _defineProperty2.default)(this, "fieldType", void 0);
15
+ this.config = config;
16
+ this.fieldType = this.config.fieldType;
17
+ }
18
+ create(params) {
19
+ return this.config.create(params);
20
+ }
21
+ }
22
+ exports.CmsEntryFieldFilterPlugin = CmsEntryFieldFilterPlugin;
23
+ (0, _defineProperty2.default)(CmsEntryFieldFilterPlugin, "type", "cms.dynamodb.entry.field.filter");
24
+ (0, _defineProperty2.default)(CmsEntryFieldFilterPlugin, "ALL", "*");
@@ -0,0 +1 @@
1
+ {"version":3,"names":["CmsEntryFieldFilterPlugin","Plugin","constructor","config","fieldType","create","params"],"sources":["CmsEntryFieldFilterPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport { ValueFilterPlugin } from \"@webiny/db-dynamodb/plugins/definitions/ValueFilterPlugin\";\nimport { Field } from \"~/operations/entry/filtering/types\";\nimport { CmsFieldFilterValueTransformPlugin } from \"~/types\";\n\n/**\n * This plugin is used to create the filter.\n * Internally we have default one + the one for the reference field - because it is actually an object when filtering.\n */\n\ninterface CmsEntryFieldFilterPluginParams {\n fieldType: string;\n create: (\n params: CmsEntryFieldFilterPluginCreateParams\n ) => null | CmsEntryFieldFilterPluginCreateResponse | CmsEntryFieldFilterPluginCreateResponse[];\n}\n\ninterface CmsEntryFieldFilterPluginCreateParams {\n key: string;\n value: any;\n field: Field;\n fields: Record<string, Field>;\n operation: string;\n valueFilterPlugins: Record<string, ValueFilterPlugin>;\n transformValuePlugins: Record<string, CmsFieldFilterValueTransformPlugin>;\n getFilterCreatePlugin: (type: string) => CmsEntryFieldFilterPlugin;\n negate: boolean;\n compareValue: any;\n transformValue: <I = any, O = any>(value: I) => O;\n}\n\nexport interface CmsEntryFieldFilterPluginCreateResponse {\n field: Field;\n path: string;\n fieldPathId: string;\n plugin: ValueFilterPlugin;\n negate: boolean;\n compareValue: any;\n transformValue: <I = any, O = any>(value: I) => O;\n}\n\nexport class CmsEntryFieldFilterPlugin extends Plugin {\n public static override readonly type: string = \"cms.dynamodb.entry.field.filter\";\n public static readonly ALL: string = \"*\";\n\n private readonly config: CmsEntryFieldFilterPluginParams;\n\n public readonly fieldType: string;\n\n public constructor(config: CmsEntryFieldFilterPluginParams) {\n super();\n this.config = config;\n this.fieldType = this.config.fieldType;\n }\n\n public create(params: CmsEntryFieldFilterPluginCreateParams) {\n return this.config.create(params);\n }\n}\n"],"mappings":";;;;;;;;AAAA;AAyCO,MAAMA,yBAAyB,SAASC,eAAM,CAAC;EAQ3CC,WAAW,CAACC,MAAuC,EAAE;IACxD,KAAK,EAAE;IAAC;IAAA;IACR,IAAI,CAACA,MAAM,GAAGA,MAAM;IACpB,IAAI,CAACC,SAAS,GAAG,IAAI,CAACD,MAAM,CAACC,SAAS;EAC1C;EAEOC,MAAM,CAACC,MAA6C,EAAE;IACzD,OAAO,IAAI,CAACH,MAAM,CAACE,MAAM,CAACC,MAAM,CAAC;EACrC;AACJ;AAAC;AAAA,8BAjBYN,yBAAyB,UACa,iCAAiC;AAAA,8BADvEA,yBAAyB,SAEG,GAAG"}
@@ -0,0 +1,42 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { Field } from "../operations/entry/filtering/types";
3
+ import { CmsModel } from "@webiny/api-headless-cms/types";
4
+ interface CmsEntryFieldSortingPluginCanUseParams {
5
+ model: CmsModel;
6
+ field?: Field;
7
+ fieldId: string;
8
+ order: "ASC" | "DESC";
9
+ /**
10
+ * Combination of fieldId and sortBy
11
+ *
12
+ * example: id_ASC or createdBy_DESC
13
+ */
14
+ sortBy: string;
15
+ }
16
+ interface CmsEntryFieldSortingPluginCreateSortParams {
17
+ model: CmsModel;
18
+ fieldId: string;
19
+ order: "ASC" | "DESC";
20
+ sortBy: string;
21
+ fields: Record<string, Field>;
22
+ field?: Field;
23
+ }
24
+ interface CmsEntryFieldSortingPluginCreateSortResult {
25
+ valuePath: string;
26
+ reverse: boolean;
27
+ fieldId: string;
28
+ field: Field;
29
+ }
30
+ interface CmsEntryFieldSortingPluginConfig {
31
+ createSort: (params: CmsEntryFieldSortingPluginCreateSortParams) => CmsEntryFieldSortingPluginCreateSortResult;
32
+ canUse: (params: CmsEntryFieldSortingPluginCanUseParams) => boolean;
33
+ }
34
+ export declare class CmsEntryFieldSortingPlugin extends Plugin {
35
+ static readonly type: string;
36
+ private readonly config;
37
+ constructor(config: CmsEntryFieldSortingPluginConfig);
38
+ canUse(params: CmsEntryFieldSortingPluginCanUseParams): boolean;
39
+ createSort(params: CmsEntryFieldSortingPluginCreateSortParams): CmsEntryFieldSortingPluginCreateSortResult;
40
+ }
41
+ export declare const createCmsEntryFieldSortingPlugin: (config: CmsEntryFieldSortingPluginConfig) => CmsEntryFieldSortingPlugin;
42
+ export {};
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.createCmsEntryFieldSortingPlugin = exports.CmsEntryFieldSortingPlugin = void 0;
8
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
+ var _plugins = require("@webiny/plugins");
10
+ class CmsEntryFieldSortingPlugin extends _plugins.Plugin {
11
+ constructor(config) {
12
+ super();
13
+ (0, _defineProperty2.default)(this, "config", void 0);
14
+ this.config = config;
15
+ }
16
+ canUse(params) {
17
+ return this.config.canUse(params);
18
+ }
19
+ createSort(params) {
20
+ return this.config.createSort(params);
21
+ }
22
+ }
23
+ exports.CmsEntryFieldSortingPlugin = CmsEntryFieldSortingPlugin;
24
+ (0, _defineProperty2.default)(CmsEntryFieldSortingPlugin, "type", "cms.entry.field.sorting");
25
+ const createCmsEntryFieldSortingPlugin = config => {
26
+ return new CmsEntryFieldSortingPlugin(config);
27
+ };
28
+ exports.createCmsEntryFieldSortingPlugin = createCmsEntryFieldSortingPlugin;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["CmsEntryFieldSortingPlugin","Plugin","constructor","config","canUse","params","createSort","createCmsEntryFieldSortingPlugin"],"sources":["CmsEntryFieldSortingPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport { Field } from \"~/operations/entry/filtering/types\";\nimport { CmsModel } from \"@webiny/api-headless-cms/types\";\n\ninterface CmsEntryFieldSortingPluginCanUseParams {\n model: CmsModel;\n field?: Field;\n fieldId: string;\n order: \"ASC\" | \"DESC\";\n /**\n * Combination of fieldId and sortBy\n *\n * example: id_ASC or createdBy_DESC\n */\n sortBy: string;\n}\n\ninterface CmsEntryFieldSortingPluginCreateSortParams {\n model: CmsModel;\n fieldId: string;\n order: \"ASC\" | \"DESC\";\n sortBy: string;\n fields: Record<string, Field>;\n field?: Field;\n}\n\ninterface CmsEntryFieldSortingPluginCreateSortResult {\n valuePath: string;\n reverse: boolean;\n fieldId: string;\n field: Field;\n}\n\ninterface CmsEntryFieldSortingPluginConfig {\n createSort: (\n params: CmsEntryFieldSortingPluginCreateSortParams\n ) => CmsEntryFieldSortingPluginCreateSortResult;\n canUse: (params: CmsEntryFieldSortingPluginCanUseParams) => boolean;\n}\n\nexport class CmsEntryFieldSortingPlugin extends Plugin {\n public static override readonly type: string = \"cms.entry.field.sorting\";\n private readonly config: CmsEntryFieldSortingPluginConfig;\n\n public constructor(config: CmsEntryFieldSortingPluginConfig) {\n super();\n this.config = config;\n }\n\n public canUse(params: CmsEntryFieldSortingPluginCanUseParams): boolean {\n return this.config.canUse(params);\n }\n\n public createSort(\n params: CmsEntryFieldSortingPluginCreateSortParams\n ): CmsEntryFieldSortingPluginCreateSortResult {\n return this.config.createSort(params);\n }\n}\n\nexport const createCmsEntryFieldSortingPlugin = (config: CmsEntryFieldSortingPluginConfig) => {\n return new CmsEntryFieldSortingPlugin(config);\n};\n"],"mappings":";;;;;;;;AAAA;AAwCO,MAAMA,0BAA0B,SAASC,eAAM,CAAC;EAI5CC,WAAW,CAACC,MAAwC,EAAE;IACzD,KAAK,EAAE;IAAC;IACR,IAAI,CAACA,MAAM,GAAGA,MAAM;EACxB;EAEOC,MAAM,CAACC,MAA8C,EAAW;IACnE,OAAO,IAAI,CAACF,MAAM,CAACC,MAAM,CAACC,MAAM,CAAC;EACrC;EAEOC,UAAU,CACbD,MAAkD,EACR;IAC1C,OAAO,IAAI,CAACF,MAAM,CAACG,UAAU,CAACD,MAAM,CAAC;EACzC;AACJ;AAAC;AAAA,8BAlBYL,0BAA0B,UACY,yBAAyB;AAmBrE,MAAMO,gCAAgC,GAAIJ,MAAwC,IAAK;EAC1F,OAAO,IAAIH,0BAA0B,CAACG,MAAM,CAAC;AACjD,CAAC;AAAC"}
@@ -0,0 +1,11 @@
1
+ import { Plugin } from "@webiny/plugins";
2
+ import { CmsFieldFilterValueTransformPlugin as CmsFieldFilterValueTransformPluginInterface } from "../types";
3
+ declare type CmsFieldFilterValueTransformPluginParams = Omit<CmsFieldFilterValueTransformPluginInterface, "type">;
4
+ export declare class CmsFieldFilterValueTransformPlugin extends Plugin implements Omit<CmsFieldFilterValueTransformPluginInterface, "type"> {
5
+ static type: string;
6
+ private config;
7
+ get fieldType(): string;
8
+ get transform(): CmsFieldFilterValueTransformPluginParams["transform"];
9
+ constructor(config: CmsFieldFilterValueTransformPluginParams);
10
+ }
11
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.CmsFieldFilterValueTransformPlugin = void 0;
8
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
+ var _plugins = require("@webiny/plugins");
10
+ class CmsFieldFilterValueTransformPlugin extends _plugins.Plugin {
11
+ get fieldType() {
12
+ return this.config.fieldType;
13
+ }
14
+ get transform() {
15
+ return this.config.transform;
16
+ }
17
+ constructor(config) {
18
+ super();
19
+ (0, _defineProperty2.default)(this, "config", void 0);
20
+ this.config = config;
21
+ }
22
+ }
23
+ exports.CmsFieldFilterValueTransformPlugin = CmsFieldFilterValueTransformPlugin;
24
+ (0, _defineProperty2.default)(CmsFieldFilterValueTransformPlugin, "type", "cms-field-filter-value-transform");
@@ -0,0 +1 @@
1
+ {"version":3,"names":["CmsFieldFilterValueTransformPlugin","Plugin","fieldType","config","transform","constructor"],"sources":["CmsFieldFilterValueTransformPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport { CmsFieldFilterValueTransformPlugin as CmsFieldFilterValueTransformPluginInterface } from \"~/types\";\n\ntype CmsFieldFilterValueTransformPluginParams = Omit<\n CmsFieldFilterValueTransformPluginInterface,\n \"type\"\n>;\nexport class CmsFieldFilterValueTransformPlugin\n extends Plugin\n implements Omit<CmsFieldFilterValueTransformPluginInterface, \"type\">\n{\n public static override type = \"cms-field-filter-value-transform\";\n\n private config: CmsFieldFilterValueTransformPluginParams;\n\n public get fieldType(): string {\n return this.config.fieldType;\n }\n\n public get transform(): CmsFieldFilterValueTransformPluginParams[\"transform\"] {\n return this.config.transform;\n }\n\n public constructor(config: CmsFieldFilterValueTransformPluginParams) {\n super();\n this.config = config;\n }\n}\n"],"mappings":";;;;;;;;AAAA;AAOO,MAAMA,kCAAkC,SACnCC,eAAM,CAElB;EAKI,IAAWC,SAAS,GAAW;IAC3B,OAAO,IAAI,CAACC,MAAM,CAACD,SAAS;EAChC;EAEA,IAAWE,SAAS,GAA0D;IAC1E,OAAO,IAAI,CAACD,MAAM,CAACC,SAAS;EAChC;EAEOC,WAAW,CAACF,MAAgD,EAAE;IACjE,KAAK,EAAE;IAAC;IACR,IAAI,CAACA,MAAM,GAAGA,MAAM;EACxB;AACJ;AAAC;AAAA,8BApBYH,kCAAkC,UAIb,kCAAkC"}
@@ -1 +1,4 @@
1
1
  export * from "./CmsEntryFieldFilterPathPlugin";
2
+ export * from "./CmsEntryFieldSortingPlugin";
3
+ export * from "./CmsEntryFieldFilterPlugin";
4
+ export * from "./CmsFieldFilterValueTransformPlugin";
package/plugins/index.js CHANGED
@@ -3,9 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
-
7
6
  var _CmsEntryFieldFilterPathPlugin = require("./CmsEntryFieldFilterPathPlugin");
8
-
9
7
  Object.keys(_CmsEntryFieldFilterPathPlugin).forEach(function (key) {
10
8
  if (key === "default" || key === "__esModule") return;
11
9
  if (key in exports && exports[key] === _CmsEntryFieldFilterPathPlugin[key]) return;
@@ -15,4 +13,37 @@ Object.keys(_CmsEntryFieldFilterPathPlugin).forEach(function (key) {
15
13
  return _CmsEntryFieldFilterPathPlugin[key];
16
14
  }
17
15
  });
16
+ });
17
+ var _CmsEntryFieldSortingPlugin = require("./CmsEntryFieldSortingPlugin");
18
+ Object.keys(_CmsEntryFieldSortingPlugin).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _CmsEntryFieldSortingPlugin[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _CmsEntryFieldSortingPlugin[key];
25
+ }
26
+ });
27
+ });
28
+ var _CmsEntryFieldFilterPlugin = require("./CmsEntryFieldFilterPlugin");
29
+ Object.keys(_CmsEntryFieldFilterPlugin).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _CmsEntryFieldFilterPlugin[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function () {
35
+ return _CmsEntryFieldFilterPlugin[key];
36
+ }
37
+ });
38
+ });
39
+ var _CmsFieldFilterValueTransformPlugin = require("./CmsFieldFilterValueTransformPlugin");
40
+ Object.keys(_CmsFieldFilterValueTransformPlugin).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _CmsFieldFilterValueTransformPlugin[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function () {
46
+ return _CmsFieldFilterValueTransformPlugin[key];
47
+ }
48
+ });
18
49
  });
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CmsEntryFieldFilterPathPlugin\";\n"],"mappings":";;;;;;AAAA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA"}
1
+ {"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CmsEntryFieldFilterPathPlugin\";\nexport * from \"./CmsEntryFieldSortingPlugin\";\nexport * from \"./CmsEntryFieldFilterPlugin\";\nexport * from \"./CmsFieldFilterValueTransformPlugin\";\n"],"mappings":";;;;;AAAA;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA"}
package/types.d.ts CHANGED
@@ -8,7 +8,7 @@ interface CmsFieldFilterValueTransformParams {
8
8
  /**
9
9
  * A field which value we are transforming.
10
10
  */
11
- field: CmsModelField;
11
+ field: Partial<CmsModelField> & Pick<CmsModelField, "id" | "storageId" | "fieldId" | "settings">;
12
12
  value: any;
13
13
  }
14
14
  export interface CmsFieldFilterValueTransformPlugin extends Plugin {
package/types.js CHANGED
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.ENTITIES = void 0;
7
7
  let ENTITIES;
8
8
  exports.ENTITIES = ENTITIES;
9
-
10
9
  (function (ENTITIES) {
11
10
  ENTITIES["SYSTEM"] = "CmsSystem";
12
11
  ENTITIES["SETTINGS"] = "CmsSettings";
package/types.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["ENTITIES"],"sources":["types.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins/types\";\nimport {\n CmsModelField,\n HeadlessCmsStorageOperations as BaseHeadlessCmsStorageOperations\n} from \"@webiny/api-headless-cms/types\";\nimport { DynamoDBTypes, TableConstructor } from \"dynamodb-toolbox/dist/classes/Table\";\nimport {\n EntityAttributeConfig,\n EntityCompositeAttributes\n} from \"dynamodb-toolbox/dist/classes/Entity\";\nimport { DocumentClient } from \"aws-sdk/clients/dynamodb\";\nimport { Entity, Table } from \"dynamodb-toolbox\";\n\ninterface CmsFieldFilterValueTransformParams {\n /**\n * A field which value we are transforming.\n */\n field: CmsModelField;\n value: any;\n}\n\nexport interface CmsFieldFilterValueTransformPlugin extends Plugin {\n /**\n * A plugin type.\n */\n type: \"cms-field-filter-value-transform\";\n /**\n * A field type this plugin is for.\n */\n fieldType: string;\n /**\n * Transform method which expect field definition and value to transform.\n */\n transform: (params: CmsFieldFilterValueTransformParams) => any;\n}\n\nexport type AttributeDefinition = DynamoDBTypes | EntityAttributeConfig | EntityCompositeAttributes;\n\nexport type Attributes = Record<string, AttributeDefinition>;\n\nexport enum ENTITIES {\n SYSTEM = \"CmsSystem\",\n SETTINGS = \"CmsSettings\",\n GROUPS = \"CmsGroups\",\n MODELS = \"CmsModels\",\n ENTRIES = \"CmsEntries\"\n}\n\nexport interface TableModifier {\n (table: TableConstructor): TableConstructor;\n}\n\nexport interface StorageOperationsFactoryParams {\n documentClient: DocumentClient;\n table?: TableModifier;\n attributes?: Record<ENTITIES, Attributes>;\n plugins?: Plugin[] | Plugin[][];\n}\n\nexport interface HeadlessCmsStorageOperations extends BaseHeadlessCmsStorageOperations {\n getTable: () => Table;\n getEntities: () => Record<\"system\" | \"settings\" | \"groups\" | \"models\" | \"entries\", Entity<any>>;\n}\n\nexport interface StorageOperationsFactory {\n (params: StorageOperationsFactoryParams): HeadlessCmsStorageOperations;\n}\n"],"mappings":";;;;;;IAwCYA,Q;;;WAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,wBAAAA,Q"}
1
+ {"version":3,"names":["ENTITIES"],"sources":["types.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins/types\";\nimport {\n CmsModelField,\n HeadlessCmsStorageOperations as BaseHeadlessCmsStorageOperations\n} from \"@webiny/api-headless-cms/types\";\nimport { DynamoDBTypes, TableConstructor } from \"dynamodb-toolbox/dist/classes/Table\";\nimport {\n EntityAttributeConfig,\n EntityCompositeAttributes\n} from \"dynamodb-toolbox/dist/classes/Entity\";\nimport { DocumentClient } from \"aws-sdk/clients/dynamodb\";\nimport { Entity, Table } from \"dynamodb-toolbox\";\n\ninterface CmsFieldFilterValueTransformParams {\n /**\n * A field which value we are transforming.\n */\n field: Partial<CmsModelField> &\n Pick<CmsModelField, \"id\" | \"storageId\" | \"fieldId\" | \"settings\">;\n value: any;\n}\n\nexport interface CmsFieldFilterValueTransformPlugin extends Plugin {\n /**\n * A plugin type.\n */\n type: \"cms-field-filter-value-transform\";\n /**\n * A field type this plugin is for.\n */\n fieldType: string;\n /**\n * Transform method which expect field definition and value to transform.\n */\n transform: (params: CmsFieldFilterValueTransformParams) => any;\n}\n\nexport type AttributeDefinition = DynamoDBTypes | EntityAttributeConfig | EntityCompositeAttributes;\n\nexport type Attributes = Record<string, AttributeDefinition>;\n\nexport enum ENTITIES {\n SYSTEM = \"CmsSystem\",\n SETTINGS = \"CmsSettings\",\n GROUPS = \"CmsGroups\",\n MODELS = \"CmsModels\",\n ENTRIES = \"CmsEntries\"\n}\n\nexport interface TableModifier {\n (table: TableConstructor): TableConstructor;\n}\n\nexport interface StorageOperationsFactoryParams {\n documentClient: DocumentClient;\n table?: TableModifier;\n attributes?: Record<ENTITIES, Attributes>;\n plugins?: Plugin[] | Plugin[][];\n}\n\nexport interface HeadlessCmsStorageOperations extends BaseHeadlessCmsStorageOperations {\n getTable: () => Table;\n getEntities: () => Record<\"system\" | \"settings\" | \"groups\" | \"models\" | \"entries\", Entity<any>>;\n}\n\nexport interface StorageOperationsFactory {\n (params: StorageOperationsFactoryParams): HeadlessCmsStorageOperations;\n}\n"],"mappings":";;;;;;IAyCYA,QAAQ;AAAA;AAAA,WAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;AAAA,GAARA,QAAQ,wBAARA,QAAQ"}
@@ -1,36 +0,0 @@
1
- import { CmsEntry, CmsEntryListWhere, CmsModel, CmsModelField } from "@webiny/api-headless-cms/types";
2
- import { PluginsContainer } from "@webiny/plugins";
3
- import { CreatePathCallable as CmsEntryFieldFieldCreatePathCallable } from "../../plugins/CmsEntryFieldFilterPathPlugin";
4
- interface ModelField {
5
- def: CmsModelField;
6
- valueTransformer: (value: any) => any;
7
- createPath: CmsEntryFieldFieldCreatePathCallable;
8
- isSystemField?: boolean;
9
- }
10
- declare type ModelFieldRecords = Record<string, ModelField>;
11
- export interface FilterItemFromStorage {
12
- <T = any>(field: CmsModelField, value: any): Promise<T>;
13
- }
14
- interface FilterItemsParams {
15
- items: CmsEntry[];
16
- where: Partial<CmsEntryListWhere>;
17
- plugins: PluginsContainer;
18
- fields: ModelFieldRecords;
19
- fromStorage: FilterItemFromStorage;
20
- fullTextSearch?: {
21
- term?: string;
22
- fields?: string[];
23
- };
24
- }
25
- export declare const filterItems: (params: FilterItemsParams) => Promise<CmsEntry[]>;
26
- interface SortEntryItemsArgs {
27
- items: CmsEntry[];
28
- sort?: string[];
29
- fields: ModelFieldRecords;
30
- }
31
- export declare const sortEntryItems: (params: SortEntryItemsArgs) => CmsEntry[];
32
- export declare const buildModelFields: ({ plugins, model }: {
33
- plugins: PluginsContainer;
34
- model: CmsModel;
35
- }) => ModelFieldRecords;
36
- export {};