@splitsoftware/splitio-commons 1.13.2-rc.10 → 1.13.2-rc.11

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 (105) hide show
  1. package/cjs/evaluator/matchers/all.js +3 -1
  2. package/cjs/evaluator/matchers/between.js +3 -1
  3. package/cjs/evaluator/matchers/boolean.js +3 -1
  4. package/cjs/evaluator/matchers/cont_all.js +3 -1
  5. package/cjs/evaluator/matchers/cont_any.js +3 -1
  6. package/cjs/evaluator/matchers/cont_str.js +3 -1
  7. package/cjs/evaluator/matchers/dependency.js +1 -1
  8. package/cjs/evaluator/matchers/eq.js +3 -1
  9. package/cjs/evaluator/matchers/eq_set.js +3 -1
  10. package/cjs/evaluator/matchers/ew.js +3 -1
  11. package/cjs/evaluator/matchers/gte.js +3 -1
  12. package/cjs/evaluator/matchers/index.js +1 -1
  13. package/cjs/evaluator/matchers/lte.js +3 -1
  14. package/cjs/evaluator/matchers/part_of.js +3 -1
  15. package/cjs/evaluator/matchers/segment.js +6 -1
  16. package/cjs/evaluator/matchers/semver_between.js +1 -1
  17. package/cjs/evaluator/matchers/semver_eq.js +1 -1
  18. package/cjs/evaluator/matchers/semver_gte.js +1 -1
  19. package/cjs/evaluator/matchers/semver_inlist.js +1 -1
  20. package/cjs/evaluator/matchers/semver_lte.js +1 -1
  21. package/cjs/evaluator/matchers/string.js +3 -1
  22. package/cjs/evaluator/matchers/sw.js +3 -1
  23. package/cjs/evaluator/matchers/whitelist.js +3 -1
  24. package/cjs/evaluator/parser/index.js +4 -7
  25. package/cjs/logger/constants.js +19 -4
  26. package/cjs/logger/messages/debug.js +20 -5
  27. package/cjs/logger/messages/warn.js +1 -1
  28. package/esm/evaluator/matchers/all.js +3 -1
  29. package/esm/evaluator/matchers/between.js +3 -1
  30. package/esm/evaluator/matchers/boolean.js +3 -1
  31. package/esm/evaluator/matchers/cont_all.js +3 -1
  32. package/esm/evaluator/matchers/cont_any.js +3 -1
  33. package/esm/evaluator/matchers/cont_str.js +3 -1
  34. package/esm/evaluator/matchers/dependency.js +1 -1
  35. package/esm/evaluator/matchers/eq.js +3 -1
  36. package/esm/evaluator/matchers/eq_set.js +3 -1
  37. package/esm/evaluator/matchers/ew.js +3 -1
  38. package/esm/evaluator/matchers/gte.js +3 -1
  39. package/esm/evaluator/matchers/index.js +1 -1
  40. package/esm/evaluator/matchers/lte.js +3 -1
  41. package/esm/evaluator/matchers/part_of.js +3 -1
  42. package/esm/evaluator/matchers/segment.js +6 -1
  43. package/esm/evaluator/matchers/semver_between.js +1 -1
  44. package/esm/evaluator/matchers/semver_eq.js +1 -1
  45. package/esm/evaluator/matchers/semver_gte.js +1 -1
  46. package/esm/evaluator/matchers/semver_inlist.js +1 -1
  47. package/esm/evaluator/matchers/semver_lte.js +1 -1
  48. package/esm/evaluator/matchers/string.js +3 -1
  49. package/esm/evaluator/matchers/sw.js +3 -1
  50. package/esm/evaluator/matchers/whitelist.js +3 -1
  51. package/esm/evaluator/parser/index.js +5 -8
  52. package/esm/logger/constants.js +16 -1
  53. package/esm/logger/messages/debug.js +20 -5
  54. package/esm/logger/messages/warn.js +1 -1
  55. package/package.json +1 -1
  56. package/src/evaluator/matchers/all.ts +5 -1
  57. package/src/evaluator/matchers/between.ts +7 -3
  58. package/src/evaluator/matchers/boolean.ts +6 -2
  59. package/src/evaluator/matchers/cont_all.ts +5 -1
  60. package/src/evaluator/matchers/cont_any.ts +5 -1
  61. package/src/evaluator/matchers/cont_str.ts +6 -2
  62. package/src/evaluator/matchers/dependency.ts +1 -1
  63. package/src/evaluator/matchers/eq.ts +6 -2
  64. package/src/evaluator/matchers/eq_set.ts +5 -1
  65. package/src/evaluator/matchers/ew.ts +6 -2
  66. package/src/evaluator/matchers/gte.ts +6 -2
  67. package/src/evaluator/matchers/index.ts +1 -1
  68. package/src/evaluator/matchers/lte.ts +6 -2
  69. package/src/evaluator/matchers/part_of.ts +5 -1
  70. package/src/evaluator/matchers/segment.ts +8 -1
  71. package/src/evaluator/matchers/semver_between.ts +2 -1
  72. package/src/evaluator/matchers/semver_eq.ts +2 -1
  73. package/src/evaluator/matchers/semver_gte.ts +2 -1
  74. package/src/evaluator/matchers/semver_inlist.ts +2 -2
  75. package/src/evaluator/matchers/semver_lte.ts +2 -1
  76. package/src/evaluator/matchers/string.ts +6 -1
  77. package/src/evaluator/matchers/sw.ts +6 -2
  78. package/src/evaluator/matchers/whitelist.ts +5 -1
  79. package/src/evaluator/parser/index.ts +5 -9
  80. package/src/logger/constants.ts +16 -1
  81. package/src/logger/messages/debug.ts +20 -5
  82. package/src/logger/messages/warn.ts +1 -1
  83. package/types/evaluator/matchers/all.d.ts +2 -1
  84. package/types/evaluator/matchers/between.d.ts +2 -1
  85. package/types/evaluator/matchers/boolean.d.ts +2 -1
  86. package/types/evaluator/matchers/cont_all.d.ts +2 -1
  87. package/types/evaluator/matchers/cont_any.d.ts +2 -1
  88. package/types/evaluator/matchers/cont_str.d.ts +2 -1
  89. package/types/evaluator/matchers/dependency.d.ts +1 -1
  90. package/types/evaluator/matchers/eq.d.ts +2 -1
  91. package/types/evaluator/matchers/eq_set.d.ts +2 -1
  92. package/types/evaluator/matchers/ew.d.ts +2 -1
  93. package/types/evaluator/matchers/gte.d.ts +2 -1
  94. package/types/evaluator/matchers/lte.d.ts +2 -1
  95. package/types/evaluator/matchers/part_of.d.ts +2 -1
  96. package/types/evaluator/matchers/segment.d.ts +2 -1
  97. package/types/evaluator/matchers/semver_between.d.ts +2 -1
  98. package/types/evaluator/matchers/semver_eq.d.ts +2 -1
  99. package/types/evaluator/matchers/semver_gte.d.ts +2 -1
  100. package/types/evaluator/matchers/semver_inlist.d.ts +2 -1
  101. package/types/evaluator/matchers/semver_lte.d.ts +2 -1
  102. package/types/evaluator/matchers/string.d.ts +2 -1
  103. package/types/evaluator/matchers/sw.d.ts +2 -1
  104. package/types/evaluator/matchers/whitelist.d.ts +2 -1
  105. package/types/logger/constants.d.ts +16 -1
