@futdevpro/fsm-dynamo 1.10.6 → 1.10.8

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.
@@ -0,0 +1,12 @@
1
+ /**
2
+ * basic Http Call Types such as;
3
+ * get, post, put, patch, delete
4
+ */
5
+ export declare enum DyFM_HttpCallType {
6
+ get = "get",
7
+ post = "post",
8
+ put = "put",
9
+ patch = "patch",
10
+ delete = "delete"
11
+ }
12
+ //# sourceMappingURL=http-call-type.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"http-call-type.enum.d.ts","sourceRoot":"","sources":["../../src/_enums/http-call-type.enum.ts"],"names":[],"mappings":"AACA;;;GAGG;AACH,oBAAY,iBAAiB;IAC3B,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,MAAM,WAAW;CAClB"}
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DyFM_HttpCallType = void 0;
4
+ /**
5
+ * basic Http Call Types such as;
6
+ * get, post, put, patch, delete
7
+ */
8
+ var DyFM_HttpCallType;
9
+ (function (DyFM_HttpCallType) {
10
+ DyFM_HttpCallType["get"] = "get";
11
+ DyFM_HttpCallType["post"] = "post";
12
+ DyFM_HttpCallType["put"] = "put";
13
+ DyFM_HttpCallType["patch"] = "patch";
14
+ DyFM_HttpCallType["delete"] = "delete";
15
+ })(DyFM_HttpCallType || (exports.DyFM_HttpCallType = DyFM_HttpCallType = {}));
16
+ //# sourceMappingURL=http-call-type.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"http-call-type.enum.js","sourceRoot":"","sources":["../../src/_enums/http-call-type.enum.ts"],"names":[],"mappings":";;;AACA;;;GAGG;AACH,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC3B,gCAAW,CAAA;IACX,kCAAa,CAAA;IACb,gCAAW,CAAA;IACX,oCAAe,CAAA;IACf,sCAAiB,CAAA;AACnB,CAAC,EANW,iBAAiB,iCAAjB,iBAAiB,QAM5B"}
@@ -0,0 +1,7 @@
1
+ export declare enum DyFM_HttpResponseType {
2
+ arraybuffer = "arraybuffer",
3
+ blob = "blob",
4
+ json = "json",
5
+ text = "text"
6
+ }
7
+ //# sourceMappingURL=http-response-type.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"http-response-type.enum.d.ts","sourceRoot":"","sources":["../../src/_enums/http-response-type.enum.ts"],"names":[],"mappings":"AACA,oBAAY,qBAAqB;IAC/B,WAAW,gBAAgB;IAC3B,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DyFM_HttpResponseType = void 0;
4
+ var DyFM_HttpResponseType;
5
+ (function (DyFM_HttpResponseType) {
6
+ DyFM_HttpResponseType["arraybuffer"] = "arraybuffer";
7
+ DyFM_HttpResponseType["blob"] = "blob";
8
+ DyFM_HttpResponseType["json"] = "json";
9
+ DyFM_HttpResponseType["text"] = "text";
10
+ })(DyFM_HttpResponseType || (exports.DyFM_HttpResponseType = DyFM_HttpResponseType = {}));
11
+ //# sourceMappingURL=http-response-type.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"http-response-type.enum.js","sourceRoot":"","sources":["../../src/_enums/http-response-type.enum.ts"],"names":[],"mappings":";;;AACA,IAAY,qBAKX;AALD,WAAY,qBAAqB;IAC/B,oDAA2B,CAAA;IAC3B,sCAAa,CAAA;IACb,sCAAa,CAAA;IACb,sCAAa,CAAA;AACf,CAAC,EALW,qBAAqB,qCAArB,qBAAqB,QAKhC"}
@@ -1,3 +1,4 @@
1
+ import { DyFM_BasicProperty_Type } from '../../_enums/basic-property-type.enum';
1
2
  import { DyFM_RangeValue } from '../control-models/range-value.control-model';
