@genesislcap/foundation-auth 14.226.0 → 14.226.1

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.
@@ -1472,15 +1472,11 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1472
1472
  readonly offsetTop: number;
1473
1473
  readonly offsetWidth: number;
1474
1474
  outerText: string;
1475
- popover: string;
1476
1475
  spellcheck: boolean;
1477
1476
  title: string;
1478
1477
  translate: boolean;
1479
1478
  attachInternals(): ElementInternals;
1480
1479
  click(): void;
1481
- hidePopover(): void;
1482
- showPopover(): void;
1483
- togglePopover(force?: boolean): boolean;
1484
1480
  addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
1485
1481
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1486
1482
  removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
@@ -1509,12 +1505,9 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1509
1505
  slot: string;
1510
1506
  readonly tagName: string;
1511
1507
  attachShadow(init: ShadowRootInit): ShadowRoot;
1512
- checkVisibility(options?: CheckVisibilityOptions): boolean;
1513
1508
  closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
1514
1509
  closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
1515
- closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
1516
1510
  closest<E extends Element = Element>(selectors: string): E;
1517
- computedStyleMap(): StylePropertyMapReadOnly;
1518
1511
  getAttribute(qualifiedName: string): string;
1519
1512
  getAttributeNS(namespace: string, localName: string): string;
1520
1513
  getAttributeNames(): string[];
@@ -1523,14 +1516,11 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1523
1516
  getBoundingClientRect(): DOMRect;
1524
1517
  getClientRects(): DOMRectList;
1525
1518
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1526
- getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
1527
- getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
1528
- getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
1529
- getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
1519
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
1520
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
1530
1521
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1531
1522
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1532
1523
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1533
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1534
1524
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
1535
1525
  hasAttribute(qualifiedName: string): boolean;
1536
1526
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -1588,24 +1578,24 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1588
1578
  normalize(): void;
1589
1579
  removeChild<T_2 extends Node>(child: T_2): T_2;
1590
1580
  replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
1591
- readonly ELEMENT_NODE: 1;
1592
- readonly ATTRIBUTE_NODE: 2;
1593
- readonly TEXT_NODE: 3;
1594
- readonly CDATA_SECTION_NODE: 4;
1595
- readonly ENTITY_REFERENCE_NODE: 5;
1596
- readonly ENTITY_NODE: 6;
1597
- readonly PROCESSING_INSTRUCTION_NODE: 7;
1598
- readonly COMMENT_NODE: 8;
1599
- readonly DOCUMENT_NODE: 9;
1600
- readonly DOCUMENT_TYPE_NODE: 10;
1601
- readonly DOCUMENT_FRAGMENT_NODE: 11;
1602
- readonly NOTATION_NODE: 12;
1603
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
1604
- readonly DOCUMENT_POSITION_PRECEDING: 2;
1605
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
1606
- readonly DOCUMENT_POSITION_CONTAINS: 8;
1607
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1608
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1581
+ readonly ATTRIBUTE_NODE: number;
1582
+ readonly CDATA_SECTION_NODE: number;
1583
+ readonly COMMENT_NODE: number;
1584
+ readonly DOCUMENT_FRAGMENT_NODE: number;
1585
+ readonly DOCUMENT_NODE: number;
1586
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
1587
+ readonly DOCUMENT_POSITION_CONTAINS: number;
1588
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
1589
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
1590
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
1591
+ readonly DOCUMENT_POSITION_PRECEDING: number;
1592
+ readonly DOCUMENT_TYPE_NODE: number;
1593
+ readonly ELEMENT_NODE: number;
1594
+ readonly ENTITY_NODE: number;
1595
+ readonly ENTITY_REFERENCE_NODE: number;
1596
+ readonly NOTATION_NODE: number;
1597
+ readonly PROCESSING_INSTRUCTION_NODE: number;
1598
+ readonly TEXT_NODE: number;
1609
1599
  dispatchEvent(event: Event): boolean;
1610
1600
  ariaAtomic: string;
1611
1601
  ariaAutoComplete: string;
@@ -1613,9 +1603,9 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1613
1603
  ariaChecked: string;
1614
1604
  ariaColCount: string;
1615
1605
  ariaColIndex: string;
