@genesislcap/foundation-utils 14.238.0 → 14.238.2
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/dist/custom-elements.json +658 -505
- package/dist/dts/env/variables.d.ts +45 -0
- package/dist/dts/env/variables.d.ts.map +1 -1
- package/dist/esm/env/variables.js +102 -0
- package/dist/foundation-utils.api.json +207 -0
- package/dist/foundation-utils.d.ts +45 -0
- package/docs/api/foundation-utils.change_password_url.md +12 -0
- package/docs/api/foundation-utils.forgot_password_url.md +12 -0
- package/docs/api/foundation-utils.login_details_url.md +12 -0
- package/docs/api/foundation-utils.login_refresh_url.md +12 -0
- package/docs/api/foundation-utils.login_url.md +12 -0
- package/docs/api/foundation-utils.logout_url.md +12 -0
- package/docs/api/foundation-utils.md +9 -0
- package/docs/api/foundation-utils.reset_password_url.md +12 -0
- package/docs/api/foundation-utils.sso_list_url.md +12 -0
- package/docs/api/foundation-utils.sso_login_url.md +12 -0
- package/docs/api-report.md +27 -0
- package/package.json +10 -10
|
@@ -171,7 +171,190 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"kind": "javascript-module",
|
|
174
|
-
"path": "src/
|
|
174
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
175
|
+
"declarations": [
|
|
176
|
+
{
|
|
177
|
+
"kind": "class",
|
|
178
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
179
|
+
"name": "InMemoryDatabase",
|
|
180
|
+
"members": [
|
|
181
|
+
{
|
|
182
|
+
"kind": "field",
|
|
183
|
+
"name": "isWorking",
|
|
184
|
+
"type": {
|
|
185
|
+
"text": "boolean"
|
|
186
|
+
},
|
|
187
|
+
"privacy": "public",
|
|
188
|
+
"default": "false"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"kind": "field",
|
|
192
|
+
"name": "records",
|
|
193
|
+
"type": {
|
|
194
|
+
"text": "Record<string, T>"
|
|
195
|
+
},
|
|
196
|
+
"privacy": "private",
|
|
197
|
+
"default": "{}"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"kind": "field",
|
|
201
|
+
"name": "beforeUpdateListeners",
|
|
202
|
+
"privacy": "private"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"kind": "field",
|
|
206
|
+
"name": "afterUpdateListeners",
|
|
207
|
+
"privacy": "private"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"kind": "method",
|
|
211
|
+
"name": "create",
|
|
212
|
+
"privacy": "public",
|
|
213
|
+
"return": {
|
|
214
|
+
"type": {
|
|
215
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"parameters": [
|
|
219
|
+
{
|
|
220
|
+
"name": "newValue",
|
|
221
|
+
"type": {
|
|
222
|
+
"text": "Omit<T, 'id'>"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"kind": "method",
|
|
229
|
+
"name": "read",
|
|
230
|
+
"privacy": "public",
|
|
231
|
+
"return": {
|
|
232
|
+
"type": {
|
|
233
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"parameters": [
|
|
237
|
+
{
|
|
238
|
+
"name": "id",
|
|
239
|
+
"type": {
|
|
240
|
+
"text": "string"
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"kind": "method",
|
|
247
|
+
"name": "update",
|
|
248
|
+
"privacy": "public",
|
|
249
|
+
"return": {
|
|
250
|
+
"type": {
|
|
251
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"parameters": [
|
|
255
|
+
{
|
|
256
|
+
"name": "id",
|
|
257
|
+
"type": {
|
|
258
|
+
"text": "string"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "newValue",
|
|
263
|
+
"type": {
|
|
264
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"kind": "method",
|
|
271
|
+
"name": "delete",
|
|
272
|
+
"privacy": "public",
|
|
273
|
+
"return": {
|
|
274
|
+
"type": {
|
|
275
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"parameters": [
|
|
279
|
+
{
|
|
280
|
+
"name": "id",
|
|
281
|
+
"type": {
|
|
282
|
+
"text": "string"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"kind": "method",
|
|
289
|
+
"name": "visit",
|
|
290
|
+
"privacy": "public",
|
|
291
|
+
"return": {
|
|
292
|
+
"type": {
|
|
293
|
+
"text": "Promise<void>"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"parameters": [
|
|
297
|
+
{
|
|
298
|
+
"name": "visitor",
|
|
299
|
+
"type": {
|
|
300
|
+
"text": "(record: T) => void"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"kind": "method",
|
|
307
|
+
"name": "onBeforeUpdate",
|
|
308
|
+
"privacy": "public",
|
|
309
|
+
"return": {
|
|
310
|
+
"type": {
|
|
311
|
+
"text": "() => void"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"parameters": [
|
|
315
|
+
{
|
|
316
|
+
"name": "listener",
|
|
317
|
+
"type": {
|
|
318
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"kind": "method",
|
|
325
|
+
"name": "onAfterUpdate",
|
|
326
|
+
"privacy": "public",
|
|
327
|
+
"return": {
|
|
328
|
+
"type": {
|
|
329
|
+
"text": "() => void"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"parameters": [
|
|
333
|
+
{
|
|
334
|
+
"name": "listener",
|
|
335
|
+
"type": {
|
|
336
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
]
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"exports": [
|
|
345
|
+
{
|
|
346
|
+
"kind": "js",
|
|
347
|
+
"name": "InMemoryDatabase",
|
|
348
|
+
"declaration": {
|
|
349
|
+
"name": "InMemoryDatabase",
|
|
350
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
]
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"kind": "javascript-module",
|
|
357
|
+
"path": "src/data/index.ts",
|
|
175
358
|
"declarations": [],
|
|
176
359
|
"exports": [
|
|
177
360
|
{
|
|
@@ -179,15 +362,110 @@
|
|
|
179
362
|
"name": "*",
|
|
180
363
|
"declaration": {
|
|
181
364
|
"name": "*",
|
|
182
|
-
"package": "./
|
|
365
|
+
"package": "./inMemoryDatabase"
|
|
183
366
|
}
|
|
184
|
-
}
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"kind": "javascript-module",
|
|
372
|
+
"path": "src/decorators/index.ts",
|
|
373
|
+
"declarations": [],
|
|
374
|
+
"exports": [
|
|
185
375
|
{
|
|
186
376
|
"kind": "js",
|
|
187
377
|
"name": "*",
|
|
188
378
|
"declaration": {
|
|
189
379
|
"name": "*",
|
|
190
|
-
"package": "./
|
|
380
|
+
"package": "./renderOnChange"
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"kind": "javascript-module",
|
|
387
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
388
|
+
"declarations": [
|
|
389
|
+
{
|
|
390
|
+
"kind": "function",
|
|
391
|
+
"name": "renderOnChange",
|
|
392
|
+
"parameters": [
|
|
393
|
+
{
|
|
394
|
+
"name": "target",
|
|
395
|
+
"type": {
|
|
396
|
+
"text": "FASTElement & { render(): void }"
|
|
397
|
+
},
|
|
398
|
+
"description": "The target to define the property change handler on."
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "name",
|
|
402
|
+
"type": {
|
|
403
|
+
"text": "string"
|
|
404
|
+
},
|
|
405
|
+
"description": "The property name."
|
|
406
|
+
}
|
|
407
|
+
],
|
|
408
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
409
|
+
"privacy": "public"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"exports": [
|
|
413
|
+
{
|
|
414
|
+
"kind": "js",
|
|
415
|
+
"name": "renderOnChange",
|
|
416
|
+
"declaration": {
|
|
417
|
+
"name": "renderOnChange",
|
|
418
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"kind": "javascript-module",
|
|
425
|
+
"path": "src/design-system/design-system.ts",
|
|
426
|
+
"declarations": [
|
|
427
|
+
{
|
|
428
|
+
"kind": "function",
|
|
429
|
+
"name": "assureDesignSystem",
|
|
430
|
+
"return": {
|
|
431
|
+
"type": {
|
|
432
|
+
"text": "DesignSystemModule"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"parameters": [
|
|
436
|
+
{
|
|
437
|
+
"name": "module",
|
|
438
|
+
"type": {
|
|
439
|
+
"text": "DesignSystemModule"
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"description": "assureDesignSystem.",
|
|
444
|
+
"privacy": "public"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"exports": [
|
|
448
|
+
{
|
|
449
|
+
"kind": "js",
|
|
450
|
+
"name": "assureDesignSystem",
|
|
451
|
+
"declaration": {
|
|
452
|
+
"name": "assureDesignSystem",
|
|
453
|
+
"module": "src/design-system/design-system.ts"
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
]
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"kind": "javascript-module",
|
|
460
|
+
"path": "src/design-system/index.ts",
|
|
461
|
+
"declarations": [],
|
|
462
|
+
"exports": [
|
|
463
|
+
{
|
|
464
|
+
"kind": "js",
|
|
465
|
+
"name": "*",
|
|
466
|
+
"declaration": {
|
|
467
|
+
"name": "*",
|
|
468
|
+
"package": "./design-system"
|
|
191
469
|
}
|
|
192
470
|
}
|
|
193
471
|
]
|
|
@@ -343,72 +621,153 @@
|
|
|
343
621
|
"type": {
|
|
344
622
|
"text": "string"
|
|
345
623
|
},
|
|
346
|
-
"default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
|
|
347
|
-
"description": "The Genesis Server URL (WebSocket or HTTP).",
|
|
624
|
+
"default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
|
|
625
|
+
"description": "The Genesis Server URL (WebSocket or HTTP).",
|
|
626
|
+
"privacy": "public"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"kind": "variable",
|
|
630
|
+
"name": "HTTP_CONFIG",
|
|
631
|
+
"type": {
|
|
632
|
+
"text": "string"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"kind": "variable",
|
|
637
|
+
"name": "_HTTP_CONFIG",
|
|
638
|
+
"type": {
|
|
639
|
+
"text": "string"
|
|
640
|
+
},
|
|
641
|
+
"description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
|
|
642
|
+
"privacy": "public"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"kind": "variable",
|
|
646
|
+
"name": "DEFAULT_ORGANISATION",
|
|
647
|
+
"type": {
|
|
648
|
+
"text": "string"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"kind": "variable",
|
|
653
|
+
"name": "_DEFAULT_ORGANISATION",
|
|
654
|
+
"type": {
|
|
655
|
+
"text": "string"
|
|
656
|
+
},
|
|
657
|
+
"description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
658
|
+
"privacy": "public"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"kind": "variable",
|
|
662
|
+
"name": "DEFAULT_PASSWORD",
|
|
663
|
+
"type": {
|
|
664
|
+
"text": "string"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"kind": "variable",
|
|
669
|
+
"name": "_DEFAULT_PASSWORD",
|
|
670
|
+
"type": {
|
|
671
|
+
"text": "string"
|
|
672
|
+
},
|
|
673
|
+
"description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
674
|
+
"privacy": "public"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"kind": "variable",
|
|
678
|
+
"name": "DEFAULT_USER",
|
|
679
|
+
"type": {
|
|
680
|
+
"text": "string"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"kind": "variable",
|
|
685
|
+
"name": "_DEFAULT_USER",
|
|
686
|
+
"type": {
|
|
687
|
+
"text": "string"
|
|
688
|
+
},
|
|
689
|
+
"description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
690
|
+
"privacy": "public"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"kind": "variable",
|
|
694
|
+
"name": "LOGIN_URL",
|
|
695
|
+
"type": {
|
|
696
|
+
"text": "string"
|
|
697
|
+
},
|
|
698
|
+
"default": "'/sm/event-login-auth'",
|
|
348
699
|
"privacy": "public"
|
|
349
700
|
},
|
|
350
701
|
{
|
|
351
702
|
"kind": "variable",
|
|
352
|
-
"name": "
|
|
703
|
+
"name": "LOGIN_REFRESH_URL",
|
|
353
704
|
"type": {
|
|
354
705
|
"text": "string"
|
|
355
|
-
}
|
|
706
|
+
},
|
|
707
|
+
"default": "'/sm/event-login-auth'",
|
|
708
|
+
"privacy": "public"
|
|
356
709
|
},
|
|
357
710
|
{
|
|
358
711
|
"kind": "variable",
|
|
359
|
-
"name": "
|
|
712
|
+
"name": "LOGIN_DETAILS_URL",
|
|
360
713
|
"type": {
|
|
361
714
|
"text": "string"
|
|
362
715
|
},
|
|
363
|
-
"
|
|
716
|
+
"default": "'/sm/event-login-details'",
|
|
364
717
|
"privacy": "public"
|
|
365
718
|
},
|
|
366
719
|
{
|
|
367
720
|
"kind": "variable",
|
|
368
|
-
"name": "
|
|
721
|
+
"name": "LOGOUT_URL",
|
|
369
722
|
"type": {
|
|
370
723
|
"text": "string"
|
|
371
|
-
}
|
|
724
|
+
},
|
|
725
|
+
"default": "'/sm/event-logout'",
|
|
726
|
+
"privacy": "public"
|
|
372
727
|
},
|
|
373
728
|
{
|
|
374
729
|
"kind": "variable",
|
|
375
|
-
"name": "
|
|
730
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
376
731
|
"type": {
|
|
377
732
|
"text": "string"
|
|
378
733
|
},
|
|
379
|
-
"
|
|
734
|
+
"default": "'/sm/event-change-user-password'",
|
|
380
735
|
"privacy": "public"
|
|
381
736
|
},
|
|
382
737
|
{
|
|
383
738
|
"kind": "variable",
|
|
384
|
-
"name": "
|
|
739
|
+
"name": "FORGOT_PASSWORD_URL",
|
|
385
740
|
"type": {
|
|
386
741
|
"text": "string"
|
|
387
|
-
}
|
|
742
|
+
},
|
|
743
|
+
"default": "'/sm/event-self-service-password-reset'",
|
|
744
|
+
"privacy": "public"
|
|
388
745
|
},
|
|
389
746
|
{
|
|
390
747
|
"kind": "variable",
|
|
391
|
-
"name": "
|
|
748
|
+
"name": "RESET_PASSWORD_URL",
|
|
392
749
|
"type": {
|
|
393
750
|
"text": "string"
|
|
394
751
|
},
|
|
395
|
-
"
|
|
752
|
+
"default": "'/sm/event-password-reset-action'",
|
|
396
753
|
"privacy": "public"
|
|
397
754
|
},
|
|
398
755
|
{
|
|
399
756
|
"kind": "variable",
|
|
400
|
-
"name": "
|
|
757
|
+
"name": "SSO_LIST_URL",
|
|
401
758
|
"type": {
|
|
402
759
|
"text": "string"
|
|
403
|
-
}
|
|
760
|
+
},
|
|
761
|
+
"default": "'/sm/sso/list'",
|
|
762
|
+
"privacy": "public"
|
|
404
763
|
},
|
|
405
764
|
{
|
|
406
765
|
"kind": "variable",
|
|
407
|
-
"name": "
|
|
766
|
+
"name": "SSO_LOGIN_URL",
|
|
408
767
|
"type": {
|
|
409
768
|
"text": "string"
|
|
410
769
|
},
|
|
411
|
-
"
|
|
770
|
+
"default": "'/sm/{type}/login?idp={id}'",
|
|
412
771
|
"privacy": "public"
|
|
413
772
|
}
|
|
414
773
|
],
|
|
@@ -492,195 +851,84 @@
|
|
|
492
851
|
"name": "_DEFAULT_USER",
|
|
493
852
|
"module": "src/env/variables.ts"
|
|
494
853
|
}
|
|
495
|
-
}
|
|
496
|
-
]
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
"kind": "javascript-module",
|
|
500
|
-
"path": "src/data/inMemoryDatabase.ts",
|
|
501
|
-
"declarations": [
|
|
854
|
+
},
|
|
502
855
|
{
|
|
503
|
-
"kind": "
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
"type": {
|
|
511
|
-
"text": "boolean"
|
|
512
|
-
},
|
|
513
|
-
"privacy": "public",
|
|
514
|
-
"default": "false"
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"kind": "field",
|
|
518
|
-
"name": "records",
|
|
519
|
-
"type": {
|
|
520
|
-
"text": "Record<string, T>"
|
|
521
|
-
},
|
|
522
|
-
"privacy": "private",
|
|
523
|
-
"default": "{}"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"kind": "field",
|
|
527
|
-
"name": "beforeUpdateListeners",
|
|
528
|
-
"privacy": "private"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"kind": "field",
|
|
532
|
-
"name": "afterUpdateListeners",
|
|
533
|
-
"privacy": "private"
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"kind": "method",
|
|
537
|
-
"name": "create",
|
|
538
|
-
"privacy": "public",
|
|
539
|
-
"return": {
|
|
540
|
-
"type": {
|
|
541
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
542
|
-
}
|
|
543
|
-
},
|
|
544
|
-
"parameters": [
|
|
545
|
-
{
|
|
546
|
-
"name": "newValue",
|
|
547
|
-
"type": {
|
|
548
|
-
"text": "Omit<T, 'id'>"
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
]
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"kind": "method",
|
|
555
|
-
"name": "read",
|
|
556
|
-
"privacy": "public",
|
|
557
|
-
"return": {
|
|
558
|
-
"type": {
|
|
559
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
560
|
-
}
|
|
561
|
-
},
|
|
562
|
-
"parameters": [
|
|
563
|
-
{
|
|
564
|
-
"name": "id",
|
|
565
|
-
"type": {
|
|
566
|
-
"text": "string"
|
|
567
|
-
}
|
|
568
|
-
}
|
|
569
|
-
]
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"kind": "method",
|
|
573
|
-
"name": "update",
|
|
574
|
-
"privacy": "public",
|
|
575
|
-
"return": {
|
|
576
|
-
"type": {
|
|
577
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
578
|
-
}
|
|
579
|
-
},
|
|
580
|
-
"parameters": [
|
|
581
|
-
{
|
|
582
|
-
"name": "id",
|
|
583
|
-
"type": {
|
|
584
|
-
"text": "string"
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"name": "newValue",
|
|
589
|
-
"type": {
|
|
590
|
-
"text": "Omit<Partial<T>, 'id'>"
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
]
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
"kind": "method",
|
|
597
|
-
"name": "delete",
|
|
598
|
-
"privacy": "public",
|
|
599
|
-
"return": {
|
|
600
|
-
"type": {
|
|
601
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
602
|
-
}
|
|
603
|
-
},
|
|
604
|
-
"parameters": [
|
|
605
|
-
{
|
|
606
|
-
"name": "id",
|
|
607
|
-
"type": {
|
|
608
|
-
"text": "string"
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
]
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"kind": "method",
|
|
615
|
-
"name": "visit",
|
|
616
|
-
"privacy": "public",
|
|
617
|
-
"return": {
|
|
618
|
-
"type": {
|
|
619
|
-
"text": "Promise<void>"
|
|
620
|
-
}
|
|
621
|
-
},
|
|
622
|
-
"parameters": [
|
|
623
|
-
{
|
|
624
|
-
"name": "visitor",
|
|
625
|
-
"type": {
|
|
626
|
-
"text": "(record: T) => void"
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
]
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"kind": "method",
|
|
633
|
-
"name": "onBeforeUpdate",
|
|
634
|
-
"privacy": "public",
|
|
635
|
-
"return": {
|
|
636
|
-
"type": {
|
|
637
|
-
"text": "() => void"
|
|
638
|
-
}
|
|
639
|
-
},
|
|
640
|
-
"parameters": [
|
|
641
|
-
{
|
|
642
|
-
"name": "listener",
|
|
643
|
-
"type": {
|
|
644
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
]
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
"kind": "method",
|
|
651
|
-
"name": "onAfterUpdate",
|
|
652
|
-
"privacy": "public",
|
|
653
|
-
"return": {
|
|
654
|
-
"type": {
|
|
655
|
-
"text": "() => void"
|
|
656
|
-
}
|
|
657
|
-
},
|
|
658
|
-
"parameters": [
|
|
659
|
-
{
|
|
660
|
-
"name": "listener",
|
|
661
|
-
"type": {
|
|
662
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
663
|
-
}
|
|
664
|
-
}
|
|
665
|
-
]
|
|
666
|
-
}
|
|
667
|
-
]
|
|
668
|
-
}
|
|
669
|
-
],
|
|
670
|
-
"exports": [
|
|
856
|
+
"kind": "js",
|
|
857
|
+
"name": "LOGIN_URL",
|
|
858
|
+
"declaration": {
|
|
859
|
+
"name": "LOGIN_URL",
|
|
860
|
+
"module": "src/env/variables.ts"
|
|
861
|
+
}
|
|
862
|
+
},
|
|
671
863
|
{
|
|
672
864
|
"kind": "js",
|
|
673
|
-
"name": "
|
|
865
|
+
"name": "LOGIN_REFRESH_URL",
|
|
674
866
|
"declaration": {
|
|
675
|
-
"name": "
|
|
676
|
-
"module": "src/
|
|
867
|
+
"name": "LOGIN_REFRESH_URL",
|
|
868
|
+
"module": "src/env/variables.ts"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"kind": "js",
|
|
873
|
+
"name": "LOGIN_DETAILS_URL",
|
|
874
|
+
"declaration": {
|
|
875
|
+
"name": "LOGIN_DETAILS_URL",
|
|
876
|
+
"module": "src/env/variables.ts"
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"kind": "js",
|
|
881
|
+
"name": "LOGOUT_URL",
|
|
882
|
+
"declaration": {
|
|
883
|
+
"name": "LOGOUT_URL",
|
|
884
|
+
"module": "src/env/variables.ts"
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"kind": "js",
|
|
889
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
890
|
+
"declaration": {
|
|
891
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
892
|
+
"module": "src/env/variables.ts"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"kind": "js",
|
|
897
|
+
"name": "FORGOT_PASSWORD_URL",
|
|
898
|
+
"declaration": {
|
|
899
|
+
"name": "FORGOT_PASSWORD_URL",
|
|
900
|
+
"module": "src/env/variables.ts"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"kind": "js",
|
|
905
|
+
"name": "RESET_PASSWORD_URL",
|
|
906
|
+
"declaration": {
|
|
907
|
+
"name": "RESET_PASSWORD_URL",
|
|
908
|
+
"module": "src/env/variables.ts"
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"kind": "js",
|
|
913
|
+
"name": "SSO_LIST_URL",
|
|
914
|
+
"declaration": {
|
|
915
|
+
"name": "SSO_LIST_URL",
|
|
916
|
+
"module": "src/env/variables.ts"
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"kind": "js",
|
|
921
|
+
"name": "SSO_LOGIN_URL",
|
|
922
|
+
"declaration": {
|
|
923
|
+
"name": "SSO_LOGIN_URL",
|
|
924
|
+
"module": "src/env/variables.ts"
|
|
677
925
|
}
|
|
678
926
|
}
|
|
679
927
|
]
|
|
680
928
|
},
|
|
681
929
|
{
|
|
682
930
|
"kind": "javascript-module",
|
|
683
|
-
"path": "src/
|
|
931
|
+
"path": "src/directives/index.ts",
|
|
684
932
|
"declarations": [],
|
|
685
933
|
"exports": [
|
|
686
934
|
{
|
|
@@ -688,7 +936,15 @@
|
|
|
688
936
|
"name": "*",
|
|
689
937
|
"declaration": {
|
|
690
938
|
"name": "*",
|
|
691
|
-
"package": "./
|
|
939
|
+
"package": "./sync"
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"kind": "js",
|
|
944
|
+
"name": "*",
|
|
945
|
+
"declaration": {
|
|
946
|
+
"name": "*",
|
|
947
|
+
"package": "./when-else"
|
|
692
948
|
}
|
|
693
949
|
}
|
|
694
950
|
]
|
|
@@ -892,109 +1148,6 @@
|
|
|
892
1148
|
}
|
|
893
1149
|
]
|
|
894
1150
|
},
|
|
895
|
-
{
|
|
896
|
-
"kind": "javascript-module",
|
|
897
|
-
"path": "src/decorators/index.ts",
|
|
898
|
-
"declarations": [],
|
|
899
|
-
"exports": [
|
|
900
|
-
{
|
|
901
|
-
"kind": "js",
|
|
902
|
-
"name": "*",
|
|
903
|
-
"declaration": {
|
|
904
|
-
"name": "*",
|
|
905
|
-
"package": "./renderOnChange"
|
|
906
|
-
}
|
|
907
|
-
}
|
|
908
|
-
]
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
"kind": "javascript-module",
|
|
912
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
913
|
-
"declarations": [
|
|
914
|
-
{
|
|
915
|
-
"kind": "function",
|
|
916
|
-
"name": "renderOnChange",
|
|
917
|
-
"parameters": [
|
|
918
|
-
{
|
|
919
|
-
"name": "target",
|
|
920
|
-
"type": {
|
|
921
|
-
"text": "FASTElement & { render(): void }"
|
|
922
|
-
},
|
|
923
|
-
"description": "The target to define the property change handler on."
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
"name": "name",
|
|
927
|
-
"type": {
|
|
928
|
-
"text": "string"
|
|
929
|
-
},
|
|
930
|
-
"description": "The property name."
|
|
931
|
-
}
|
|
932
|
-
],
|
|
933
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
934
|
-
"privacy": "public"
|
|
935
|
-
}
|
|
936
|
-
],
|
|
937
|
-
"exports": [
|
|
938
|
-
{
|
|
939
|
-
"kind": "js",
|
|
940
|
-
"name": "renderOnChange",
|
|
941
|
-
"declaration": {
|
|
942
|
-
"name": "renderOnChange",
|
|
943
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
944
|
-
}
|
|
945
|
-
}
|
|
946
|
-
]
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"kind": "javascript-module",
|
|
950
|
-
"path": "src/design-system/design-system.ts",
|
|
951
|
-
"declarations": [
|
|
952
|
-
{
|
|
953
|
-
"kind": "function",
|
|
954
|
-
"name": "assureDesignSystem",
|
|
955
|
-
"return": {
|
|
956
|
-
"type": {
|
|
957
|
-
"text": "DesignSystemModule"
|
|
958
|
-
}
|
|
959
|
-
},
|
|
960
|
-
"parameters": [
|
|
961
|
-
{
|
|
962
|
-
"name": "module",
|
|
963
|
-
"type": {
|
|
964
|
-
"text": "DesignSystemModule"
|
|
965
|
-
}
|
|
966
|
-
}
|
|
967
|
-
],
|
|
968
|
-
"description": "assureDesignSystem.",
|
|
969
|
-
"privacy": "public"
|
|
970
|
-
}
|
|
971
|
-
],
|
|
972
|
-
"exports": [
|
|
973
|
-
{
|
|
974
|
-
"kind": "js",
|
|
975
|
-
"name": "assureDesignSystem",
|
|
976
|
-
"declaration": {
|
|
977
|
-
"name": "assureDesignSystem",
|
|
978
|
-
"module": "src/design-system/design-system.ts"
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
]
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
"kind": "javascript-module",
|
|
985
|
-
"path": "src/design-system/index.ts",
|
|
986
|
-
"declarations": [],
|
|
987
|
-
"exports": [
|
|
988
|
-
{
|
|
989
|
-
"kind": "js",
|
|
990
|
-
"name": "*",
|
|
991
|
-
"declaration": {
|
|
992
|
-
"name": "*",
|
|
993
|
-
"package": "./design-system"
|
|
994
|
-
}
|
|
995
|
-
}
|
|
996
|
-
]
|
|
997
|
-
},
|
|
998
1151
|
{
|
|
999
1152
|
"kind": "javascript-module",
|
|
1000
1153
|
"path": "src/formatters/datetime.ts",
|
|
@@ -2198,7 +2351,165 @@
|
|
|
2198
2351
|
},
|
|
2199
2352
|
{
|
|
2200
2353
|
"kind": "function",
|
|
2201
|
-
"name": "openPopup",
|
|
2354
|
+
"name": "openPopup",
|
|
2355
|
+
"return": {
|
|
2356
|
+
"type": {
|
|
2357
|
+
"text": ""
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
"parameters": [
|
|
2361
|
+
{
|
|
2362
|
+
"name": "urlNavigate",
|
|
2363
|
+
"type": {
|
|
2364
|
+
"text": "string"
|
|
2365
|
+
},
|
|
2366
|
+
"description": "The URL to navigate to."
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"name": "target",
|
|
2370
|
+
"type": {
|
|
2371
|
+
"text": "string"
|
|
2372
|
+
},
|
|
2373
|
+
"description": "The name of the new window."
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"name": "popUpWidth",
|
|
2377
|
+
"default": "POPUP_DEFAULT_WIDTH",
|
|
2378
|
+
"type": {
|
|
2379
|
+
"text": "number"
|
|
2380
|
+
},
|
|
2381
|
+
"description": "The width of the new window (optional)."
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"name": "popUpHeight",
|
|
2385
|
+
"default": "POPUP_DEFAULT_HEIGHT",
|
|
2386
|
+
"type": {
|
|
2387
|
+
"text": "number"
|
|
2388
|
+
},
|
|
2389
|
+
"description": "The height of the new window (optional)."
|
|
2390
|
+
}
|
|
2391
|
+
],
|
|
2392
|
+
"description": "Opens a new browser window with the specified URL, target, width, and height.",
|
|
2393
|
+
"privacy": "public"
|
|
2394
|
+
}
|
|
2395
|
+
],
|
|
2396
|
+
"exports": [
|
|
2397
|
+
{
|
|
2398
|
+
"kind": "js",
|
|
2399
|
+
"name": "inIFrame",
|
|
2400
|
+
"declaration": {
|
|
2401
|
+
"name": "inIFrame",
|
|
2402
|
+
"module": "src/window/window.ts"
|
|
2403
|
+
}
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"kind": "js",
|
|
2407
|
+
"name": "inSymphonyDesktop",
|
|
2408
|
+
"declaration": {
|
|
2409
|
+
"name": "inSymphonyDesktop",
|
|
2410
|
+
"module": "src/window/window.ts"
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
"kind": "js",
|
|
2415
|
+
"name": "POPUP_DEFAULT_WIDTH",
|
|
2416
|
+
"declaration": {
|
|
2417
|
+
"name": "POPUP_DEFAULT_WIDTH",
|
|
2418
|
+
"module": "src/window/window.ts"
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"kind": "js",
|
|
2423
|
+
"name": "POPUP_DEFAULT_HEIGHT",
|
|
2424
|
+
"declaration": {
|
|
2425
|
+
"name": "POPUP_DEFAULT_HEIGHT",
|
|
2426
|
+
"module": "src/window/window.ts"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"kind": "js",
|
|
2431
|
+
"name": "openPopup",
|
|
2432
|
+
"declaration": {
|
|
2433
|
+
"name": "openPopup",
|
|
2434
|
+
"module": "src/window/window.ts"
|
|
2435
|
+
}
|
|
2436
|
+
}
|
|
2437
|
+
]
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"kind": "javascript-module",
|
|
2441
|
+
"path": "src/encoding/base64/decode.ts",
|
|
2442
|
+
"declarations": [
|
|
2443
|
+
{
|
|
2444
|
+
"kind": "function",
|
|
2445
|
+
"name": "decodeFromBase64",
|
|
2446
|
+
"return": {
|
|
2447
|
+
"type": {
|
|
2448
|
+
"text": ""
|
|
2449
|
+
}
|
|
2450
|
+
},
|
|
2451
|
+
"parameters": [
|
|
2452
|
+
{
|
|
2453
|
+
"name": "base64Value",
|
|
2454
|
+
"type": {
|
|
2455
|
+
"text": "string"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
"description": "The value to decode from base64.",
|
|
2460
|
+
"name": "value"
|
|
2461
|
+
}
|
|
2462
|
+
],
|
|
2463
|
+
"description": "Decodes a value from base64.",
|
|
2464
|
+
"privacy": "public"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"kind": "function",
|
|
2468
|
+
"name": "decodeFromBase64WithPrefix",
|
|
2469
|
+
"return": {
|
|
2470
|
+
"type": {
|
|
2471
|
+
"text": ""
|
|
2472
|
+
}
|
|
2473
|
+
},
|
|
2474
|
+
"parameters": [
|
|
2475
|
+
{
|
|
2476
|
+
"name": "value",
|
|
2477
|
+
"type": {
|
|
2478
|
+
"text": "string"
|
|
2479
|
+
},
|
|
2480
|
+
"description": "The value to decode from base64."
|
|
2481
|
+
}
|
|
2482
|
+
],
|
|
2483
|
+
"description": "Decodes a value from base64 with a prefix.",
|
|
2484
|
+
"privacy": "public"
|
|
2485
|
+
}
|
|
2486
|
+
],
|
|
2487
|
+
"exports": [
|
|
2488
|
+
{
|
|
2489
|
+
"kind": "js",
|
|
2490
|
+
"name": "decodeFromBase64",
|
|
2491
|
+
"declaration": {
|
|
2492
|
+
"name": "decodeFromBase64",
|
|
2493
|
+
"module": "src/encoding/base64/decode.ts"
|
|
2494
|
+
}
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
"kind": "js",
|
|
2498
|
+
"name": "decodeFromBase64WithPrefix",
|
|
2499
|
+
"declaration": {
|
|
2500
|
+
"name": "decodeFromBase64WithPrefix",
|
|
2501
|
+
"module": "src/encoding/base64/decode.ts"
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2504
|
+
]
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"kind": "javascript-module",
|
|
2508
|
+
"path": "src/encoding/base64/encode.ts",
|
|
2509
|
+
"declarations": [
|
|
2510
|
+
{
|
|
2511
|
+
"kind": "function",
|
|
2512
|
+
"name": "encodeToBase64",
|
|
2202
2513
|
"return": {
|
|
2203
2514
|
"type": {
|
|
2204
2515
|
"text": ""
|
|
@@ -2206,79 +2517,75 @@
|
|
|
2206
2517
|
},
|
|
2207
2518
|
"parameters": [
|
|
2208
2519
|
{
|
|
2209
|
-
"name": "
|
|
2210
|
-
"type": {
|
|
2211
|
-
"text": "string"
|
|
2212
|
-
},
|
|
2213
|
-
"description": "The URL to navigate to."
|
|
2214
|
-
},
|
|
2215
|
-
{
|
|
2216
|
-
"name": "target",
|
|
2217
|
-
"type": {
|
|
2218
|
-
"text": "string"
|
|
2219
|
-
},
|
|
2220
|
-
"description": "The name of the new window."
|
|
2221
|
-
},
|
|
2222
|
-
{
|
|
2223
|
-
"name": "popUpWidth",
|
|
2224
|
-
"default": "POPUP_DEFAULT_WIDTH",
|
|
2520
|
+
"name": "value",
|
|
2225
2521
|
"type": {
|
|
2226
|
-
"text": "
|
|
2522
|
+
"text": "string | ArrayBuffer"
|
|
2227
2523
|
},
|
|
2228
|
-
"description": "The
|
|
2229
|
-
}
|
|
2524
|
+
"description": "The value to encode to base64."
|
|
2525
|
+
}
|
|
2526
|
+
],
|
|
2527
|
+
"description": "Encodes the given value to base64.",
|
|
2528
|
+
"privacy": "public"
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"kind": "function",
|
|
2532
|
+
"name": "encodeToBase64WithPrefix",
|
|
2533
|
+
"return": {
|
|
2534
|
+
"type": {
|
|
2535
|
+
"text": ""
|
|
2536
|
+
}
|
|
2537
|
+
},
|
|
2538
|
+
"parameters": [
|
|
2230
2539
|
{
|
|
2231
|
-
"name": "
|
|
2232
|
-
"default": "POPUP_DEFAULT_HEIGHT",
|
|
2540
|
+
"name": "value",
|
|
2233
2541
|
"type": {
|
|
2234
|
-
"text": "
|
|
2542
|
+
"text": "string | ArrayBuffer"
|
|
2235
2543
|
},
|
|
2236
|
-
"description": "The
|
|
2544
|
+
"description": "The value to encode to base64."
|
|
2237
2545
|
}
|
|
2238
2546
|
],
|
|
2239
|
-
"description": "
|
|
2547
|
+
"description": "Encodes the given value with a prefix to base64.",
|
|
2240
2548
|
"privacy": "public"
|
|
2241
2549
|
}
|
|
2242
2550
|
],
|
|
2243
2551
|
"exports": [
|
|
2244
2552
|
{
|
|
2245
2553
|
"kind": "js",
|
|
2246
|
-
"name": "
|
|
2247
|
-
"declaration": {
|
|
2248
|
-
"name": "inIFrame",
|
|
2249
|
-
"module": "src/window/window.ts"
|
|
2250
|
-
}
|
|
2251
|
-
},
|
|
2252
|
-
{
|
|
2253
|
-
"kind": "js",
|
|
2254
|
-
"name": "inSymphonyDesktop",
|
|
2554
|
+
"name": "encodeToBase64",
|
|
2255
2555
|
"declaration": {
|
|
2256
|
-
"name": "
|
|
2257
|
-
"module": "src/
|
|
2556
|
+
"name": "encodeToBase64",
|
|
2557
|
+
"module": "src/encoding/base64/encode.ts"
|
|
2258
2558
|
}
|
|
2259
2559
|
},
|
|
2260
2560
|
{
|
|
2261
2561
|
"kind": "js",
|
|
2262
|
-
"name": "
|
|
2562
|
+
"name": "encodeToBase64WithPrefix",
|
|
2263
2563
|
"declaration": {
|
|
2264
|
-
"name": "
|
|
2265
|
-
"module": "src/
|
|
2564
|
+
"name": "encodeToBase64WithPrefix",
|
|
2565
|
+
"module": "src/encoding/base64/encode.ts"
|
|
2266
2566
|
}
|
|
2267
|
-
}
|
|
2567
|
+
}
|
|
2568
|
+
]
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"kind": "javascript-module",
|
|
2572
|
+
"path": "src/encoding/base64/index.ts",
|
|
2573
|
+
"declarations": [],
|
|
2574
|
+
"exports": [
|
|
2268
2575
|
{
|
|
2269
2576
|
"kind": "js",
|
|
2270
|
-
"name": "
|
|
2577
|
+
"name": "*",
|
|
2271
2578
|
"declaration": {
|
|
2272
|
-
"name": "
|
|
2273
|
-
"
|
|
2579
|
+
"name": "*",
|
|
2580
|
+
"package": "./decode"
|
|
2274
2581
|
}
|
|
2275
2582
|
},
|
|
2276
2583
|
{
|
|
2277
2584
|
"kind": "js",
|
|
2278
|
-
"name": "
|
|
2585
|
+
"name": "*",
|
|
2279
2586
|
"declaration": {
|
|
2280
|
-
"name": "
|
|
2281
|
-
"
|
|
2587
|
+
"name": "*",
|
|
2588
|
+
"package": "./encode"
|
|
2282
2589
|
}
|
|
2283
2590
|
}
|
|
2284
2591
|
]
|
|
@@ -2437,160 +2744,6 @@
|
|
|
2437
2744
|
}
|
|
2438
2745
|
]
|
|
2439
2746
|
},
|
|
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
2747
|
{
|
|
2595
2748
|
"kind": "javascript-module",
|
|
2596
2749
|
"path": "src/mappers/dto/index.ts",
|