waldur-js-client 8.0.9-dev.40 → 8.0.9-dev.41
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 +28 -19
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -8252,6 +8252,7 @@ export type Hypervisor = {
|
|
|
8252
8252
|
* Hypervisor status, e.g. enabled or disabled
|
|
8253
8253
|
*/
|
|
8254
8254
|
status?: string;
|
|
8255
|
+
readonly traits: Array<string>;
|
|
8255
8256
|
};
|
|
8256
8257
|
export type HypervisorInventory = {
|
|
8257
8258
|
readonly url: string;
|
|
@@ -8392,34 +8393,34 @@ export type IdentityProvider = {
|
|
|
8392
8393
|
/**
|
|
8393
8394
|
* ID of application used for OAuth authentication.
|
|
8394
8395
|
*/
|
|
8395
|
-
client_id
|
|
8396
|
+
client_id?: string;
|
|
8396
8397
|
/**
|
|
8397
8398
|
* Application secret key.
|
|
8398
8399
|
*/
|
|
8399
|
-
client_secret
|
|
8400
|
+
client_secret?: string;
|
|
8400
8401
|
verify_ssl?: boolean;
|
|
8401
8402
|
enable_post_logout_redirect?: boolean;
|
|
8402
8403
|
enable_pkce?: boolean;
|
|
8403
8404
|
/**
|
|
8404
8405
|
* The endpoint for endpoint discovery.
|
|
8405
8406
|
*/
|
|
8406
|
-
discovery_url
|
|
8407
|
+
discovery_url?: string;
|
|
8407
8408
|
/**
|
|
8408
8409
|
* The endpoint for fetching user info.
|
|
8409
8410
|
*/
|
|
8410
|
-
readonly userinfo_url
|
|
8411
|
+
readonly userinfo_url?: string;
|
|
8411
8412
|
/**
|
|
8412
8413
|
* The endpoint for obtaining auth token.
|
|
8413
8414
|
*/
|
|
8414
|
-
readonly token_url
|
|
8415
|
+
readonly token_url?: string;
|
|
8415
8416
|
/**
|
|
8416
8417
|
* The endpoint for authorization request flow.
|
|
8417
8418
|
*/
|
|
8418
|
-
readonly auth_url
|
|
8419
|
+
readonly auth_url?: string;
|
|
8419
8420
|
/**
|
|
8420
8421
|
* The endpoint used to redirect after sign-out.
|
|
8421
8422
|
*/
|
|
8422
|
-
readonly logout_url
|
|
8423
|
+
readonly logout_url?: string;
|
|
8423
8424
|
/**
|
|
8424
8425
|
* Human-readable identity provider is label.
|
|
8425
8426
|
*/
|
|
@@ -9106,7 +9107,7 @@ export type Issue = {
|
|
|
9106
9107
|
/**
|
|
9107
9108
|
* Link to issue in support system.
|
|
9108
9109
|
*/
|
|
9109
|
-
readonly link
|
|
9110
|
+
readonly link?: string;
|
|
9110
9111
|
summary: string;
|
|
9111
9112
|
description?: string;
|
|
9112
9113
|
readonly status: string;
|
|
@@ -9145,7 +9146,7 @@ export type Issue = {
|
|
|
9145
9146
|
/**
|
|
9146
9147
|
* Internal processing log for debugging order lifecycle events. Visible only to staff.
|
|
9147
9148
|
*/
|
|
9148
|
-
readonly processing_log
|
|
9149
|
+
readonly processing_log?: unknown;
|
|
9149
9150
|
/**
|
|
9150
9151
|
* Return order UUID if the issue's resource is an Order.
|
|
9151
9152
|
*/
|
|
@@ -10972,11 +10973,11 @@ export type Message = {
|
|
|
10972
10973
|
readonly created: string;
|
|
10973
10974
|
readonly input_tokens: number | null;
|
|
10974
10975
|
readonly output_tokens: number | null;
|
|
10975
|
-
readonly is_flagged
|
|
10976
|
-
severity
|
|
10977
|
-
readonly injection_categories
|
|
10978
|
-
readonly pii_categories
|
|
10979
|
-
action_taken
|
|
10976
|
+
readonly is_flagged?: boolean;
|
|
10977
|
+
severity?: InjectionSeverityEnum;
|
|
10978
|
+
readonly injection_categories?: unknown;
|
|
10979
|
+
readonly pii_categories?: unknown;
|
|
10980
|
+
action_taken?: ActionTakenEnum;
|
|
10980
10981
|
/**
|
|
10981
10982
|
* User feedback: True=thumbs up, False=thumbs down, None=no feedback.
|
|
10982
10983
|
*/
|
|
@@ -26652,7 +26653,7 @@ export type UserMe = {
|
|
|
26652
26653
|
* Designates whether the user is a global support user.
|
|
26653
26654
|
*/
|
|
26654
26655
|
is_support?: boolean;
|
|
26655
|
-
readonly token
|
|
26656
|
+
readonly token?: string;
|
|
26656
26657
|
/**
|
|
26657
26658
|
* Token lifetime in seconds.
|
|
26658
26659
|
*/
|
|
@@ -26693,8 +26694,8 @@ export type UserMe = {
|
|
|
26693
26694
|
*/
|
|
26694
26695
|
readonly identity_source: string;
|
|
26695
26696
|
readonly should_protect_user_details: boolean;
|
|
26696
|
-
readonly has_active_session
|
|
26697
|
-
readonly has_usable_password
|
|
26697
|
+
readonly has_active_session?: boolean;
|
|
26698
|
+
readonly has_usable_password?: boolean;
|
|
26698
26699
|
readonly ip_address: string;
|
|
26699
26700
|
/**
|
|
26700
26701
|
* User's gender (male, female, or unknown)
|
|
@@ -26739,7 +26740,7 @@ export type UserMe = {
|
|
|
26739
26740
|
/**
|
|
26740
26741
|
* Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
|
|
26741
26742
|
*/
|
|
26742
|
-
readonly attribute_sources
|
|
26743
|
+
readonly attribute_sources?: unknown;
|
|
26743
26744
|
/**
|
|
26744
26745
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26745
26746
|
*/
|
|
@@ -26747,7 +26748,7 @@ export type UserMe = {
|
|
|
26747
26748
|
/**
|
|
26748
26749
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
26749
26750
|
*/
|
|
26750
|
-
readonly active_isds
|
|
26751
|
+
readonly active_isds?: unknown;
|
|
26751
26752
|
/**
|
|
26752
26753
|
* Reason why the user was deactivated. Visible to staff and support.
|
|
26753
26754
|
*/
|
|
@@ -67141,6 +67142,10 @@ export type OpenstackHypervisorsListData = {
|
|
|
67141
67142
|
settings_uuid?: string;
|
|
67142
67143
|
state?: string;
|
|
67143
67144
|
status?: string;
|
|
67145
|
+
/**
|
|
67146
|
+
* Trait names with AND logic (comma-separated)
|
|
67147
|
+
*/
|
|
67148
|
+
trait?: string;
|
|
67144
67149
|
};
|
|
67145
67150
|
url: '/api/openstack-hypervisors/';
|
|
67146
67151
|
};
|
|
@@ -67179,6 +67184,10 @@ export type OpenstackHypervisorsCountData = {
|
|
|
67179
67184
|
settings_uuid?: string;
|
|
67180
67185
|
state?: string;
|
|
67181
67186
|
status?: string;
|
|
67187
|
+
/**
|
|
67188
|
+
* Trait names with AND logic (comma-separated)
|
|
67189
|
+
*/
|
|
67190
|
+
trait?: string;
|
|
67182
67191
|
};
|
|
67183
67192
|
url: '/api/openstack-hypervisors/';
|
|
67184
67193
|
};
|