waldur-js-client 8.0.7-dev.2 → 8.0.7-dev.4

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.
@@ -1437,12 +1437,57 @@ export type AttachmentRequest = {
1437
1437
  issue: string;
1438
1438
  file: Blob | File;
1439
1439
  };
1440
+ export type Attribute = {
1441
+ readonly url: string;
1442
+ readonly uuid: string;
1443
+ key: string;
1444
+ readonly created: string;
1445
+ title: string;
1446
+ section: string;
1447
+ readonly section_title: string;
1448
+ type: AttributeTypeEnum;
1449
+ /**
1450
+ * A value must be provided for the attribute.
1451
+ */
1452
+ required?: boolean;
1453
+ default?: unknown;
1454
+ };
1455
+ export type AttributeOption = {
1456
+ readonly url: string;
1457
+ readonly uuid: string;
1458
+ readonly id: number;
1459
+ key: string;
1460
+ title: string;
1461
+ attribute: string;
1462
+ readonly attribute_title: string;
1463
+ /**
1464
+ * Return True if this option is the default for its attribute.
1465
+ */
1466
+ readonly is_default: boolean;
1467
+ };
1468
+ export type AttributeOptionRequest = {
1469
+ key: string;
1470
+ title: string;
1471
+ attribute: string;
1472
+ };
1473
+ export type AttributeRequest = {
1474
+ key: string;
1475
+ title: string;
1476
+ section: string;
1477
+ type: AttributeTypeEnum;
1478
+ /**
1479
+ * A value must be provided for the attribute.
1480
+ */
1481
+ required?: boolean;
1482
+ default?: unknown;
1483
+ };
1440
1484
  export type AttributeSourceDetail = {
1441
1485
  source: string;
1442
1486
  timestamp: string;
1443
1487
  age_days: number;
1444
1488
  is_stale: boolean;
1445
1489
  };
1490
+ export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
1446
1491
  export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
