@delopay/sdk 0.91.0 → 0.92.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.
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4247,7 +4247,12 @@ interface VaultRouteChange {
|
|
|
4247
4247
|
change: VaultRouteChangeKind;
|
|
4248
4248
|
field_changes: VaultRouteFieldChange[];
|
|
4249
4249
|
}
|
|
4250
|
-
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors'
|
|
4250
|
+
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors'
|
|
4251
|
+
/** Whether the vault's outbound route admits only DeloPay's egress. VGS
|
|
4252
|
+
* enforces a route's `source_endpoint`, so one left open lets any holder of
|
|
4253
|
+
* the proxy credentials reveal a stored alias. Advisory: it never blocks
|
|
4254
|
+
* cloaking being switched on. */
|
|
4255
|
+
| 'reveal_route_restricted_to_our_egress' | 'collect_route_exists' | 'ca_certificate_configured';
|
|
4251
4256
|
type VaultCheckStatus = 'pass' | 'fail' | 'unknown';
|
|
4252
4257
|
interface VaultCheck {
|
|
4253
4258
|
id: VaultCheckId;
|
package/dist/index.d.ts
CHANGED
|
@@ -4247,7 +4247,12 @@ interface VaultRouteChange {
|
|
|
4247
4247
|
change: VaultRouteChangeKind;
|
|
4248
4248
|
field_changes: VaultRouteFieldChange[];
|
|
4249
4249
|
}
|
|
4250
|
-
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors'
|
|
4250
|
+
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors'
|
|
4251
|
+
/** Whether the vault's outbound route admits only DeloPay's egress. VGS
|
|
4252
|
+
* enforces a route's `source_endpoint`, so one left open lets any holder of
|
|
4253
|
+
* the proxy credentials reveal a stored alias. Advisory: it never blocks
|
|
4254
|
+
* cloaking being switched on. */
|
|
4255
|
+
| 'reveal_route_restricted_to_our_egress' | 'collect_route_exists' | 'ca_certificate_configured';
|
|
4251
4256
|
type VaultCheckStatus = 'pass' | 'fail' | 'unknown';
|
|
4252
4257
|
interface VaultCheck {
|
|
4253
4258
|
id: VaultCheckId;
|