@genesislcap/foundation-utils 14.231.1-alpha-41de57b.0 → 14.231.1-alpha-9df9116.0

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 (2) hide show
  1. package/dist/custom-elements.json +166 -166
  2. package/package.json +10 -10
@@ -472,7 +472,7 @@
472
472
  },
473
473
  {
474
474
  "kind": "javascript-module",
475
- "path": "src/directives/index.ts",
475
+ "path": "src/encoding/index.ts",
476
476
  "declarations": [],
477
477
  "exports": [
478
478
  {
@@ -480,22 +480,14 @@
480
480
  "name": "*",
481
481
  "declaration": {
482
482
  "name": "*",
483
- "package": "./sync"
484
- }
485
- },
486
- {
487
- "kind": "js",
488
- "name": "*",
489
- "declaration": {
490
- "name": "*",
491
- "package": "./when-else"
483
+ "package": "./base64"
492
484
  }
493
485
  }
494
486
  ]
495
487
  },
496
488
  {
497
489
  "kind": "javascript-module",
498
- "path": "src/encoding/index.ts",
490
+ "path": "src/directives/index.ts",
499
491
  "declarations": [],
500
492
  "exports": [
501
493
  {
@@ -503,7 +495,15 @@
503
495
  "name": "*",
504
496
  "declaration": {
505
497
  "name": "*",
506
- "package": "./base64"
498
+ "package": "./sync"
499
+ }
500
+ },
501
+ {
502
+ "kind": "js",
503
+ "name": "*",
504
+ "declaration": {
505
+ "name": "*",
506
+ "package": "./when-else"
507
507
  }
508
508
  }
509
509
  ]
@@ -2135,6 +2135,160 @@
2135
2135
  }
2136
2136
  ]
2137
2137
  },
2138
+ {
2139
+ "kind": "javascript-module",
2140
+ "path": "src/encoding/base64/decode.ts",
2141
+ "declarations": [
2142
+ {
2143
+ "kind": "function",
2144
+ "name": "decodeFromBase64",
2145
+ "return": {
2146
+ "type": {
2147
+ "text": ""
2148
+ }
2149
+ },
2150
+ "parameters": [
2151
+ {
2152
+ "name": "base64Value",
2153
+ "type": {
2154
+ "text": "string"
2155
+ }
2156
+ },
2157
+ {
2158
+ "description": "The value to decode from base64.",
2159
+ "name": "value"
2160
+ }
2161
+ ],
2162
+ "description": "Decodes a value from base64.",
2163
+ "privacy": "public"
2164
+ },
2165
+ {
2166
+ "kind": "function",
2167
+ "name": "decodeFromBase64WithPrefix",
2168
+ "return": {
2169
+ "type": {
2170
+ "text": ""
2171
+ }
2172
+ },
2173
+ "parameters": [
2174
+ {
2175
+ "name": "value",
2176
+ "type": {
2177
+ "text": "string"
2178
+ },
2179
+ "description": "The value to decode from base64."
2180
+ }
2181
+ ],
2182
+ "description": "Decodes a value from base64 with a prefix.",
2183
+ "privacy": "public"
2184
+ }
2185
+ ],
2186
+ "exports": [
2187
+ {
2188
+ "kind": "js",
2189
+ "name": "decodeFromBase64",
2190
+ "declaration": {
2191
+ "name": "decodeFromBase64",
2192
+ "module": "src/encoding/base64/decode.ts"
2193
+ }
2194
+ },
2195
+ {
2196
+ "kind": "js",
2197
+ "name": "decodeFromBase64WithPrefix",
2198
+ "declaration": {
2199
+ "name": "decodeFromBase64WithPrefix",
2200
+ "module": "src/encoding/base64/decode.ts"
2201
+ }
2202
+ }
2203
+ ]
2204
+ },
2205
+ {
2206
+ "kind": "javascript-module",
2207
+ "path": "src/encoding/base64/encode.ts",
2208
+ "declarations": [
2209
+ {
2210
+ "kind": "function",
2211
+ "name": "encodeToBase64",
2212
+ "return": {
2213
+ "type": {
2214
+ "text": ""
2215
+ }
2216
+ },
2217
+ "parameters": [
2218
+ {
2219
+ "name": "value",
2220
+ "type": {
2221
+ "text": "string | ArrayBuffer"
2222
+ },
2223
+ "description": "The value to encode to base64."
2224
+ }
2225
+ ],
2226
+ "description": "Encodes the given value to base64.",
2227
+ "privacy": "public"
2228
+ },
2229
+ {
2230
+ "kind": "function",
2231
+ "name": "encodeToBase64WithPrefix",
2232
+ "return": {
2233
+ "type": {
2234
+ "text": ""
2235
+ }
2236
+ },
2237
+ "parameters": [
2238
+ {
2239
+ "name": "value",
2240
+ "type": {
2241
+ "text": "string | ArrayBuffer"
2242
+ },
2243
+ "description": "The value to encode to base64."
2244
+ }
2245
+ ],
2246
+ "description": "Encodes the given value with a prefix to base64.",
2247
+ "privacy": "public"
2248
+ }
2249
+ ],
2250
+ "exports": [
2251
+ {
2252
+ "kind": "js",
2253
+ "name": "encodeToBase64",
2254
+ "declaration": {
2255
+ "name": "encodeToBase64",
2256
+ "module": "src/encoding/base64/encode.ts"
2257
+ }
2258
+ },
2259
+ {
2260
+ "kind": "js",
2261
+ "name": "encodeToBase64WithPrefix",
2262
+ "declaration": {
2263
+ "name": "encodeToBase64WithPrefix",
2264
+ "module": "src/encoding/base64/encode.ts"
2265
+ }
2266
+ }
2267
+ ]
2268
+ },
2269
+ {
2270
+ "kind": "javascript-module",
2271
+ "path": "src/encoding/base64/index.ts",
2272
+ "declarations": [],
2273
+ "exports": [
2274
+ {
2275
+ "kind": "js",
2276
+ "name": "*",
2277
+ "declaration": {
2278
+ "name": "*",
2279
+ "package": "./decode"
2280
+ }
2281
+ },
2282
+ {
2283
+ "kind": "js",
2284
+ "name": "*",
2285
+ "declaration": {
2286
+ "name": "*",
2287
+ "package": "./encode"
2288
+ }
2289
+ }
2290
+ ]
2291
+ },
2138
2292
  {
2139
2293
  "kind": "javascript-module",
2140
2294
  "path": "src/window/index.ts",
@@ -2437,160 +2591,6 @@
2437
2591
  }
