waldur-js-client 8.0.8-dev.26 → 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.
- package/dist/sdk.gen.d.ts +54 -1
- package/dist/sdk.gen.js +595 -0
- package/dist/types.gen.d.ts +667 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4593,6 +4593,7 @@ export type ConstanceSettings = {
|
|
|
4593
4593
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4594
4594
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4595
4595
|
AI_ASSISTANT_NAME?: string;
|
|
4596
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
4596
4597
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4597
4598
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4598
4599
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4624,6 +4625,7 @@ export type ConstanceSettings = {
|
|
|
4624
4625
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
4625
4626
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
4626
4627
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
4628
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
4627
4629
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
4628
4630
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
4629
4631
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -4849,6 +4851,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4849
4851
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4850
4852
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4851
4853
|
AI_ASSISTANT_NAME?: string;
|
|
4854
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
4852
4855
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4853
4856
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4854
4857
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4880,6 +4883,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4880
4883
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
4881
4884
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
4882
4885
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
4886
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
4883
4887
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
4884
4888
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
4885
4889
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -8875,6 +8879,15 @@ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
|
|
|
8875
8879
|
export type LoadBalancerSetSecurityGroupsRequest = {
|
|
8876
8880
|
security_groups: Array<string>;
|
|
8877
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
|
+
};
|
|
8878
8891
|
export type LockStats = {
|
|
8879
8892
|
/**
|
|
8880
8893
|
* Total number of locks currently held
|
|
@@ -9038,7 +9051,7 @@ export type MaintenanceAnnouncementTemplate = {
|
|
|
9038
9051
|
* Service provider announcing the maintenance
|
|
9039
9052
|
*/
|
|
9040
9053
|
service_provider: string;
|
|
9041
|
-
readonly affected_offerings: Array<
|
|
9054
|
+
readonly affected_offerings: Array<MaintenanceAnnouncementOfferingTemplate>;
|
|
9042
9055
|
};
|
|
9043
9056
|
export type MaintenanceAnnouncementTemplateRequest = {
|
|
9044
9057
|
name: string;
|
|
@@ -9536,6 +9549,10 @@ export type MergedPluginOptions = {
|
|
|
9536
9549
|
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9537
9550
|
*/
|
|
9538
9551
|
lbaas_enabled?: boolean;
|
|
9552
|
+
/**
|
|
9553
|
+
* Interval in minutes between usage polling for this offering (default: 60)
|
|
9554
|
+
*/
|
|
9555
|
+
usage_poll_interval_minutes?: number;
|
|
9539
9556
|
/**
|
|
9540
9557
|
* HEAppE cluster id
|
|
9541
9558
|
*/
|
|
@@ -9838,6 +9855,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
9838
9855
|
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9839
9856
|
*/
|
|
9840
9857
|
lbaas_enabled?: boolean;
|
|
9858
|
+
/**
|
|
9859
|
+
* Interval in minutes between usage polling for this offering (default: 60)
|
|
9860
|
+
*/
|
|
9861
|
+
usage_poll_interval_minutes?: number;
|
|
9841
9862
|
/**
|
|
9842
9863
|
* HEAppE cluster id
|
|
9843
9864
|
*/
|
|
@@ -16681,6 +16702,7 @@ export type PatchedProjectRequest = {
|
|
|
16681
16702
|
* List of allowed identity sources (identity providers).
|
|
16682
16703
|
*/
|
|
16683
16704
|
user_identity_sources?: unknown;
|
|
16705
|
+
science_sub_domain?: string | null;
|
|
16684
16706
|
};
|
|
16685
16707
|
export type PatchedProjectServiceAccountRequest = {
|
|
16686
16708
|
username?: string;
|
|
@@ -17226,6 +17248,21 @@ export type PatchedRuleRequest = {
|
|
|
17226
17248
|
[key: string]: unknown;
|
|
17227
17249
|
};
|
|
17228
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
|
+
};
|
|
17229
17266
|
export type PatchedScreenshotRequest = {
|
|
17230
17267
|
name?: string;
|
|
17231
17268
|
description?: string;
|
|
@@ -17349,6 +17386,14 @@ export type PatchedSoftwarePackageRequest = {
|
|
|
17349
17386
|
*/
|
|
17350
17387
|
is_extension?: boolean;
|
|
17351
17388
|
};
|
|
17389
|
+
export type PatchedSystemPromptRequest = {
|
|
17390
|
+
name?: string;
|
|
17391
|
+
description?: string;
|
|
17392
|
+
/**
|
|
17393
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
17394
|
+
*/
|
|
17395
|
+
custom_instructions?: string;
|
|
17396
|
+
};
|
|
17352
17397
|
export type PatchedTagRequest = {
|
|
17353
17398
|
name?: string;
|
|
17354
17399
|
description?: string;
|
|
@@ -17791,6 +17836,7 @@ export type PluginOfferingType = {
|
|
|
17791
17836
|
export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
|
|
17792
17837
|
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
17793
17838
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
17839
|
+
export type PresetEnum = 'cscs' | 'oecd_fos_2007';
|
|
17794
17840
|
export type PreviewServiceAttributesRequestRequest = {
|
|
17795
17841
|
/**
|
|
17796
17842
|
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
@@ -17978,6 +18024,18 @@ export type Project = {
|
|
|
17978
18024
|
*/
|
|
17979
18025
|
user_identity_sources?: unknown;
|
|
17980
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;
|
|
17981
18039
|
readonly project_credit?: number | null;
|
|
17982
18040
|
readonly marketplace_resource_count?: {
|
|
17983
18041
|
[key: string]: number;
|
|
@@ -18376,6 +18434,7 @@ export type ProjectRequest = {
|
|
|
18376
18434
|
* List of allowed identity sources (identity providers).
|
|
18377
18435
|
*/
|
|
18378
18436
|
user_identity_sources?: unknown;
|
|
18437
|
+
science_sub_domain?: string | null;
|
|
18379
18438
|
};
|
|
18380
18439
|
export type ProjectServiceAccount = {
|
|
18381
18440
|
readonly url: string;
|
|
@@ -18625,6 +18684,10 @@ export type Proposal = {
|
|
|
18625
18684
|
readonly call_managing_organisation_uuid: string;
|
|
18626
18685
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
18627
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;
|
|
18628
18691
|
readonly allocation_comment: string | null;
|
|
18629
18692
|
readonly created: string;
|
|
18630
18693
|
readonly compliance_status: {
|
|
@@ -18686,6 +18749,7 @@ export type ProposalRequest = {
|
|
|
18686
18749
|
duration_in_days?: number | null;
|
|
18687
18750
|
round_uuid: string;
|
|
18688
18751
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
18752
|
+
science_sub_domain?: string | null;
|
|
18689
18753
|
};
|
|
18690
18754
|
export type ProposalReview = {
|
|
18691
18755
|
readonly url: string;
|
|
@@ -22961,6 +23025,63 @@ export type SaveSettingsResponse = {
|
|
|
22961
23025
|
mappings_created: number;
|
|
22962
23026
|
message: string;
|
|
22963
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
|
+
};
|
|
22964
23085
|
export type ScimSyncAllResponse = {
|
|
22965
23086
|
detail: string;
|
|
22966
23087
|
};
|
|
@@ -24221,6 +24342,29 @@ export type SystemLogStatsResponse = {
|
|
|
24221
24342
|
readonly total_size_bytes: number;
|
|
24222
24343
|
readonly total_size_mb: number;
|
|
24223
24344
|
};
|
|
24345
|
+
export type SystemPrompt = {
|
|
24346
|
+
readonly uuid: string;
|
|
24347
|
+
name: string;
|
|
24348
|
+
description?: string;
|
|
24349
|
+
/**
|
|
24350
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
24351
|
+
*/
|
|
24352
|
+
custom_instructions?: string;
|
|
24353
|
+
/**
|
|
24354
|
+
* Whether this prompt is currently used by the AI Assistant. Only one prompt can be active.
|
|
24355
|
+
*/
|
|
24356
|
+
readonly is_active: boolean;
|
|
24357
|
+
readonly created: string;
|
|
24358
|
+
readonly modified: string;
|
|
24359
|
+
};
|
|
24360
|
+
export type SystemPromptRequest = {
|
|
24361
|
+
name: string;
|
|
24362
|
+
description?: string;
|
|
24363
|
+
/**
|
|
24364
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
24365
|
+
*/
|
|
24366
|
+
custom_instructions?: string;
|
|
24367
|
+
};
|
|
24224
24368
|
export type TableGrowthAlert = {
|
|
24225
24369
|
/**
|
|
24226
24370
|
* Name of the table triggering the alert
|
|
@@ -26827,6 +26971,7 @@ export type ProjectRequestForm = {
|
|
|
26827
26971
|
* List of allowed identity sources (identity providers).
|
|
26828
26972
|
*/
|
|
26829
26973
|
user_identity_sources?: unknown;
|
|
26974
|
+
science_sub_domain?: string | null;
|
|
26830
26975
|
};
|
|
26831
26976
|
export type ProjectRequestMultipart = {
|
|
26832
26977
|
name: string;
|
|
@@ -26876,6 +27021,7 @@ export type ProjectRequestMultipart = {
|
|
|
26876
27021
|
* List of allowed identity sources (identity providers).
|
|
26877
27022
|
*/
|
|
26878
27023
|
user_identity_sources?: unknown;
|
|
27024
|
+
science_sub_domain?: string | null;
|
|
26879
27025
|
};
|
|
26880
27026
|
export type PatchedProjectRequestForm = {
|
|
26881
27027
|
name?: string;
|
|
@@ -26925,6 +27071,7 @@ export type PatchedProjectRequestForm = {
|
|
|
26925
27071
|
* List of allowed identity sources (identity providers).
|
|
26926
27072
|
*/
|
|
26927
27073
|
user_identity_sources?: unknown;
|
|
27074
|
+
science_sub_domain?: string | null;
|
|
26928
27075
|
};
|
|
26929
27076
|
export type PatchedProjectRequestMultipart = {
|
|
26930
27077
|
name?: string;
|
|
@@ -26974,6 +27121,7 @@ export type PatchedProjectRequestMultipart = {
|
|
|
26974
27121
|
* List of allowed identity sources (identity providers).
|
|
26975
27122
|
*/
|
|
26976
27123
|
user_identity_sources?: unknown;
|
|
27124
|
+
science_sub_domain?: string | null;
|
|
26977
27125
|
};
|
|
26978
27126
|
export type ConstanceSettingsRequestForm = {
|
|
26979
27127
|
SITE_NAME?: string;
|
|
@@ -27188,6 +27336,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27188
27336
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
27189
27337
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
27190
27338
|
AI_ASSISTANT_NAME?: string;
|
|
27339
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
27191
27340
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
27192
27341
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
27193
27342
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -27219,6 +27368,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27219
27368
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
27220
27369
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
27221
27370
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
27371
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
27222
27372
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
27223
27373
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
27224
27374
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -27444,6 +27594,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27444
27594
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
27445
27595
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
27446
27596
|
AI_ASSISTANT_NAME?: string;
|
|
27597
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
27447
27598
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
27448
27599
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
27449
27600
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -27475,6 +27626,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27475
27626
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
27476
27627
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
27477
27628
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
27629
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
27478
27630
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
27479
27631
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
27480
27632
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -27993,7 +28145,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
27993
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';
|
|
27994
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';
|
|
27995
28147
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27996
|
-
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';
|
|
27997
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';
|
|
27998
28150
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27999
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';
|
|
@@ -34711,6 +34863,131 @@ export type ChatSessionsCurrentRetrieveResponses = {
|
|
|
34711
34863
|
200: ChatSession;
|
|
34712
34864
|
};
|
|
34713
34865
|
export type ChatSessionsCurrentRetrieveResponse = ChatSessionsCurrentRetrieveResponses[keyof ChatSessionsCurrentRetrieveResponses];
|
|
34866
|
+
export type ChatSystemPromptsListData = {
|
|
34867
|
+
body?: never;
|
|
34868
|
+
path?: never;
|
|
34869
|
+
query?: {
|
|
34870
|
+
/**
|
|
34871
|
+
* A page number within the paginated result set.
|
|
34872
|
+
*/
|
|
34873
|
+
page?: number;
|
|
34874
|
+
/**
|
|
34875
|
+
* Number of results to return per page.
|
|
34876
|
+
*/
|
|
34877
|
+
page_size?: number;
|
|
34878
|
+
};
|
|
34879
|
+
url: '/api/chat-system-prompts/';
|
|
34880
|
+
};
|
|
34881
|
+
export type ChatSystemPromptsListResponses = {
|
|
34882
|
+
200: Array<SystemPrompt>;
|
|
34883
|
+
};
|
|
34884
|
+
export type ChatSystemPromptsListResponse = ChatSystemPromptsListResponses[keyof ChatSystemPromptsListResponses];
|
|
34885
|
+
export type ChatSystemPromptsCountData = {
|
|
34886
|
+
body?: never;
|
|
34887
|
+
path?: never;
|
|
34888
|
+
query?: {
|
|
34889
|
+
/**
|
|
34890
|
+
* A page number within the paginated result set.
|
|
34891
|
+
*/
|
|
34892
|
+
page?: number;
|
|
34893
|
+
/**
|
|
34894
|
+
* Number of results to return per page.
|
|
34895
|
+
*/
|
|
34896
|
+
page_size?: number;
|
|
34897
|
+
};
|
|
34898
|
+
url: '/api/chat-system-prompts/';
|
|
34899
|
+
};
|
|
34900
|
+
export type ChatSystemPromptsCountResponses = {
|
|
34901
|
+
/**
|
|
34902
|
+
* No response body
|
|
34903
|
+
*/
|
|
34904
|
+
200: unknown;
|
|
34905
|
+
};
|
|
34906
|
+
export type ChatSystemPromptsCreateData = {
|
|
34907
|
+
body: SystemPromptRequest;
|
|
34908
|
+
path?: never;
|
|
34909
|
+
query?: never;
|
|
34910
|
+
url: '/api/chat-system-prompts/';
|
|
34911
|
+
};
|
|
34912
|
+
export type ChatSystemPromptsCreateResponses = {
|
|
34913
|
+
201: SystemPrompt;
|
|
34914
|
+
};
|
|
34915
|
+
export type ChatSystemPromptsCreateResponse = ChatSystemPromptsCreateResponses[keyof ChatSystemPromptsCreateResponses];
|
|
34916
|
+
export type ChatSystemPromptsDestroyData = {
|
|
34917
|
+
body?: never;
|
|
34918
|
+
path: {
|
|
34919
|
+
uuid: string;
|
|
34920
|
+
};
|
|
34921
|
+
query?: never;
|
|
34922
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34923
|
+
};
|
|
34924
|
+
export type ChatSystemPromptsDestroyResponses = {
|
|
34925
|
+
/**
|
|
34926
|
+
* No response body
|
|
34927
|
+
*/
|
|
34928
|
+
204: void;
|
|
34929
|
+
};
|
|
34930
|
+
export type ChatSystemPromptsDestroyResponse = ChatSystemPromptsDestroyResponses[keyof ChatSystemPromptsDestroyResponses];
|
|
34931
|
+
export type ChatSystemPromptsRetrieveData = {
|
|
34932
|
+
body?: never;
|
|
34933
|
+
path: {
|
|
34934
|
+
uuid: string;
|
|
34935
|
+
};
|
|
34936
|
+
query?: never;
|
|
34937
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34938
|
+
};
|
|
34939
|
+
export type ChatSystemPromptsRetrieveResponses = {
|
|
34940
|
+
200: SystemPrompt;
|
|
34941
|
+
};
|
|
34942
|
+
export type ChatSystemPromptsRetrieveResponse = ChatSystemPromptsRetrieveResponses[keyof ChatSystemPromptsRetrieveResponses];
|
|
34943
|
+
export type ChatSystemPromptsPartialUpdateData = {
|
|
34944
|
+
body?: PatchedSystemPromptRequest;
|
|
34945
|
+
path: {
|
|
34946
|
+
uuid: string;
|
|
34947
|
+
};
|
|
34948
|
+
query?: never;
|
|
34949
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34950
|
+
};
|
|
34951
|
+
export type ChatSystemPromptsPartialUpdateResponses = {
|
|
34952
|
+
200: SystemPrompt;
|
|
34953
|
+
};
|
|
34954
|
+
export type ChatSystemPromptsPartialUpdateResponse = ChatSystemPromptsPartialUpdateResponses[keyof ChatSystemPromptsPartialUpdateResponses];
|
|
34955
|
+
export type ChatSystemPromptsUpdateData = {
|
|
34956
|
+
body: SystemPromptRequest;
|
|
34957
|
+
path: {
|
|
34958
|
+
uuid: string;
|
|
34959
|
+
};
|
|
34960
|
+
query?: never;
|
|
34961
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34962
|
+
};
|
|
34963
|
+
export type ChatSystemPromptsUpdateResponses = {
|
|
34964
|
+
200: SystemPrompt;
|
|
34965
|
+
};
|
|
34966
|
+
export type ChatSystemPromptsUpdateResponse = ChatSystemPromptsUpdateResponses[keyof ChatSystemPromptsUpdateResponses];
|
|
34967
|
+
export type ChatSystemPromptsActivateData = {
|
|
34968
|
+
body: SystemPromptRequest;
|
|
34969
|
+
path: {
|
|
34970
|
+
uuid: string;
|
|
34971
|
+
};
|
|
34972
|
+
query?: never;
|
|
34973
|
+
url: '/api/chat-system-prompts/{uuid}/activate/';
|
|
34974
|
+
};
|
|
34975
|
+
export type ChatSystemPromptsActivateResponses = {
|
|
34976
|
+
200: SystemPrompt;
|
|
34977
|
+
};
|
|
34978
|
+
export type ChatSystemPromptsActivateResponse = ChatSystemPromptsActivateResponses[keyof ChatSystemPromptsActivateResponses];
|
|
34979
|
+
export type ChatSystemPromptsDeactivateData = {
|
|
34980
|
+
body: SystemPromptRequest;
|
|
34981
|
+
path: {
|
|
34982
|
+
uuid: string;
|
|
34983
|
+
};
|
|
34984
|
+
query?: never;
|
|
34985
|
+
url: '/api/chat-system-prompts/{uuid}/deactivate/';
|
|
34986
|
+
};
|
|
34987
|
+
export type ChatSystemPromptsDeactivateResponses = {
|
|
34988
|
+
200: SystemPrompt;
|
|
34989
|
+
};
|
|
34990
|
+
export type ChatSystemPromptsDeactivateResponse = ChatSystemPromptsDeactivateResponses[keyof ChatSystemPromptsDeactivateResponses];
|
|
34714
34991
|
export type ChatThreadsListData = {
|
|
34715
34992
|
body?: never;
|
|
34716
34993
|
path?: never;
|
|
@@ -53564,6 +53841,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
53564
53841
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
53565
53842
|
*/
|
|
53566
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;
|
|
53567
53852
|
/**
|
|
53568
53853
|
* Slug
|
|
53569
53854
|
*/
|
|
@@ -54106,6 +54391,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
54106
54391
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
54107
54392
|
*/
|
|
54108
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;
|
|
54109
54402
|
/**
|
|
54110
54403
|
* Slug
|
|
54111
54404
|
*/
|
|
@@ -61560,6 +61853,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
61560
61853
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
61561
61854
|
*/
|
|
61562
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;
|
|
61563
61864
|
/**
|
|
61564
61865
|
* Slug
|
|
61565
61866
|
*/
|
|
@@ -61682,6 +61983,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
61682
61983
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
61683
61984
|
*/
|
|
61684
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;
|
|
61685
61994
|
/**
|
|
61686
61995
|
* Slug
|
|
61687
61996
|
*/
|
|
@@ -70351,6 +70660,14 @@ export type ProjectsListData = {
|
|
|
70351
70660
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
70352
70661
|
*/
|
|
70353
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;
|
|
70354
70671
|
/**
|
|
70355
70672
|
* Slug
|
|
70356
70673
|
*/
|
|
@@ -70473,6 +70790,14 @@ export type ProjectsCountData = {
|
|
|
70473
70790
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
70474
70791
|
*/
|
|
70475
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;
|
|
70476
70801
|
/**
|
|
70477
70802
|
* Slug
|
|
70478
70803
|
*/
|
|
@@ -77592,6 +77917,346 @@ export type RolesUpdateDescriptionsUpdateResponses = {
|
|
|
77592
77917
|
200: RoleDescription;
|
|
77593
77918
|
};
|
|
77594
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];
|
|
77595
78260
|
export type ServiceSettingsListData = {
|
|
77596
78261
|
body?: never;
|
|
77597
78262
|
path?: never;
|