@@ -9,8 +9,24 @@ export const ENGINE_COMBINER_AND = 0;
9
9
  export const ENGINE_COMBINER_IFELSEIF = 1;
10
10
  export const ENGINE_COMBINER_IFELSEIF_NO_TREATMENT = 2;
11
11
  export const ENGINE_BUCKET = 3;
12
+ export const ENGINE_MATCHER_ALL = 4;
13
+ export const ENGINE_MATCHER_BETWEEN = 5;
14
+ export const ENGINE_MATCHER_BOOLEAN = 6;
15
+ export const ENGINE_MATCHER_CONTAINS_ALL = 7;
16
+ export const ENGINE_MATCHER_CONTAINS_ANY = 8;
17
+ export const ENGINE_MATCHER_CONTAINS_STRING = 9;
12
18
  export const ENGINE_MATCHER_DEPENDENCY = 10;
13
19
  export const ENGINE_MATCHER_DEPENDENCY_PRE = 11;
20
+ export const ENGINE_MATCHER_EQUAL = 12;
21
+ export const ENGINE_MATCHER_EQUAL_TO_SET = 13;
22
+ export const ENGINE_MATCHER_ENDS_WITH = 14;
23
+ export const ENGINE_MATCHER_GREATER = 15;
24
+ export const ENGINE_MATCHER_LESS = 16;
25
+ export const ENGINE_MATCHER_PART_OF = 17;
26
+ export const ENGINE_MATCHER_SEGMENT = 18;
27
+ export const ENGINE_MATCHER_STRING = 19;
28
+ export const ENGINE_MATCHER_STARTS_WITH = 21;
29
+ export const ENGINE_MATCHER_WHITELIST = 22;
14
30
  export const ENGINE_VALUE = 23;
