@aidc-toolkit/utility 1.0.22-beta → 1.0.24-beta

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 (64) hide show
  1. package/README.md +30 -30
  2. package/dist/index.cjs +3569 -0
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.d.cts +947 -0
  5. package/dist/index.d.ts +947 -26
  6. package/dist/index.js +3504 -8
  7. package/dist/index.js.map +1 -1
  8. package/package.json +4 -8
  9. package/src/character-set.ts +6 -6
  10. package/src/index.ts +9 -9
  11. package/src/locale/en/{locale-strings.ts → locale-resources.ts} +1 -1
  12. package/src/locale/fr/{locale-strings.ts → locale-resources.ts} +1 -1
  13. package/src/locale/i18n.ts +6 -8
  14. package/src/locale/i18next.d.ts +2 -2
  15. package/src/record.ts +2 -2
  16. package/src/reg-exp.ts +2 -2
  17. package/src/transformer.ts +3 -3
  18. package/tsup.config.ts +3 -0
  19. package/typedoc.json +1 -3
  20. package/dist/character-set.d.ts +0 -307
  21. package/dist/character-set.d.ts.map +0 -1
  22. package/dist/character-set.js +0 -563
  23. package/dist/character-set.js.map +0 -1
  24. package/dist/exclusion.d.ts +0 -22
  25. package/dist/exclusion.d.ts.map +0 -1
  26. package/dist/exclusion.js +0 -18
  27. package/dist/exclusion.js.map +0 -1
  28. package/dist/index.d.ts.map +0 -1
  29. package/dist/iterable-utility.d.ts +0 -39
  30. package/dist/iterable-utility.d.ts.map +0 -1
  31. package/dist/iterable-utility.js +0 -35
  32. package/dist/iterable-utility.js.map +0 -1
  33. package/dist/locale/en/locale-strings.d.ts +0 -32
  34. package/dist/locale/en/locale-strings.d.ts.map +0 -1
  35. package/dist/locale/en/locale-strings.js +0 -32
  36. package/dist/locale/en/locale-strings.js.map +0 -1
  37. package/dist/locale/fr/locale-strings.d.ts +0 -32
  38. package/dist/locale/fr/locale-strings.d.ts.map +0 -1
  39. package/dist/locale/fr/locale-strings.js +0 -32
  40. package/dist/locale/fr/locale-strings.js.map +0 -1
  41. package/dist/locale/i18n.d.ts +0 -27
  42. package/dist/locale/i18n.d.ts.map +0 -1
  43. package/dist/locale/i18n.js +0 -35
  44. package/dist/locale/i18n.js.map +0 -1
  45. package/dist/record.d.ts +0 -44
  46. package/dist/record.d.ts.map +0 -1
  47. package/dist/record.js +0 -58
  48. package/dist/record.js.map +0 -1
  49. package/dist/reg-exp.d.ts +0 -43
  50. package/dist/reg-exp.d.ts.map +0 -1
  51. package/dist/reg-exp.js +0 -55
  52. package/dist/reg-exp.js.map +0 -1
  53. package/dist/sequence.d.ts +0 -68
  54. package/dist/sequence.d.ts.map +0 -1
  55. package/dist/sequence.js +0 -96
  56. package/dist/sequence.js.map +0 -1
  57. package/dist/string.d.ts +0 -25
  58. package/dist/string.d.ts.map +0 -1
  59. package/dist/string.js +0 -2
  60. package/dist/string.js.map +0 -1
  61. package/dist/transformer.d.ts +0 -346
  62. package/dist/transformer.d.ts.map +0 -1
  63. package/dist/transformer.js +0 -456
  64. package/dist/transformer.js.map +0 -1
