You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Response containing the full set of environment variables from an Environment. */
68
+
exportinterfaceGetVariablesResponse{
69
+
/** List of environment variables. */
70
+
variables: EnvironmentVariable[];
71
+
}
72
+
57
73
exportenumGroupType{
58
74
/**
59
75
* The owners group, which gives the following permissions:
@@ -578,7 +594,7 @@ export interface Vault {
578
594
activeItemCount: number;
579
595
/** The content version number of the vault. It gets incremented whenever the state of the vault's contents changes (e.g. items from within the vault get created or updated). */
580
596
contentVersion: number;
581
-
/** The attribute version number of the vault. It gets incremented whenever vault presentation information changes, such as its title or icon. */
597
+
/** The attribute version number of the vault. It gets incremented whenever vault presentation information changes, such as its name or icon. */
582
598
attributeVersion: number;
583
599
/** The access information associated with the vault. */
/** The content version number of the vault. It gets incremented whenever the state of the vault's contents changes (e.g. items from within the vault get created or updated). */
616
632
contentVersion: number;
617
-
/** The attribute version number of the vault. It gets incremented whenever vault presentation information changes, such as its title or icon. */
633
+
/** The attribute version number of the vault. It gets incremented whenever vault presentation information changes, such as its name or icon. */
0 commit comments