1606
+ ariaColIndexText: string;
1616
1607
  ariaColSpan: string;
1617
1608
  ariaCurrent: string;
1618
- ariaDescription: string;
1619
1609
  ariaDisabled: string;
1620
1610
  ariaExpanded: string;
1621
1611
  ariaHasPopup: string;
@@ -1637,6 +1627,7 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1637
1627
  ariaRoleDescription: string;
1638
1628
  ariaRowCount: string;
1639
1629
  ariaRowIndex: string;
1630
+ ariaRowIndexText: string;
1640
1631
  ariaRowSpan: string;
1641
1632
  ariaSelected: string;
1642
1633
  ariaSetSize: string;
@@ -1661,19 +1652,17 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1661
1652
  readonly lastElementChild: Element;
1662
1653
  append(...nodes: (string | Node)[]): void;
1663
1654
  prepend(...nodes: (string | Node)[]): void;
1664
- querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
1665
- querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
1666
- querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
1667
- querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
1655
+ querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
1656
+ querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
1668
1657
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
1669
- querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
1670
- querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
1671
- querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
1672
- querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
1658
+ querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
1659
+ querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
1673
1660
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1674
1661
  replaceChildren(...nodes: (string | Node)[]): void;
1675
1662
  readonly assignedSlot: HTMLSlotElement;
1676
- readonly attributeStyleMap: StylePropertyMap;
1663
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1664
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1665
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1677
1666
  readonly style: CSSStyleDeclaration;
1678
1667
  contentEditable: string;
1679
1668
  enterKeyHint: string;