2438
2592
  ]
2439
2593
  },
2440
- {
2441
- "kind": "javascript-module",
2442
- "path": "src/encoding/base64/decode.ts",
2443
- "declarations": [
2444
- {
2445
- "kind": "function",
2446
- "name": "decodeFromBase64",
2447
- "return": {
2448
- "type": {
2449
- "text": ""
2450
- }
2451
- },
2452
- "parameters": [
2453
- {
2454
- "name": "base64Value",
2455
- "type": {
2456
- "text": "string"
2457
- }
2458
- },
2459
- {
2460
- "description": "The value to decode from base64.",
2461
- "name": "value"
2462
- }
2463
- ],
2464
- "description": "Decodes a value from base64.",
2465
- "privacy": "public"
2466
- },
2467
- {
2468
- "kind": "function",
2469
- "name": "decodeFromBase64WithPrefix",
2470
- "return": {
2471
- "type": {
2472
- "text": ""
2473
- }
2474
- },
2475
- "parameters": [
2476
- {
2477
- "name": "value",
2478
- "type": {
2479
- "text": "string"
2480
- },
2481
- "description": "The value to decode from base64."
2482
- }
2483
- ],
2484
- "description": "Decodes a value from base64 with a prefix.",
2485
- "privacy": "public"
2486
- }
2487
- ],
2488
- "exports": [
2489
- {
2490
- "kind": "js",
2491
- "name": "decodeFromBase64",
2492
- "declaration": {
2493
- "name": "decodeFromBase64",
2494
- "module": "src/encoding/base64/decode.ts"
2495
- }
2496
- },
2497
- {
2498
- "kind": "js",
2499
- "name": "decodeFromBase64WithPrefix",
2500
- "declaration": {
2501
- "name": "decodeFromBase64WithPrefix",
2502
- "module": "src/encoding/base64/decode.ts"
2503
- }
2504
- }
2505
- ]
2506
- },
2507
- {
2508
- "kind": "javascript-module",
2509
- "path": "src/encoding/base64/encode.ts",
2510
- "declarations": [
2511
- {
2512
- "kind": "function",
2513
- "name": "encodeToBase64",
2514
- "return": {
2515
- "type": {
2516
- "text": ""
2517
- }
2518
- },
2519
- "parameters": [
2520
- {
2521
- "name": "value",
2522
- "type": {
2523
- "text": "string | ArrayBuffer"
2524
- },
2525
- "description": "The value to encode to base64."
2526
- }
2527
- ],
2528
- "description": "Encodes the given value to base64.",
2529
- "privacy": "public"
2530
- },
2531
- {
2532
- "kind": "function",
2533
- "name": "encodeToBase64WithPrefix",
2534
- "return": {
2535
- "type": {
2536
- "text": ""
2537
- }
2538
- },
2539
- "parameters": [
2540
- {
2541
- "name": "value",
2542
- "type": {
2543
- "text": "string | ArrayBuffer"
2544
- },
2545
- "description": "The value to encode to base64."
2546
- }
2547
- ],
2548
- "description": "Encodes the given value with a prefix to base64.",
2549
- "privacy": "public"
2550
- }
2551
- ],
2552
- "exports": [
2553
- {
2554
- "kind": "js",
2555
- "name": "encodeToBase64",
2556
- "declaration": {
2557
- "name": "encodeToBase64",
2558
- "module": "src/encoding/base64/encode.ts"
2559
- }
2560
- },
2561
- {
2562
- "kind": "js",
2563
- "name": "encodeToBase64WithPrefix",
2564
- "declaration": {
2565
- "name": "encodeToBase64WithPrefix",
2566
- "module": "src/encoding/base64/encode.ts"
2567
- }
2568
- }
2569
- ]
2570
- },
2571
- {
2572
- "kind": "javascript-module",
2573
- "path": "src/encoding/base64/index.ts",
2574
- "declarations": [],
2575
- "exports": [
2576
- {
2577
- "kind": "js",
2578
- "name": "*",
2579
- "declaration": {
2580
- "name": "*",
2581
- "package": "./decode"
2582
- }
2583
- },
2584
- {
2585
- "kind": "js",
2586
- "name": "*",
2587
- "declaration": {
2588
- "name": "*",
2589
- "package": "./encode"
2590
- }
2591
- }
2592
- ]
2593
- },
2594
2594
  {
2595
2595
  "kind": "javascript-module",
2596
2596
  "path": "src/mappers/dto/index.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.231.1-alpha-41de57b.0",
4
+ "version": "14.231.1-alpha-9df9116.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.231.1-alpha-41de57b.0",
31
- "@genesislcap/genx": "14.231.1-alpha-41de57b.0",
32
- "@genesislcap/rollup-builder": "14.231.1-alpha-41de57b.0",
33
- "@genesislcap/ts-builder": "14.231.1-alpha-41de57b.0",
34
- "@genesislcap/uvu-playwright-builder": "14.231.1-alpha-41de57b.0",
35
- "@genesislcap/vite-builder": "14.231.1-alpha-41de57b.0",
36
- "@genesislcap/webpack-builder": "14.231.1-alpha-41de57b.0",
30
+ "@genesislcap/foundation-testing": "14.231.1-alpha-9df9116.0",
31
+ "@genesislcap/genx": "14.231.1-alpha-9df9116.0",
32
+ "@genesislcap/rollup-builder": "14.231.1-alpha-9df9116.0",
33
+ "@genesislcap/ts-builder": "14.231.1-alpha-9df9116.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.231.1-alpha-9df9116.0",
35
+ "@genesislcap/vite-builder": "14.231.1-alpha-9df9116.0",
36
+ "@genesislcap/webpack-builder": "14.231.1-alpha-9df9116.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.231.1-alpha-41de57b.0",
40
+ "@genesislcap/foundation-logger": "14.231.1-alpha-9df9116.0",
41
41
  "@microsoft/fast-components": "2.30.6",
42
42
  "@microsoft/fast-element": "1.14.0",
43
43
  "@microsoft/fast-foundation": "2.49.6",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "1a65809c3e48e18e7e6820d52a037f28cf06bf7f"
58
+ "gitHead": "51336dce3a5038201f496e37e6936f0cd5d12fd7"
59
59
  }