waldur-js-client 7.9.9-dev.2 → 7.9.9-dev.3
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 +63 -1
- package/dist/sdk.gen.js +322 -0
- package/dist/types.gen.d.ts +948 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -9,6 +9,13 @@ export type AccessSubnetRequest = {
|
|
|
9
9
|
description?: string;
|
|
10
10
|
customer: string;
|
|
11
11
|
};
|
|
12
|
+
export type AccessTypeEnum = 'staff' | 'support' | 'staff_and_support';
|
|
13
|
+
export type AccessorTypeEnum = 'staff' | 'support' | 'organization_member' | 'service_provider' | 'self';
|
|
14
|
+
export type AccessorUser = {
|
|
15
|
+
uuid: string;
|
|
16
|
+
username: string;
|
|
17
|
+
full_name: string;
|
|
18
|
+
};
|
|
12
19
|
export type AccountNameGenerationPolicyEnum = 'project_slug';
|
|
13
20
|
export type ActiveQueriesStats = {
|
|
14
21
|
/**
|
|
@@ -81,6 +88,18 @@ export type AdminAnnouncementRequest = {
|
|
|
81
88
|
type?: AdminAnnouncementTypeEnum;
|
|
82
89
|
};
|
|
83
90
|
export type AdminAnnouncementTypeEnum = 'information' | 'warning' | 'danger';
|
|
91
|
+
export type AdminUser = {
|
|
92
|
+
user_uuid: string;
|
|
93
|
+
username: string;
|
|
94
|
+
full_name: string;
|
|
95
|
+
access_type: AccessTypeEnum;
|
|
96
|
+
};
|
|
97
|
+
export type AdministrativeAccess = {
|
|
98
|
+
description: string;
|
|
99
|
+
staff_count?: number;
|
|
100
|
+
support_count?: number;
|
|
101
|
+
users?: Array<AdminUser>;
|
|
102
|
+
};
|
|
84
103
|
export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
|
|
85
104
|
export type AffinityMatrixEntry = {
|
|
86
105
|
uuid: string;
|
|
@@ -1903,6 +1922,52 @@ export type CachePerformance = {
|
|
|
1903
1922
|
*/
|
|
1904
1923
|
readonly effective_cache_size: string;
|
|
1905
1924
|
};
|
|
1925
|
+
export type CallApplicantAttributeConfig = {
|
|
1926
|
+
readonly uuid: string;
|
|
1927
|
+
readonly call_uuid: string;
|
|
1928
|
+
readonly call_name: string;
|
|
1929
|
+
expose_full_name?: boolean;
|
|
1930
|
+
expose_email?: boolean;
|
|
1931
|
+
expose_organization?: boolean;
|
|
1932
|
+
expose_affiliations?: boolean;
|
|
1933
|
+
expose_organization_type?: boolean;
|
|
1934
|
+
expose_organization_country?: boolean;
|
|
1935
|
+
expose_nationality?: boolean;
|
|
1936
|
+
expose_nationalities?: boolean;
|
|
1937
|
+
expose_country_of_residence?: boolean;
|
|
1938
|
+
expose_eduperson_assurance?: boolean;
|
|
1939
|
+
expose_identity_source?: boolean;
|
|
1940
|
+
/**
|
|
1941
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
1942
|
+
*/
|
|
1943
|
+
reviewers_see_applicant_details?: boolean;
|
|
1944
|
+
/**
|
|
1945
|
+
* Return list of currently exposed field names.
|
|
1946
|
+
*/
|
|
1947
|
+
readonly exposed_fields: Array<string>;
|
|
1948
|
+
/**
|
|
1949
|
+
* Return True if this is a default (unsaved) config.
|
|
1950
|
+
*/
|
|
1951
|
+
readonly is_default: boolean;
|
|
1952
|
+
};
|
|
1953
|
+
export type CallApplicantAttributeConfigRequest = {
|
|
1954
|
+
call?: string;
|
|
1955
|
+
expose_full_name?: boolean;
|
|
1956
|
+
expose_email?: boolean;
|
|
1957
|
+
expose_organization?: boolean;
|
|
1958
|
+
expose_affiliations?: boolean;
|
|
1959
|
+
expose_organization_type?: boolean;
|
|
1960
|
+
expose_organization_country?: boolean;
|
|
1961
|
+
expose_nationality?: boolean;
|
|
1962
|
+
expose_nationalities?: boolean;
|
|
1963
|
+
expose_country_of_residence?: boolean;
|
|
1964
|
+
expose_eduperson_assurance?: boolean;
|
|
1965
|
+
expose_identity_source?: boolean;
|
|
1966
|
+
/**
|
|
1967
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
1968
|
+
*/
|
|
1969
|
+
reviewers_see_applicant_details?: boolean;
|
|
1970
|
+
};
|
|
1906
1971
|
export type CallAssignmentConfiguration = {
|
|
1907
1972
|
readonly uuid: string;
|
|
1908
1973
|
readonly call: string;
|
|
@@ -3424,6 +3489,9 @@ export type ConstanceSettings = {
|
|
|
3424
3489
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
3425
3490
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
3426
3491
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
3492
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
3493
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
3494
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
3427
3495
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
3428
3496
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3429
3497
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -3462,6 +3530,9 @@ export type ConstanceSettings = {
|
|
|
3462
3530
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
3463
3531
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
3464
3532
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
3533
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3534
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3535
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3465
3536
|
};
|
|
3466
3537
|
export type ConstanceSettingsRequest = {
|
|
3467
3538
|
SITE_NAME?: string;
|
|
@@ -3623,6 +3694,9 @@ export type ConstanceSettingsRequest = {
|
|
|
3623
3694
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
3624
3695
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
3625
3696
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
3697
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
3698
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
3699
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
3626
3700
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
3627
3701
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3628
3702
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -3661,6 +3735,9 @@ export type ConstanceSettingsRequest = {
|
|
|
3661
3735
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
3662
3736
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
3663
3737
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
3738
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
3739
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
3740
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
3664
3741
|
};
|
|
3665
3742
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
3666
3743
|
export type CoreAuthToken = {
|
|
@@ -4362,6 +4439,11 @@ export type DlqQueue = {
|
|
|
4362
4439
|
*/
|
|
4363
4440
|
readonly consumers: number;
|
|
4364
4441
|
};
|
|
4442
|
+
export type DataAccessSummary = {
|
|
4443
|
+
total_administrative_access: number | null;
|
|
4444
|
+
total_organizational_access: number;
|
|
4445
|
+
total_provider_access: number;
|
|
4446
|
+
};
|
|
4365
4447
|
export type DataVolume = {
|
|
4366
4448
|
size: number;
|
|
4367
4449
|
volume_type?: string | null;
|
|
@@ -4777,6 +4859,10 @@ export type DryRunRequest = {
|
|
|
4777
4859
|
};
|
|
4778
4860
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
4779
4861
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
4862
|
+
export type EligibilityCheck = {
|
|
4863
|
+
is_eligible: boolean;
|
|
4864
|
+
restrictions: Array<string>;
|
|
4865
|
+
};
|
|
4780
4866
|
export type EmailHook = {
|
|
4781
4867
|
readonly url: string;
|
|
4782
4868
|
readonly uuid: string;
|
|
@@ -4844,7 +4930,7 @@ export type EventMetadataResponse = {
|
|
|
4844
4930
|
* Map of event group keys to lists of event type enums from EventType
|
|
4845
4931
|
*/
|
|
4846
4932
|
event_groups: {
|
|
4847
|
-
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
4933
|
+
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked'>;
|
|
4848
4934
|
};
|
|
4849
4935
|
};
|
|
4850
4936
|
export type EventStats = {
|
|
@@ -4881,7 +4967,7 @@ export type EventSubscriptionRequest = {
|
|
|
4881
4967
|
*/
|
|
4882
4968
|
observable_objects?: unknown;
|
|
4883
4969
|
};
|
|
4884
|
-
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
4970
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
4885
4971
|
export type ExecuteActionErrorResponse = {
|
|
4886
4972
|
error: string;
|
|
4887
4973
|
};
|
|
@@ -5249,6 +5335,7 @@ export type FreeipaProfileRequest = {
|
|
|
5249
5335
|
*/
|
|
5250
5336
|
agreement_date?: string;
|
|
5251
5337
|
};
|
|
5338
|
+
export type GenderEnum = 0 | 1 | 2 | 9;
|
|
5252
5339
|
export type GenerateAssignmentsRequest = {
|
|
5253
5340
|
/**
|
|
5254
5341
|
* Specific proposal UUIDs to generate assignments for. If empty, generates for all submitted proposals needing reviewers.
|
|
@@ -5299,6 +5386,21 @@ export type GenerateSuggestionsResponse = {
|
|
|
5299
5386
|
source_used: string;
|
|
5300
5387
|
suggestions: Array<string>;
|
|
5301
5388
|
};
|
|
5389
|
+
export type GlobalUserDataAccessLog = {
|
|
5390
|
+
uuid: string;
|
|
5391
|
+
timestamp: string;
|
|
5392
|
+
accessor_type: AccessorTypeEnum;
|
|
5393
|
+
accessed_fields: Array<string>;
|
|
5394
|
+
user: TargetUser;
|
|
5395
|
+
accessor: AccessorUser;
|
|
5396
|
+
/**
|
|
5397
|
+
* An IPv4 or IPv6 address.
|
|
5398
|
+
*/
|
|
5399
|
+
ip_address: string | null;
|
|
5400
|
+
context: {
|
|
5401
|
+
[key: string]: unknown;
|
|
5402
|
+
};
|
|
5403
|
+
};
|
|
5302
5404
|
export type GoogleCalendar = {
|
|
5303
5405
|
backend_id?: string | null;
|
|
5304
5406
|
public?: boolean;
|
|
@@ -9553,6 +9655,47 @@ export type OfferingUser = {
|
|
|
9553
9655
|
* Email address
|
|
9554
9656
|
*/
|
|
9555
9657
|
readonly user_email?: string;
|
|
9658
|
+
readonly user_phone_number?: string;
|
|
9659
|
+
readonly user_organization?: string;
|
|
9660
|
+
readonly user_job_title?: string;
|
|
9661
|
+
/**
|
|
9662
|
+
* Person's affiliation within organization such as student, faculty, staff.
|
|
9663
|
+
*/
|
|
9664
|
+
readonly user_affiliations?: unknown;
|
|
9665
|
+
/**
|
|
9666
|
+
* ISO 5218 gender code
|
|
9667
|
+
*/
|
|
9668
|
+
user_gender?: GenderEnum | NullEnum | null;
|
|
9669
|
+
/**
|
|
9670
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
9671
|
+
*/
|
|
9672
|
+
readonly user_personal_title?: string;
|
|
9673
|
+
readonly user_place_of_birth?: string;
|
|
9674
|
+
readonly user_country_of_residence?: string;
|
|
9675
|
+
/**
|
|
9676
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
9677
|
+
*/
|
|
9678
|
+
readonly user_nationality?: string;
|
|
9679
|
+
/**
|
|
9680
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
9681
|
+
*/
|
|
9682
|
+
readonly user_nationalities?: unknown;
|
|
9683
|
+
readonly user_organization_country?: string;
|
|
9684
|
+
/**
|
|
9685
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
9686
|
+
*/
|
|
9687
|
+
readonly user_organization_type?: string;
|
|
9688
|
+
/**
|
|
9689
|
+
* REFEDS assurance profile URIs from identity provider
|
|
9690
|
+
*/
|
|
9691
|
+
readonly user_eduperson_assurance?: unknown;
|
|
9692
|
+
readonly user_civil_number?: string | null;
|
|
9693
|
+
readonly user_birth_date?: string | null;
|
|
9694
|
+
/**
|
|
9695
|
+
* Source of identity
|
|
9696
|
+
* Indicates what identity provider was used.
|
|
9697
|
+
*/
|
|
9698
|
+
readonly user_identity_source?: string;
|
|
9556
9699
|
readonly created?: string;
|
|
9557
9700
|
readonly modified?: string;
|
|
9558
9701
|
readonly customer_uuid?: string;
|
|
@@ -9589,6 +9732,62 @@ export type OfferingUser = {
|
|
|
9589
9732
|
[key: string]: string;
|
|
9590
9733
|
} | null;
|
|
9591
9734
|
};
|
|
9735
|
+
export type OfferingUserAttributeConfig = {
|
|
9736
|
+
readonly uuid: string;
|
|
9737
|
+
readonly created: string;
|
|
9738
|
+
readonly modified: string;
|
|
9739
|
+
readonly offering_uuid: string;
|
|
9740
|
+
readonly offering_name: string;
|
|
9741
|
+
expose_username?: boolean;
|
|
9742
|
+
expose_full_name?: boolean;
|
|
9743
|
+
expose_email?: boolean;
|
|
9744
|
+
expose_phone_number?: boolean;
|
|
9745
|
+
expose_organization?: boolean;
|
|
9746
|
+
expose_job_title?: boolean;
|
|
9747
|
+
expose_affiliations?: boolean;
|
|
9748
|
+
expose_gender?: boolean;
|
|
9749
|
+
expose_personal_title?: boolean;
|
|
9750
|
+
expose_place_of_birth?: boolean;
|
|
9751
|
+
expose_country_of_residence?: boolean;
|
|
9752
|
+
expose_nationality?: boolean;
|
|
9753
|
+
expose_nationalities?: boolean;
|
|
9754
|
+
expose_organization_country?: boolean;
|
|
9755
|
+
expose_organization_type?: boolean;
|
|
9756
|
+
expose_eduperson_assurance?: boolean;
|
|
9757
|
+
expose_civil_number?: boolean;
|
|
9758
|
+
expose_birth_date?: boolean;
|
|
9759
|
+
expose_identity_source?: boolean;
|
|
9760
|
+
/**
|
|
9761
|
+
* Return list of field names currently configured for exposure.
|
|
9762
|
+
*/
|
|
9763
|
+
readonly exposed_fields: Array<string>;
|
|
9764
|
+
/**
|
|
9765
|
+
* Return True if this is a default (unsaved) config.
|
|
9766
|
+
*/
|
|
9767
|
+
readonly is_default: boolean;
|
|
9768
|
+
};
|
|
9769
|
+
export type OfferingUserAttributeConfigRequest = {
|
|
9770
|
+
offering?: string;
|
|
9771
|
+
expose_username?: boolean;
|
|
9772
|
+
expose_full_name?: boolean;
|
|
9773
|
+
expose_email?: boolean;
|
|
9774
|
+
expose_phone_number?: boolean;
|
|
9775
|
+
expose_organization?: boolean;
|
|
9776
|
+
expose_job_title?: boolean;
|
|
9777
|
+
expose_affiliations?: boolean;
|
|
9778
|
+
expose_gender?: boolean;
|
|
9779
|
+
expose_personal_title?: boolean;
|
|
9780
|
+
expose_place_of_birth?: boolean;
|
|
9781
|
+
expose_country_of_residence?: boolean;
|
|
9782
|
+
expose_nationality?: boolean;
|
|
9783
|
+
expose_nationalities?: boolean;
|
|
9784
|
+
expose_organization_country?: boolean;
|
|
9785
|
+
expose_organization_type?: boolean;
|
|
9786
|
+
expose_eduperson_assurance?: boolean;
|
|
9787
|
+
expose_civil_number?: boolean;
|
|
9788
|
+
expose_birth_date?: boolean;
|
|
9789
|
+
expose_identity_source?: boolean;
|
|
9790
|
+
};
|
|
9592
9791
|
export type OfferingUserRequest = {
|
|
9593
9792
|
user?: string;
|
|
9594
9793
|
offering?: string;
|
|
@@ -11714,6 +11913,18 @@ export type OrganizationGroupRequest = {
|
|
|
11714
11913
|
export type OrganizationGroupsRequest = {
|
|
11715
11914
|
organization_groups?: Array<string>;
|
|
11716
11915
|
};
|
|
11916
|
+
export type OrganizationalAccess = {
|
|
11917
|
+
scope_type: string;
|
|
11918
|
+
scope_uuid: string;
|
|
11919
|
+
scope_name: string;
|
|
11920
|
+
users: Array<OrganizationalUser>;
|
|
11921
|
+
};
|
|
11922
|
+
export type OrganizationalUser = {
|
|
11923
|
+
user_uuid: string;
|
|
11924
|
+
username: string;
|
|
11925
|
+
full_name: string;
|
|
11926
|
+
role: string | null;
|
|
11927
|
+
};
|
|
11717
11928
|
export type PaidRequest = {
|
|
11718
11929
|
date: string;
|
|
11719
11930
|
proof?: Blob | File;
|
|
@@ -11779,6 +11990,24 @@ export type PatchedBroadcastMessageRequest = {
|
|
|
11779
11990
|
query?: unknown;
|
|
11780
11991
|
send_at?: string | null;
|
|
11781
11992
|
};
|
|
11993
|
+
export type PatchedCallApplicantAttributeConfigRequest = {
|
|
11994
|
+
call?: string;
|
|
11995
|
+
expose_full_name?: boolean;
|
|
11996
|
+
expose_email?: boolean;
|
|
11997
|
+
expose_organization?: boolean;
|
|
11998
|
+
expose_affiliations?: boolean;
|
|
11999
|
+
expose_organization_type?: boolean;
|
|
12000
|
+
expose_organization_country?: boolean;
|
|
12001
|
+
expose_nationality?: boolean;
|
|
12002
|
+
expose_nationalities?: boolean;
|
|
12003
|
+
expose_country_of_residence?: boolean;
|
|
12004
|
+
expose_eduperson_assurance?: boolean;
|
|
12005
|
+
expose_identity_source?: boolean;
|
|
12006
|
+
/**
|
|
12007
|
+
* If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
|
|
12008
|
+
*/
|
|
12009
|
+
reviewers_see_applicant_details?: boolean;
|
|
12010
|
+
};
|
|
11782
12011
|
export type PatchedCallAssignmentConfigurationRequest = {
|
|
11783
12012
|
/**
|
|
11784
12013
|
* Automatically assign next-best reviewer when someone declines. If False, manager must manually approve reassignments.
|
|
@@ -12445,6 +12674,28 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
12445
12674
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
12446
12675
|
period?: PeriodEnum;
|
|
12447
12676
|
};
|
|
12677
|
+
export type PatchedOfferingUserAttributeConfigRequest = {
|
|
12678
|
+
offering?: string;
|
|
12679
|
+
expose_username?: boolean;
|
|
12680
|
+
expose_full_name?: boolean;
|
|
12681
|
+
expose_email?: boolean;
|
|
12682
|
+
expose_phone_number?: boolean;
|
|
12683
|
+
expose_organization?: boolean;
|
|
12684
|
+
expose_job_title?: boolean;
|
|
12685
|
+
expose_affiliations?: boolean;
|
|
12686
|
+
expose_gender?: boolean;
|
|
12687
|
+
expose_personal_title?: boolean;
|
|
12688
|
+
expose_place_of_birth?: boolean;
|
|
12689
|
+
expose_country_of_residence?: boolean;
|
|
12690
|
+
expose_nationality?: boolean;
|
|
12691
|
+
expose_nationalities?: boolean;
|
|
12692
|
+
expose_organization_country?: boolean;
|
|
12693
|
+
expose_organization_type?: boolean;
|
|
12694
|
+
expose_eduperson_assurance?: boolean;
|
|
12695
|
+
expose_civil_number?: boolean;
|
|
12696
|
+
expose_birth_date?: boolean;
|
|
12697
|
+
expose_identity_source?: boolean;
|
|
12698
|
+
};
|
|
12448
12699
|
export type PatchedOfferingUserRequest = {
|
|
12449
12700
|
user?: string;
|
|
12450
12701
|
offering?: string;
|
|
@@ -12772,6 +13023,30 @@ export type PatchedProtectedCallRequest = {
|
|
|
12772
13023
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
12773
13024
|
*/
|
|
12774
13025
|
proposal_slug_template?: string | null;
|
|
13026
|
+
/**
|
|
13027
|
+
* List of email regex patterns. User must match one.
|
|
13028
|
+
*/
|
|
13029
|
+
user_email_patterns?: unknown;
|
|
13030
|
+
/**
|
|
13031
|
+
* List of allowed affiliations. User must have one.
|
|
13032
|
+
*/
|
|
13033
|
+
user_affiliations?: unknown;
|
|
13034
|
+
/**
|
|
13035
|
+
* List of allowed identity sources (identity providers).
|
|
13036
|
+
*/
|
|
13037
|
+
user_identity_sources?: unknown;
|
|
13038
|
+
/**
|
|
13039
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
13040
|
+
*/
|
|
13041
|
+
user_nationalities?: unknown;
|
|
13042
|
+
/**
|
|
13043
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
13044
|
+
*/
|
|
13045
|
+
user_organization_types?: unknown;
|
|
13046
|
+
/**
|
|
13047
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
13048
|
+
*/
|
|
13049
|
+
user_assurance_levels?: unknown;
|
|
12775
13050
|
};
|
|
12776
13051
|
export type PatchedProtectedRoundRequest = {
|
|
12777
13052
|
start_time?: string;
|
|
@@ -13400,6 +13675,33 @@ export type PatchedUserRequest = {
|
|
|
13400
13675
|
last_name?: string;
|
|
13401
13676
|
birth_date?: string | null;
|
|
13402
13677
|
image?: (Blob | File) | null;
|
|
13678
|
+
/**
|
|
13679
|
+
* ISO 5218 gender code
|
|
13680
|
+
*/
|
|
13681
|
+
gender?: GenderEnum | NullEnum | null;
|
|
13682
|
+
/**
|
|
13683
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
13684
|
+
*/
|
|
13685
|
+
personal_title?: string;
|
|
13686
|
+
place_of_birth?: string;
|
|
13687
|
+
country_of_residence?: string;
|
|
13688
|
+
/**
|
|
13689
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
13690
|
+
*/
|
|
13691
|
+
nationality?: string;
|
|
13692
|
+
/**
|
|
13693
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
13694
|
+
*/
|
|
13695
|
+
nationalities?: unknown;
|
|
13696
|
+
organization_country?: string;
|
|
13697
|
+
/**
|
|
13698
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
13699
|
+
*/
|
|
13700
|
+
organization_type?: string;
|
|
13701
|
+
/**
|
|
13702
|
+
* REFEDS assurance profile URIs from identity provider
|
|
13703
|
+
*/
|
|
13704
|
+
eduperson_assurance?: unknown;
|
|
13403
13705
|
};
|
|
13404
13706
|
export type PatchedVmwareVirtualMachineRequest = {
|
|
13405
13707
|
description?: string;
|
|
@@ -14375,6 +14677,10 @@ export type ProtectedCall = {
|
|
|
14375
14677
|
* Whether proposal applicants can see review comments and scores
|
|
14376
14678
|
*/
|
|
14377
14679
|
reviews_visible_to_submitters?: boolean;
|
|
14680
|
+
/**
|
|
14681
|
+
* Check if call has any eligibility restrictions configured.
|
|
14682
|
+
*/
|
|
14683
|
+
readonly has_eligibility_restrictions?: boolean;
|
|
14378
14684
|
created_by?: string | null;
|
|
14379
14685
|
reference_code?: string;
|
|
14380
14686
|
/**
|
|
@@ -14386,6 +14692,30 @@ export type ProtectedCall = {
|
|
|
14386
14692
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
14387
14693
|
*/
|
|
14388
14694
|
proposal_slug_template?: string | null;
|
|
14695
|
+
/**
|
|
14696
|
+
* List of email regex patterns. User must match one.
|
|
14697
|
+
*/
|
|
14698
|
+
user_email_patterns?: unknown;
|
|
14699
|
+
/**
|
|
14700
|
+
* List of allowed affiliations. User must have one.
|
|
14701
|
+
*/
|
|
14702
|
+
user_affiliations?: unknown;
|
|
14703
|
+
/**
|
|
14704
|
+
* List of allowed identity sources (identity providers).
|
|
14705
|
+
*/
|
|
14706
|
+
user_identity_sources?: unknown;
|
|
14707
|
+
/**
|
|
14708
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
14709
|
+
*/
|
|
14710
|
+
user_nationalities?: unknown;
|
|
14711
|
+
/**
|
|
14712
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
14713
|
+
*/
|
|
14714
|
+
user_organization_types?: unknown;
|
|
14715
|
+
/**
|
|
14716
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
14717
|
+
*/
|
|
14718
|
+
user_assurance_levels?: unknown;
|
|
14389
14719
|
};
|
|
14390
14720
|
export type ProtectedCallRequest = {
|
|
14391
14721
|
/**
|
|
@@ -14416,6 +14746,30 @@ export type ProtectedCallRequest = {
|
|
|
14416
14746
|
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
14417
14747
|
*/
|
|
14418
14748
|
proposal_slug_template?: string | null;
|
|
14749
|
+
/**
|
|
14750
|
+
* List of email regex patterns. User must match one.
|
|
14751
|
+
*/
|
|
14752
|
+
user_email_patterns?: unknown;
|
|
14753
|
+
/**
|
|
14754
|
+
* List of allowed affiliations. User must have one.
|
|
14755
|
+
*/
|
|
14756
|
+
user_affiliations?: unknown;
|
|
14757
|
+
/**
|
|
14758
|
+
* List of allowed identity sources (identity providers).
|
|
14759
|
+
*/
|
|
14760
|
+
user_identity_sources?: unknown;
|
|
14761
|
+
/**
|
|
14762
|
+
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
14763
|
+
*/
|
|
14764
|
+
user_nationalities?: unknown;
|
|
14765
|
+
/**
|
|
14766
|
+
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
14767
|
+
*/
|
|
14768
|
+
user_organization_types?: unknown;
|
|
14769
|
+
/**
|
|
14770
|
+
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
14771
|
+
*/
|
|
14772
|
+
user_assurance_levels?: unknown;
|
|
14419
14773
|
};
|
|
14420
14774
|
export type ProtectedProposalList = {
|
|
14421
14775
|
readonly uuid: string;
|
|
@@ -14764,6 +15118,12 @@ export type ProviderRequestedResource = {
|
|
|
14764
15118
|
readonly proposal_name: string;
|
|
14765
15119
|
proposal: string;
|
|
14766
15120
|
};
|
|
15121
|
+
export type ProviderTeamUser = {
|
|
15122
|
+
user_uuid: string;
|
|
15123
|
+
username: string;
|
|
15124
|
+
full_name: string;
|
|
15125
|
+
role: string | null;
|
|
15126
|
+
};
|
|
14767
15127
|
export type ProviderUser = {
|
|
14768
15128
|
readonly uuid?: string;
|
|
14769
15129
|
readonly full_name?: string;
|
|
@@ -14808,6 +15168,10 @@ export type PublicCall = {
|
|
|
14808
15168
|
* Whether proposal applicants can see review comments and scores. If False, applicants only see final approval/rejection status.
|
|
14809
15169
|
*/
|
|
14810
15170
|
reviews_visible_to_submitters?: boolean;
|
|
15171
|
+
/**
|
|
15172
|
+
* Check if call has any eligibility restrictions configured.
|
|
15173
|
+
*/
|
|
15174
|
+
readonly has_eligibility_restrictions?: boolean;
|
|
14811
15175
|
};
|
|
14812
15176
|
export type PublicInvitation = {
|
|
14813
15177
|
readonly call_name: string;
|
|
@@ -18234,6 +18598,16 @@ export type ServiceProvider = {
|
|
|
18234
18598
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
18235
18599
|
readonly offering_count?: number;
|
|
18236
18600
|
};
|
|
18601
|
+
export type ServiceProviderAccess = {
|
|
18602
|
+
offering_uuid: string;
|
|
18603
|
+
offering_name: string;
|
|
18604
|
+
provider_name: string | null;
|
|
18605
|
+
provider_uuid: string | null;
|
|
18606
|
+
exposed_fields: Array<string>;
|
|
18607
|
+
consent_date: string | null;
|
|
18608
|
+
consent_version: string | null;
|
|
18609
|
+
provider_team?: Array<ProviderTeamUser>;
|
|
18610
|
+
};
|
|
18237
18611
|
export type ServiceProviderApiSecretCode = {
|
|
18238
18612
|
/**
|
|
18239
18613
|
* API secret code for authenticating service provider requests
|
|
@@ -18951,6 +19325,11 @@ export type TagRequest = {
|
|
|
18951
19325
|
export type TagsRequest = {
|
|
18952
19326
|
tags?: Array<string>;
|
|
18953
19327
|
};
|
|
19328
|
+
export type TargetUser = {
|
|
19329
|
+
uuid: string;
|
|
19330
|
+
username: string;
|
|
19331
|
+
full_name: string;
|
|
19332
|
+
};
|
|
18954
19333
|
export type Template = {
|
|
18955
19334
|
readonly url: string;
|
|
18956
19335
|
readonly uuid: string;
|
|
@@ -19215,6 +19594,33 @@ export type User = {
|
|
|
19215
19594
|
readonly identity_source?: string;
|
|
19216
19595
|
readonly has_active_session?: boolean;
|
|
19217
19596
|
readonly ip_address?: string | null;
|
|
19597
|
+
/**
|
|
19598
|
+
* ISO 5218 gender code
|
|
19599
|
+
*/
|
|
19600
|
+
gender?: GenderEnum | NullEnum | null;
|
|
19601
|
+
/**
|
|
19602
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
19603
|
+
*/
|
|
19604
|
+
personal_title?: string;
|
|
19605
|
+
place_of_birth?: string;
|
|
19606
|
+
country_of_residence?: string;
|
|
19607
|
+
/**
|
|
19608
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
19609
|
+
*/
|
|
19610
|
+
nationality?: string;
|
|
19611
|
+
/**
|
|
19612
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
19613
|
+
*/
|
|
19614
|
+
nationalities?: unknown;
|
|
19615
|
+
organization_country?: string;
|
|
19616
|
+
/**
|
|
19617
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
19618
|
+
*/
|
|
19619
|
+
organization_type?: string;
|
|
19620
|
+
/**
|
|
19621
|
+
* REFEDS assurance profile URIs from identity provider
|
|
19622
|
+
*/
|
|
19623
|
+
eduperson_assurance?: unknown;
|
|
19218
19624
|
};
|
|
19219
19625
|
export type UserAction = {
|
|
19220
19626
|
readonly uuid: string;
|
|
@@ -19380,6 +19786,27 @@ export type UserConsentInfo = {
|
|
|
19380
19786
|
readonly agreement_date: string;
|
|
19381
19787
|
readonly is_revoked: boolean;
|
|
19382
19788
|
};
|
|
19789
|
+
export type UserDataAccess = {
|
|
19790
|
+
administrative_access: AdministrativeAccess;
|
|
19791
|
+
organizational_access: Array<OrganizationalAccess>;
|
|
19792
|
+
service_provider_access: Array<ServiceProviderAccess>;
|
|
19793
|
+
summary: DataAccessSummary;
|
|
19794
|
+
};
|
|
19795
|
+
export type UserDataAccessLog = {
|
|
19796
|
+
uuid: string;
|
|
19797
|
+
timestamp: string;
|
|
19798
|
+
accessor_type: AccessorTypeEnum;
|
|
19799
|
+
accessed_fields: Array<string>;
|
|
19800
|
+
accessor_category?: string;
|
|
19801
|
+
accessor?: AccessorUser;
|
|
19802
|
+
/**
|
|
19803
|
+
* An IPv4 or IPv6 address.
|
|
19804
|
+
*/
|
|
19805
|
+
ip_address?: string | null;
|
|
19806
|
+
context?: {
|
|
19807
|
+
[key: string]: unknown;
|
|
19808
|
+
};
|
|
19809
|
+
};
|
|
19383
19810
|
export type UserEmailChangeRequest = {
|
|
19384
19811
|
email: string;
|
|
19385
19812
|
};
|
|
@@ -19430,6 +19857,10 @@ export type UserOfferingConsent = {
|
|
|
19430
19857
|
readonly modified: string;
|
|
19431
19858
|
readonly has_consent: boolean;
|
|
19432
19859
|
readonly requires_reconsent: boolean;
|
|
19860
|
+
/**
|
|
19861
|
+
* List of user attributes that will be shared with service provider
|
|
19862
|
+
*/
|
|
19863
|
+
readonly collected_attributes: Array<string>;
|
|
19433
19864
|
};
|
|
19434
19865
|
export type UserOfferingConsentCreate = {
|
|
19435
19866
|
offering: string;
|
|
@@ -19497,6 +19928,33 @@ export type UserRequest = {
|
|
|
19497
19928
|
last_name?: string;
|
|
19498
19929
|
birth_date?: string | null;
|
|
19499
19930
|
image?: (Blob | File) | null;
|
|
19931
|
+
/**
|
|
19932
|
+
* ISO 5218 gender code
|
|
19933
|
+
*/
|
|
19934
|
+
gender?: GenderEnum | NullEnum | null;
|
|
19935
|
+
/**
|
|
19936
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
19937
|
+
*/
|
|
19938
|
+
personal_title?: string;
|
|
19939
|
+
place_of_birth?: string;
|
|
19940
|
+
country_of_residence?: string;
|
|
19941
|
+
/**
|
|
19942
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
19943
|
+
*/
|
|
19944
|
+
nationality?: string;
|
|
19945
|
+
/**
|
|
19946
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
19947
|
+
*/
|
|
19948
|
+
nationalities?: unknown;
|
|
19949
|
+
organization_country?: string;
|
|
19950
|
+
/**
|
|
19951
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
19952
|
+
*/
|
|
19953
|
+
organization_type?: string;
|
|
19954
|
+
/**
|
|
19955
|
+
* REFEDS assurance profile URIs from identity provider
|
|
19956
|
+
*/
|
|
19957
|
+
eduperson_assurance?: unknown;
|
|
19500
19958
|
};
|
|
19501
19959
|
export type UserRoleCreateRequest = {
|
|
19502
19960
|
role: string;
|
|
@@ -21151,6 +21609,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21151
21609
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21152
21610
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21153
21611
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
21612
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
21613
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
21614
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
21154
21615
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21155
21616
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21156
21617
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21189,6 +21650,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21189
21650
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21190
21651
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21191
21652
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
21653
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
21654
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
21655
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21192
21656
|
};
|
|
21193
21657
|
export type ConstanceSettingsRequestMultipart = {
|
|
21194
21658
|
SITE_NAME?: string;
|
|
@@ -21350,6 +21814,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21350
21814
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21351
21815
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21352
21816
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
21817
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
21818
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
21819
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
21353
21820
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21354
21821
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21355
21822
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21388,6 +21855,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21388
21855
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21389
21856
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21390
21857
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
21858
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
21859
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
21860
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21391
21861
|
};
|
|
21392
21862
|
export type PaymentRequestForm = {
|
|
21393
21863
|
profile: string;
|
|
@@ -21502,6 +21972,33 @@ export type UserRequestForm = {
|
|
|
21502
21972
|
last_name?: string;
|
|
21503
21973
|
birth_date?: string | null;
|
|
21504
21974
|
image?: (Blob | File) | null;
|
|
21975
|
+
/**
|
|
21976
|
+
* ISO 5218 gender code
|
|
21977
|
+
*/
|
|
21978
|
+
gender?: GenderEnum | NullEnum | null;
|
|
21979
|
+
/**
|
|
21980
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
21981
|
+
*/
|
|
21982
|
+
personal_title?: string;
|
|
21983
|
+
place_of_birth?: string;
|
|
21984
|
+
country_of_residence?: string;
|
|
21985
|
+
/**
|
|
21986
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
21987
|
+
*/
|
|
21988
|
+
nationality?: string;
|
|
21989
|
+
/**
|
|
21990
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
21991
|
+
*/
|
|
21992
|
+
nationalities?: unknown;
|
|
21993
|
+
organization_country?: string;
|
|
21994
|
+
/**
|
|
21995
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
21996
|
+
*/
|
|
21997
|
+
organization_type?: string;
|
|
21998
|
+
/**
|
|
21999
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22000
|
+
*/
|
|
22001
|
+
eduperson_assurance?: unknown;
|
|
21505
22002
|
};
|
|
21506
22003
|
export type UserRequestMultipart = {
|
|
21507
22004
|
/**
|
|
@@ -21550,6 +22047,33 @@ export type UserRequestMultipart = {
|
|
|
21550
22047
|
last_name?: string;
|
|
21551
22048
|
birth_date?: string | null;
|
|
21552
22049
|
image?: (Blob | File) | null;
|
|
22050
|
+
/**
|
|
22051
|
+
* ISO 5218 gender code
|
|
22052
|
+
*/
|
|
22053
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22054
|
+
/**
|
|
22055
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22056
|
+
*/
|
|
22057
|
+
personal_title?: string;
|
|
22058
|
+
place_of_birth?: string;
|
|
22059
|
+
country_of_residence?: string;
|
|
22060
|
+
/**
|
|
22061
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22062
|
+
*/
|
|
22063
|
+
nationality?: string;
|
|
22064
|
+
/**
|
|
22065
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22066
|
+
*/
|
|
22067
|
+
nationalities?: unknown;
|
|
22068
|
+
organization_country?: string;
|
|
22069
|
+
/**
|
|
22070
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22071
|
+
*/
|
|
22072
|
+
organization_type?: string;
|
|
22073
|
+
/**
|
|
22074
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22075
|
+
*/
|
|
22076
|
+
eduperson_assurance?: unknown;
|
|
21553
22077
|
};
|
|
21554
22078
|
export type PatchedUserRequestForm = {
|
|
21555
22079
|
/**
|
|
@@ -21597,6 +22121,33 @@ export type PatchedUserRequestForm = {
|
|
|
21597
22121
|
last_name?: string;
|
|
21598
22122
|
birth_date?: string | null;
|
|
21599
22123
|
image?: (Blob | File) | null;
|
|
22124
|
+
/**
|
|
22125
|
+
* ISO 5218 gender code
|
|
22126
|
+
*/
|
|
22127
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22128
|
+
/**
|
|
22129
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22130
|
+
*/
|
|
22131
|
+
personal_title?: string;
|
|
22132
|
+
place_of_birth?: string;
|
|
22133
|
+
country_of_residence?: string;
|
|
22134
|
+
/**
|
|
22135
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22136
|
+
*/
|
|
22137
|
+
nationality?: string;
|
|
22138
|
+
/**
|
|
22139
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22140
|
+
*/
|
|
22141
|
+
nationalities?: unknown;
|
|
22142
|
+
organization_country?: string;
|
|
22143
|
+
/**
|
|
22144
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22145
|
+
*/
|
|
22146
|
+
organization_type?: string;
|
|
22147
|
+
/**
|
|
22148
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22149
|
+
*/
|
|
22150
|
+
eduperson_assurance?: unknown;
|
|
21600
22151
|
};
|
|
21601
22152
|
export type PatchedUserRequestMultipart = {
|
|
21602
22153
|
/**
|
|
@@ -21644,6 +22195,33 @@ export type PatchedUserRequestMultipart = {
|
|
|
21644
22195
|
last_name?: string;
|
|
21645
22196
|
birth_date?: string | null;
|
|
21646
22197
|
image?: (Blob | File) | null;
|
|
22198
|
+
/**
|
|
22199
|
+
* ISO 5218 gender code
|
|
22200
|
+
*/
|
|
22201
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22202
|
+
/**
|
|
22203
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22204
|
+
*/
|
|
22205
|
+
personal_title?: string;
|
|
22206
|
+
place_of_birth?: string;
|
|
22207
|
+
country_of_residence?: string;
|
|
22208
|
+
/**
|
|
22209
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22210
|
+
*/
|
|
22211
|
+
nationality?: string;
|
|
22212
|
+
/**
|
|
22213
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22214
|
+
*/
|
|
22215
|
+
nationalities?: unknown;
|
|
22216
|
+
organization_country?: string;
|
|
22217
|
+
/**
|
|
22218
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22219
|
+
*/
|
|
22220
|
+
organization_type?: string;
|
|
22221
|
+
/**
|
|
22222
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22223
|
+
*/
|
|
22224
|
+
eduperson_assurance?: unknown;
|
|
21647
22225
|
};
|
|
21648
22226
|
/**
|
|
21649
22227
|
* A page number within the paginated result set.
|
|
@@ -28565,6 +29143,107 @@ export type DailyQuotasRetrieveResponses = {
|
|
|
28565
29143
|
};
|
|
28566
29144
|
};
|
|
28567
29145
|
export type DailyQuotasRetrieveResponse = DailyQuotasRetrieveResponses[keyof DailyQuotasRetrieveResponses];
|
|
29146
|
+
export type DataAccessLogsListData = {
|
|
29147
|
+
body?: never;
|
|
29148
|
+
path?: never;
|
|
29149
|
+
query?: {
|
|
29150
|
+
/**
|
|
29151
|
+
* Type of accessor
|
|
29152
|
+
*
|
|
29153
|
+
*
|
|
29154
|
+
*/
|
|
29155
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29156
|
+
accessor_uuid?: string;
|
|
29157
|
+
end_date?: string;
|
|
29158
|
+
/**
|
|
29159
|
+
* Ordering
|
|
29160
|
+
*
|
|
29161
|
+
*
|
|
29162
|
+
*/
|
|
29163
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29164
|
+
/**
|
|
29165
|
+
* A page number within the paginated result set.
|
|
29166
|
+
*/
|
|
29167
|
+
page?: number;
|
|
29168
|
+
/**
|
|
29169
|
+
* Number of results to return per page.
|
|
29170
|
+
*/
|
|
29171
|
+
page_size?: number;
|
|
29172
|
+
query?: string;
|
|
29173
|
+
start_date?: string;
|
|
29174
|
+
user_uuid?: string;
|
|
29175
|
+
};
|
|
29176
|
+
url: '/api/data-access-logs/';
|
|
29177
|
+
};
|
|
29178
|
+
export type DataAccessLogsListResponses = {
|
|
29179
|
+
200: Array<GlobalUserDataAccessLog>;
|
|
29180
|
+
};
|
|
29181
|
+
export type DataAccessLogsListResponse = DataAccessLogsListResponses[keyof DataAccessLogsListResponses];
|
|
29182
|
+
export type DataAccessLogsCountData = {
|
|
29183
|
+
body?: never;
|
|
29184
|
+
path?: never;
|
|
29185
|
+
query?: {
|
|
29186
|
+
/**
|
|
29187
|
+
* Type of accessor
|
|
29188
|
+
*
|
|
29189
|
+
*
|
|
29190
|
+
*/
|
|
29191
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29192
|
+
accessor_uuid?: string;
|
|
29193
|
+
end_date?: string;
|
|
29194
|
+
/**
|
|
29195
|
+
* Ordering
|
|
29196
|
+
*
|
|
29197
|
+
*
|
|
29198
|
+
*/
|
|
29199
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29200
|
+
/**
|
|
29201
|
+
* A page number within the paginated result set.
|
|
29202
|
+
*/
|
|
29203
|
+
page?: number;
|
|
29204
|
+
/**
|
|
29205
|
+
* Number of results to return per page.
|
|
29206
|
+
*/
|
|
29207
|
+
page_size?: number;
|
|
29208
|
+
query?: string;
|
|
29209
|
+
start_date?: string;
|
|
29210
|
+
user_uuid?: string;
|
|
29211
|
+
};
|
|
29212
|
+
url: '/api/data-access-logs/';
|
|
29213
|
+
};
|
|
29214
|
+
export type DataAccessLogsCountResponses = {
|
|
29215
|
+
/**
|
|
29216
|
+
* No response body
|
|
29217
|
+
*/
|
|
29218
|
+
200: unknown;
|
|
29219
|
+
};
|
|
29220
|
+
export type DataAccessLogsDestroyData = {
|
|
29221
|
+
body?: never;
|
|
29222
|
+
path: {
|
|
29223
|
+
uuid: string;
|
|
29224
|
+
};
|
|
29225
|
+
query?: never;
|
|
29226
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29227
|
+
};
|
|
29228
|
+
export type DataAccessLogsDestroyResponses = {
|
|
29229
|
+
/**
|
|
29230
|
+
* No response body
|
|
29231
|
+
*/
|
|
29232
|
+
204: void;
|
|
29233
|
+
};
|
|
29234
|
+
export type DataAccessLogsDestroyResponse = DataAccessLogsDestroyResponses[keyof DataAccessLogsDestroyResponses];
|
|
29235
|
+
export type DataAccessLogsRetrieveData = {
|
|
29236
|
+
body?: never;
|
|
29237
|
+
path: {
|
|
29238
|
+
uuid: string;
|
|
29239
|
+
};
|
|
29240
|
+
query?: never;
|
|
29241
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29242
|
+
};
|
|
29243
|
+
export type DataAccessLogsRetrieveResponses = {
|
|
29244
|
+
200: GlobalUserDataAccessLog;
|
|
29245
|
+
};
|
|
29246
|
+
export type DataAccessLogsRetrieveResponse = DataAccessLogsRetrieveResponses[keyof DataAccessLogsRetrieveResponses];
|
|
28568
29247
|
export type DatabaseStatsRetrieveData = {
|
|
28569
29248
|
body?: never;
|
|
28570
29249
|
path?: never;
|
|
@@ -35321,7 +36000,7 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
35321
36000
|
* Created after
|
|
35322
36001
|
*/
|
|
35323
36002
|
created?: string;
|
|
35324
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
36003
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
35325
36004
|
/**
|
|
35326
36005
|
* User Has Consent
|
|
35327
36006
|
*/
|
|
@@ -35493,7 +36172,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
35493
36172
|
uuid: string;
|
|
35494
36173
|
};
|
|
35495
36174
|
query?: {
|
|
35496
|
-
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
36175
|
+
field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
35497
36176
|
};
|
|
35498
36177
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
35499
36178
|
};
|
|
@@ -38029,6 +38708,21 @@ export type MarketplaceProviderOfferingsCustomersListResponses = {
|
|
|
38029
38708
|
200: Array<ProviderOfferingCustomer>;
|
|
38030
38709
|
};
|
|
38031
38710
|
export type MarketplaceProviderOfferingsCustomersListResponse = MarketplaceProviderOfferingsCustomersListResponses[keyof MarketplaceProviderOfferingsCustomersListResponses];
|
|
38711
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyData = {
|
|
38712
|
+
body?: never;
|
|
38713
|
+
path: {
|
|
38714
|
+
uuid: string;
|
|
38715
|
+
};
|
|
38716
|
+
query?: never;
|
|
38717
|
+
url: '/api/marketplace-provider-offerings/{uuid}/delete-user-attribute-config/';
|
|
38718
|
+
};
|
|
38719
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses = {
|
|
38720
|
+
/**
|
|
38721
|
+
* No response body
|
|
38722
|
+
*/
|
|
38723
|
+
204: void;
|
|
38724
|
+
};
|
|
38725
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponse = MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses[keyof MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses];
|
|
38032
38726
|
export type MarketplaceProviderOfferingsDeleteEndpointData = {
|
|
38033
38727
|
body: EndpointUuidRequest;
|
|
38034
38728
|
path: {
|
|
@@ -38547,7 +39241,7 @@ export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
|
38547
39241
|
uuid: string;
|
|
38548
39242
|
};
|
|
38549
39243
|
query?: {
|
|
38550
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
39244
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
38551
39245
|
/**
|
|
38552
39246
|
* A page number within the paginated result set.
|
|
38553
39247
|
*/
|
|
@@ -38996,6 +39690,42 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
|
|
|
38996
39690
|
200: DetailState;
|
|
38997
39691
|
};
|
|
38998
39692
|
export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
|
|
39693
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateData = {
|
|
39694
|
+
body?: PatchedOfferingUserAttributeConfigRequest;
|
|
39695
|
+
path: {
|
|
39696
|
+
uuid: string;
|
|
39697
|
+
};
|
|
39698
|
+
query?: never;
|
|
39699
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
39700
|
+
};
|
|
39701
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses = {
|
|
39702
|
+
200: OfferingUserAttributeConfig;
|
|
39703
|
+
};
|
|
39704
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses];
|
|
39705
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigData = {
|
|
39706
|
+
body?: OfferingUserAttributeConfigRequest;
|
|
39707
|
+
path: {
|
|
39708
|
+
uuid: string;
|
|
39709
|
+
};
|
|
39710
|
+
query?: never;
|
|
39711
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
39712
|
+
};
|
|
39713
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses = {
|
|
39714
|
+
200: OfferingUserAttributeConfig;
|
|
39715
|
+
};
|
|
39716
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses];
|
|
39717
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateData = {
|
|
39718
|
+
body?: OfferingUserAttributeConfigRequest;
|
|
39719
|
+
path: {
|
|
39720
|
+
uuid: string;
|
|
39721
|
+
};
|
|
39722
|
+
query?: never;
|
|
39723
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
39724
|
+
};
|
|
39725
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses = {
|
|
39726
|
+
200: OfferingUserAttributeConfig;
|
|
39727
|
+
};
|
|
39728
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses];
|
|
38999
39729
|
export type MarketplaceProviderOfferingsUpdateAttributesData = {
|
|
39000
39730
|
body?: {
|
|
39001
39731
|
[key: string]: unknown;
|
|
@@ -39216,6 +39946,18 @@ export type MarketplaceProviderOfferingsUpdateUserResponses = {
|
|
|
39216
39946
|
200: UserRoleExpirationTime;
|
|
39217
39947
|
};
|
|
39218
39948
|
export type MarketplaceProviderOfferingsUpdateUserResponse = MarketplaceProviderOfferingsUpdateUserResponses[keyof MarketplaceProviderOfferingsUpdateUserResponses];
|
|
39949
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveData = {
|
|
39950
|
+
body?: never;
|
|
39951
|
+
path: {
|
|
39952
|
+
uuid: string;
|
|
39953
|
+
};
|
|
39954
|
+
query?: never;
|
|
39955
|
+
url: '/api/marketplace-provider-offerings/{uuid}/user-attribute-config/';
|
|
39956
|
+
};
|
|
39957
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses = {
|
|
39958
|
+
200: OfferingUserAttributeConfig;
|
|
39959
|
+
};
|
|
39960
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponse = MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses[keyof MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses];
|
|
39219
39961
|
export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
|
|
39220
39962
|
body?: never;
|
|
39221
39963
|
path: {
|
|
@@ -56380,7 +57122,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
56380
57122
|
customer?: string;
|
|
56381
57123
|
customer_keyword?: string;
|
|
56382
57124
|
customer_uuid?: string;
|
|
56383
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57125
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid'>;
|
|
56384
57126
|
has_active_round?: boolean;
|
|
56385
57127
|
name?: string;
|
|
56386
57128
|
/**
|
|
@@ -56473,7 +57215,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
56473
57215
|
uuid: string;
|
|
56474
57216
|
};
|
|
56475
57217
|
query?: {
|
|
56476
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57218
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid'>;
|
|
56477
57219
|
};
|
|
56478
57220
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
56479
57221
|
};
|
|
@@ -56552,6 +57294,18 @@ export type ProposalProtectedCallsAffinityMatrixRetrieveResponses = {
|
|
|
56552
57294
|
200: AffinityMatrixResponse;
|
|
56553
57295
|
};
|
|
56554
57296
|
export type ProposalProtectedCallsAffinityMatrixRetrieveResponse = ProposalProtectedCallsAffinityMatrixRetrieveResponses[keyof ProposalProtectedCallsAffinityMatrixRetrieveResponses];
|
|
57297
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveData = {
|
|
57298
|
+
body?: never;
|
|
57299
|
+
path: {
|
|
57300
|
+
uuid: string;
|
|
57301
|
+
};
|
|
57302
|
+
query?: never;
|
|
57303
|
+
url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/';
|
|
57304
|
+
};
|
|
57305
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses = {
|
|
57306
|
+
200: CallApplicantAttributeConfig;
|
|
57307
|
+
};
|
|
57308
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponse = ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses[keyof ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses];
|
|
56555
57309
|
export type ProposalProtectedCallsArchiveData = {
|
|
56556
57310
|
body?: never;
|
|
56557
57311
|
path: {
|
|
@@ -56685,6 +57439,21 @@ export type ProposalProtectedCallsCreateManualAssignmentResponses = {
|
|
|
56685
57439
|
200: CreateManualAssignmentResponse;
|
|
56686
57440
|
};
|
|
56687
57441
|
export type ProposalProtectedCallsCreateManualAssignmentResponse = ProposalProtectedCallsCreateManualAssignmentResponses[keyof ProposalProtectedCallsCreateManualAssignmentResponses];
|
|
57442
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyData = {
|
|
57443
|
+
body?: never;
|
|
57444
|
+
path: {
|
|
57445
|
+
uuid: string;
|
|
57446
|
+
};
|
|
57447
|
+
query?: never;
|
|
57448
|
+
url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/';
|
|
57449
|
+
};
|
|
57450
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses = {
|
|
57451
|
+
/**
|
|
57452
|
+
* No response body
|
|
57453
|
+
*/
|
|
57454
|
+
204: void;
|
|
57455
|
+
};
|
|
57456
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponse = ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses[keyof ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses];
|
|
56688
57457
|
export type ProposalProtectedCallsDeleteUserData = {
|
|
56689
57458
|
body: UserRoleDeleteRequest;
|
|
56690
57459
|
path: {
|
|
@@ -57330,6 +58099,30 @@ export type ProposalProtectedCallsSuggestionsListResponses = {
|
|
|
57330
58099
|
200: Array<ReviewerSuggestion>;
|
|
57331
58100
|
};
|
|
57332
58101
|
export type ProposalProtectedCallsSuggestionsListResponse = ProposalProtectedCallsSuggestionsListResponses[keyof ProposalProtectedCallsSuggestionsListResponses];
|
|
58102
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateData = {
|
|
58103
|
+
body?: PatchedCallApplicantAttributeConfigRequest;
|
|
58104
|
+
path: {
|
|
58105
|
+
uuid: string;
|
|
58106
|
+
};
|
|
58107
|
+
query?: never;
|
|
58108
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58109
|
+
};
|
|
58110
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses = {
|
|
58111
|
+
200: CallApplicantAttributeConfig;
|
|
58112
|
+
};
|
|
58113
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses];
|
|
58114
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigData = {
|
|
58115
|
+
body?: CallApplicantAttributeConfigRequest;
|
|
58116
|
+
path: {
|
|
58117
|
+
uuid: string;
|
|
58118
|
+
};
|
|
58119
|
+
query?: never;
|
|
58120
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58121
|
+
};
|
|
58122
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponses = {
|
|
58123
|
+
200: CallApplicantAttributeConfig;
|
|
58124
|
+
};
|
|
58125
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigResponses];
|
|
57333
58126
|
export type ProposalProtectedCallsUpdateUserData = {
|
|
57334
58127
|
body: UserRoleUpdateRequest;
|
|
57335
58128
|
path: {
|
|
@@ -57431,7 +58224,7 @@ export type ProposalPublicCallsListData = {
|
|
|
57431
58224
|
customer?: string;
|
|
57432
58225
|
customer_keyword?: string;
|
|
57433
58226
|
customer_uuid?: string;
|
|
57434
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
58227
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57435
58228
|
has_active_round?: boolean;
|
|
57436
58229
|
name?: string;
|
|
57437
58230
|
/**
|
|
@@ -57499,7 +58292,7 @@ export type ProposalPublicCallsRetrieveData = {
|
|
|
57499
58292
|
uuid: string;
|
|
57500
58293
|
};
|
|
57501
58294
|
query?: {
|
|
57502
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
58295
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
57503
58296
|
};
|
|
57504
58297
|
url: '/api/proposal-public-calls/{uuid}/';
|
|
57505
58298
|
};
|
|
@@ -57507,6 +58300,18 @@ export type ProposalPublicCallsRetrieveResponses = {
|
|
|
57507
58300
|
200: PublicCall;
|
|
57508
58301
|
};
|
|
57509
58302
|
export type ProposalPublicCallsRetrieveResponse = ProposalPublicCallsRetrieveResponses[keyof ProposalPublicCallsRetrieveResponses];
|
|
58303
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveData = {
|
|
58304
|
+
body?: never;
|
|
58305
|
+
path: {
|
|
58306
|
+
uuid: string;
|
|
58307
|
+
};
|
|
58308
|
+
query?: never;
|
|
58309
|
+
url: '/api/proposal-public-calls/{uuid}/check_eligibility/';
|
|
58310
|
+
};
|
|
58311
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponses = {
|
|
58312
|
+
200: EligibilityCheck;
|
|
58313
|
+
};
|
|
58314
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponse = ProposalPublicCallsCheckEligibilityRetrieveResponses[keyof ProposalPublicCallsCheckEligibilityRetrieveResponses];
|
|
57510
58315
|
export type ProposalRequestedOfferingsListData = {
|
|
57511
58316
|
body?: never;
|
|
57512
58317
|
path?: never;
|
|
@@ -65325,7 +66130,7 @@ export type UsersListData = {
|
|
|
65325
66130
|
* Email
|
|
65326
66131
|
*/
|
|
65327
66132
|
email?: string;
|
|
65328
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
66133
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65329
66134
|
/**
|
|
65330
66135
|
* Full name
|
|
65331
66136
|
*/
|
|
@@ -65547,7 +66352,7 @@ export type UsersRetrieveData = {
|
|
|
65547
66352
|
uuid: string;
|
|
65548
66353
|
};
|
|
65549
66354
|
query?: {
|
|
65550
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
66355
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65551
66356
|
};
|
|
65552
66357
|
url: '/api/users/{uuid}/';
|
|
65553
66358
|
};
|
|
@@ -65621,6 +66426,137 @@ export type UsersChangePasswordResponses = {
|
|
|
65621
66426
|
*/
|
|
65622
66427
|
200: unknown;
|
|
65623
66428
|
};
|
|
66429
|
+
export type UsersDataAccessRetrieveData = {
|
|
66430
|
+
body?: never;
|
|
66431
|
+
path: {
|
|
66432
|
+
uuid: string;
|
|
66433
|
+
};
|
|
66434
|
+
query?: never;
|
|
66435
|
+
url: '/api/users/{uuid}/data_access/';
|
|
66436
|
+
};
|
|
66437
|
+
export type UsersDataAccessRetrieveResponses = {
|
|
66438
|
+
200: UserDataAccess;
|
|
66439
|
+
};
|
|
66440
|
+
export type UsersDataAccessRetrieveResponse = UsersDataAccessRetrieveResponses[keyof UsersDataAccessRetrieveResponses];
|
|
66441
|
+
export type UsersDataAccessHistoryListData = {
|
|
66442
|
+
body?: never;
|
|
66443
|
+
path: {
|
|
66444
|
+
uuid: string;
|
|
66445
|
+
};
|
|
66446
|
+
query?: {
|
|
66447
|
+
/**
|
|
66448
|
+
* Filter by accessor type (staff, support, organization_member, self)
|
|
66449
|
+
*/
|
|
66450
|
+
accessor_type?: string;
|
|
66451
|
+
/**
|
|
66452
|
+
* Agreement date after
|
|
66453
|
+
*/
|
|
66454
|
+
agreement_date?: string;
|
|
66455
|
+
civil_number?: string;
|
|
66456
|
+
/**
|
|
66457
|
+
* Customer UUID
|
|
66458
|
+
*/
|
|
66459
|
+
customer_uuid?: string;
|
|
66460
|
+
/**
|
|
66461
|
+
* Date joined after
|
|
66462
|
+
*/
|
|
66463
|
+
date_joined?: string;
|
|
66464
|
+
description?: string;
|
|
66465
|
+
/**
|
|
66466
|
+
* Email
|
|
66467
|
+
*/
|
|
66468
|
+
email?: string;
|
|
66469
|
+
/**
|
|
66470
|
+
* Filter logs until this date (inclusive)
|
|
66471
|
+
*/
|
|
66472
|
+
end_date?: string;
|
|
66473
|
+
/**
|
|
66474
|
+
* Full name
|
|
66475
|
+
*/
|
|
66476
|
+
full_name?: string;
|
|
66477
|
+
/**
|
|
66478
|
+
* Is active
|
|
66479
|
+
*/
|
|
66480
|
+
is_active?: boolean;
|
|
66481
|
+
/**
|
|
66482
|
+
* Is staff
|
|
66483
|
+
*/
|
|
66484
|
+
is_staff?: boolean;
|
|
66485
|
+
/**
|
|
66486
|
+
* Is support
|
|
66487
|
+
*/
|
|
66488
|
+
is_support?: boolean;
|
|
66489
|
+
/**
|
|
66490
|
+
* Job title
|
|
66491
|
+
*/
|
|
66492
|
+
job_title?: string;
|
|
66493
|
+
/**
|
|
66494
|
+
* Date modified after
|
|
66495
|
+
*/
|
|
66496
|
+
modified?: string;
|
|
66497
|
+
/**
|
|
66498
|
+
* Native name
|
|
66499
|
+
*/
|
|
66500
|
+
native_name?: string;
|
|
66501
|
+
/**
|
|
66502
|
+
* Ordering
|
|
66503
|
+
*
|
|
66504
|
+
*
|
|
66505
|
+
*/
|
|
66506
|
+
o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
|
|
66507
|
+
/**
|
|
66508
|
+
* Organization
|
|
66509
|
+
*/
|
|
66510
|
+
organization?: string;
|
|
66511
|
+
/**
|
|
66512
|
+
* Organization roles
|
|
66513
|
+
*/
|
|
66514
|
+
organization_roles?: string;
|
|
66515
|
+
/**
|
|
66516
|
+
* A page number within the paginated result set.
|
|
66517
|
+
*/
|
|
66518
|
+
page?: number;
|
|
66519
|
+
/**
|
|
66520
|
+
* Number of results to return per page.
|
|
66521
|
+
*/
|
|
66522
|
+
page_size?: number;
|
|
66523
|
+
phone_number?: string;
|
|
66524
|
+
/**
|
|
66525
|
+
* Project roles
|
|
66526
|
+
*/
|
|
66527
|
+
project_roles?: string;
|
|
66528
|
+
/**
|
|
66529
|
+
* Project UUID
|
|
66530
|
+
*/
|
|
66531
|
+
project_uuid?: string;
|
|
66532
|
+
/**
|
|
66533
|
+
* Filter by first name, last name, civil number, username or email
|
|
66534
|
+
*/
|
|
66535
|
+
query?: string;
|
|
66536
|
+
registration_method?: string;
|
|
66537
|
+
/**
|
|
66538
|
+
* Filter logs from this date (inclusive)
|
|
66539
|
+
*/
|
|
66540
|
+
start_date?: string;
|
|
66541
|
+
/**
|
|
66542
|
+
* User keyword
|
|
66543
|
+
*/
|
|
66544
|
+
user_keyword?: string;
|
|
66545
|
+
/**
|
|
66546
|
+
* Username (exact)
|
|
66547
|
+
*/
|
|
66548
|
+
username?: string;
|
|
66549
|
+
/**
|
|
66550
|
+
* Comma-separated usernames
|
|
66551
|
+
*/
|
|
66552
|
+
username_list?: string;
|
|
66553
|
+
};
|
|
66554
|
+
url: '/api/users/{uuid}/data_access_history/';
|
|
66555
|
+
};
|
|
66556
|
+
export type UsersDataAccessHistoryListResponses = {
|
|
66557
|
+
200: Array<UserDataAccessLog>;
|
|
66558
|
+
};
|
|
66559
|
+
export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
|
|
65624
66560
|
export type UsersPullRemoteUserData = {
|
|
65625
66561
|
body?: never;
|
|
65626
66562
|
path: {
|
|
@@ -65675,7 +66611,7 @@ export type UsersMeRetrieveData = {
|
|
|
65675
66611
|
body?: never;
|
|
65676
66612
|
path?: never;
|
|
65677
66613
|
query?: {
|
|
65678
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
66614
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | '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'>;
|
|
65679
66615
|
};
|
|
65680
66616
|
url: '/api/users/me/';
|
|
65681
66617
|
};
|