@canopy-io/node 0.3.1 → 0.3.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/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2055,6 +2055,11 @@ interface components {
|
|
|
2055
2055
|
* @description Last time this factor satisfied a challenge. `null` until the first use.
|
|
2056
2056
|
*/
|
|
2057
2057
|
last_used_at: string | null;
|
|
2058
|
+
/**
|
|
2059
|
+
* @description For a passkey, the relying-party id it was created under and the only domain it answers on: the Environment's `webauthn_rp_id`, or Canopy's own when the Environment names none. `null` for every other factor type.
|
|
2060
|
+
* @example acme.com
|
|
2061
|
+
*/
|
|
2062
|
+
webauthn_rp_id: string | null;
|
|
2058
2063
|
};
|
|
2059
2064
|
AccountIdentityMfaResponseDto: {
|
|
2060
2065
|
factors: components["schemas"]["MfaFactorResponseDto"][];
|
package/dist/index.d.ts
CHANGED
|
@@ -2055,6 +2055,11 @@ interface components {
|
|
|
2055
2055
|
* @description Last time this factor satisfied a challenge. `null` until the first use.
|
|
2056
2056
|
*/
|
|
2057
2057
|
last_used_at: string | null;
|
|
2058
|
+
/**
|
|
2059
|
+
* @description For a passkey, the relying-party id it was created under and the only domain it answers on: the Environment's `webauthn_rp_id`, or Canopy's own when the Environment names none. `null` for every other factor type.
|
|
2060
|
+
* @example acme.com
|
|
2061
|
+
*/
|
|
2062
|
+
webauthn_rp_id: string | null;
|
|
2058
2063
|
};
|
|
2059
2064
|
AccountIdentityMfaResponseDto: {
|
|
2060
2065
|
factors: components["schemas"]["MfaFactorResponseDto"][];
|