waldur-js-client 8.0.8-dev.27 → 8.0.8-dev.28

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.
@@ -4625,6 +4625,7 @@ export type ConstanceSettings = {
4625
4625
  ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
4626
4626
  ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
4627
4627
  ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
4628
+ USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
4628
4629
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
4629
4630
  FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
4630
4631
  FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -4882,6 +4883,7 @@ export type ConstanceSettingsRequest = {
4882
4883
  ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
4883
4884
  ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
4884
4885
  ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
4886
+ USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
4885
4887
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
4886
4888
  FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
4887
4889
  FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -8877,6 +8879,15 @@ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8877
8879
  export type LoadBalancerSetSecurityGroupsRequest = {
8878
8880
  security_groups: Array<string>;
8879
8881
  };
8882
+ export type LoadScienceDomainPresetRequest = {
8883
+ preset: PresetEnum;
8884
+ };
8885
+ export type LoadScienceDomainPresetResponse = {
8886
+ created_domains: number;
8887
+ created_subdomains: number;
8888
+ skipped_domains: number;
8889
+ skipped_subdomains: number;
8890
+ };
8880
8891
  export type LockStats = {
8881
8892
  /**
8882
8893
  * Total number of locks currently held
@@ -9538,6 +9549,10 @@ export type MergedPluginOptions = {
9538
9549
  * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9539
9550
  */
9540
9551
  lbaas_enabled?: boolean;
9552
+ /**
9553
+ * Interval in minutes between usage polling for this offering (default: 60)
9554
+ */
9555
+ usage_poll_interval_minutes?: number;
9541
9556
  /**
9542
9557
  * HEAppE cluster id
9543
9558
  */
@@ -9840,6 +9855,10 @@ export type MergedPluginOptionsRequest = {
9840
9855
  * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9841
9856
  */
9842
9857
  lbaas_enabled?: boolean;
9858
+ /**
9859
+ * Interval in minutes between usage polling for this offering (default: 60)
9860
+ */
9861
+ usage_poll_interval_minutes?: number;
9843
9862
  /**
9844
9863
  * HEAppE cluster id
9845
9864
  */
@@ -16683,6 +16702,7 @@ export type PatchedProjectRequest = {
16683
16702
  * List of allowed identity sources (identity providers).
16684
16703
  */
16685
16704
  user_identity_sources?: unknown;
16705
+ science_sub_domain?: string | null;
16686
16706
  };
16687
16707
  export type PatchedProjectServiceAccountRequest = {
16688
16708
  username?: string;
@@ -17228,6 +17248,21 @@ export type PatchedRuleRequest = {
17228
17248
  [key: string]: unknown;
17229
17249
  };
17230
17250
  };
17251
+ export type PatchedScienceDomainRequest = {
17252
+ /**
17253
+ * Domain code (e.g. '1'). Auto-derived if left blank.
17254
+ */
17255
+ code?: string;
17256
+ name?: string;
17257
+ };
17258
+ export type PatchedScienceSubDomainRequest = {
17259
+ /**
17260
+ * Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
17261
+ */
17262
+ code?: string;
17263
+ name?: string;
17264
+ domain?: string;
17265
+ };
17231
17266
  export type PatchedScreenshotRequest = {
17232
17267
  name?: string;
17233
17268
  description?: string;
@@ -17801,6 +17836,7 @@ export type PluginOfferingType = {
17801
17836
  export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
17802
17837
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
17803
17838
  export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
17839
+ export type PresetEnum = 'cscs' | 'oecd_fos_2007';
17804
17840
  export type PreviewServiceAttributesRequestRequest = {
17805
17841
  /**
17806
17842
  * Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
@@ -17988,6 +18024,18 @@ export type Project = {
17988
18024
  */
17989
18025
  user_identity_sources?: unknown;
17990
18026
  readonly affiliated_organizations?: Array<AffiliatedOrganization>;
18027
+ science_sub_domain?: string | null;
18028
+ readonly science_sub_domain_name?: string;
18029
+ /**
18030
+ * Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
18031
+ */
18032
+ readonly science_sub_domain_code?: string;
18033
+ readonly science_domain_uuid?: string;
18034
+ readonly science_domain_name?: string;
18035
+ /**
18036
+ * Domain code (e.g. '1'). Auto-derived if left blank.
18037
+ */
18038
+ readonly science_domain_code?: string;
17991
18039
  readonly project_credit?: number | null;
17992
18040
  readonly marketplace_resource_count?: {
17993
18041
  [key: string]: number;
@@ -18386,6 +18434,7 @@ export type ProjectRequest = {
18386
18434
  * List of allowed identity sources (identity providers).
18387
18435
  */
18388
18436
  user_identity_sources?: unknown;
18437
+ science_sub_domain?: string | null;
18389
18438
  };
18390
18439
  export type ProjectServiceAccount = {
18391
18440
  readonly url: string;
@@ -18635,6 +18684,10 @@ export type Proposal = {
18635
18684
  readonly call_managing_organisation_uuid: string;
18636
18685
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
18637
18686
  readonly oecd_fos_2007_label: string;
18687
+ science_sub_domain?: string | null;
18688
+ readonly science_sub_domain_name: string;
18689
+ readonly science_domain_uuid: string;
18690
+ readonly science_domain_name: string;
18638
18691
  readonly allocation_comment: string | null;
18639
18692
  readonly created: string;
18640
18693
  readonly compliance_status: {
@@ -18696,6 +18749,7 @@ export type ProposalRequest = {
18696
18749
  duration_in_days?: number | null;
18697
18750
  round_uuid: string;
18698
18751
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
18752
+ science_sub_domain?: string | null;
18699
18753
  };
18700
18754
  export type ProposalReview = {
18701
18755
  readonly url: string;
@@ -22971,6 +23025,63 @@ export type SaveSettingsResponse = {
22971
23025
  mappings_created: number;
22972
23026
  message: string;
22973
23027
  };
23028
+ export type ScienceDomain = {
23029
+ readonly uuid: string;
23030
+ readonly url: string;
23031
+ /**
23032
+ * Domain code (e.g. '1'). Auto-derived if left blank.
23033
+ */
23034
+ code?: string;
23035
+ name: string;
23036
+ readonly created: string;
23037
+ readonly modified: string;
23038
+ /**
23039
+ * Number of sub-domains in this domain
23040
+ */
23041
+ readonly subdomains_count: number;
23042
+ };
23043
+ export type ScienceDomainPreset = {
23044
+ name: string;
23045
+ label: string;
23046
+ description: string;
23047
+ };
23048
+ export type ScienceDomainRequest = {
23049
+ /**
23050
+ * Domain code (e.g. '1'). Auto-derived if left blank.
23051
+ */
23052
+ code?: string;
23053
+ name: string;
23054
+ };
23055
+ export type ScienceSubDomain = {
23056
+ readonly uuid: string;
23057
+ readonly url: string;
23058
+ /**
23059
+ * Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
23060
+ */
23061
+ code?: string;
23062
+ name: string;
23063
+ domain: string;
23064
+ readonly domain_uuid: string;
23065
+ readonly domain_name: string;
23066
+ /**
23067
+ * Domain code (e.g. '1'). Auto-derived if left blank.
23068
+ */
23069
+ readonly domain_code: string;
23070
+ readonly created: string;
23071
+ readonly modified: string;
23072
+ /**
23073
+ * Number of active projects using this sub-domain
23074
+ */
23075
+ readonly projects_count: number;
23076
+ };
23077
+ export type ScienceSubDomainRequest = {
23078
+ /**
23079
+ * Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
23080
+ */
23081
+ code?: string;
23082
+ name: string;
23083
+ domain: string;
23084
+ };
22974
23085
  export type ScimSyncAllResponse = {
22975
23086
  detail: string;
22976
23087
  };
@@ -26860,6 +26971,7 @@ export type ProjectRequestForm = {
26860
26971
  * List of allowed identity sources (identity providers).
26861
26972
  */
26862
26973
  user_identity_sources?: unknown;
26974
+ science_sub_domain?: string | null;
26863
26975
  };
26864
26976
  export type ProjectRequestMultipart = {
26865
26977
  name: string;
@@ -26909,6 +27021,7 @@ export type ProjectRequestMultipart = {
26909
27021
  * List of allowed identity sources (identity providers).
26910
27022
  */
26911
27023
  user_identity_sources?: unknown;
27024
+ science_sub_domain?: string | null;
26912
27025
  };
26913
27026
  export type PatchedProjectRequestForm = {
26914
27027
  name?: string;
@@ -26958,6 +27071,7 @@ export type PatchedProjectRequestForm = {
26958
27071
  * List of allowed identity sources (identity providers).
26959
27072
  */
26960
27073
  user_identity_sources?: unknown;
27074
+ science_sub_domain?: string | null;
26961
27075
  };
26962
27076
  export type PatchedProjectRequestMultipart = {
26963
27077
  name?: string;
@@ -27007,6 +27121,7 @@ export type PatchedProjectRequestMultipart = {
27007
27121
  * List of allowed identity sources (identity providers).
27008
27122
  */
27009
27123
  user_identity_sources?: unknown;
27124
+ science_sub_domain?: string | null;
27010
27125
  };
27011
27126
  export type ConstanceSettingsRequestForm = {
27012
27127
  SITE_NAME?: string;
@@ -27253,6 +27368,7 @@ export type ConstanceSettingsRequestForm = {
27253
27368
  ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
27254
27369
  ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
27255
27370
  ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
27371
+ USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
27256
27372
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
27257
27373
  FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
27258
27374
  FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -27510,6 +27626,7 @@ export type ConstanceSettingsRequestMultipart = {
27510
27626
  ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
27511
27627
  ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
27512
27628
  ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
27629
+ USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
27513
27630
  SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
27514
27631
  FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
27515
27632
  FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -28028,7 +28145,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
28028
28145
  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' | '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';
28029
28146
  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';
28030
28147
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
28031
- export type ProjectFieldEnum = 'affiliated_organizations' | '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' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28148
+ export type ProjectFieldEnum = 'affiliated_organizations' | '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';
28032
28149
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | '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_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';
28033
28150
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
28034
28151
  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' | 'effective_available_limits' | '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';
@@ -53724,6 +53841,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
53724
53841
  * Filter by name, slug, UUID, backend ID or resource effective ID
53725
53842
  */
53726
53843
  query?: string;
53844
+ /**
53845
+ * Science domain UUID
53846
+ */
53847
+ science_domain_uuid?: string;
53848
+ /**
53849
+ * Science sub-domain UUID
53850
+ */
53851
+ science_sub_domain_uuid?: string;
53727
53852
  /**
53728
53853
  * Slug
53729
53854
  */
@@ -54266,6 +54391,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
54266
54391
  * Filter by name, slug, UUID, backend ID or resource effective ID
54267
54392
  */
54268
54393
  query?: string;
54394
+ /**
54395
+ * Science domain UUID
54396
+ */
54397
+ science_domain_uuid?: string;
54398
+ /**
54399
+ * Science sub-domain UUID
54400
+ */
54401
+ science_sub_domain_uuid?: string;
54269
54402
  /**
54270
54403
  * Slug
54271
54404
  */
@@ -61720,6 +61853,14 @@ export type OpenportalUnmanagedProjectsListData = {
61720
61853
  * Filter by name, slug, UUID, backend ID or resource effective ID
61721
61854
  */
61722
61855
  query?: string;
61856
+ /**
61857
+ * Science domain UUID
61858
+ */
61859
+ science_domain_uuid?: string;
61860
+ /**
61861
+ * Science sub-domain UUID
61862
+ */
61863
+ science_sub_domain_uuid?: string;
61723
61864
  /**
61724
61865
  * Slug
61725
61866
  */
@@ -61842,6 +61983,14 @@ export type OpenportalUnmanagedProjectsCountData = {
61842
61983
  * Filter by name, slug, UUID, backend ID or resource effective ID
61843
61984
  */
61844
61985
  query?: string;
61986
+ /**
61987
+ * Science domain UUID
61988
+ */
61989
+ science_domain_uuid?: string;
61990
+ /**
61991
+ * Science sub-domain UUID
61992
+ */
61993
+ science_sub_domain_uuid?: string;
61845
61994
  /**
61846
61995
  * Slug
61847
61996
  */
@@ -70511,6 +70660,14 @@ export type ProjectsListData = {
70511
70660
  * Filter by name, slug, UUID, backend ID or resource effective ID
70512
70661
  */
70513
70662
  query?: string;
70663
+ /**
70664
+ * Science domain UUID
70665
+ */
70666
+ science_domain_uuid?: string;
70667
+ /**
70668
+ * Science sub-domain UUID
70669
+ */
70670
+ science_sub_domain_uuid?: string;
70514
70671
  /**
70515
70672
  * Slug
70516
70673
  */
@@ -70633,6 +70790,14 @@ export type ProjectsCountData = {
70633
70790
  * Filter by name, slug, UUID, backend ID or resource effective ID
70634
70791
  */
70635
70792
  query?: string;
70793
+ /**
70794
+ * Science domain UUID
70795
+ */
70796
+ science_domain_uuid?: string;
70797
+ /**
70798
+ * Science sub-domain UUID
70799
+ */
70800
+ science_sub_domain_uuid?: string;
70636
70801
  /**
70637
70802
  * Slug
70638
70803
  */
@@ -77752,6 +77917,346 @@ export type RolesUpdateDescriptionsUpdateResponses = {
77752
77917
  200: RoleDescription;
77753
77918
  };
77754
77919
  export type RolesUpdateDescriptionsUpdateResponse = RolesUpdateDescriptionsUpdateResponses[keyof RolesUpdateDescriptionsUpdateResponses];
77920
+ export type ScienceDomainsListData = {
77921
+ body?: never;
77922
+ path?: never;
77923
+ query?: {
77924
+ /**
77925
+ * Name
77926
+ */
77927
+ name?: string;
77928
+ /**
77929
+ * Name (exact)
77930
+ */
77931
+ name_exact?: string;
77932
+ /**
77933
+ * Which field to use when ordering the results.
77934
+ */
77935
+ o?: string;
77936
+ /**
77937
+ * A page number within the paginated result set.
77938
+ */
77939
+ page?: number;
77940
+ /**
77941
+ * Number of results to return per page.
77942
+ */
77943
+ page_size?: number;
77944
+ };
77945
+ url: '/api/science-domains/';
77946
+ };
77947
+ export type ScienceDomainsListResponses = {
77948
+ 200: Array<ScienceDomain>;
77949
+ };
77950
+ export type ScienceDomainsListResponse = ScienceDomainsListResponses[keyof ScienceDomainsListResponses];
77951
+ export type ScienceDomainsCountData = {
77952
+ body?: never;
77953
+ path?: never;
77954
+ query?: {
77955
+ /**
77956
+ * Name
77957
+ */
77958
+ name?: string;
77959
+ /**
77960
+ * Name (exact)
77961
+ */
77962
+ name_exact?: string;
77963
+ /**
77964
+ * Which field to use when ordering the results.
77965
+ */
77966
+ o?: string;
77967
+ /**
77968
+ * A page number within the paginated result set.
77969
+ */
77970
+ page?: number;
77971
+ /**
77972
+ * Number of results to return per page.
77973
+ */
77974
+ page_size?: number;
77975
+ };
77976
+ url: '/api/science-domains/';
77977
+ };
77978
+ export type ScienceDomainsCountResponses = {
77979
+ /**
77980
+ * No response body
77981
+ */
77982
+ 200: unknown;
77983
+ };
77984
+ export type ScienceDomainsCreateData = {
77985
+ body: ScienceDomainRequest;
77986
+ path?: never;
77987
+ query?: never;
77988
+ url: '/api/science-domains/';
77989
+ };
77990
+ export type ScienceDomainsCreateResponses = {
77991
+ 201: ScienceDomain;
77992
+ };
77993
+ export type ScienceDomainsCreateResponse = ScienceDomainsCreateResponses[keyof ScienceDomainsCreateResponses];
77994
+ export type ScienceDomainsDestroyData = {
77995
+ body?: never;
77996
+ path: {
77997
+ uuid: string;
77998
+ };
77999
+ query?: never;
78000
+ url: '/api/science-domains/{uuid}/';
78001
+ };
78002
+ export type ScienceDomainsDestroyResponses = {
78003
+ /**
78004
+ * No response body
78005
+ */
78006
+ 204: void;
78007
+ };
78008
+ export type ScienceDomainsDestroyResponse = ScienceDomainsDestroyResponses[keyof ScienceDomainsDestroyResponses];
78009
+ export type ScienceDomainsRetrieveData = {
78010
+ body?: never;
78011
+ path: {
78012
+ uuid: string;
78013
+ };
78014
+ query?: never;
78015
+ url: '/api/science-domains/{uuid}/';
78016
+ };
78017
+ export type ScienceDomainsRetrieveResponses = {
78018
+ 200: ScienceDomain;
78019
+ };
78020
+ export type ScienceDomainsRetrieveResponse = ScienceDomainsRetrieveResponses[keyof ScienceDomainsRetrieveResponses];
78021
+ export type ScienceDomainsPartialUpdateData = {
78022
+ body?: PatchedScienceDomainRequest;
78023
+ path: {
78024
+ uuid: string;
78025
+ };
78026
+ query?: never;
78027
+ url: '/api/science-domains/{uuid}/';
78028
+ };
78029
+ export type ScienceDomainsPartialUpdateResponses = {
78030
+ 200: ScienceDomain;
78031
+ };
78032
+ export type ScienceDomainsPartialUpdateResponse = ScienceDomainsPartialUpdateResponses[keyof ScienceDomainsPartialUpdateResponses];
78033
+ export type ScienceDomainsUpdateData = {
78034
+ body: ScienceDomainRequest;
78035
+ path: {
78036
+ uuid: string;
78037
+ };
78038
+ query?: never;
78039
+ url: '/api/science-domains/{uuid}/';
78040
+ };
78041
+ export type ScienceDomainsUpdateResponses = {
78042
+ 200: ScienceDomain;
78043
+ };
78044
+ export type ScienceDomainsUpdateResponse = ScienceDomainsUpdateResponses[keyof ScienceDomainsUpdateResponses];
78045
+ export type ScienceDomainsLoadPresetData = {
78046
+ body: LoadScienceDomainPresetRequest;
78047
+ path?: never;
78048
+ query?: never;
78049
+ url: '/api/science-domains/load_preset/';
78050
+ };
78051
+ export type ScienceDomainsLoadPresetResponses = {
78052
+ 200: LoadScienceDomainPresetResponse;
78053
+ };
78054
+ export type ScienceDomainsLoadPresetResponse = ScienceDomainsLoadPresetResponses[keyof ScienceDomainsLoadPresetResponses];
78055
+ export type ScienceDomainsPresetsListData = {
78056
+ body?: never;
78057
+ path?: never;
78058
+ query?: {
78059
+ /**
78060
+ * Name
78061
+ */
78062
+ name?: string;
78063
+ /**
78064
+ * Name (exact)
78065
+ */
78066
+ name_exact?: string;
78067
+ /**
78068
+ * Which field to use when ordering the results.
78069
+ */
78070
+ o?: string;
78071
+ /**
78072
+ * A page number within the paginated result set.
78073
+ */
78074
+ page?: number;
78075
+ /**
78076
+ * Number of results to return per page.
78077
+ */
78078
+ page_size?: number;
78079
+ };
78080
+ url: '/api/science-domains/presets/';
78081
+ };
78082
+ export type ScienceDomainsPresetsListResponses = {
78083
+ 200: Array<ScienceDomainPreset>;
78084
+ };
78085
+ export type ScienceDomainsPresetsListResponse = ScienceDomainsPresetsListResponses[keyof ScienceDomainsPresetsListResponses];
78086
+ export type ScienceDomainsPresetsCountData = {
78087
+ body?: never;
78088
+ path?: never;
78089
+ query?: {
78090
+ /**
78091
+ * Name
78092
+ */
78093
+ name?: string;
78094
+ /**
78095
+ * Name (exact)
78096
+ */
78097
+ name_exact?: string;
78098
+ /**
78099
+ * Which field to use when ordering the results.
78100
+ */
78101
+ o?: string;
78102
+ /**
78103
+ * A page number within the paginated result set.
78104
+ */
78105
+ page?: number;
78106
+ /**
78107
+ * Number of results to return per page.
78108
+ */
78109
+ page_size?: number;
78110
+ };
78111
+ url: '/api/science-domains/presets/';
78112
+ };
78113
+ export type ScienceDomainsPresetsCountResponses = {
78114
+ /**
78115
+ * No response body
78116
+ */
78117
+ 200: unknown;
78118
+ };
78119
+ export type ScienceSubDomainsListData = {
78120
+ body?: never;
78121
+ path?: never;
78122
+ query?: {
78123
+ /**
78124
+ * Domain name
78125
+ */
78126
+ domain_name?: string;
78127
+ /**
78128
+ * Domain UUID
78129
+ */
78130
+ domain_uuid?: string;
78131
+ /**
78132
+ * Name
78133
+ */
78134
+ name?: string;
78135
+ /**
78136
+ * Name (exact)
78137
+ */
78138
+ name_exact?: string;
78139
+ /**
78140
+ * Which field to use when ordering the results.
78141
+ */
78142
+ o?: string;
78143
+ /**
78144
+ * A page number within the paginated result set.
78145
+ */
78146
+ page?: number;
78147
+ /**
78148
+ * Number of results to return per page.
78149
+ */
78150
+ page_size?: number;
78151
+ };
78152
+ url: '/api/science-sub-domains/';
78153
+ };
78154
+ export type ScienceSubDomainsListResponses = {
78155
+ 200: Array<ScienceSubDomain>;
78156
+ };
78157
+ export type ScienceSubDomainsListResponse = ScienceSubDomainsListResponses[keyof ScienceSubDomainsListResponses];
78158
+ export type ScienceSubDomainsCountData = {
78159
+ body?: never;
78160
+ path?: never;
78161
+ query?: {
78162
+ /**
78163
+ * Domain name
78164
+ */
78165
+ domain_name?: string;
78166
+ /**
78167
+ * Domain UUID
78168
+ */
78169
+ domain_uuid?: string;
78170
+ /**
78171
+ * Name
78172
+ */
78173
+ name?: string;
78174
+ /**
78175
+ * Name (exact)
78176
+ */
78177
+ name_exact?: string;
78178
+ /**
78179
+ * Which field to use when ordering the results.
78180
+ */
78181
+ o?: string;
78182
+ /**
78183
+ * A page number within the paginated result set.
78184
+ */
78185
+ page?: number;
78186
+ /**
78187
+ * Number of results to return per page.
78188
+ */
78189
+ page_size?: number;
78190
+ };
78191
+ url: '/api/science-sub-domains/';
78192
+ };
78193
+ export type ScienceSubDomainsCountResponses = {
78194
+ /**
78195
+ * No response body
78196
+ */
78197
+ 200: unknown;
78198
+ };
78199
+ export type ScienceSubDomainsCreateData = {
78200
+ body: ScienceSubDomainRequest;
78201
+ path?: never;
78202
+ query?: never;
78203
+ url: '/api/science-sub-domains/';
78204
+ };
78205
+ export type ScienceSubDomainsCreateResponses = {
78206
+ 201: ScienceSubDomain;
78207
+ };
78208
+ export type ScienceSubDomainsCreateResponse = ScienceSubDomainsCreateResponses[keyof ScienceSubDomainsCreateResponses];
78209
+ export type ScienceSubDomainsDestroyData = {
78210
+ body?: never;
78211
+ path: {
78212
+ uuid: string;
78213
+ };
78214
+ query?: never;
78215
+ url: '/api/science-sub-domains/{uuid}/';
78216
+ };
78217
+ export type ScienceSubDomainsDestroyResponses = {
78218
+ /**
78219
+ * No response body
78220
+ */
78221
+ 204: void;
78222
+ };
78223
+ export type ScienceSubDomainsDestroyResponse = ScienceSubDomainsDestroyResponses[keyof ScienceSubDomainsDestroyResponses];
78224
+ export type ScienceSubDomainsRetrieveData = {
78225
+ body?: never;
78226
+ path: {
78227
+ uuid: string;
78228
+ };
78229
+ query?: never;
78230
+ url: '/api/science-sub-domains/{uuid}/';
78231
+ };
78232
+ export type ScienceSubDomainsRetrieveResponses = {
78233
+ 200: ScienceSubDomain;
78234
+ };
78235
+ export type ScienceSubDomainsRetrieveResponse = ScienceSubDomainsRetrieveResponses[keyof ScienceSubDomainsRetrieveResponses];
78236
+ export type ScienceSubDomainsPartialUpdateData = {
78237
+ body?: PatchedScienceSubDomainRequest;
78238
+ path: {
78239
+ uuid: string;
78240
+ };
78241
+ query?: never;
78242
+ url: '/api/science-sub-domains/{uuid}/';
78243
+ };
78244
+ export type ScienceSubDomainsPartialUpdateResponses = {
78245
+ 200: ScienceSubDomain;
78246
+ };
78247
+ export type ScienceSubDomainsPartialUpdateResponse = ScienceSubDomainsPartialUpdateResponses[keyof ScienceSubDomainsPartialUpdateResponses];
78248
+ export type ScienceSubDomainsUpdateData = {
78249
+ body: ScienceSubDomainRequest;
78250
+ path: {
78251
+ uuid: string;
78252
+ };
78253
+ query?: never;
78254
+ url: '/api/science-sub-domains/{uuid}/';
78255
+ };
78256
+ export type ScienceSubDomainsUpdateResponses = {
78257
+ 200: ScienceSubDomain;
78258
+ };
78259
+ export type ScienceSubDomainsUpdateResponse = ScienceSubDomainsUpdateResponses[keyof ScienceSubDomainsUpdateResponses];
77755
78260
  export type ServiceSettingsListData = {
77756
78261
  body?: never;
77757
78262
  path?: never;