2
3
  /**
3
4
  * A filter for a DynamoDB queries.
@@ -9,10 +10,16 @@ export type DyFM_DBĐFilter<T> = {
9
10
  };
10
11
  export interface DyFM_SpecialSearch<T> {
11
12
  specialSearchConfig: true;
12
- search: T;
13
+ searchValue: T;
13
14
  type: DyFM_SpecialSearch_Type;
15
+ /** only required when searching nested property */
16
+ propertyType?: DyFM_BasicProperty_Type;
14
17
  }
15
18
  export declare enum DyFM_SpecialSearch_Type {
19
+ /**
20
+ * searches each word in the string, returns true if ANY word is found in ANY order
21
+ * */
22
+ stringListSearchAny = "stringListSearchAny",
16
23
  /**
17
24
  * searches each word in the string, returns true if ALL words are found in ANY order
18
25
  * */
@@ -20,6 +27,12 @@ export declare enum DyFM_SpecialSearch_Type {
20
27
  /**
21
28
  * searches each word in the string, returns true if ALL words are found in the SAME order
22
29
  * */
23
- stringListSearchOrdered = "stringListSearchOrdered"
30
+ stringListSearchOrdered = "stringListSearchOrdered",
31
+ /**
32
+ * searches for a nested property in the object
33
+ * can search for nested properties in arrays as well with the following syntax used in key:
34
+ * 'arrayProperty[*].nestedPropertySearch'
35
+ */
36
+ nestedPropertySearch = "nestedPropertySearch"
24
37
  }
25
38
  //# sourceMappingURL=db-%C4%91filter.type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"db-đfilter.type.d.ts","sourceRoot":"","sources":["../../../src/_models/types/db-đfilter.type.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,6CAA6C,CAAC;AAE9E;;;;GAIG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI;KAC7B,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAClF,CAAC;AAEF,MAAM,WAAW,kBAAkB,CAAC,CAAC;IACnC,mBAAmB,EAAE,IAAI,CAAC;IAC1B,MAAM,EAAE,CAAC,CAAC;IACV,IAAI,EAAE,uBAAuB,CAAC;CAC/B;AAED,oBAAY,uBAAuB;IACjC;;SAEK;IACL,gBAAgB,qBAAqB;IACrC;;SAEK;IACL,uBAAuB,4BAA4B;CACpD"}
1
+ {"version":3,"file":"db-đfilter.type.d.ts","sourceRoot":"","sources":["../../../src/_models/types/db-đfilter.type.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,6CAA6C,CAAC;AAE9E;;;;GAIG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI;KAC7B,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAClF,CAAC;AAEF,MAAM,WAAW,kBAAkB,CAAC,CAAC;IACnC,mBAAmB,EAAE,IAAI,CAAC;IAC1B,WAAW,EAAE,CAAC,CAAC;IACf,IAAI,EAAE,uBAAuB,CAAC;IAC9B,mDAAmD;IACnD,YAAY,CAAC,EAAE,uBAAuB,CAAC;CACxC;AAED,oBAAY,uBAAuB;IACjC;;SAEK;IACL,mBAAmB,wBAAwB;IAC3C;;SAEK;IACL,gBAAgB,qBAAqB;IACrC;;SAEK;IACL,uBAAuB,4BAA4B;IACnD;;;;OAIG;IACH,oBAAoB,yBAAyB;CAC9C"}
@@ -3,6 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DyFM_SpecialSearch_Type = void 0;
4
4
  var DyFM_SpecialSearch_Type;
5
5
  (function (DyFM_SpecialSearch_Type) {
6
+ /**
7
+ * searches each word in the string, returns true if ANY word is found in ANY order
8
+ * */
9
+ DyFM_SpecialSearch_Type["stringListSearchAny"] = "stringListSearchAny";
6
10
  /**
7
11
  * searches each word in the string, returns true if ALL words are found in ANY order
8
12
  * */
@@ -11,5 +15,11 @@ var DyFM_SpecialSearch_Type;
11
15
  * searches each word in the string, returns true if ALL words are found in the SAME order
12
16
  * */
13
17
  DyFM_SpecialSearch_Type["stringListSearchOrdered"] = "stringListSearchOrdered";
18
+ /**
19
+ * searches for a nested property in the object
20
+ * can search for nested properties in arrays as well with the following syntax used in key:
21
+ * 'arrayProperty[*].nestedPropertySearch'
22
+ */
23
+ DyFM_SpecialSearch_Type["nestedPropertySearch"] = "nestedPropertySearch";
14
24
  })(DyFM_SpecialSearch_Type || (exports.DyFM_SpecialSearch_Type = DyFM_SpecialSearch_Type = {}));
15
25
  //# sourceMappingURL=db-%C4%91filter.type.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"db-đfilter.type.js","sourceRoot":"","sources":["../../../src/_models/types/db-đfilter.type.ts"],"names":[],"mappings":";;;AAmBA,IAAY,uBASX;AATD,WAAY,uBAAuB;IACjC;;SAEK;IACL,gEAAqC,CAAA;IACrC;;SAEK;IACL,8EAAmD,CAAA;AACrD,CAAC,EATW,uBAAuB,uCAAvB,uBAAuB,QASlC"}
1
+ {"version":3,"file":"db-đfilter.type.js","sourceRoot":"","sources":["../../../src/_models/types/db-đfilter.type.ts"],"names":[],"mappings":";;;AAsBA,IAAY,uBAmBX;AAnBD,WAAY,uBAAuB;IACjC;;SAEK;IACL,sEAA2C,CAAA;IAC3C;;SAEK;IACL,gEAAqC,CAAA;IACrC;;SAEK;IACL,8EAAmD,CAAA;IACnD;;;;OAIG;IACH,wEAA6C,CAAA;AAC/C,CAAC,EAnBW,uBAAuB,uCAAvB,uBAAuB,QAmBlC"}
package/build/index.d.ts CHANGED
@@ -22,6 +22,8 @@ export * from './_enums/basic-property-type.enum';
22
22
  export * from './_enums/data-model-type.enum';
23
23
  export * from './_enums/environment-flag.enum';
24
24
  export * from './_enums/error-level.enum';
25
+ export * from './_enums/http-call-type.enum';
26
+ export * from './_enums/http-response-type.enum';
25
27
  export * from './_enums/log-style.enum';
26
28
  export * from './_enums/time/day-of-week.enum';
27
29
  export * from './_enums/time/month.enum';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,+CAA+C,CAAC;AAC9D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AAGrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAG/C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wCAAwC,CAAC;AAGvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uCAAuC,CAAC;AACtD,cAAc,gDAAgD,CAAC;AAI/D,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AAGxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,kCAAkC,CAAC;AAKjD,cAAc,0DAA0D,CAAC;AACzE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AAGnE,cAAc,2CAA2C,CAAC;AAG1D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AAGvD,cAAc,gEAAgE,CAAC;AAC/E,cAAc,4DAA4D,CAAC;AAG3E,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,+CAA+C,CAAC;AAC9D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AAGrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAG/C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wCAAwC,CAAC;AAGvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uCAAuC,CAAC;AACtD,cAAc,gDAAgD,CAAC;AAI/D,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AAGxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,kCAAkC,CAAC;AAKjD,cAAc,0DAA0D,CAAC;AACzE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AAGnE,cAAc,2CAA2C,CAAC;AAG1D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AAGvD,cAAc,gEAAgE,CAAC;AAC/E,cAAc,4DAA4D,CAAC;AAG3E,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC"}
package/build/index.js CHANGED
@@ -31,6 +31,8 @@ tslib_1.__exportStar(require("./_enums/basic-property-type.enum"), exports);
31
31
  tslib_1.__exportStar(require("./_enums/data-model-type.enum"), exports);
32
32
  tslib_1.__exportStar(require("./_enums/environment-flag.enum"), exports);
33
33
  tslib_1.__exportStar(require("./_enums/error-level.enum"), exports);
34
+ tslib_1.__exportStar(require("./_enums/http-call-type.enum"), exports);
35
+ tslib_1.__exportStar(require("./_enums/http-response-type.enum"), exports);
34
36
  tslib_1.__exportStar(require("./_enums/log-style.enum"), exports);
35
37
  // enums/PIPE
36
38
  tslib_1.__exportStar(require("./_enums/time/day-of-week.enum"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,cAAc;AACd,wBAAwB;AACxB,wFAA8D;AAC9D,yFAA+D;AAC/D,iFAAuD;AACvD,+EAAqD;AAErD,oBAAoB;AACpB,0EAAgD;AAChD,wEAA8C;AAC9C,+EAAqD;AACrD,2EAAiD;AACjD,yEAA+C;AAC/C,0FAAgE;AAChE,8EAAoD;AACpD,yEAA+C;AAE/C,yBAAyB;AACzB,oFAA0D;AAC1D,8EAAoD;AACpD,gFAAsD;AACtD,sFAA4D;AAC5D,iFAAuD;AAEvD,2BAA2B;AAC3B,yFAA+D;AAC/D,gFAAsD;AACtD,yFAA+D;AAG/D,QAAQ;AACR,4EAAkD;AAClD,wEAA8C;AAC9C,yEAA+C;AAC/C,oEAA0C;AAC1C,kEAAwC;AAExC,aAAa;AACb,yEAA+C;AAC/C,mEAAyC;AACzC,2EAAiD;AAGjD,SAAS;AACT,wBAAwB;AACxB,mGAAyE;AACzE,sGAA4E;AAC5E,uFAA6D;AAC7D,sFAA4D;AAC5D,6FAAmE;AAEnE,qBAAqB;AACrB,oFAA0D;AAE1D,oBAAoB;AACpB,wFAA8D;AAC9D,+EAAqD;AACrD,uFAA6D;AAC7D,wFAA8D;AAC9D,sFAA4D;AAC5D,uFAA6D;AAC7D,iFAAuD;AAEvD,gCAAgC;AAChC,yGAA+E;AAC/E,qGAA2E;AAE3E,eAAe;AACf,yEAA+C;AAC/C,uEAA6C;AAC7C,+EAAgD;AAChD,6EAA8C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,cAAc;AACd,wBAAwB;AACxB,wFAA8D;AAC9D,yFAA+D;AAC/D,iFAAuD;AACvD,+EAAqD;AAErD,oBAAoB;AACpB,0EAAgD;AAChD,wEAA8C;AAC9C,+EAAqD;AACrD,2EAAiD;AACjD,yEAA+C;AAC/C,0FAAgE;AAChE,8EAAoD;AACpD,yEAA+C;AAE/C,yBAAyB;AACzB,oFAA0D;AAC1D,8EAAoD;AACpD,gFAAsD;AACtD,sFAA4D;AAC5D,iFAAuD;AAEvD,2BAA2B;AAC3B,yFAA+D;AAC/D,gFAAsD;AACtD,yFAA+D;AAG/D,QAAQ;AACR,4EAAkD;AAClD,wEAA8C;AAC9C,yEAA+C;AAC/C,oEAA0C;AAC1C,uEAA6C;AAC7C,2EAAiD;AACjD,kEAAwC;AAExC,aAAa;AACb,yEAA+C;AAC/C,mEAAyC;AACzC,2EAAiD;AAGjD,SAAS;AACT,wBAAwB;AACxB,mGAAyE;AACzE,sGAA4E;AAC5E,uFAA6D;AAC7D,sFAA4D;AAC5D,6FAAmE;AAEnE,qBAAqB;AACrB,oFAA0D;AAE1D,oBAAoB;AACpB,wFAA8D;AAC9D,+EAAqD;AACrD,uFAA6D;AAC7D,wFAA8D;AAC9D,sFAA4D;AAC5D,uFAA6D;AAC7D,iFAAuD;AAEvD,gCAAgC;AAChC,yGAA+E;AAC/E,qGAA2E;AAE3E,eAAe;AACf,yEAA+C;AAC/C,uEAA6C;AAC7C,+EAAgD;AAChD,6EAA8C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.10.06",
3
+ "version": "01.10.08",
4
4
  "description": "Full Stack Model Collection for Dynamic (NodeJS-Typescript) Framework called Dynamo, by Future Development Ltd.",
5
5
  "scripts": {
6
6
  "prep": "npm i pnpm -g && npm i rimraf nodemon -g",
@@ -79,7 +79,7 @@
79
79
  "license": "ISC",
80
80
  "homepage": "https:/futdevpro.hu/projects/dynamo",
81
81
  "peerDependencies": {
82
- "rxjs": "~7.8.1"
82
+ "rxjs": "7.8.1"
83
83
  },
84
84
  "dependencies": {
85
85
  "@types/node": "~20.5.7",
@@ -0,0 +1,12 @@
1
+
2
+ /**
3
+ * basic Http Call Types such as;
4
+ * get, post, put, patch, delete
5
+ */
6
+ export enum DyFM_HttpCallType {
7
+ get = 'get',
8
+ post = 'post',
9
+ put = 'put',
10
+ patch = 'patch',
11
+ delete = 'delete'
12
+ }
@@ -0,0 +1,7 @@
1
+
2
+ export enum DyFM_HttpResponseType {
3
+ arraybuffer = 'arraybuffer',
4
+ blob = 'blob',
5
+ json = 'json',
6
+ text = 'text'
7
+ }
@@ -1,5 +1,6 @@
1
1
 
2
2
 
3
+ import { DyFM_BasicProperty_Type } from '../../_enums/basic-property-type.enum';
3
4
  import { DyFM_RangeValue } from '../control-models/range-value.control-model';
4
5
 
5
6
  /**
@@ -13,11 +14,17 @@ export type DyFM_DBĐFilter<T> = {
13
14
 
14
15
  export interface DyFM_SpecialSearch<T> {
15
16
  specialSearchConfig: true;
16
- search: T;
17
+ searchValue: T;
17
18
  type: DyFM_SpecialSearch_Type;
19
+ /** only required when searching nested property */
20
+ propertyType?: DyFM_BasicProperty_Type;
18
21
  }
19
22
 
20
23
  export enum DyFM_SpecialSearch_Type {
24
+ /**
25
+ * searches each word in the string, returns true if ANY word is found in ANY order
26
+ * */
27
+ stringListSearchAny = 'stringListSearchAny',
21
28
  /**
22
29
  * searches each word in the string, returns true if ALL words are found in ANY order
23
30
  * */
@@ -26,6 +33,12 @@ export enum DyFM_SpecialSearch_Type {
26
33
  * searches each word in the string, returns true if ALL words are found in the SAME order
27
34
  * */
28
35
  stringListSearchOrdered = 'stringListSearchOrdered',
36
+ /**
37
+ * searches for a nested property in the object
38
+ * can search for nested properties in arrays as well with the following syntax used in key:
39
+ * 'arrayProperty[*].nestedPropertySearch'
40
+ */
41
+ nestedPropertySearch = 'nestedPropertySearch',
29
42
  }
30
43
 
31
44
 
package/src/index.ts CHANGED
@@ -34,6 +34,8 @@ export * from './_enums/basic-property-type.enum';
34
34
  export * from './_enums/data-model-type.enum';
35
35
  export * from './_enums/environment-flag.enum';
36
36
  export * from './_enums/error-level.enum';
37
+ export * from './_enums/http-call-type.enum';
38
+ export * from './_enums/http-response-type.enum';
37
39
  export * from './_enums/log-style.enum';
38
40
 
39
41
  // enums/PIPE
Binary file