@@ -1686,7 +1675,6 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1686
1675
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1687
1676
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1688
1677
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
1689
- onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
1690
1678
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
1691
1679
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
1692
1680
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1695,9 +1683,7 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1695
1683
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1696
1684
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
1697
1685
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1698
- oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1699
1686
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
1700
- oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1701
1687
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1702
1688
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
1703
1689
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -1730,7 +1716,6 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1730
1716
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1731
1717
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1732
1718
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1733
- onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1734
1719
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
1735
1720
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
1736
1721
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1747,7 +1732,6 @@ declare const FoundationAuth_base: abstract new (...args: any[]) => {
1747
1732
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
1748
1733
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
1749
1734
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
1750
- onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
1751
1735
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
1752
1736
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
1753
1737
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [createMessageMapper](./foundation-auth.createmessagemapper.md)
4
4
 
5
- ## createMessageMapper() function
5
+ ## createMessageMapper variable
6
6
 
7
7
  A factory to create a MessageMapper.
8
8
 
@@ -11,9 +11,3 @@ A factory to create a MessageMapper.
11
11
  ```typescript
12
12
  createMessageMapper: <TLookup extends MessageMapperLookup, K extends keyof TLookup = keyof TLookup>() => MessageMapper<TLookup, K>
13
13
  ```
14
- **Returns:**
15
-
16
- [MessageMapper](./foundation-auth.messagemapper.md)<!-- -->&lt;TLookup, K&gt;
17
-
18
- A MessageMapper instance.
19
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [fromDTOAck](./foundation-auth.fromdtoack.md)
4
4
 
5
- ## fromDTOAck() function
5
+ ## fromDTOAck variable
6
6
 
7
7
  fromDTOAck
8
8
 
@@ -11,14 +11,3 @@ fromDTOAck
11
11
  ```typescript
12
12
  fromDTOAck: (dto: ACK) => Ack
13
13
  ```
14
-
15
- ## Parameters
16
-
17
- | Parameter | Type | Description |
18
- | --- | --- | --- |
19
- | dto | ACK | ACK. |
20
-
21
- **Returns:**
22
-
23
- Ack
24
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [fromDTONack](./foundation-auth.fromdtonack.md)
4
4
 
5
- ## fromDTONack() function
5
+ ## fromDTONack variable
6
6
 
7
7
  fromDTONack
8
8
 
@@ -11,14 +11,3 @@ fromDTONack
11
11
  ```typescript
12
12
  fromDTONack: (dto: NACK) => Nack
13
13
  ```
14
-
15
- ## Parameters
16
-
17
- | Parameter | Type | Description |
18
- | --- | --- | --- |
19
- | dto | NACK | NACK. |
20
-
21
- **Returns:**
22
-
23
- Nack
24
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [fromDTOStringArray](./foundation-auth.fromdtostringarray.md)
4
4
 
5
- ## fromDTOStringArray() function
5
+ ## fromDTOStringArray variable
6
6
 
7
7
 
8
8
  **Signature:**
@@ -10,14 +10,3 @@
10
10
  ```typescript
11
11
  fromDTOStringArray: (arr: string[]) => string[]
12
12
  ```
13
-
14
- ## Parameters
15
-
16
- | Parameter | Type | Description |
17
- | --- | --- | --- |
18
- | arr | string\[\] | |
19
-
20
- **Returns:**
21
-
22
- string\[\]
23
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [fromIDPDTO](./foundation-auth.fromidpdto.md)
4
4
 
5
- ## fromIDPDTO() function
5
+ ## fromIDPDTO variable
6
6
 
7
7
  fromIDPDTO
8
8
 
@@ -11,14 +11,3 @@ fromIDPDTO
11
11
  ```typescript
12
12
  fromIDPDTO: (dto: IDENTITY_PROVIDER) => IdentityProvider
13
13
  ```
14
-
15
- ## Parameters
16
-
17
- | Parameter | Type | Description |
18
- | --- | --- | --- |
19
- | dto | [IDENTITY\_PROVIDER](./foundation-auth.identity_provider.md) | IDENTITY\_PROVIDER. |
20
-
21
- **Returns:**
22
-
23
- [IdentityProvider](./foundation-auth.identityprovider.md)
24
-
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [hasDTOErrorWarningCode](./foundation-auth.hasdtoerrorwarningcode.md)
4
4
 
5
- ## hasDTOErrorWarningCode() function
5
+ ## hasDTOErrorWarningCode variable
6
6
 
7
7
  hasDTOErrorWarningCode
8
8
 
@@ -12,17 +12,6 @@ hasDTOErrorWarningCode
12
12
  hasDTOErrorWarningCode: (dto: NACK, code: string) => boolean
13
13
  ```
14
14
 
15
- ## Parameters
16
-
17
- | Parameter | Type | Description |
18
- | --- | --- | --- |
19
- | dto | NACK | NACK. |
20
- | code | string | The error or warning code. |
21
-
22
- **Returns:**
23
-
24
- boolean
25
-
26
15
  ## Remarks
27
16
 
28
17
  Checks both the `CODE` and `STATUS_CODE` values for a match.
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [is200Nack](./foundation-auth.is200nack.md)
4
4
 
5
- ## is200Nack() function
5
+ ## is200Nack variable
6
6
 
7
7
  is200Nack.
8
8
 
@@ -11,14 +11,3 @@ is200Nack.
11
11
  ```typescript
12
12
  is200Nack: <TOutput = any>(event: EventObject | DoneInvokeEvent<TOutput>) => event is DoneInvokeEvent<TOutput>
13
13
  ```
14
-
15
- ## Parameters
16
-
17
- | Parameter | Type | Description |
18
- | --- | --- | --- |
19
- | event | EventObject \| DoneInvokeEvent&lt;TOutput&gt; | |
20
-
21
- **Returns:**
22
-
23
- event is DoneInvokeEvent&lt;TOutput&gt;
24
-
@@ -2,21 +2,10 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-auth](./foundation-auth.md) &gt; [isMappingError](./foundation-auth.ismappingerror.md)
4
4
 
5
- ## isMappingError() function
5
+ ## isMappingError variable
6
6
 
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
10
  isMappingError: (error: unknown) => error is MappingError
11
11
  ```
12
-
13
- ## Parameters
14
-
15
- | Parameter | Type | Description |
16
- | --- | --- | --- |
17
- | error | unknown | An error. |
18
-
19
- **Returns:**
20
-
21
- error is [MappingError](./foundation-auth.mappingerror.md)
22
-
@@ -33,16 +33,9 @@
33
33
  | --- | --- |
34
34
  | [configure(config)](./foundation-auth.configure.md) | configure. |
35
35
  | [createHTTPHeadersFromDTO(dto, contentType)](./foundation-auth.createhttpheadersfromdto.md) | createHTTPHeadersFromDTO. |
36
- | [createMessageMapper()](./foundation-auth.createmessagemapper.md) | A factory to create a MessageMapper. |
37
- | [fromDTOAck(dto)](./foundation-auth.fromdtoack.md) | fromDTOAck |
38
- | [fromDTONack(dto)](./foundation-auth.fromdtonack.md) | fromDTONack |
39
- | [fromDTOStringArray(arr)](./foundation-auth.fromdtostringarray.md) | |
40
- | [fromIDPDTO(dto)](./foundation-auth.fromidpdto.md) | fromIDPDTO |
41
36
  | [getAuthMachine()](./foundation-auth.getauthmachine.md) | Get AuthMachine from the DI container. |
42
37
  | [getAuthStore()](./foundation-auth.getauthstore.md) | Get AuthStore from the DI container. |
43
38
  | [getRoutePath(route, hostPath)](./foundation-auth.getroutepath.md) | A utility to get a sub route path taking the host path into account. |
44
- | [hasDTOErrorWarningCode(dto, code)](./foundation-auth.hasdtoerrorwarningcode.md) | hasDTOErrorWarningCode |
45
- | [is200Nack(event)](./foundation-auth.is200nack.md) | is200Nack. |
46
39
  | [isChangePasswordParams(params)](./foundation-auth.ischangepasswordparams.md) | isChangePasswordParams. |
47
40
  | [isForgotPasswordParams(params)](./foundation-auth.isforgotpasswordparams.md) | isForgotPasswordParams. |
48
41
  | [isLoginAckDTO(dto)](./foundation-auth.isloginackdto.md) | isLoginAckDTO. |
@@ -56,7 +49,6 @@
56
49
  | [isLogoutAckEntity(entity)](./foundation-auth.islogoutackentity.md) | isLogoutAckEntity. |
57
50
  | [isLogoutNackDTO(dto)](./foundation-auth.islogoutnackdto.md) | isLogoutNackDTO. |
58
51
  | [isLogoutNackEntity(entity)](./foundation-auth.islogoutnackentity.md) | isLogoutNackEntity. |
59
- | [isMappingError(error)](./foundation-auth.ismappingerror.md) | |
60
52
  | [isMFRoute(pathname)](./foundation-auth.ismfroute.md) | A utility to check if a pathname is a route of this micro frontend. |
61
53
  | [isNackDTO(dto)](./foundation-auth.isnackdto.md) | isNackDTO. |
62
54
  | [isNackEntity(entity)](./foundation-auth.isnackentity.md) | isNackEntity. |
@@ -107,12 +99,20 @@
107
99
  | --- | --- |
108
100
  | [AuthRoutes](./foundation-auth.authroutes.md) | |
109
101
  | [CHANGE\_PASSWORD\_URL](./foundation-auth.change_password_url.md) | |
102
+ | [createMessageMapper](./foundation-auth.createmessagemapper.md) | A factory to create a MessageMapper. |
110
103
  | [credentialSeparator](./foundation-auth.credentialseparator.md) | The default separator used for splitting credential parts. |
111
104
  | [defaultAuthConfig](./foundation-auth.defaultauthconfig.md) | Default AuthConfig DI implementation. |
112
105
  | [defaultAuthMachineContext](./foundation-auth.defaultauthmachinecontext.md) | Default AuthMachineContext. |
113
106
  | [defaultCredentialManagerConfig](./foundation-auth.defaultcredentialmanagerconfig.md) | The default configuration for the CredentialManager service. |
114
107
  | [defaultCredentialRequestOptions](./foundation-auth.defaultcredentialrequestoptions.md) | The default request options for the CredentialManager service. |
115
108
  | [FORGOT\_PASSWORD\_URL](./foundation-auth.forgot_password_url.md) | |
109
+ | [fromDTOAck](./foundation-auth.fromdtoack.md) | fromDTOAck |
110
+ | [fromDTONack](./foundation-auth.fromdtonack.md) | fromDTONack |
111
+ | [fromDTOStringArray](./foundation-auth.fromdtostringarray.md) | |
112
+ | [fromIDPDTO](./foundation-auth.fromidpdto.md) | fromIDPDTO |
113
+ | [hasDTOErrorWarningCode](./foundation-auth.hasdtoerrorwarningcode.md) | hasDTOErrorWarningCode |
114
+ | [is200Nack](./foundation-auth.is200nack.md) | is200Nack. |
115
+ | [isMappingError](./foundation-auth.ismappingerror.md) | |
116
116
  | [logger](./foundation-auth.logger.md) | |
117
117
  | [LOGIN\_DETAILS\_URL](./foundation-auth.login_details_url.md) | |
118
118
  | [LOGIN\_REFRESH\_URL](./foundation-auth.login_refresh_url.md) | |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-auth",
3
3
  "description": "Genesis Foundation Auth",
4
- "version": "14.226.0",
4
+ "version": "14.226.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-auth.d.ts",
@@ -127,26 +127,26 @@
127
127
  }
