@fgv/ts-res 5.0.0-21 → 5.0.0-23
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/README.md +794 -137
- package/dist/ts-res.d.ts +506 -33
- package/lib/packlets/common/convert.d.ts +10 -0
- package/lib/packlets/common/convert.js +11 -1
- package/lib/packlets/common/resources.d.ts +40 -1
- package/lib/packlets/common/validate/regularExpressions.d.ts +4 -0
- package/lib/packlets/common/validate/regularExpressions.js +5 -1
- package/lib/packlets/common/validate/resources.d.ts +35 -1
- package/lib/packlets/common/validate/resources.js +54 -0
- package/lib/packlets/config/convert.js +1 -1
- package/lib/packlets/config/json.d.ts +1 -1
- package/lib/packlets/qualifier-types/config/convert.d.ts +22 -1
- package/lib/packlets/qualifier-types/config/convert.js +67 -2
- package/lib/packlets/qualifier-types/config/json.d.ts +11 -2
- package/lib/packlets/qualifier-types/helpers.d.ts +1 -2
- package/lib/packlets/qualifier-types/languageQualifierType.d.ts +27 -1
- package/lib/packlets/qualifier-types/languageQualifierType.js +75 -0
- package/lib/packlets/qualifier-types/literalQualifierType.d.ts +30 -4
- package/lib/packlets/qualifier-types/literalQualifierType.js +77 -0
- package/lib/packlets/qualifier-types/literalValueHierarchy.d.ts +6 -10
- package/lib/packlets/qualifier-types/literalValueHierarchy.js +10 -0
- package/lib/packlets/qualifier-types/qualifierType.d.ts +28 -0
- package/lib/packlets/qualifier-types/territoryQualifierType.d.ts +28 -4
- package/lib/packlets/qualifier-types/territoryQualifierType.js +77 -0
- package/lib/packlets/resource-json/compiled/convert.js +2 -1
- package/lib/packlets/resource-json/compiled/json.d.ts +6 -2
- package/lib/packlets/resource-types/config/convert.js +3 -1
- package/lib/packlets/resource-types/config/json.d.ts +2 -0
- package/lib/packlets/resource-types/jsonResourceType.d.ts +10 -6
- package/lib/packlets/resource-types/jsonResourceType.js +7 -10
- package/lib/packlets/resource-types/resourceType.d.ts +20 -8
- package/lib/packlets/resource-types/resourceType.js +20 -16
- package/lib/packlets/resources/candidateValue.d.ts +92 -0
- package/lib/packlets/resources/candidateValue.js +128 -0
- package/lib/packlets/resources/candidateValueCollector.d.ts +55 -0
- package/lib/packlets/resources/candidateValueCollector.js +96 -0
- package/lib/packlets/resources/index.d.ts +2 -0
- package/lib/packlets/resources/index.js +2 -0
- package/lib/packlets/resources/resource.js +2 -2
- package/lib/packlets/resources/resourceBuilder.d.ts +6 -0
- package/lib/packlets/resources/resourceBuilder.js +3 -1
- package/lib/packlets/resources/resourceCandidate.d.ts +10 -1
- package/lib/packlets/resources/resourceCandidate.js +11 -5
- package/lib/packlets/resources/resourceManagerBuilder.d.ts +7 -0
- package/lib/packlets/resources/resourceManagerBuilder.js +13 -6
- package/lib/packlets/runtime/compiledResourceCollection.d.ts +20 -8
- package/lib/packlets/runtime/compiledResourceCollection.js +25 -4
- package/lib/packlets/runtime/resource-tree/common.d.ts +1 -1
- package/lib/packlets/runtime/resourceResolver.d.ts +39 -1
- package/lib/packlets/runtime/resourceResolver.js +45 -28
- package/lib/test/unit/qualifier-types/testQualifierType.d.ts +4 -0
- package/lib/test/unit/qualifier-types/testQualifierType.js +24 -0
- package/lib/test/unit/resource-types/derivedResourceType.test.d.ts +2 -0
- package/lib/test/unit/resource-types/testDerivedResourceType.d.ts +79 -0
- package/lib/test/unit/resource-types/testDerivedResourceType.js +113 -0
- package/lib/test/unit/resources/candidateValue.test.d.ts +2 -0
- package/lib/test/unit/resources/candidateValueCollector.test.d.ts +2 -0
- package/lib/test/unit/runtime/resourceResolver.coverage.test.d.ts +2 -0
- package/lib/test/unit/runtime/resourceResolver.newFeatures.test.d.ts +2 -0
- package/package.json +7 -7
- package/src/index.ts +0 -75
- package/src/packlets/bundle/bundleBuilder.ts +0 -159
- package/src/packlets/bundle/bundleLoader.ts +0 -157
- package/src/packlets/bundle/bundleNormalizer.ts +0 -173
- package/src/packlets/bundle/bundleUtils.ts +0 -142
- package/src/packlets/bundle/convert.ts +0 -87
- package/src/packlets/bundle/index.ts +0 -52
- package/src/packlets/bundle/model.ts +0 -138
- package/src/packlets/common/conditions.ts +0 -226
- package/src/packlets/common/convert.ts +0 -184
- package/src/packlets/common/helpers/conditions.ts +0 -84
- package/src/packlets/common/helpers/context.ts +0 -88
- package/src/packlets/common/helpers/index.ts +0 -26
- package/src/packlets/common/helpers/qualifierDefaultValues.ts +0 -91
- package/src/packlets/common/helpers/resources.ts +0 -96
- package/src/packlets/common/index.ts +0 -30
- package/src/packlets/common/resources.ts +0 -78
- package/src/packlets/common/validate/conditions.ts +0 -595
- package/src/packlets/common/validate/index.ts +0 -27
- package/src/packlets/common/validate/regularExpressions.ts +0 -92
- package/src/packlets/common/validate/resources.ts +0 -170
- package/src/packlets/conditions/condition.ts +0 -351
- package/src/packlets/conditions/conditionCollector.ts +0 -103
- package/src/packlets/conditions/conditionDecls.ts +0 -50
- package/src/packlets/conditions/conditionSet.ts +0 -318
- package/src/packlets/conditions/conditionSetCollector.ts +0 -127
- package/src/packlets/conditions/conditionSetDecls.ts +0 -41
- package/src/packlets/conditions/conditionToken.ts +0 -180
- package/src/packlets/conditions/convert/conditionSetDecls.ts +0 -72
- package/src/packlets/conditions/convert/decls.ts +0 -95
- package/src/packlets/conditions/convert/index.ts +0 -24
- package/src/packlets/conditions/index.ts +0 -33
- package/src/packlets/config/common.ts +0 -107
- package/src/packlets/config/configInitFactory.ts +0 -142
- package/src/packlets/config/convert.ts +0 -61
- package/src/packlets/config/index.ts +0 -30
- package/src/packlets/config/json.ts +0 -43
- package/src/packlets/config/predefined/default.ts +0 -150
- package/src/packlets/config/predefined/extended.ts +0 -198
- package/src/packlets/config/predefined/index.ts +0 -26
- package/src/packlets/config/systemConfiguration.ts +0 -217
- package/src/packlets/context/contextDecls.ts +0 -76
- package/src/packlets/context/contextToken.ts +0 -252
- package/src/packlets/context/convert/decls.ts +0 -126
- package/src/packlets/context/convert/index.ts +0 -23
- package/src/packlets/context/index.ts +0 -27
- package/src/packlets/decisions/abstractDecision.ts +0 -87
- package/src/packlets/decisions/abstractDecisionCollector.ts +0 -122
- package/src/packlets/decisions/candidate.ts +0 -101
- package/src/packlets/decisions/common.ts +0 -37
- package/src/packlets/decisions/concreteDecision.ts +0 -157
- package/src/packlets/decisions/decision.ts +0 -172
- package/src/packlets/decisions/index.ts +0 -28
- package/src/packlets/import/fsItem.ts +0 -212
- package/src/packlets/import/importContext.ts +0 -183
- package/src/packlets/import/importManager.ts +0 -187
- package/src/packlets/import/importable.ts +0 -107
- package/src/packlets/import/importers/collectionImporter.ts +0 -153
- package/src/packlets/import/importers/fsItemImporter.ts +0 -154
- package/src/packlets/import/importers/importer.ts +0 -58
- package/src/packlets/import/importers/index.ts +0 -27
- package/src/packlets/import/importers/jsonImporter.ts +0 -133
- package/src/packlets/import/importers/pathImporter.ts +0 -134
- package/src/packlets/import/index.ts +0 -29
- package/src/packlets/qualifier-types/config/convert.ts +0 -108
- package/src/packlets/qualifier-types/config/index.ts +0 -27
- package/src/packlets/qualifier-types/config/json.ts +0 -126
- package/src/packlets/qualifier-types/convert.ts +0 -77
- package/src/packlets/qualifier-types/helpers.ts +0 -94
- package/src/packlets/qualifier-types/index.ts +0 -34
- package/src/packlets/qualifier-types/languageQualifierType.ts +0 -143
- package/src/packlets/qualifier-types/literalQualifierType.ts +0 -244
- package/src/packlets/qualifier-types/literalValueHierarchy.ts +0 -332
- package/src/packlets/qualifier-types/qualifierType.ts +0 -360
- package/src/packlets/qualifier-types/qualifierTypeCollector.ts +0 -102
- package/src/packlets/qualifier-types/territoryQualifierType.ts +0 -255
- package/src/packlets/qualifiers/convert/decls.ts +0 -90
- package/src/packlets/qualifiers/convert/index.ts +0 -24
- package/src/packlets/qualifiers/convert/qualifier.ts +0 -55
- package/src/packlets/qualifiers/index.ts +0 -31
- package/src/packlets/qualifiers/qualifier.ts +0 -169
- package/src/packlets/qualifiers/qualifierCollector.ts +0 -194
- package/src/packlets/qualifiers/qualifierDecl.ts +0 -80
- package/src/packlets/qualifiers/qualifierDefaultValueDecls.ts +0 -57
- package/src/packlets/qualifiers/qualifierDefaultValueToken.ts +0 -230
- package/src/packlets/resource-json/compiled/common.ts +0 -35
- package/src/packlets/resource-json/compiled/convert.ts +0 -143
- package/src/packlets/resource-json/compiled/index.ts +0 -27
- package/src/packlets/resource-json/compiled/json.ts +0 -239
- package/src/packlets/resource-json/convert.ts +0 -236
- package/src/packlets/resource-json/helpers.ts +0 -284
- package/src/packlets/resource-json/index.ts +0 -33
- package/src/packlets/resource-json/json.ts +0 -295
- package/src/packlets/resource-json/normalized.ts +0 -211
- package/src/packlets/resource-json/resourceDeclCollection.ts +0 -117
- package/src/packlets/resource-json/resourceDeclContainer.ts +0 -48
- package/src/packlets/resource-json/resourceDeclTree.ts +0 -116
- package/src/packlets/resource-types/config/convert.ts +0 -36
- package/src/packlets/resource-types/config/index.ts +0 -27
- package/src/packlets/resource-types/config/json.ts +0 -30
- package/src/packlets/resource-types/helpers.ts +0 -44
- package/src/packlets/resource-types/index.ts +0 -30
- package/src/packlets/resource-types/jsonResourceType.ts +0 -104
- package/src/packlets/resource-types/resourceType.ts +0 -259
- package/src/packlets/resource-types/resourceTypeCollector.ts +0 -79
- package/src/packlets/resources/candidateReducer.ts +0 -331
- package/src/packlets/resources/common.ts +0 -114
- package/src/packlets/resources/index.ts +0 -28
- package/src/packlets/resources/resource.ts +0 -307
- package/src/packlets/resources/resourceBuilder.ts +0 -269
- package/src/packlets/resources/resourceCandidate.ts +0 -333
- package/src/packlets/resources/resourceManagerBuilder.ts +0 -1169
- package/src/packlets/runtime/cacheListener.ts +0 -113
- package/src/packlets/runtime/cacheMetrics.ts +0 -206
- package/src/packlets/runtime/compiledResourceCollection.ts +0 -607
- package/src/packlets/runtime/conditionSetResolutionResult.ts +0 -160
- package/src/packlets/runtime/context/contextQualifierProvider.ts +0 -117
- package/src/packlets/runtime/context/contextQualifierProviderValidator.ts +0 -281
- package/src/packlets/runtime/context/index.ts +0 -26
- package/src/packlets/runtime/context/simpleContextQualifierProvider.ts +0 -225
- package/src/packlets/runtime/context/validatingSimpleContextQualifierProvider.ts +0 -96
- package/src/packlets/runtime/iResourceManager.ts +0 -130
- package/src/packlets/runtime/index.ts +0 -35
- package/src/packlets/runtime/resource-tree/common.ts +0 -126
- package/src/packlets/runtime/resource-tree/index.ts +0 -26
- package/src/packlets/runtime/resource-tree/readOnlyResourceTree.ts +0 -342
- package/src/packlets/runtime/resource-tree/resourceTreeChildren.ts +0 -125
- package/src/packlets/runtime/resource-tree/resourceTreeChildrenValidator.ts +0 -187
- package/src/packlets/runtime/resourceResolver.ts +0 -626
- package/src/packlets/runtime/validate.ts +0 -63
- package/src/packlets/zip-archive/convert.ts +0 -121
- package/src/packlets/zip-archive/index.ts +0 -76
- package/src/packlets/zip-archive/json.ts +0 -91
- package/src/packlets/zip-archive/types.ts +0 -140
- package/src/packlets/zip-archive/zipArchiveCreator.ts +0 -229
- package/src/packlets/zip-archive/zipArchiveFormat.ts +0 -158
- package/src/packlets/zip-archive/zipArchiveLoader.ts +0 -370
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2025 Erik Fortune
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
* in the Software without restriction, including without limitation the rights
|
|
7
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
9
|
-
* furnished to do so, subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
-
* SOFTWARE.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
import { Brand } from '@fgv/ts-utils';
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Branded string representing a validated qualifier name.
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
export type QualifierName = Brand<string, 'QualifierName'>;
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* Branded number representing a validated qualifier index.
|
|
33
|
-
* @public
|
|
34
|
-
*/
|
|
35
|
-
export type QualifierIndex = Brand<number, 'QualifierIndex'>;
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* Branded string representing a validated qualifier type name.
|
|
39
|
-
* @public
|
|
40
|
-
*/
|
|
41
|
-
export type QualifierTypeName = Brand<string, 'QualifierTypeName'>;
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Branded number representing a validated qualifier type index.
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
export type QualifierTypeIndex = Brand<number, 'QualifierTypeIndex'>;
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* Branded type for a validated qualifier condition value - i.e. a value
|
|
51
|
-
* that has been determined to be valid for use in a condition attached
|
|
52
|
-
* to some resource.
|
|
53
|
-
*
|
|
54
|
-
* @example
|
|
55
|
-
* For a language qualifier type, it is likely that a single language
|
|
56
|
-
* tag can be used for either a condition or a context value. However,
|
|
57
|
-
* a list of languages would likely only be valid as a context value.
|
|
58
|
-
* @public
|
|
59
|
-
*/
|
|
60
|
-
export type QualifierConditionValue = Brand<string, 'QualifierConditionValue'>;
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Branded type for a validated qualifier context value - i.e. a value
|
|
64
|
-
* that has been determined to be valid for use in some runtime context.
|
|
65
|
-
* @example
|
|
66
|
-
* For a language qualifier type, it is likely that a single language
|
|
67
|
-
* tag can be used for either a condition or a context value. However,
|
|
68
|
-
* a list of languages would likely only be valid as a context value.
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
export type QualifierContextValue = Brand<string, 'QualifierContextValue'>;
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* Branded number representing a score in the range 0.0 (no match) .. 1.0 (perfect match)
|
|
75
|
-
* which results from evaluating some condition.
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
export type QualifierMatchScore = Brand<number, 'QualifierMatchScore'>;
|
|
79
|
-
|
|
80
|
-
/**
|
|
81
|
-
* {@link QualifierMatchScore | Match score} indicating no match.
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
export const NoMatch: QualifierMatchScore = 0.0 as QualifierMatchScore;
|
|
85
|
-
|
|
86
|
-
/**
|
|
87
|
-
* {@link QualifierMatchScore | Match score} indicating a perfect match.
|
|
88
|
-
* @public
|
|
89
|
-
*/
|
|
90
|
-
export const PerfectMatch: QualifierMatchScore = 1.0 as QualifierMatchScore;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Branded number representing a validated condition priority.
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
export type ConditionPriority = Brand<number, 'ConditionPriority'>;
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* Minimum valid priority for a condition.
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
export const MinConditionPriority: ConditionPriority = 0 as ConditionPriority;
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* Maximum valid priority for a condition.
|
|
106
|
-
* @public
|
|
107
|
-
*/
|
|
108
|
-
export const MaxConditionPriority: ConditionPriority = 1000 as ConditionPriority;
|
|
109
|
-
|
|
110
|
-
/**
|
|
111
|
-
* Condition operators for use in conditions.
|
|
112
|
-
* @public
|
|
113
|
-
*/
|
|
114
|
-
export type ConditionOperator = 'always' | 'never' | 'matches';
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* Array of all valid condition operators.
|
|
118
|
-
* @public
|
|
119
|
-
*/
|
|
120
|
-
export const allConditionOperators: ConditionOperator[] = ['always', 'never', 'matches'];
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Branded number representing a validated condition index.
|
|
124
|
-
* @public
|
|
125
|
-
*/
|
|
126
|
-
export type ConditionIndex = Brand<number, 'ConditionIndex'>;
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* A branded string representing a validated condition key. A condition key is a
|
|
130
|
-
* string value which fully describes the condition apart from index. The condition
|
|
131
|
-
* key can be used to quickly determine if two conditions are identical apart from
|
|
132
|
-
* index, or for inspection.
|
|
133
|
-
* @public
|
|
134
|
-
*/
|
|
135
|
-
export type ConditionKey = Brand<string, 'ConditionKey'>;
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
* A string representing a validated condition token. Condition tokens are
|
|
139
|
-
* typically extracted from the name of some resource (e.g. file or folder)
|
|
140
|
-
* being imported. A condition token has the form `<qualifierName>=<value>`
|
|
141
|
-
* or `<value>`.
|
|
142
|
-
* @public
|
|
143
|
-
*/
|
|
144
|
-
export type ConditionToken = Brand<string, 'ConditionToken'>;
|
|
145
|
-
|
|
146
|
-
/**
|
|
147
|
-
* Branded number representing a validated condition set index.
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
export type ConditionSetIndex = Brand<number, 'ConditionSetIndex'>;
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* Branded string representing a validated condition set key. A condition set key
|
|
154
|
-
* is a string value which fully describes the condition set apart from index. The
|
|
155
|
-
* condition set key can be used to quickly determine if two condition sets are
|
|
156
|
-
* identical apart from index, or for inspection.
|
|
157
|
-
* @public
|
|
158
|
-
*/
|
|
159
|
-
export type ConditionSetKey = Brand<string, 'ConditionSetKey'>;
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
* A string representing a validated condition set token. Condition set tokens are
|
|
163
|
-
* typically extracted from the name of some resource (e.g. file or folder) being
|
|
164
|
-
* imported. A condition set token is a comma-separated list of one or more
|
|
165
|
-
* {@link ConditionToken | condition tokens}, where a condition token has either
|
|
166
|
-
* the form `<qualifierName>=<value>` or `<value>`.
|
|
167
|
-
* @public
|
|
168
|
-
*/
|
|
169
|
-
export type ConditionSetToken = Brand<string, 'ConditionSetToken'>;
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* Branded string representing a hash value for a condition set. The hash value
|
|
173
|
-
* is an 8-character string derived from the crc32 hash of the condition set key
|
|
174
|
-
* and is used to quickly and compactly identify a condition set or compare for
|
|
175
|
-
* equality.
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
export type ConditionSetHash = Brand<string, 'ConditionSetHash'>;
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* Branded string representing a validated decision key. A decision key is a string
|
|
182
|
-
* value which fully describes the decision apart from index. The decision key can
|
|
183
|
-
* be used to quickly determine if two decisions are identical apart from index.
|
|
184
|
-
* @public
|
|
185
|
-
*/
|
|
186
|
-
export type DecisionKey = Brand<string, 'DecisionKey'>;
|
|
187
|
-
|
|
188
|
-
/**
|
|
189
|
-
* Branded number representing a validated decision index.
|
|
190
|
-
* @public
|
|
191
|
-
*/
|
|
192
|
-
export type DecisionIndex = Brand<number, 'DecisionIndex'>;
|
|
193
|
-
|
|
194
|
-
/**
|
|
195
|
-
* A string representing a validated context qualifier token. Context qualifier tokens are used
|
|
196
|
-
* for filtering resources by context criteria. A context qualifier token has the form
|
|
197
|
-
* `<qualifierName>=<value>` or `<value>`.
|
|
198
|
-
* @public
|
|
199
|
-
*/
|
|
200
|
-
export type ContextQualifierToken = Brand<string, 'ContextQualifierToken'>;
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* A string representing a validated context token. Context tokens are
|
|
204
|
-
* pipe-separated lists of one or more context qualifier tokens. Uses "|" as separator
|
|
205
|
-
* to avoid conflicts with comma-separated values within context values.
|
|
206
|
-
* Example: "language=en-US,de-DE|territory=US|role=admin"
|
|
207
|
-
* @public
|
|
208
|
-
*/
|
|
209
|
-
export type ContextToken = Brand<string, 'ContextToken'>;
|
|
210
|
-
|
|
211
|
-
/**
|
|
212
|
-
* A string representing a single qualifier default value assignment.
|
|
213
|
-
* Format: "qualifierName=defaultValue" or "qualifierName=" (to remove default)
|
|
214
|
-
* Example: "language=en-US,en-CA" or "territory=US"
|
|
215
|
-
* @public
|
|
216
|
-
*/
|
|
217
|
-
export type QualifierDefaultValueToken = Brand<string, 'QualifierDefaultValueToken'>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* A string representing a validated qualifier default values token. Default value tokens are
|
|
221
|
-
* pipe-separated lists of one or more qualifier default value tokens. Uses "|" as separator
|
|
222
|
-
* to avoid conflicts with comma-separated values within default values.
|
|
223
|
-
* Example: "language=en-US,en-CA|territory=US|device=desktop,tablet"
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export type QualifierDefaultValuesToken = Brand<string, 'QualifierDefaultValuesToken'>;
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2025 Erik Fortune
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
* in the Software without restriction, including without limitation the rights
|
|
7
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
9
|
-
* furnished to do so, subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
-
* SOFTWARE.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
import { Converters } from '@fgv/ts-utils';
|
|
24
|
-
import * as Validate from './validate';
|
|
25
|
-
import { allConditionOperators } from './conditions';
|
|
26
|
-
import { allResourceValueMergeMethods } from './resources';
|
|
27
|
-
|
|
28
|
-
/* eslint-disable @rushstack/typedef-var */
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierName | QualifierName}.
|
|
32
|
-
* @public
|
|
33
|
-
*/
|
|
34
|
-
export const qualifierName = Converters.string.map(Validate.toQualifierName);
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierIndex | QualifierIndex}.
|
|
38
|
-
* @public
|
|
39
|
-
*/
|
|
40
|
-
export const qualifierIndex = Converters.number.map(Validate.toQualifierIndex);
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierTypeName | QualifierTypeName}.
|
|
44
|
-
* @public
|
|
45
|
-
*/
|
|
46
|
-
export const qualifierTypeName = Converters.string.map(Validate.toQualifierTypeName);
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierTypeIndex | QualifierTypeIndex}.
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export const qualifierTypeIndex = Converters.number.map(Validate.toQualifierTypeIndex);
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierConditionValue | QualifierConditionValue}.
|
|
56
|
-
* @public
|
|
57
|
-
*/
|
|
58
|
-
export const qualifierMatchScore = Converters.number.map(Validate.toQualifierMatchScore);
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionPriority | ConditionPriority}.
|
|
62
|
-
* @public
|
|
63
|
-
*/
|
|
64
|
-
export const conditionPriority = Converters.number.map(Validate.toConditionPriority);
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionOperator | ConditionOperator}.
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
export const conditionOperator = Converters.enumeratedValue(allConditionOperators);
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionIndex | ConditionIndex}.
|
|
74
|
-
* @public
|
|
75
|
-
*/
|
|
76
|
-
export const conditionIndex = Converters.number.map(Validate.toConditionIndex);
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionKey | ConditionKey}.
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
export const conditionKey = Converters.string.map(Validate.toConditionKey);
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionToken | ConditionToken}.
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
export const conditionToken = Converters.string.map(Validate.toConditionToken);
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionSetIndex | ConditionSetIndex}.
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
export const conditionSetIndex = Converters.number.map(Validate.toConditionSetIndex);
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionSetKey | ConditionSetKey}.
|
|
98
|
-
* @public
|
|
99
|
-
*/
|
|
100
|
-
export const conditionSetKey = Converters.string.map(Validate.toConditionSetKey);
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionSetToken | ConditionSetToken}.
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
export const conditionSetToken = Converters.string.map(Validate.toConditionSetToken);
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* `Converter` which validates an `unknown` value as a {@link ConditionSetHash | ConditionSetHash}.
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
export const conditionSetHash = Converters.string.map(Validate.toConditionSetHash);
|
|
113
|
-
|
|
114
|
-
/**
|
|
115
|
-
* `Converter` which validates an `unknown` value as a {@link DecisionIndex | DecisionIndex}.
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
export const decisionIndex = Converters.number.map(Validate.toDecisionIndex);
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* `Converter` which validates an `unknown` value as a {@link DecisionKey | DecisionKey}.
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
export const decisionKey = Converters.string.map(Validate.toDecisionKey);
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* `Converter` which validates an `unknown` value as a {@link ResourceId | ResourceId}.
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
export const resourceId = Converters.string.map(Validate.toResourceId);
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* `Converter` which validates an `unknown` value as a {@link ResourceName | ResourceName}.
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
|
-
export const resourceName = Converters.string.map(Validate.toResourceName);
|
|
137
|
-
|
|
138
|
-
/**
|
|
139
|
-
* `Converter` which validates an `unknown` value as a {@link ResourceIndex | ResourceIndex}.
|
|
140
|
-
* @public
|
|
141
|
-
*/
|
|
142
|
-
export const resourceIndex = Converters.number.map(Validate.toResourceIndex);
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
* `Converter` which validates an `unknown` value as a {@link ResourceTypeName | ResourceTypeName}.
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
export const resourceTypeName = Converters.string.map(Validate.toResourceTypeName);
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* `Converter` which validates an `unknown` value as a {@link ResourceTypeIndex | ResourceTypeIndex}.
|
|
152
|
-
* @public
|
|
153
|
-
*/
|
|
154
|
-
export const resourceTypeIndex = Converters.number.map(Validate.toResourceTypeIndex);
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* `Converter` for a resource value merge method.
|
|
158
|
-
* @public
|
|
159
|
-
*/
|
|
160
|
-
export const resourceValueMergeMethod = Converters.enumeratedValue(allResourceValueMergeMethods);
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* `Converter` which validates an `unknown` value as a {@link ContextQualifierToken | ContextQualifierToken}.
|
|
164
|
-
* @public
|
|
165
|
-
*/
|
|
166
|
-
export const contextQualifierToken = Converters.string.map(Validate.toContextQualifierToken);
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* `Converter` which validates an `unknown` value as a {@link ContextToken | ContextToken}.
|
|
170
|
-
* @public
|
|
171
|
-
*/
|
|
172
|
-
export const contextToken = Converters.string.map(Validate.toContextToken);
|
|
173
|
-
|
|
174
|
-
/**
|
|
175
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierDefaultValueToken | QualifierDefaultValueToken}.
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
export const qualifierDefaultValueToken = Converters.string.map(Validate.toQualifierDefaultValueToken);
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* `Converter` which validates an `unknown` value as a {@link QualifierDefaultValuesToken | QualifierDefaultValuesToken}.
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
export const qualifierDefaultValuesToken = Converters.string.map(Validate.toQualifierDefaultValuesToken);
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2025 Erik Fortune
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
* in the Software without restriction, including without limitation the rights
|
|
7
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
9
|
-
* furnished to do so, subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
-
* SOFTWARE.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
import { mapResults, Result, succeed } from '@fgv/ts-utils';
|
|
24
|
-
import * as Validate from '../validate';
|
|
25
|
-
import { ConditionSetToken, ConditionToken } from '../conditions';
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* The values needed to create a {@link ConditionToken | condition token}.
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export interface IConditionTokenParts {
|
|
32
|
-
qualifier?: string;
|
|
33
|
-
value: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Converts a {@link Helpers.IConditionTokenParts | the parts that make up a condition token} into
|
|
38
|
-
* a syntactically validated {@link ConditionToken | condition token}.
|
|
39
|
-
* @param parts - the parts to convert
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export function buildConditionToken({ qualifier, value }: IConditionTokenParts): Result<ConditionToken> {
|
|
43
|
-
return Validate.toConditionToken(qualifier ? `${qualifier}=${value}` : value);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* Converts an array of {@link Helpers.IConditionTokenParts | condition token parts} into an array of
|
|
48
|
-
* syntactically validated {@link ConditionToken | condition tokens}.
|
|
49
|
-
* @param parts - the parts to convert
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export function buildConditionSetToken(
|
|
53
|
-
parts: ReadonlyArray<IConditionTokenParts>
|
|
54
|
-
): Result<ConditionSetToken> {
|
|
55
|
-
return mapResults(parts.map(buildConditionToken)).onSuccess((tokens) =>
|
|
56
|
-
Validate.toConditionSetToken(tokens.join(','))
|
|
57
|
-
);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Parses a condition token string into its {@link Helpers.IConditionTokenParts | parts}.
|
|
62
|
-
* @param token - the token string to parse.
|
|
63
|
-
* @returns `Success` with the parts if successful, `Failure` with an error message if not.
|
|
64
|
-
* @public
|
|
65
|
-
*/
|
|
66
|
-
export function parseConditionTokenParts(token: string): Result<IConditionTokenParts> {
|
|
67
|
-
return Validate.toConditionToken(token).onSuccess((t) => {
|
|
68
|
-
const parts = t.split('=');
|
|
69
|
-
if (parts.length === 1) {
|
|
70
|
-
return succeed({ value: parts[0] });
|
|
71
|
-
}
|
|
72
|
-
return succeed({ qualifier: parts[0], value: parts[1] });
|
|
73
|
-
});
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Parses a condition set token string into an array of {@link Helpers.IConditionTokenParts | condition token parts}.
|
|
78
|
-
* @param token - the conditions set token string to parse.
|
|
79
|
-
* @returns `Success` with the parts if successful, `Failure` with an error message if not.
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
export function parseConditionSetTokenParts(token: string): Result<IConditionTokenParts[]> {
|
|
83
|
-
return mapResults(token.split(',').map(parseConditionTokenParts));
|
|
84
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2025 Erik Fortune
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
* in the Software without restriction, including without limitation the rights
|
|
7
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
9
|
-
* furnished to do so, subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
-
* SOFTWARE.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
import { mapResults, Result, succeed } from '@fgv/ts-utils';
|
|
24
|
-
import * as Validate from '../validate';
|
|
25
|
-
import { ContextToken, ContextQualifierToken } from '../conditions';
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* The values needed to create a {@link ContextQualifierToken | context qualifier token}.
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export interface IContextTokenParts {
|
|
32
|
-
qualifier?: string;
|
|
33
|
-
value: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Converts a {@link Helpers.IContextTokenParts | the parts that make up a context qualifier token} into
|
|
38
|
-
* a syntactically validated {@link ContextQualifierToken | context qualifier token}.
|
|
39
|
-
* @param parts - the parts to convert
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export function buildContextQualifierToken({
|
|
43
|
-
qualifier,
|
|
44
|
-
value
|
|
45
|
-
}: IContextTokenParts): Result<ContextQualifierToken> {
|
|
46
|
-
return Validate.toContextQualifierToken(qualifier ? `${qualifier}=${value}` : value);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* Converts an array of {@link Helpers.IContextTokenParts | context qualifier token parts} into a
|
|
51
|
-
* syntactically validated {@link ContextToken | context token}.
|
|
52
|
-
* @param parts - the parts to convert
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
|
-
export function buildContextToken(parts: ReadonlyArray<IContextTokenParts>): Result<ContextToken> {
|
|
56
|
-
return mapResults(parts.map(buildContextQualifierToken)).onSuccess((tokens) =>
|
|
57
|
-
Validate.toContextToken(tokens.join('|'))
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* Parses a context qualifier token string into its {@link Helpers.IContextTokenParts | parts}.
|
|
63
|
-
* @param token - the token string to parse.
|
|
64
|
-
* @returns `Success` with the parts if successful, `Failure` with an error message if not.
|
|
65
|
-
* @public
|
|
66
|
-
*/
|
|
67
|
-
export function parseContextQualifierTokenParts(token: string): Result<IContextTokenParts> {
|
|
68
|
-
return Validate.toContextQualifierToken(token).onSuccess((t) => {
|
|
69
|
-
const parts = t.split('=');
|
|
70
|
-
if (parts.length === 1) {
|
|
71
|
-
return succeed({ value: parts[0] });
|
|
72
|
-
}
|
|
73
|
-
return succeed({ qualifier: parts[0], value: parts[1] });
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* Parses a context token string into an array of {@link Helpers.IContextTokenParts | context qualifier token parts}.
|
|
79
|
-
* @param token - the context token string to parse.
|
|
80
|
-
* @returns `Success` with the parts if successful, `Failure` with an error message if not.
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
export function parseContextTokenParts(token: string): Result<IContextTokenParts[]> {
|
|
84
|
-
if (token === '') {
|
|
85
|
-
return succeed([]);
|
|
86
|
-
}
|
|
87
|
-
return mapResults(token.split('|').map((part) => parseContextQualifierTokenParts(part.trim())));
|
|
88
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2025 Erik Fortune
|
|
3
|
-
*
|
|
4
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
* in the Software without restriction, including without limitation the rights
|
|
7
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
9
|
-
* furnished to do so, subject to the following conditions:
|
|
10
|
-
*
|
|
11
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
* copies or substantial portions of the Software.
|
|
13
|
-
*
|
|
14
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
-
* SOFTWARE.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
export * from './conditions';
|
|
24
|
-
export * from './context';
|
|
25
|
-
export * from './qualifierDefaultValues';
|
|
26
|
-
export * from './resources';
|