waldur-js-client 1.0.4-dev.35 → 1.0.4-dev.36
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/types.gen.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -8074,7 +8074,7 @@ export type RobotAccount = {
|
|
|
8074
8074
|
readonly backend_id: string;
|
|
8075
8075
|
responsible_user?: string | null;
|
|
8076
8076
|
readonly fingerprints: Array<Fingerprint>;
|
|
8077
|
-
readonly state: string;
|
|
8077
|
+
readonly state: string | null;
|
|
8078
8078
|
readonly error_message: string;
|
|
8079
8079
|
readonly error_traceback: string;
|
|
8080
8080
|
};
|
|
@@ -8091,7 +8091,7 @@ export type RobotAccountDetails = {
|
|
|
8091
8091
|
readonly backend_id: string;
|
|
8092
8092
|
responsible_user: BasicUser | null;
|
|
8093
8093
|
readonly fingerprints: Array<Fingerprint>;
|
|
8094
|
-
readonly state: string;
|
|
8094
|
+
readonly state: string | null;
|
|
8095
8095
|
readonly error_message: string;
|
|
8096
8096
|
readonly error_traceback: string;
|
|
8097
8097
|
readonly user_keys: Array<SshKey>;
|