128
128
  },
129
129
  "devDependencies": {
130
- "@genesislcap/foundation-testing": "14.226.0",
131
- "@genesislcap/genx": "14.226.0",
132
- "@genesislcap/rollup-builder": "14.226.0",
133
- "@genesislcap/ts-builder": "14.226.0",
134
- "@genesislcap/uvu-playwright-builder": "14.226.0",
135
- "@genesislcap/vite-builder": "14.226.0",
136
- "@genesislcap/webpack-builder": "14.226.0",
130
+ "@genesislcap/foundation-testing": "14.226.1",
131
+ "@genesislcap/genx": "14.226.1",
132
+ "@genesislcap/rollup-builder": "14.226.1",
133
+ "@genesislcap/ts-builder": "14.226.1",
134
+ "@genesislcap/uvu-playwright-builder": "14.226.1",
135
+ "@genesislcap/vite-builder": "14.226.1",
136
+ "@genesislcap/webpack-builder": "14.226.1",
137
137
  "rimraf": "^5.0.0"
138
138
  },
139
139
  "dependencies": {
140
- "@genesislcap/foundation-comms": "14.226.0",
141
- "@genesislcap/foundation-events": "14.226.0",
142
- "@genesislcap/foundation-i18n": "14.226.0",
143
- "@genesislcap/foundation-logger": "14.226.0",
144
- "@genesislcap/foundation-state-machine": "14.226.0",
145
- "@genesislcap/foundation-store": "14.226.0",
146
- "@genesislcap/foundation-ui": "14.226.0",
147
- "@genesislcap/foundation-user": "14.226.0",
148
- "@genesislcap/foundation-utils": "14.226.0",
149
- "@genesislcap/foundation-zero": "14.226.0",
140
+ "@genesislcap/foundation-comms": "14.226.1",
141
+ "@genesislcap/foundation-events": "14.226.1",
142
+ "@genesislcap/foundation-i18n": "14.226.1",
143
+ "@genesislcap/foundation-logger": "14.226.1",
144
+ "@genesislcap/foundation-state-machine": "14.226.1",
145
+ "@genesislcap/foundation-store": "14.226.1",
146
+ "@genesislcap/foundation-ui": "14.226.1",
147
+ "@genesislcap/foundation-user": "14.226.1",
148
+ "@genesislcap/foundation-utils": "14.226.1",
149
+ "@genesislcap/foundation-zero": "14.226.1",
150
150
  "@microsoft/fast-components": "2.30.6",
151
151
  "@microsoft/fast-element": "1.14.0",
152
152
  "@microsoft/fast-foundation": "2.49.6",
@@ -156,7 +156,7 @@
156
156
  "http-status-codes": "^2.2.0",
157
157
  "js-cookie": "^3.0.1",
158
158
  "lodash": "^4.17.21",
159
- "tslib": "2.8.1",
159
+ "tslib": "^2.3.1",
160
160
  "xstate": "5.0.0-beta.21"
161
161
  },
162
162
  "repository": {
@@ -167,5 +167,5 @@
167
167
  "publishConfig": {
168
168
  "access": "public"
169
169
  },
170
- "gitHead": "92b4d205bf702945dbed4e9c998c4fd000d99e4b"
170
+ "gitHead": "e691c1741d135edca5271f338f62df8154efb99c"
171
171
  }
File without changes