waldur-js-client 8.0.9-dev.64 → 8.0.9-dev.65
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 +26 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4495,6 +4495,7 @@ export type Comment = {
|
|
|
4495
4495
|
* Email address
|
|
4496
4496
|
*/
|
|
4497
4497
|
readonly author_email: string;
|
|
4498
|
+
readonly author_image: string;
|
|
4498
4499
|
readonly backend_id: string | null;
|
|
4499
4500
|
remote_id?: string | null;
|
|
4500
4501
|
readonly created: string;
|
|
@@ -5108,6 +5109,7 @@ export type ConstanceSettings = {
|
|
|
5108
5109
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
5109
5110
|
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
5110
5111
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
5112
|
+
MAINTENANCE_ANNOUNCEMENT_TRAILING_BUFFER_MINUTES?: number;
|
|
5111
5113
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<NotifySystemEnum | BlankEnum>;
|
|
5112
5114
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
5113
5115
|
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
@@ -5409,6 +5411,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5409
5411
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
5410
5412
|
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
5411
5413
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
5414
|
+
MAINTENANCE_ANNOUNCEMENT_TRAILING_BUFFER_MINUTES?: number;
|
|
5412
5415
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<NotifySystemEnum | BlankEnum>;
|
|
5413
5416
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
5414
5417
|
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
@@ -10430,6 +10433,7 @@ export type MatrixRoomMember = {
|
|
|
10430
10433
|
readonly uuid: string;
|
|
10431
10434
|
readonly user_uuid: string;
|
|
10432
10435
|
readonly user_full_name: string;
|
|
10436
|
+
readonly user_image: string;
|
|
10433
10437
|
readonly matrix_user_id: string;
|
|
10434
10438
|
readonly power_level: number;
|
|
10435
10439
|
membership_state: MembershipStateEnum;
|
|
@@ -19414,6 +19418,10 @@ export type Project = {
|
|
|
19414
19418
|
* Number of active resources in this project
|
|
19415
19419
|
*/
|
|
19416
19420
|
readonly resources_count: number;
|
|
19421
|
+
/**
|
|
19422
|
+
* Answers to the customer's project-metadata checklist (read-only).
|
|
19423
|
+
*/
|
|
19424
|
+
readonly project_metadata: Array<ProjectMetadataAnswer>;
|
|
19417
19425
|
/**
|
|
19418
19426
|
* Maximum number of service accounts allowed
|
|
19419
19427
|
*/
|
|
@@ -19774,6 +19782,20 @@ export type ProjectMapping = {
|
|
|
19774
19782
|
export type ProjectMappingMap = {
|
|
19775
19783
|
'*': ProjectMapping | null;
|
|
19776
19784
|
};
|
|
19785
|
+
export type ProjectMetadataAnswer = {
|
|
19786
|
+
question_uuid: string;
|
|
19787
|
+
/**
|
|
19788
|
+
* Question description.
|
|
19789
|
+
*/
|
|
19790
|
+
question: string;
|
|
19791
|
+
question_type: string;
|
|
19792
|
+
/**
|
|
19793
|
+
* Human-readable answer value; select-type option UUIDs are resolved to their labels.
|
|
19794
|
+
*/
|
|
19795
|
+
answer: {
|
|
19796
|
+
[key: string]: unknown;
|
|
19797
|
+
};
|
|
19798
|
+
};
|
|
19777
19799
|
export type ProjectOrderAutoApproval = {
|
|
19778
19800
|
readonly uuid: string;
|
|
19779
19801
|
readonly url: string;
|
|
@@ -20350,6 +20372,7 @@ export type ProposalReview = {
|
|
|
20350
20372
|
reviewer?: string;
|
|
20351
20373
|
readonly reviewer_full_name: string;
|
|
20352
20374
|
readonly reviewer_uuid: string;
|
|
20375
|
+
readonly reviewer_image: string;
|
|
20353
20376
|
/**
|
|
20354
20377
|
* Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'.
|
|
20355
20378
|
* Returns None if the review is not associated with a proposal.
|
|
@@ -29798,6 +29821,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
29798
29821
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
29799
29822
|
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
29800
29823
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
29824
|
+
MAINTENANCE_ANNOUNCEMENT_TRAILING_BUFFER_MINUTES?: number;
|
|
29801
29825
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<NotifySystemEnum | BlankEnum>;
|
|
29802
29826
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
29803
29827
|
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
@@ -30099,6 +30123,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
30099
30123
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
30100
30124
|
ENFORCE_MANDATORY_USER_ATTRIBUTES?: boolean;
|
|
30101
30125
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
30126
|
+
MAINTENANCE_ANNOUNCEMENT_TRAILING_BUFFER_MINUTES?: number;
|
|
30102
30127
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<NotifySystemEnum | BlankEnum>;
|
|
30103
30128
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
30104
30129
|
ENFORCE_OFFERING_USER_PROFILE_COMPLETENESS?: boolean;
|
|
@@ -30714,7 +30739,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
30714
30739
|
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
30715
30740
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
30716
30741
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
30717
|
-
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
30742
|
+
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'project_metadata' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
30718
30743
|
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
30719
30744
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
30720
30745
|
export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
|