package/src/index.ts CHANGED
@@ -14,12 +14,12 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- export * from "./locale/i18n.js";
18
- export * from "./sequence.js";
19
- export * from "./iterable-utility.js";
20
- export * from "./transformer.js";
21
- export type * from "./string.js";
22
- export * from "./reg-exp.js";
23
- export * from "./record.js";
24
- export * from "./exclusion.js";
25
- export * from "./character-set.js";
17
+ export * from "./locale/i18n";
18
+ export * from "./sequence";
19
+ export * from "./iterable-utility";
20
+ export * from "./transformer";
21
+ export type * from "./string";
22
+ export * from "./reg-exp";
23
+ export * from "./record";
24
+ export * from "./exclusion";
25
+ export * from "./character-set";
@@ -1,4 +1,4 @@
1
- export const localeStrings = {
1
+ export default {
2
2
  Transformer: {
3
3
  domainMustBeGreaterThanZero: "Domain {{domain, number}} must be greater than 0",
4
4
  tweakMustBeGreaterThanOrEqualToZero: "Tweak {{tweak, number}} must be greater than or equal to 0",
@@ -1,4 +1,4 @@
1
- export const localeStrings = {
1
+ export default {
2
2
  Transformer: {
3
3
  domainMustBeGreaterThanZero: "Le domaine {{domain, number}} doit être supérieur à 0",
4
4
  tweakMustBeGreaterThanOrEqualToZero: "Le réglage {{tweak, number}} doit être supérieur ou égal à 0",
@@ -1,26 +1,24 @@
1
- import { i18nAssertValidResources, i18nCoreInit, type I18nEnvironment } from "@aidc-toolkit/core";
1
+ import { i18nCoreInit, type I18nEnvironment } from "@aidc-toolkit/core";
2
2
  import i18next, { type i18n, type Resource } from "i18next";
3
- import { localeStrings as enLocaleStrings } from "./en/locale-strings.js";
4
- import { localeStrings as frLocaleStrings } from "./fr/locale-strings.js";
3
+ import enLocaleResources from "./en/locale-resources";
4
+ import frLocaleResources from "./fr/locale-resources";
5
5
 
6
6
  export const utilityNS = "aidct_utility";
7
7
 
8
8
  /**
9
9
  * Locale strings type is extracted from the English locale strings object.
10
10
  */
11
- export type UtilityLocaleStrings = typeof enLocaleStrings;
12
-
13
- i18nAssertValidResources(enLocaleStrings, "fr", frLocaleStrings);
11
+ export type UtilityLocaleResources = typeof enLocaleResources;
14
12
 
15
13
  /**
16
14
  * Utility resources.
17
15
  */
18
16
  export const utilityResources: Resource = {
19
17
  en: {
20
- aidct_utility: enLocaleStrings
18
+ aidct_utility: enLocaleResources
21
19
  },
22
20
  fr: {
23
- aidct_utility: frLocaleStrings
21
+ aidct_utility: frLocaleResources
24
22
  }
25
23
  };
26
24
 
@@ -1,4 +1,4 @@
1
- import type { UtilityLocaleStrings } from "./i18n.js";
1
+ import type { UtilityLocaleResources } from "./i18n";
2
2
 
3
3
  /**
4
4
  * Internationalization module.
@@ -10,7 +10,7 @@ declare module "i18next" {
10
10
  interface CustomTypeOptions {
11
11
  defaultNS: "aidct_utility";
12
12
  resources: {
13
- aidct_utility: UtilityLocaleStrings;
13
+ aidct_utility: UtilityLocaleResources;
14
14
  };
15
15
  }
16
16
  }
package/src/record.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { i18nextUtility } from "./locale/i18n.js";
2
- import type { StringValidator } from "./string.js";
1
+ import { i18nextUtility } from "./locale/i18n";
2
+ import type { StringValidator } from "./string";
3
3
 
4
4
  /**
5
5
  * Record validator. Validation is performed against a record with a string key type and throws an error if the key is
package/src/reg-exp.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { i18nextUtility } from "./locale/i18n.js";
2
- import type { StringValidator } from "./string.js";
1
+ import { i18nextUtility } from "./locale/i18n";
2
+ import type { StringValidator } from "./string";
3
3
 
4
4
  /**
5
5
  * Regular expression validator. The regular expression applies to the full string only if constructed as such. For
@@ -1,6 +1,6 @@
1
- import { type IndexedCallback, mapIterable } from "./iterable-utility.js";
2
- import { i18nextUtility } from "./locale/i18n.js";
3
- import { Sequence } from "./sequence.js";
1
+ import { type IndexedCallback, mapIterable } from "./iterable-utility";
2
+ import { i18nextUtility } from "./locale/i18n";
3
+ import { Sequence } from "./sequence";
4
4
 
5
5
  /**
6
6
  * Transformer primitive type.
package/tsup.config.ts ADDED
@@ -0,0 +1,3 @@
1
+ import { tsupConfigAIDCToolkit } from "@aidc-toolkit/dev";
2
+
3
+ export default tsupConfigAIDCToolkit;
package/typedoc.json CHANGED
@@ -3,7 +3,5 @@
3
3
  "extends": [
4
4
  "@aidc-toolkit/dev/typedoc.json"
5
5
  ],
6
- "name": "Utility",
7
- "tsconfig": "node_modules/@aidc-toolkit/dev/tsconfig-build-dev.json",
8
- "gitRevision": "main"
6
+ "name": "Utility"
9
7
  }
@@ -1,307 +0,0 @@
1
- import { type Exclusion } from "./exclusion.js";
2
- import type { IndexedCallback } from "./iterable-utility.js";
3
- import type { StringValidation, StringValidator } from "./string.js";
4
- import { type TransformerInput, type TransformerOutput } from "./transformer.js";
5
- /**
6
- * Character set validation parameters.
7
- */
8
- export interface CharacterSetValidation extends StringValidation {
9
- /**
10
- * Minimum length. If defined and the string is less than this length, an error is thrown.
11
- */
12
- minimumLength?: number | undefined;
13
- /**
14
- * Maximum length. If defined and the string is greater than this length, an error is thrown.
15
- */
16
- maximumLength?: number | undefined;
17
- /**
18
- * Exclusion from the string. If defined and the string is within the exclusion range, an error is thrown.
19
- */
20
- exclusion?: Exclusion | undefined;
21
- /**
22
- * Position offset within a larger string. Strings are sometimes composed of multiple substrings; this parameter
23
- * ensures that the error notes the proper position in the string.
24
- */
25
- positionOffset?: number | undefined;
26
- /**
27
- * Name of component, typically but not exclusively within a larger string. This parameter ensure that the
28
- * error notes the component that triggered it. Value may be a string or a callback that returns a string, the
29
- * latter allowing for localization changes.
30
- */
31
- component?: string | (() => string) | undefined;
32
- }
33
- /**
34
- * Character set validator. Validates a string against a specified character set.
35
- */
36
- export declare class CharacterSetValidator implements StringValidator<CharacterSetValidation> {
37
- private static readonly NOT_ALL_NUMERIC_VALIDATOR;
38
- /**
39
- * Character set.
40
- */
41
- private readonly _characterSet;
42
- /**
43
- * Character set map, mapping each character in the character set to its index such that
44
- * `_characterSetMap.get(_characterSet[index]) === index`.
45
- */
46
- private readonly _characterSetMap;
47
- /**
48
- * Exclusions supported by the character set.
49
- */
50
- private readonly _exclusionSupport;
51
- /**
52
- * Constructor.
53
- *
54
- * @param characterSet
55
- * Character set. Each element is a single-character string, unique within the array, that defines the character
56
- * set.
57
- *
58
- * @param exclusionSupport
59
- * Exclusions supported by the character set. All character sets implicitly support {@link Exclusions.None}.
60
- */
61
- constructor(characterSet: readonly string[], ...exclusionSupport: readonly Exclusion[]);
62
- /**
63
- * Get the character set.
64
- */
65
- get characterSet(): readonly string[];
66
- /**
67
- * Get the character set size.
68
- */
69
- get characterSetSize(): number;
70
- /**
71
- * Get the exclusions supported by the character set.
72
- */
73
- get exclusionSupport(): readonly Exclusion[];
74
- /**
75
- * Get the character at an index.
76
- *
77
- * @param index
78
- * Index into the character set.
79
- *
80
- * @returns
81
- * Character at the index.
82
- */
83
- character(index: number): string;
84
- /**
85
- * Get the index for a character.
86
- *
87
- * @param c
88
- * Character.
89
- *
90
- * @returns
91
- * Index for the character or undefined if the character is not in the character set.
92
- */
93
- characterIndex(c: string): number | undefined;
94
- /**
95
- * Get the indexes for all characters in a string.
96
- *
97
- * @param s
98
- * String.
99
- *
100
- * @returns
101
- * Array of indexes for each character or undefined if the character is not in the character set.
102
- */
103
- characterIndexes(s: string): ReadonlyArray<number | undefined>;
104
- /**
105
- * Convert a component definition to a string or undefined. Checks the type of the component and makes the callback
106
- * if required.
107
- *
108
- * @param component
109
- * Component definition as a string, callback, or undefined.
110
- *
111
- * @returns
112
- * Component as a string or undefined.
113
- */
114
- private static componentToString;
115
- /**
116
- * Validate that an exclusion is supported. If not, an error is thrown.
117
- *
118
- * @param exclusion
119
- * Exclusion.
120
- */
121
- protected validateExclusion(exclusion: Exclusion): void;
122
- /**
123
- * Validate a string. If the string violates the character set or any of the character set validation parameters, an
124
- * error is thrown.
125
- *
126
- * @param s
127
- * String.
128
- *
129
- * @param validation
130
- * Character set validation parameters.
131
- */
132
- validate(s: string, validation?: CharacterSetValidation): void;
133
- }
134
- /**
135
- * Character set creator. Maps numeric values to strings using the character set as digits.
136
- */
137
- export declare class CharacterSetCreator extends CharacterSetValidator {
138
- /**
139
- * Maximum string length supported.
140
- */
141
- static readonly MAXIMUM_STRING_LENGTH = 40;
142
- /**
143
- * Powers of 10 from 1 (`10**0`) to `10**MAXIMUM_STRING_LENGTH`.
144
- */
145
- private static readonly _powersOf10;
146
- /**
147
- * Create powers of a given base from 1 (`base**0`) to `base**MAXIMUM_STRING_LENGTH`.
148
- *
149
- * @param base
150
- * Number base.
151
- *
152
- * @returns
153
- * Array of powers of base.
154
- */
155
- private static createPowersOf;
156
- /**
157
- * Get a power of 10.
158
- *
159
- * @param power
160
- * Power.
161
- *
162
- * @returns
163
- * `10**power`.
164
- */
165
- static powerOf10(power: number): bigint;
166
- /**
167
- * Character set size as big integer, cached for performance purposes.
168
- */
169
- private readonly _characterSetSizeN;
170
- /**
171
- * Character set size minus 1 as big integer, cached for performance purposes.
172
- */
173
- private readonly _characterSetSizeMinusOneN;
174
- /**
175
- * Domains for every length for every supported {@link Exclusions}.
176
- */
177
- private readonly _exclusionDomains;
178
- /**
179
- * Values that would generate all zeros in the created string.
180
- */
181
- private readonly _allZerosValues;
182
- /**
183
- * Constructor.
184
- *
185
- * @param characterSet
186
- * Character set. Each element is a single-character string, unique within the array, that defines the character
187
- * set.
188
- *
189
- * @param exclusionSupport
190
- * Exclusions supported by the character set. All character sets implicitly support {@link Exclusions.None}.
191
- */
192
- constructor(characterSet: readonly string[], ...exclusionSupport: readonly Exclusion[]);
193
- /**
194
- * Get a power of character set size.
195
- *
196
- * @param power
197
- * Power.
198
- *
199
- * @returns
200
- * `characterSetSize**power`.
201
- */
202
- private powerOfSize;
203
- /**
204
- * Determine the shift required to skip all all-numeric strings up to the value.
205
- *
206
- * @param shiftForward
207
- * True to shift forward (value to string), false to shift backward (string to value).
208
- *
209
- * @param length
210
- * Length of string for which to get the all-numeric shift.
211
- *
212
- * @param value
213
- * Value for which to get the all-numeric shift.
214
- *
215
- * @returns
216
- * Shift required to skip all all-numeric strings.
217
- */
218
- private allNumericShift;
219
- /**
220
- * Validate that a length is less than or equal to {@link MAXIMUM_STRING_LENGTH}. If not, an error is thrown.
221
- *
222
- * @param length
223
- * Length.
224
- */
225
- private validateLength;
226
- /**
227
- * Create string(s) by mapping value(s) to the equivalent characters in the character set across the length of the
228
- * string.
229
- *
230
- * @template TTransformerInput
231
- * Transformer input type.
232
- *
233
- * @param length
234
- * Required string length.
235
- *
236
- * @param valueOrValues
237
- * Numeric value(s) of the string(s).
238
- *
239
- * @param exclusion
240
- * String(s) to be excluded from the range of outputs. See {@link Exclusions} for possible values and their meaning.
241
- *
242
- * @param tweak
243
- * If provided, the numerical value of the string(s) is/are "tweaked" using an {@link EncryptionTransformer |
244
- * encryption transformer}.
245
- *
246
- * @param creatorCallback
247
- * If provided, called after each string is constructed to create the final value.
248
- *
249
- * @returns
250
- * String(s) created from the value(s).
251
- */
252
- create<TTransformerInput extends TransformerInput<number | bigint>>(length: number, valueOrValues: TTransformerInput, exclusion?: Exclusion, tweak?: number | bigint, creatorCallback?: IndexedCallback<string, string>): TransformerOutput<TTransformerInput, string>;
253
- /**
254
- * Determine the value for a string.
255
- *
256
- * @param s
257
- * String.
258
- *
259
- * @param exclusion
260
- * Strings excluded from the range of inputs. See {@link Exclusions} for possible values and their meaning.
261
- *
262
- * @param tweak
263
- * If provided, the numerical value of the string was "tweaked" using an {@link EncryptionTransformer | encryption
264
- * transformer}.
265
- *
266
- * @returns
267
- * Numeric value of the string.
268
- */
269
- valueFor(s: string, exclusion?: Exclusion, tweak?: number | bigint): bigint;
270
- }
271
- /**
272
- * Numeric creator. Character set is 0-9. Supports {@link Exclusions.FirstZero}.
273
- */
274
- export declare const NUMERIC_CREATOR: CharacterSetCreator;
275
- /**
276
- * Numeric validator. Character set is 0-9. Supports {@link Exclusions.FirstZero}.
277
- */
278
- export declare const NUMERIC_VALIDATOR: CharacterSetValidator;
279
- /**
280
- * Hexadecimal creator. Character set is 0-9, A-F. Supports {@link Exclusions.FirstZero} and {@link
281
- * Exclusions.AllNumeric}.
282
- */
283
- export declare const HEXADECIMAL_CREATOR: CharacterSetCreator;
284
- /**
285
- * Hexadecimal validator. Character set is 0-9, A-F. Supports {@link Exclusions.FirstZero} and {@link
286
- * Exclusions.AllNumeric}.
287
- */
288
- export declare const HEXADECIMAL_VALIDATOR: CharacterSetValidator;
289
- /**
290
- * Alphabetic creator. Character set is A-Z.
291
- */
292
- export declare const ALPHABETIC_CREATOR: CharacterSetCreator;
293
- /**
294
- * Alphabetic validator. Character set is A-Z.
295
- */
296
- export declare const ALPHABETIC_VALIDATOR: CharacterSetValidator;
297
- /**
298
- * Alphanumeric creator. Character set is 0-9, A-Z. Supports {@link Exclusions.FirstZero} and {@link
299
- * Exclusions.AllNumeric}.
300
- */
301
- export declare const ALPHANUMERIC_CREATOR: CharacterSetCreator;
302
- /**
303
- * Alphanumeric validator. Character set is 0-9, A-Z. Supports {@link Exclusions.FirstZero} and {@link
304
- * Exclusions.AllNumeric}.
305
- */
306
- export declare const ALPHANUMERIC_VALIDATOR: CharacterSetValidator;
307
- //# sourceMappingURL=character-set.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"character-set.d.ts","sourceRoot":"","sources":["../src/character-set.ts"],"names":[],"mappings":"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"}