15
31
  export const ENGINE_SANITIZE = 24;
16
32
  export const CLEANUP_REGISTERING = 25;
@@ -28,7 +44,6 @@ export const SYNC_TASK_START = 36;
28
44
  export const SYNC_TASK_EXECUTE = 37;
29
45
  export const SYNC_TASK_STOP = 38;
30
46
  export const SETTINGS_SPLITS_FILTER = 39;
31
- export const ENGINE_MATCHER_RESULT = 40;
32
47
 
33
48
  export const CLIENT_READY_FROM_CACHE = 100;
34
49
  export const CLIENT_READY = 101;
@@ -7,11 +7,26 @@ export const codesDebug: [number, string][] = codesInfo.concat([
7
7
  [c.ENGINE_COMBINER_IFELSEIF, c.LOG_PREFIX_ENGINE_COMBINER + 'Treatment found: %s'],
8
8
  [c.ENGINE_COMBINER_IFELSEIF_NO_TREATMENT, c.LOG_PREFIX_ENGINE_COMBINER + 'All predicates evaluated, no treatment found.'],
9
9
  [c.ENGINE_BUCKET, c.LOG_PREFIX_ENGINE + ': using algo "murmur" bucket %s for key %s using seed %s - treatment %s'],
10
- [c.ENGINE_MATCHER_DEPENDENCY, c.LOG_PREFIX_ENGINE_MATCHER + '[IN_SPLIT_TREATMENT] parent feature flag "%s" evaluated to "%s" with label "%s". %s evaluated treatment is part of %s ? %s.'],
11
- [c.ENGINE_MATCHER_DEPENDENCY_PRE, c.LOG_PREFIX_ENGINE_MATCHER + '[IN_SPLIT_TREATMENT] will evaluate parent feature flag: "%s" with key: %s %s'],
12
- [c.ENGINE_VALUE, c.LOG_PREFIX_ENGINE_VALUE + 'Extracted attribute `%s`. %s will be used for matching.'],
13
- [c.ENGINE_SANITIZE, c.LOG_PREFIX_ENGINE + ':sanitize: Attempted to sanitize %s which should be of type %s. Sanitized and processed value => %s'],
14
- [c.ENGINE_MATCHER_RESULT, c.LOG_PREFIX_ENGINE_MATCHER + '[%s] Result: %s. Rule value: %s. Evaluation value: %s'],
10
+ [c.ENGINE_MATCHER_ALL, c.LOG_PREFIX_ENGINE_MATCHER + '[allMatcher] is always true'],
11
+ [c.ENGINE_MATCHER_BETWEEN, c.LOG_PREFIX_ENGINE_MATCHER + '[betweenMatcher] is %s between %s and %s? %s'],
12
+ [c.ENGINE_MATCHER_BOOLEAN, c.LOG_PREFIX_ENGINE_MATCHER + '[booleanMatcher] %s === %s'],
13
+ [c.ENGINE_MATCHER_CONTAINS_ALL, c.LOG_PREFIX_ENGINE_MATCHER + '[containsAllMatcher] %s contains all elements of %s? %s'],
14
+ [c.ENGINE_MATCHER_CONTAINS_ANY, c.LOG_PREFIX_ENGINE_MATCHER + '[containsAnyMatcher] %s contains at least an element of %s? %s'],
15
+ [c.ENGINE_MATCHER_CONTAINS_STRING, c.LOG_PREFIX_ENGINE_MATCHER + '[containsStringMatcher] %s contains %s? %s'],
16
+ [c.ENGINE_MATCHER_DEPENDENCY, c.LOG_PREFIX_ENGINE_MATCHER + '[dependencyMatcher] parent feature flag "%s" evaluated to "%s" with label "%s". %s evaluated treatment is part of [%s] ? %s.'],
17
+ [c.ENGINE_MATCHER_DEPENDENCY_PRE, c.LOG_PREFIX_ENGINE_MATCHER + '[dependencyMatcher] will evaluate parent feature flag: "%s" with key: %s %s'],
18
+ [c.ENGINE_MATCHER_EQUAL, c.LOG_PREFIX_ENGINE_MATCHER + '[equalToMatcher] is %s equal to %s? %s'],
19
+ [c.ENGINE_MATCHER_EQUAL_TO_SET, c.LOG_PREFIX_ENGINE_MATCHER + '[equalToSetMatcher] is %s equal to set %s? %s'],
20
+ [c.ENGINE_MATCHER_ENDS_WITH, c.LOG_PREFIX_ENGINE_MATCHER + '[endsWithMatcher] %s ends with %s? %s'],
21
+ [c.ENGINE_MATCHER_GREATER, c.LOG_PREFIX_ENGINE_MATCHER + '[greaterThanEqualMatcher] is %s greater than %s? %s'],
22
+ [c.ENGINE_MATCHER_LESS, c.LOG_PREFIX_ENGINE_MATCHER + '[lessThanEqualMatcher] is %s less than %s? %s'],
23
+ [c.ENGINE_MATCHER_PART_OF, c.LOG_PREFIX_ENGINE_MATCHER + '[partOfMatcher] %s is part of %s? %s'],
24
+ [c.ENGINE_MATCHER_SEGMENT, c.LOG_PREFIX_ENGINE_MATCHER + '[segmentMatcher] evaluated %s / %s => %s'],
25
+ [c.ENGINE_MATCHER_STRING, c.LOG_PREFIX_ENGINE_MATCHER + '[stringMatcher] does %s matches with %s? %s'],
26
+ [c.ENGINE_MATCHER_STARTS_WITH, c.LOG_PREFIX_ENGINE_MATCHER + '[startsWithMatcher] %s starts with %s? %s'],
27
+ [c.ENGINE_MATCHER_WHITELIST, c.LOG_PREFIX_ENGINE_MATCHER + '[whitelistMatcher] evaluated %s in [%s] => %s'],
28
+ [c.ENGINE_VALUE, c.LOG_PREFIX_ENGINE_VALUE + 'Extracted attribute [%s], [%s] will be used for matching.'],
29
+ [c.ENGINE_SANITIZE, c.LOG_PREFIX_ENGINE + ':sanitize: Attempted to sanitize [%s] which should be of type [%s]. Sanitized and processed value => [%s]'],
15
30
  // SDK
16
31
  [c.CLEANUP_REGISTERING, c.LOG_PREFIX_CLEANUP + 'Registering cleanup handler %s'],
17
32
  [c.CLEANUP_DEREGISTERING, c.LOG_PREFIX_CLEANUP + 'Deregistering cleanup handler %s'],
@@ -4,7 +4,7 @@ import { codesError } from './error';
4
4
  export const codesWarn: [number, string][] = codesError.concat([
5
5
  // evaluator
6
6
  [c.ENGINE_VALUE_INVALID, c.LOG_PREFIX_ENGINE_VALUE + 'Value %s doesn\'t match with expected type.'],
7
- [c.ENGINE_VALUE_NO_ATTRIBUTES, c.LOG_PREFIX_ENGINE_VALUE + 'Defined attribute `%s`. No attributes received.'],
7
+ [c.ENGINE_VALUE_NO_ATTRIBUTES, c.LOG_PREFIX_ENGINE_VALUE + 'Defined attribute [%s], no attributes received.'],
8
8
  // synchronizer
9
9
  [c.SYNC_MYSEGMENTS_FETCH_RETRY, c.LOG_PREFIX_SYNC_MYSEGMENTS + 'Retrying download of segments #%s. Reason: %s'],
10
10
  [c.SYNC_SPLITS_FETCH_FAILS, c.LOG_PREFIX_SYNC_SPLITS + 'Error while doing fetch of feature flags. %s'],
@@ -1 +1,2 @@
1
- export declare function allMatcherContext(): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function allMatcherContext(log: ILogger): (runtimeAttr: string) => boolean;
@@ -1,2 +1,3 @@
1
1
  import { IBetweenMatcherData } from '../../dtos/types';
2
- export declare function betweenMatcherContext(ruleVO: IBetweenMatcherData): (runtimeAttr: number) => boolean;
2
+ import { ILogger } from '../../logger/types';
3
+ export declare function betweenMatcherContext(log: ILogger, ruleVO: IBetweenMatcherData): (runtimeAttr: number) => boolean;
@@ -1 +1,2 @@
1
- export declare function booleanMatcherContext(ruleAttr: boolean): (runtimeAttr: boolean) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function booleanMatcherContext(log: ILogger, ruleAttr: boolean): (runtimeAttr: boolean) => boolean;
@@ -1 +1,2 @@
1
- export declare function containsAllSetMatcherContext(ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function containsAllSetMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
@@ -1 +1,2 @@
1
- export declare function containsAnySetMatcherContext(ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function containsAnySetMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
@@ -1 +1,2 @@
1
- export declare function containsStringMatcherContext(ruleAttr: string[]): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function containsStringMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string) => boolean;
@@ -2,4 +2,4 @@ import { IDependencyMatcherData, MaybeThenable } from '../../dtos/types';
2
2
  import { IStorageAsync, IStorageSync } from '../../storages/types';
3
3
  import { ILogger } from '../../logger/types';
4
4
  import { IDependencyMatcherValue, ISplitEvaluator } from '../types';
5
- export declare function dependencyMatcherContext({ split, treatments }: IDependencyMatcherData, storage: IStorageSync | IStorageAsync, log: ILogger): ({ key, attributes }: IDependencyMatcherValue, splitEvaluator: ISplitEvaluator) => MaybeThenable<boolean>;
5
+ export declare function dependencyMatcherContext(log: ILogger, { split, treatments }: IDependencyMatcherData, storage: IStorageSync | IStorageAsync): ({ key, attributes }: IDependencyMatcherValue, splitEvaluator: ISplitEvaluator) => MaybeThenable<boolean>;
@@ -1 +1,2 @@
1
- export declare function equalToMatcherContext(ruleAttr: number): (runtimeAttr: number) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function equalToMatcherContext(log: ILogger, ruleAttr: number): (runtimeAttr: number) => boolean;
@@ -1 +1,2 @@
1
- export declare function equalToSetMatcherContext(ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function equalToSetMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
@@ -1 +1,2 @@
1
- export declare function endsWithMatcherContext(ruleAttr: string[]): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function endsWithMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function greaterThanEqualMatcherContext(ruleAttr: number): (runtimeAttr: number) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function greaterThanEqualMatcherContext(log: ILogger, ruleAttr: number): (runtimeAttr: number) => boolean;
@@ -1 +1,2 @@
1
- export declare function lessThanEqualMatcherContext(ruleAttr: number): (runtimeAttr: number) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function lessThanEqualMatcherContext(log: ILogger, ruleAttr: number): (runtimeAttr: number) => boolean;
@@ -1 +1,2 @@
1
- export declare function partOfSetMatcherContext(ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function partOfSetMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string[]) => boolean;
@@ -1,5 +1,6 @@
1
1
  import { MaybeThenable } from '../../dtos/types';
2
2
  import { ISegmentsCacheBase } from '../../storages/types';
3
- export declare function segmentMatcherContext(segmentName: string, storage: {
3
+ import { ILogger } from '../../logger/types';
4
+ export declare function segmentMatcherContext(log: ILogger, segmentName: string, storage: {
4
5
  segments: ISegmentsCacheBase;
5
6
  }): (key: string) => MaybeThenable<boolean>;
@@ -1,2 +1,3 @@
1
1
  import { IBetweenStringMatcherData } from '../../dtos/types';
2
- export declare function betweenSemverMatcherContext(ruleAttr: IBetweenStringMatcherData): (runtimeAttr: string) => boolean;
2
+ import { ILogger } from '../../logger/types';
3
+ export declare function betweenSemverMatcherContext(log: ILogger, ruleAttr: IBetweenStringMatcherData): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function equalToSemverMatcherContext(ruleAttr: string): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function equalToSemverMatcherContext(log: ILogger, ruleAttr: string): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function greaterThanEqualToSemverMatcherContext(ruleAttr: string): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function greaterThanEqualToSemverMatcherContext(log: ILogger, ruleAttr: string): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function inListSemverMatcherContext(ruleAttr: string[]): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function inListSemverMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function lessThanEqualToSemverMatcherContext(ruleAttr: string): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function lessThanEqualToSemverMatcherContext(log: ILogger, ruleAttr: string): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function stringMatcherContext(ruleAttr: string): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function stringMatcherContext(log: ILogger, ruleAttr: string): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function startsWithMatcherContext(ruleAttr: string[]): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function startsWithMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string) => boolean;
@@ -1 +1,2 @@
1
- export declare function whitelistMatcherContext(ruleAttr: string[]): (runtimeAttr: string) => boolean;
1
+ import { ILogger } from '../../logger/types';
2
+ export declare function whitelistMatcherContext(log: ILogger, ruleAttr: string[]): (runtimeAttr: string) => boolean;
@@ -9,8 +9,24 @@ export declare const ENGINE_COMBINER_AND = 0;
9
9
  export declare const ENGINE_COMBINER_IFELSEIF = 1;
10
10
  export declare const ENGINE_COMBINER_IFELSEIF_NO_TREATMENT = 2;
11
11
  export declare const ENGINE_BUCKET = 3;
12
+ export declare const ENGINE_MATCHER_ALL = 4;
13
+ export declare const ENGINE_MATCHER_BETWEEN = 5;
14
+ export declare const ENGINE_MATCHER_BOOLEAN = 6;
15
+ export declare const ENGINE_MATCHER_CONTAINS_ALL = 7;
16
+ export declare const ENGINE_MATCHER_CONTAINS_ANY = 8;
17
+ export declare const ENGINE_MATCHER_CONTAINS_STRING = 9;
12
18
  export declare const ENGINE_MATCHER_DEPENDENCY = 10;
13
19
  export declare const ENGINE_MATCHER_DEPENDENCY_PRE = 11;
20
+ export declare const ENGINE_MATCHER_EQUAL = 12;
21
+ export declare const ENGINE_MATCHER_EQUAL_TO_SET = 13;
22
+ export declare const ENGINE_MATCHER_ENDS_WITH = 14;
23
+ export declare const ENGINE_MATCHER_GREATER = 15;
24
+ export declare const ENGINE_MATCHER_LESS = 16;
25
+ export declare const ENGINE_MATCHER_PART_OF = 17;
26
+ export declare const ENGINE_MATCHER_SEGMENT = 18;
27
+ export declare const ENGINE_MATCHER_STRING = 19;
28
+ export declare const ENGINE_MATCHER_STARTS_WITH = 21;
29
+ export declare const ENGINE_MATCHER_WHITELIST = 22;
14
30
  export declare const ENGINE_VALUE = 23;
15
31
  export declare const ENGINE_SANITIZE = 24;
16
32
  export declare const CLEANUP_REGISTERING = 25;
@@ -28,7 +44,6 @@ export declare const SYNC_TASK_START = 36;
28
44
  export declare const SYNC_TASK_EXECUTE = 37;
29
45
  export declare const SYNC_TASK_STOP = 38;
30
46
  export declare const SETTINGS_SPLITS_FILTER = 39;
31
- export declare const ENGINE_MATCHER_RESULT = 40;
32
47
  export declare const CLIENT_READY_FROM_CACHE = 100;
33
48
  export declare const CLIENT_READY = 101;
34
49
  export declare const IMPRESSION = 102;