1447
1492
  export type AuthResult = {
1448
1493
  readonly uuid: string;
@@ -10049,9 +10094,10 @@ export type NestedAgentServiceRequest = {
10049
10094
  statistics?: unknown;
10050
10095
  };
10051
10096
  export type NestedAttribute = {
10097
+ readonly uuid?: string;
10052
10098
  key?: string;
10053
10099
  title?: string;
10054
- type?: NestedAttributeTypeEnum;
10100
+ type?: AttributeTypeEnum;
10055
10101
  options?: Array<NestedAttributeOption>;
10056
10102
  /**
10057
10103
  * A value must be provided for the attribute.
@@ -10060,8 +10106,13 @@ export type NestedAttribute = {
10060
10106
  default?: unknown;
10061
10107
  };
10062
10108
  export type NestedAttributeOption = {
10109
+ readonly uuid?: string;
10063
10110
  key?: string;
10064
10111
  title?: string;
10112
+ /**
10113
+ * Return True if this option is the default for its attribute.
10114
+ */
10115
+ readonly is_default?: boolean;
10065
10116
  };
10066
10117
  export type NestedAttributeOptionRequest = {
10067
10118
  key: string;
@@ -10070,7 +10121,7 @@ export type NestedAttributeOptionRequest = {
10070
10121
  export type NestedAttributeRequest = {
10071
10122
  key: string;
10072
10123
  title: string;
10073
- type: NestedAttributeTypeEnum;
10124
+ type: AttributeTypeEnum;
10074
10125
  options: Array<NestedAttributeOptionRequest>;
10075
10126
  /**
10076
10127
  * A value must be provided for the attribute.
@@ -10078,7 +10129,6 @@ export type NestedAttributeRequest = {
10078
10129
  required?: boolean;
10079
10130
  default?: unknown;
10080
10131
  };
10081
- export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
10082
10132
  export type NestedCampaign = {
10083
10133
  readonly uuid?: string;
10084
10134
  name?: string;
@@ -10828,6 +10878,8 @@ export type Offering = {
10828
10878
  description?: string;
10829
10879
  full_description?: string;
10830
10880
  privacy_policy_link?: string;
10881
+ helpdesk_url?: string;
10882
+ documentation_url?: string;
10831
10883
  /**
10832
10884
  * Publicly accessible offering access URL
10833
10885
  */
@@ -11060,6 +11112,8 @@ export type OfferingCreateRequest = {
11060
11112
  description?: string;
11061
11113
  full_description?: string;
11062
11114
  privacy_policy_link?: string;
11115
+ helpdesk_url?: string;
11116
+ documentation_url?: string;
11063
11117
  /**
11064
11118
  * Publicly accessible offering access URL
11065
11119
  */
@@ -11458,6 +11512,8 @@ export type OfferingOverviewUpdateRequest = {
11458
11512
  description?: string;
11459
11513
  full_description?: string;
11460
11514
  privacy_policy_link?: string;
11515
+ helpdesk_url?: string;
11516
+ documentation_url?: string;
11461
11517
  /**
11462
11518
  * Publicly accessible offering access URL
11463
11519
  */
@@ -15006,6 +15062,22 @@ export type PatchedAssignmentItemRequest = {
15006
15062
  */
15007
15063
  decline_reason?: string;
15008
15064
  };
15065
+ export type PatchedAttributeOptionRequest = {
15066
+ key?: string;
15067
+ title?: string;
15068
+ attribute?: string;
15069
+ };
15070
+ export type PatchedAttributeRequest = {
15071
+ key?: string;
15072
+ title?: string;
15073
+ section?: string;
15074
+ type?: AttributeTypeEnum;
15075
+ /**
15076
+ * A value must be provided for the attribute.
15077
+ */
15078
+ required?: boolean;
15079
+ default?: unknown;
15080
+ };
15009
15081
  export type PatchedAwsInstanceRequest = {
15010
15082
  name?: string;
15011
15083
  description?: string;
@@ -18245,6 +18317,8 @@ export type ProviderOfferingDetails = {
18245
18317
  description?: string;
18246
18318
  full_description?: string;
18247
18319
  privacy_policy_link?: string;
18320
+ helpdesk_url?: string;
18321
+ documentation_url?: string;
18248
18322
  /**
18249
18323
  * Publicly accessible offering access URL
18250
18324
  */
@@ -18347,6 +18421,8 @@ export type ProviderOfferingDetailsRequest = {
18347
18421
  description?: string;
18348
18422
  full_description?: string;
18349
18423
  privacy_policy_link?: string;
18424
+ helpdesk_url?: string;
18425
+ documentation_url?: string;
18350
18426
  /**
18351
18427
  * Publicly accessible offering access URL
18352
18428
  */
@@ -18651,6 +18727,8 @@ export type PublicOfferingDetails = {
18651
18727
  description?: string;
18652
18728
  full_description?: string;
18653
18729
  privacy_policy_link?: string;
18730
+ helpdesk_url?: string;
18731
+ documentation_url?: string;
18654
18732
  /**
18655
18733
  * Publicly accessible offering access URL
18656
18734
  */
@@ -25574,6 +25652,8 @@ export type OfferingCreateRequestForm = {
25574
25652
  description?: string;
25575
25653
  full_description?: string;
25576
25654
  privacy_policy_link?: string;
25655
+ helpdesk_url?: string;
25656
+ documentation_url?: string;
25577
25657
  /**
25578
25658
  * Publicly accessible offering access URL
25579
25659
  */
@@ -25627,6 +25707,8 @@ export type OfferingCreateRequestMultipart = {
25627
25707
  description?: string;
25628
25708
  full_description?: string;
25629
25709
  privacy_policy_link?: string;
25710
+ helpdesk_url?: string;
25711
+ documentation_url?: string;
25630
25712
  /**
25631
25713
  * Publicly accessible offering access URL
25632
25714
  */
@@ -26895,7 +26977,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
26895
26977
  export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
26896
26978
  export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
26897
26979
  export type BackendResourceReqOEnum = '-created' | 'created';
26898
- export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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' | 'user_has_consent' | 'uuid' | 'vendor_details';
26980
+ export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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' | 'user_has_consent' | 'uuid' | 'vendor_details';
26899
26981
  export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
26900
26982
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26901
26983
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
@@ -26952,13 +27034,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
26952
27034
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
26953
27035
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
26954
27036
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
26955
- 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27037
+ 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' | '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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
26956
27038
  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';
26957
27039
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
26958
27040
  export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
26959
27041
  export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | '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_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' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
26960
27042
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26961
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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' | 'user_has_consent' | 'uuid' | 'vendor_details';
27043
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | '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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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' | 'user_has_consent' | 'uuid' | 'vendor_details';
26962
27044
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
26963
27045
  export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26964
27046
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -39851,6 +39933,224 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39851
39933
  200: RancherNode;
39852
39934
  };
39853
39935
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
39936
+ export type MarketplaceAttributeOptionsListData = {
39937
+ body?: never;
39938
+ path?: never;
39939
+ query?: {
39940
+ /**
39941
+ * Attribute URL
39942
+ */
39943
+ attribute?: string;
39944
+ /**
39945
+ * A page number within the paginated result set.
39946
+ */
39947
+ page?: number;
39948
+ /**
39949
+ * Number of results to return per page.
39950
+ */
39951
+ page_size?: number;
39952
+ };
39953
+ url: '/api/marketplace-attribute-options/';
39954
+ };
39955
+ export type MarketplaceAttributeOptionsListResponses = {
39956
+ 200: Array<AttributeOption>;
39957
+ };
39958
+ export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
39959
+ export type MarketplaceAttributeOptionsCountData = {
39960
+ body?: never;
39961
+ path?: never;
39962
+ query?: {
39963
+ /**
39964
+ * Attribute URL
39965
+ */
39966
+ attribute?: string;
39967
+ /**
39968
+ * A page number within the paginated result set.
39969
+ */
39970
+ page?: number;
39971
+ /**
39972
+ * Number of results to return per page.
39973
+ */
39974
+ page_size?: number;
39975
+ };
39976
+ url: '/api/marketplace-attribute-options/';
39977
+ };
39978
+ export type MarketplaceAttributeOptionsCountResponses = {
39979
+ /**
39980
+ * No response body
39981
+ */
39982
+ 200: unknown;
39983
+ };
39984
+ export type MarketplaceAttributeOptionsCreateData = {
39985
+ body: AttributeOptionRequest;
39986
+ path?: never;
39987
+ query?: never;
39988
+ url: '/api/marketplace-attribute-options/';
39989
+ };
39990
+ export type MarketplaceAttributeOptionsCreateResponses = {
39991
+ 201: AttributeOption;
39992
+ };
39993
+ export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
39994
+ export type MarketplaceAttributeOptionsDestroyData = {
39995
+ body?: never;
39996
+ path: {
39997
+ uuid: string;
39998
+ };
39999
+ query?: never;
40000
+ url: '/api/marketplace-attribute-options/{uuid}/';
40001
+ };
40002
+ export type MarketplaceAttributeOptionsDestroyResponses = {
40003
+ /**
40004
+ * No response body
40005
+ */
40006
+ 204: void;
40007
+ };
40008
+ export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
40009
+ export type MarketplaceAttributeOptionsRetrieveData = {
40010
+ body?: never;
40011
+ path: {
40012
+ uuid: string;
40013
+ };
40014
+ query?: never;
40015
+ url: '/api/marketplace-attribute-options/{uuid}/';
40016
+ };
40017
+ export type MarketplaceAttributeOptionsRetrieveResponses = {
40018
+ 200: AttributeOption;
40019
+ };
40020
+ export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
40021
+ export type MarketplaceAttributeOptionsPartialUpdateData = {
40022
+ body?: PatchedAttributeOptionRequest;
40023
+ path: {
40024
+ uuid: string;
40025
+ };
40026
+ query?: never;
40027
+ url: '/api/marketplace-attribute-options/{uuid}/';
40028
+ };
40029
+ export type MarketplaceAttributeOptionsPartialUpdateResponses = {
40030
+ 200: AttributeOption;
40031
+ };
40032
+ export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
40033
+ export type MarketplaceAttributeOptionsUpdateData = {
40034
+ body: AttributeOptionRequest;
40035
+ path: {
40036
+ uuid: string;
40037
+ };
40038
+ query?: never;
40039
+ url: '/api/marketplace-attribute-options/{uuid}/';
40040
+ };
40041
+ export type MarketplaceAttributeOptionsUpdateResponses = {
40042
+ 200: AttributeOption;
40043
+ };
40044
+ export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
40045
+ export type MarketplaceAttributesListData = {
40046
+ body?: never;
40047
+ path?: never;
40048
+ query?: {
40049
+ /**
40050
+ * A page number within the paginated result set.
40051
+ */
40052
+ page?: number;
40053
+ /**
40054
+ * Number of results to return per page.
40055
+ */
40056
+ page_size?: number;
40057
+ /**
40058
+ * Section URL
40059
+ */
40060
+ section?: string;
40061
+ };
40062
+ url: '/api/marketplace-attributes/';
40063
+ };
40064
+ export type MarketplaceAttributesListResponses = {
40065
+ 200: Array<Attribute>;
40066
+ };
40067
+ export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
40068
+ export type MarketplaceAttributesCountData = {
40069
+ body?: never;
40070
+ path?: never;
40071
+ query?: {
40072
+ /**
40073
+ * A page number within the paginated result set.
40074
+ */
40075
+ page?: number;
40076
+ /**
40077
+ * Number of results to return per page.
40078
+ */
40079
+ page_size?: number;
40080
+ /**
40081
+ * Section URL
40082
+ */
40083
+ section?: string;
40084
+ };
40085
+ url: '/api/marketplace-attributes/';
40086
+ };
40087
+ export type MarketplaceAttributesCountResponses = {
40088
+ /**
40089
+ * No response body
40090
+ */
40091
+ 200: unknown;
40092
+ };
40093
+ export type MarketplaceAttributesCreateData = {
40094
+ body: AttributeRequest;
40095
+ path?: never;
40096
+ query?: never;
40097
+ url: '/api/marketplace-attributes/';
40098
+ };
40099
+ export type MarketplaceAttributesCreateResponses = {
40100
+ 201: Attribute;
40101
+ };
40102
+ export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
40103
+ export type MarketplaceAttributesDestroyData = {
40104
+ body?: never;
40105
+ path: {
40106
+ uuid: string;
40107
+ };
40108
+ query?: never;
40109
+ url: '/api/marketplace-attributes/{uuid}/';
40110
+ };
40111
+ export type MarketplaceAttributesDestroyResponses = {
40112
+ /**
40113
+ * No response body
40114
+ */
40115
+ 204: void;
40116
+ };
40117
+ export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
40118
+ export type MarketplaceAttributesRetrieveData = {
40119
+ body?: never;
40120
+ path: {
40121
+ uuid: string;
40122
+ };
40123
+ query?: never;
40124
+ url: '/api/marketplace-attributes/{uuid}/';
40125
+ };
40126
+ export type MarketplaceAttributesRetrieveResponses = {
40127
+ 200: Attribute;
40128
+ };
40129
+ export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
40130
+ export type MarketplaceAttributesPartialUpdateData = {
40131
+ body?: PatchedAttributeRequest;
40132
+ path: {
40133
+ uuid: string;
40134
+ };
40135
+ query?: never;
40136
+ url: '/api/marketplace-attributes/{uuid}/';
40137
+ };
40138
+ export type MarketplaceAttributesPartialUpdateResponses = {
40139
+ 200: Attribute;
40140
+ };
40141
+ export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
40142
+ export type MarketplaceAttributesUpdateData = {
40143
+ body: AttributeRequest;
40144
+ path: {
40145
+ uuid: string;
40146
+ };
40147
+ query?: never;
40148
+ url: '/api/marketplace-attributes/{uuid}/';
40149
+ };
40150
+ export type MarketplaceAttributesUpdateResponses = {
40151
+ 200: Attribute;
40152
+ };
40153
+ export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
39854
40154
  export type MarketplaceBookingsListData = {
39855
40155
  body?: never;
39856
40156
  path: {
@@ -50256,6 +50556,10 @@ export type MarketplaceRobotAccountsListData = {
50256
50556
  * Resource UUID
50257
50557
  */
50258
50558
  resource_uuid?: string;
50559
+ /**
50560
+ * Responsible user UUID
50561
+ */
50562
+ responsible_user_uuid?: string;
50259
50563
  /**
50260
50564
  * Robot account state
50261
50565
  *
@@ -50263,6 +50567,14 @@ export type MarketplaceRobotAccountsListData = {
50263
50567
  */
50264
50568
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50265
50569
  type?: string;
50570
+ /**
50571
+ * Connected user email contains
50572
+ */
50573
+ user_email?: string;
50574
+ /**
50575
+ * Username contains
50576
+ */
50577
+ username?: string;
50266
50578
  };
50267
50579
  url: '/api/marketplace-robot-accounts/';
50268
50580
  };
@@ -50310,6 +50622,10 @@ export type MarketplaceRobotAccountsCountData = {
50310
50622
  * Resource UUID
50311
50623
  */
50312
50624
  resource_uuid?: string;
50625
+ /**
50626
+ * Responsible user UUID
50627
+ */
50628
+ responsible_user_uuid?: string;
50313
50629
  /**
50314
50630
  * Robot account state
50315
50631
  *
@@ -50317,6 +50633,14 @@ export type MarketplaceRobotAccountsCountData = {
50317
50633
  */
50318
50634
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50319
50635
  type?: string;
50636
+ /**
50637
+ * Connected user email contains
50638
+ */
50639
+ user_email?: string;
50640
+ /**
50641
+ * Username contains
50642
+ */
50643
+ username?: string;
50320
50644
  };
50321
50645
  url: '/api/marketplace-robot-accounts/';
50322
50646
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.2",
3
+ "version": "8.0.7-dev.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",