waldur-js-client 7.9.9-dev.2 → 7.9.9-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +93 -1
- package/dist/sdk.gen.js +442 -0
- package/dist/types.gen.d.ts +1596 -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;
|
|
@@ -19282,6 +19688,10 @@ export type UserActionSummary = {
|
|
|
19282
19688
|
};
|
|
19283
19689
|
overdue: number;
|
|
19284
19690
|
};
|
|
19691
|
+
export type UserActiveStatusCount = {
|
|
19692
|
+
status: string;
|
|
19693
|
+
count: number;
|
|
19694
|
+
};
|
|
19285
19695
|
export type UserAffiliationCount = {
|
|
19286
19696
|
/**
|
|
19287
19697
|
* Affiliation name
|
|
@@ -19380,6 +19790,27 @@ export type UserConsentInfo = {
|
|
|
19380
19790
|
readonly agreement_date: string;
|
|
19381
19791
|
readonly is_revoked: boolean;
|
|
19382
19792
|
};
|
|
19793
|
+
export type UserDataAccess = {
|
|
19794
|
+
administrative_access: AdministrativeAccess;
|
|
19795
|
+
organizational_access: Array<OrganizationalAccess>;
|
|
19796
|
+
service_provider_access: Array<ServiceProviderAccess>;
|
|
19797
|
+
summary: DataAccessSummary;
|
|
19798
|
+
};
|
|
19799
|
+
export type UserDataAccessLog = {
|
|
19800
|
+
uuid: string;
|
|
19801
|
+
timestamp: string;
|
|
19802
|
+
accessor_type: AccessorTypeEnum;
|
|
19803
|
+
accessed_fields: Array<string>;
|
|
19804
|
+
accessor_category?: string;
|
|
19805
|
+
accessor?: AccessorUser;
|
|
19806
|
+
/**
|
|
19807
|
+
* An IPv4 or IPv6 address.
|
|
19808
|
+
*/
|
|
19809
|
+
ip_address?: string | null;
|
|
19810
|
+
context?: {
|
|
19811
|
+
[key: string]: unknown;
|
|
19812
|
+
};
|
|
19813
|
+
};
|
|
19383
19814
|
export type UserEmailChangeRequest = {
|
|
19384
19815
|
email: string;
|
|
19385
19816
|
};
|
|
@@ -19407,6 +19838,10 @@ export type UserInfoRequest = {
|
|
|
19407
19838
|
shortname?: string | null;
|
|
19408
19839
|
user: string;
|
|
19409
19840
|
};
|
|
19841
|
+
export type UserLanguageCount = {
|
|
19842
|
+
language: string;
|
|
19843
|
+
count: number;
|
|
19844
|
+
};
|
|
19410
19845
|
export type UserOfferingConsent = {
|
|
19411
19846
|
readonly uuid: string;
|
|
19412
19847
|
readonly user_uuid: string;
|
|
@@ -19430,6 +19865,10 @@ export type UserOfferingConsent = {
|
|
|
19430
19865
|
readonly modified: string;
|
|
19431
19866
|
readonly has_consent: boolean;
|
|
19432
19867
|
readonly requires_reconsent: boolean;
|
|
19868
|
+
/**
|
|
19869
|
+
* List of user attributes that will be shared with service provider
|
|
19870
|
+
*/
|
|
19871
|
+
readonly collected_attributes: Array<string>;
|
|
19433
19872
|
};
|
|
19434
19873
|
export type UserOfferingConsentCreate = {
|
|
19435
19874
|
offering: string;
|
|
@@ -19450,6 +19889,10 @@ export type UserOrganizationCount = {
|
|
|
19450
19889
|
*/
|
|
19451
19890
|
count: number;
|
|
19452
19891
|
};
|
|
19892
|
+
export type UserRegistrationTrend = {
|
|
19893
|
+
month: string;
|
|
19894
|
+
count: number;
|
|
19895
|
+
};
|
|
19453
19896
|
export type UserRequest = {
|
|
19454
19897
|
/**
|
|
19455
19898
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -19497,6 +19940,33 @@ export type UserRequest = {
|
|
|
19497
19940
|
last_name?: string;
|
|
19498
19941
|
birth_date?: string | null;
|
|
19499
19942
|
image?: (Blob | File) | null;
|
|
19943
|
+
/**
|
|
19944
|
+
* ISO 5218 gender code
|
|
19945
|
+
*/
|
|
19946
|
+
gender?: GenderEnum | NullEnum | null;
|
|
19947
|
+
/**
|
|
19948
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
19949
|
+
*/
|
|
19950
|
+
personal_title?: string;
|
|
19951
|
+
place_of_birth?: string;
|
|
19952
|
+
country_of_residence?: string;
|
|
19953
|
+
/**
|
|
19954
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
19955
|
+
*/
|
|
19956
|
+
nationality?: string;
|
|
19957
|
+
/**
|
|
19958
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
19959
|
+
*/
|
|
19960
|
+
nationalities?: unknown;
|
|
19961
|
+
organization_country?: string;
|
|
19962
|
+
/**
|
|
19963
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
19964
|
+
*/
|
|
19965
|
+
organization_type?: string;
|
|
19966
|
+
/**
|
|
19967
|
+
* REFEDS assurance profile URIs from identity provider
|
|
19968
|
+
*/
|
|
19969
|
+
eduperson_assurance?: unknown;
|
|
19500
19970
|
};
|
|
19501
19971
|
export type UserRoleCreateRequest = {
|
|
19502
19972
|
role: string;
|
|
@@ -21151,6 +21621,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21151
21621
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21152
21622
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21153
21623
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
21624
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
21625
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
21626
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
21154
21627
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21155
21628
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21156
21629
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21189,6 +21662,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
21189
21662
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21190
21663
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21191
21664
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
21665
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
21666
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
21667
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21192
21668
|
};
|
|
21193
21669
|
export type ConstanceSettingsRequestMultipart = {
|
|
21194
21670
|
SITE_NAME?: string;
|
|
@@ -21350,6 +21826,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21350
21826
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
21351
21827
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
21352
21828
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
21829
|
+
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<string>;
|
|
21830
|
+
INVITATION_ALLOWED_FIELDS?: Array<string>;
|
|
21831
|
+
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<string>;
|
|
21353
21832
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
21354
21833
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
21355
21834
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
@@ -21388,6 +21867,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
21388
21867
|
USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
|
|
21389
21868
|
USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
|
|
21390
21869
|
USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
|
|
21870
|
+
USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
|
|
21871
|
+
USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
|
|
21872
|
+
USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
|
|
21391
21873
|
};
|
|
21392
21874
|
export type PaymentRequestForm = {
|
|
21393
21875
|
profile: string;
|
|
@@ -21502,6 +21984,33 @@ export type UserRequestForm = {
|
|
|
21502
21984
|
last_name?: string;
|
|
21503
21985
|
birth_date?: string | null;
|
|
21504
21986
|
image?: (Blob | File) | null;
|
|
21987
|
+
/**
|
|
21988
|
+
* ISO 5218 gender code
|
|
21989
|
+
*/
|
|
21990
|
+
gender?: GenderEnum | NullEnum | null;
|
|
21991
|
+
/**
|
|
21992
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
21993
|
+
*/
|
|
21994
|
+
personal_title?: string;
|
|
21995
|
+
place_of_birth?: string;
|
|
21996
|
+
country_of_residence?: string;
|
|
21997
|
+
/**
|
|
21998
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
21999
|
+
*/
|
|
22000
|
+
nationality?: string;
|
|
22001
|
+
/**
|
|
22002
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22003
|
+
*/
|
|
22004
|
+
nationalities?: unknown;
|
|
22005
|
+
organization_country?: string;
|
|
22006
|
+
/**
|
|
22007
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22008
|
+
*/
|
|
22009
|
+
organization_type?: string;
|
|
22010
|
+
/**
|
|
22011
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22012
|
+
*/
|
|
22013
|
+
eduperson_assurance?: unknown;
|
|
21505
22014
|
};
|
|
21506
22015
|
export type UserRequestMultipart = {
|
|
21507
22016
|
/**
|
|
@@ -21550,6 +22059,33 @@ export type UserRequestMultipart = {
|
|
|
21550
22059
|
last_name?: string;
|
|
21551
22060
|
birth_date?: string | null;
|
|
21552
22061
|
image?: (Blob | File) | null;
|
|
22062
|
+
/**
|
|
22063
|
+
* ISO 5218 gender code
|
|
22064
|
+
*/
|
|
22065
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22066
|
+
/**
|
|
22067
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22068
|
+
*/
|
|
22069
|
+
personal_title?: string;
|
|
22070
|
+
place_of_birth?: string;
|
|
22071
|
+
country_of_residence?: string;
|
|
22072
|
+
/**
|
|
22073
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22074
|
+
*/
|
|
22075
|
+
nationality?: string;
|
|
22076
|
+
/**
|
|
22077
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22078
|
+
*/
|
|
22079
|
+
nationalities?: unknown;
|
|
22080
|
+
organization_country?: string;
|
|
22081
|
+
/**
|
|
22082
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22083
|
+
*/
|
|
22084
|
+
organization_type?: string;
|
|
22085
|
+
/**
|
|
22086
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22087
|
+
*/
|
|
22088
|
+
eduperson_assurance?: unknown;
|
|
21553
22089
|
};
|
|
21554
22090
|
export type PatchedUserRequestForm = {
|
|
21555
22091
|
/**
|
|
@@ -21597,6 +22133,33 @@ export type PatchedUserRequestForm = {
|
|
|
21597
22133
|
last_name?: string;
|
|
21598
22134
|
birth_date?: string | null;
|
|
21599
22135
|
image?: (Blob | File) | null;
|
|
22136
|
+
/**
|
|
22137
|
+
* ISO 5218 gender code
|
|
22138
|
+
*/
|
|
22139
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22140
|
+
/**
|
|
22141
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22142
|
+
*/
|
|
22143
|
+
personal_title?: string;
|
|
22144
|
+
place_of_birth?: string;
|
|
22145
|
+
country_of_residence?: string;
|
|
22146
|
+
/**
|
|
22147
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22148
|
+
*/
|
|
22149
|
+
nationality?: string;
|
|
22150
|
+
/**
|
|
22151
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22152
|
+
*/
|
|
22153
|
+
nationalities?: unknown;
|
|
22154
|
+
organization_country?: string;
|
|
22155
|
+
/**
|
|
22156
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22157
|
+
*/
|
|
22158
|
+
organization_type?: string;
|
|
22159
|
+
/**
|
|
22160
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22161
|
+
*/
|
|
22162
|
+
eduperson_assurance?: unknown;
|
|
21600
22163
|
};
|
|
21601
22164
|
export type PatchedUserRequestMultipart = {
|
|
21602
22165
|
/**
|
|
@@ -21644,6 +22207,33 @@ export type PatchedUserRequestMultipart = {
|
|
|
21644
22207
|
last_name?: string;
|
|
21645
22208
|
birth_date?: string | null;
|
|
21646
22209
|
image?: (Blob | File) | null;
|
|
22210
|
+
/**
|
|
22211
|
+
* ISO 5218 gender code
|
|
22212
|
+
*/
|
|
22213
|
+
gender?: GenderEnum | NullEnum | null;
|
|
22214
|
+
/**
|
|
22215
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
22216
|
+
*/
|
|
22217
|
+
personal_title?: string;
|
|
22218
|
+
place_of_birth?: string;
|
|
22219
|
+
country_of_residence?: string;
|
|
22220
|
+
/**
|
|
22221
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
22222
|
+
*/
|
|
22223
|
+
nationality?: string;
|
|
22224
|
+
/**
|
|
22225
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
22226
|
+
*/
|
|
22227
|
+
nationalities?: unknown;
|
|
22228
|
+
organization_country?: string;
|
|
22229
|
+
/**
|
|
22230
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
22231
|
+
*/
|
|
22232
|
+
organization_type?: string;
|
|
22233
|
+
/**
|
|
22234
|
+
* REFEDS assurance profile URIs from identity provider
|
|
22235
|
+
*/
|
|
22236
|
+
eduperson_assurance?: unknown;
|
|
21647
22237
|
};
|
|
21648
22238
|
/**
|
|
21649
22239
|
* A page number within the paginated result set.
|
|
@@ -28565,6 +29155,107 @@ export type DailyQuotasRetrieveResponses = {
|
|
|
28565
29155
|
};
|
|
28566
29156
|
};
|
|
28567
29157
|
export type DailyQuotasRetrieveResponse = DailyQuotasRetrieveResponses[keyof DailyQuotasRetrieveResponses];
|
|
29158
|
+
export type DataAccessLogsListData = {
|
|
29159
|
+
body?: never;
|
|
29160
|
+
path?: never;
|
|
29161
|
+
query?: {
|
|
29162
|
+
/**
|
|
29163
|
+
* Type of accessor
|
|
29164
|
+
*
|
|
29165
|
+
*
|
|
29166
|
+
*/
|
|
29167
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29168
|
+
accessor_uuid?: string;
|
|
29169
|
+
end_date?: string;
|
|
29170
|
+
/**
|
|
29171
|
+
* Ordering
|
|
29172
|
+
*
|
|
29173
|
+
*
|
|
29174
|
+
*/
|
|
29175
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29176
|
+
/**
|
|
29177
|
+
* A page number within the paginated result set.
|
|
29178
|
+
*/
|
|
29179
|
+
page?: number;
|
|
29180
|
+
/**
|
|
29181
|
+
* Number of results to return per page.
|
|
29182
|
+
*/
|
|
29183
|
+
page_size?: number;
|
|
29184
|
+
query?: string;
|
|
29185
|
+
start_date?: string;
|
|
29186
|
+
user_uuid?: string;
|
|
29187
|
+
};
|
|
29188
|
+
url: '/api/data-access-logs/';
|
|
29189
|
+
};
|
|
29190
|
+
export type DataAccessLogsListResponses = {
|
|
29191
|
+
200: Array<GlobalUserDataAccessLog>;
|
|
29192
|
+
};
|
|
29193
|
+
export type DataAccessLogsListResponse = DataAccessLogsListResponses[keyof DataAccessLogsListResponses];
|
|
29194
|
+
export type DataAccessLogsCountData = {
|
|
29195
|
+
body?: never;
|
|
29196
|
+
path?: never;
|
|
29197
|
+
query?: {
|
|
29198
|
+
/**
|
|
29199
|
+
* Type of accessor
|
|
29200
|
+
*
|
|
29201
|
+
*
|
|
29202
|
+
*/
|
|
29203
|
+
accessor_type?: 'organization_member' | 'self' | 'service_provider' | 'staff' | 'support';
|
|
29204
|
+
accessor_uuid?: string;
|
|
29205
|
+
end_date?: string;
|
|
29206
|
+
/**
|
|
29207
|
+
* Ordering
|
|
29208
|
+
*
|
|
29209
|
+
*
|
|
29210
|
+
*/
|
|
29211
|
+
o?: Array<'-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username'>;
|
|
29212
|
+
/**
|
|
29213
|
+
* A page number within the paginated result set.
|
|
29214
|
+
*/
|
|
29215
|
+
page?: number;
|
|
29216
|
+
/**
|
|
29217
|
+
* Number of results to return per page.
|
|
29218
|
+
*/
|
|
29219
|
+
page_size?: number;
|
|
29220
|
+
query?: string;
|
|
29221
|
+
start_date?: string;
|
|
29222
|
+
user_uuid?: string;
|
|
29223
|
+
};
|
|
29224
|
+
url: '/api/data-access-logs/';
|
|
29225
|
+
};
|
|
29226
|
+
export type DataAccessLogsCountResponses = {
|
|
29227
|
+
/**
|
|
29228
|
+
* No response body
|
|
29229
|
+
*/
|
|
29230
|
+
200: unknown;
|
|
29231
|
+
};
|
|
29232
|
+
export type DataAccessLogsDestroyData = {
|
|
29233
|
+
body?: never;
|
|
29234
|
+
path: {
|
|
29235
|
+
uuid: string;
|
|
29236
|
+
};
|
|
29237
|
+
query?: never;
|
|
29238
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29239
|
+
};
|
|
29240
|
+
export type DataAccessLogsDestroyResponses = {
|
|
29241
|
+
/**
|
|
29242
|
+
* No response body
|
|
29243
|
+
*/
|
|
29244
|
+
204: void;
|
|
29245
|
+
};
|
|
29246
|
+
export type DataAccessLogsDestroyResponse = DataAccessLogsDestroyResponses[keyof DataAccessLogsDestroyResponses];
|
|
29247
|
+
export type DataAccessLogsRetrieveData = {
|
|
29248
|
+
body?: never;
|
|
29249
|
+
path: {
|
|
29250
|
+
uuid: string;
|
|
29251
|
+
};
|
|
29252
|
+
query?: never;
|
|
29253
|
+
url: '/api/data-access-logs/{uuid}/';
|
|
29254
|
+
};
|
|
29255
|
+
export type DataAccessLogsRetrieveResponses = {
|
|
29256
|
+
200: GlobalUserDataAccessLog;
|
|
29257
|
+
};
|
|
29258
|
+
export type DataAccessLogsRetrieveResponse = DataAccessLogsRetrieveResponses[keyof DataAccessLogsRetrieveResponses];
|
|
28568
29259
|
export type DatabaseStatsRetrieveData = {
|
|
28569
29260
|
body?: never;
|
|
28570
29261
|
path?: never;
|
|
@@ -35321,7 +36012,7 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
35321
36012
|
* Created after
|
|
35322
36013
|
*/
|
|
35323
36014
|
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'>;
|
|
36015
|
+
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
36016
|
/**
|
|
35326
36017
|
* User Has Consent
|
|
35327
36018
|
*/
|
|
@@ -35493,7 +36184,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
35493
36184
|
uuid: string;
|
|
35494
36185
|
};
|
|
35495
36186
|
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'>;
|
|
36187
|
+
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
36188
|
};
|
|
35498
36189
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
35499
36190
|
};
|
|
@@ -38029,6 +38720,21 @@ export type MarketplaceProviderOfferingsCustomersListResponses = {
|
|
|
38029
38720
|
200: Array<ProviderOfferingCustomer>;
|
|
38030
38721
|
};
|
|
38031
38722
|
export type MarketplaceProviderOfferingsCustomersListResponse = MarketplaceProviderOfferingsCustomersListResponses[keyof MarketplaceProviderOfferingsCustomersListResponses];
|
|
38723
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyData = {
|
|
38724
|
+
body?: never;
|
|
38725
|
+
path: {
|
|
38726
|
+
uuid: string;
|
|
38727
|
+
};
|
|
38728
|
+
query?: never;
|
|
38729
|
+
url: '/api/marketplace-provider-offerings/{uuid}/delete-user-attribute-config/';
|
|
38730
|
+
};
|
|
38731
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses = {
|
|
38732
|
+
/**
|
|
38733
|
+
* No response body
|
|
38734
|
+
*/
|
|
38735
|
+
204: void;
|
|
38736
|
+
};
|
|
38737
|
+
export type MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponse = MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses[keyof MarketplaceProviderOfferingsDeleteUserAttributeConfigDestroyResponses];
|
|
38032
38738
|
export type MarketplaceProviderOfferingsDeleteEndpointData = {
|
|
38033
38739
|
body: EndpointUuidRequest;
|
|
38034
38740
|
path: {
|
|
@@ -38547,7 +39253,7 @@ export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
|
38547
39253
|
uuid: string;
|
|
38548
39254
|
};
|
|
38549
39255
|
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'>;
|
|
39256
|
+
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
39257
|
/**
|
|
38552
39258
|
* A page number within the paginated result set.
|
|
38553
39259
|
*/
|
|
@@ -38996,6 +39702,42 @@ export type MarketplaceProviderOfferingsUnpauseResponses = {
|
|
|
38996
39702
|
200: DetailState;
|
|
38997
39703
|
};
|
|
38998
39704
|
export type MarketplaceProviderOfferingsUnpauseResponse = MarketplaceProviderOfferingsUnpauseResponses[keyof MarketplaceProviderOfferingsUnpauseResponses];
|
|
39705
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateData = {
|
|
39706
|
+
body?: PatchedOfferingUserAttributeConfigRequest;
|
|
39707
|
+
path: {
|
|
39708
|
+
uuid: string;
|
|
39709
|
+
};
|
|
39710
|
+
query?: never;
|
|
39711
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
39712
|
+
};
|
|
39713
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses = {
|
|
39714
|
+
200: OfferingUserAttributeConfig;
|
|
39715
|
+
};
|
|
39716
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdateResponses];
|
|
39717
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigData = {
|
|
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 MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses = {
|
|
39726
|
+
200: OfferingUserAttributeConfig;
|
|
39727
|
+
};
|
|
39728
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigResponses];
|
|
39729
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateData = {
|
|
39730
|
+
body?: OfferingUserAttributeConfigRequest;
|
|
39731
|
+
path: {
|
|
39732
|
+
uuid: string;
|
|
39733
|
+
};
|
|
39734
|
+
query?: never;
|
|
39735
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/';
|
|
39736
|
+
};
|
|
39737
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses = {
|
|
39738
|
+
200: OfferingUserAttributeConfig;
|
|
39739
|
+
};
|
|
39740
|
+
export type MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponse = MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses[keyof MarketplaceProviderOfferingsUpdateUserAttributeConfigUpdateResponses];
|
|
38999
39741
|
export type MarketplaceProviderOfferingsUpdateAttributesData = {
|
|
39000
39742
|
body?: {
|
|
39001
39743
|
[key: string]: unknown;
|
|
@@ -39216,6 +39958,18 @@ export type MarketplaceProviderOfferingsUpdateUserResponses = {
|
|
|
39216
39958
|
200: UserRoleExpirationTime;
|
|
39217
39959
|
};
|
|
39218
39960
|
export type MarketplaceProviderOfferingsUpdateUserResponse = MarketplaceProviderOfferingsUpdateUserResponses[keyof MarketplaceProviderOfferingsUpdateUserResponses];
|
|
39961
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveData = {
|
|
39962
|
+
body?: never;
|
|
39963
|
+
path: {
|
|
39964
|
+
uuid: string;
|
|
39965
|
+
};
|
|
39966
|
+
query?: never;
|
|
39967
|
+
url: '/api/marketplace-provider-offerings/{uuid}/user-attribute-config/';
|
|
39968
|
+
};
|
|
39969
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses = {
|
|
39970
|
+
200: OfferingUserAttributeConfig;
|
|
39971
|
+
};
|
|
39972
|
+
export type MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponse = MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses[keyof MarketplaceProviderOfferingsUserAttributeConfigRetrieveResponses];
|
|
39219
39973
|
export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
|
|
39220
39974
|
body?: never;
|
|
39221
39975
|
path: {
|
|
@@ -56380,7 +57134,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
56380
57134
|
customer?: string;
|
|
56381
57135
|
customer_keyword?: string;
|
|
56382
57136
|
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'>;
|
|
57137
|
+
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
57138
|
has_active_round?: boolean;
|
|
56385
57139
|
name?: string;
|
|
56386
57140
|
/**
|
|
@@ -56473,7 +57227,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
56473
57227
|
uuid: string;
|
|
56474
57228
|
};
|
|
56475
57229
|
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'>;
|
|
57230
|
+
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
57231
|
};
|
|
56478
57232
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
56479
57233
|
};
|
|
@@ -56552,6 +57306,18 @@ export type ProposalProtectedCallsAffinityMatrixRetrieveResponses = {
|
|
|
56552
57306
|
200: AffinityMatrixResponse;
|
|
56553
57307
|
};
|
|
56554
57308
|
export type ProposalProtectedCallsAffinityMatrixRetrieveResponse = ProposalProtectedCallsAffinityMatrixRetrieveResponses[keyof ProposalProtectedCallsAffinityMatrixRetrieveResponses];
|
|
57309
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveData = {
|
|
57310
|
+
body?: never;
|
|
57311
|
+
path: {
|
|
57312
|
+
uuid: string;
|
|
57313
|
+
};
|
|
57314
|
+
query?: never;
|
|
57315
|
+
url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/';
|
|
57316
|
+
};
|
|
57317
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses = {
|
|
57318
|
+
200: CallApplicantAttributeConfig;
|
|
57319
|
+
};
|
|
57320
|
+
export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponse = ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses[keyof ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses];
|
|
56555
57321
|
export type ProposalProtectedCallsArchiveData = {
|
|
56556
57322
|
body?: never;
|
|
56557
57323
|
path: {
|
|
@@ -56685,6 +57451,21 @@ export type ProposalProtectedCallsCreateManualAssignmentResponses = {
|
|
|
56685
57451
|
200: CreateManualAssignmentResponse;
|
|
56686
57452
|
};
|
|
56687
57453
|
export type ProposalProtectedCallsCreateManualAssignmentResponse = ProposalProtectedCallsCreateManualAssignmentResponses[keyof ProposalProtectedCallsCreateManualAssignmentResponses];
|
|
57454
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyData = {
|
|
57455
|
+
body?: never;
|
|
57456
|
+
path: {
|
|
57457
|
+
uuid: string;
|
|
57458
|
+
};
|
|
57459
|
+
query?: never;
|
|
57460
|
+
url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/';
|
|
57461
|
+
};
|
|
57462
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses = {
|
|
57463
|
+
/**
|
|
57464
|
+
* No response body
|
|
57465
|
+
*/
|
|
57466
|
+
204: void;
|
|
57467
|
+
};
|
|
57468
|
+
export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponse = ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses[keyof ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses];
|
|
56688
57469
|
export type ProposalProtectedCallsDeleteUserData = {
|
|
56689
57470
|
body: UserRoleDeleteRequest;
|
|
56690
57471
|
path: {
|
|
@@ -57330,6 +58111,30 @@ export type ProposalProtectedCallsSuggestionsListResponses = {
|
|
|
57330
58111
|
200: Array<ReviewerSuggestion>;
|
|
57331
58112
|
};
|
|
57332
58113
|
export type ProposalProtectedCallsSuggestionsListResponse = ProposalProtectedCallsSuggestionsListResponses[keyof ProposalProtectedCallsSuggestionsListResponses];
|
|
58114
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateData = {
|
|
58115
|
+
body?: PatchedCallApplicantAttributeConfigRequest;
|
|
58116
|
+
path: {
|
|
58117
|
+
uuid: string;
|
|
58118
|
+
};
|
|
58119
|
+
query?: never;
|
|
58120
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58121
|
+
};
|
|
58122
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses = {
|
|
58123
|
+
200: CallApplicantAttributeConfig;
|
|
58124
|
+
};
|
|
58125
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses];
|
|
58126
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigData = {
|
|
58127
|
+
body?: CallApplicantAttributeConfigRequest;
|
|
58128
|
+
path: {
|
|
58129
|
+
uuid: string;
|
|
58130
|
+
};
|
|
58131
|
+
query?: never;
|
|
58132
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
|
|
58133
|
+
};
|
|
58134
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponses = {
|
|
58135
|
+
200: CallApplicantAttributeConfig;
|
|
58136
|
+
};
|
|
58137
|
+
export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigResponses];
|
|
57333
58138
|
export type ProposalProtectedCallsUpdateUserData = {
|
|
57334
58139
|
body: UserRoleUpdateRequest;
|
|
57335
58140
|
path: {
|
|
@@ -57431,7 +58236,7 @@ export type ProposalPublicCallsListData = {
|
|
|
57431
58236
|
customer?: string;
|
|
57432
58237
|
customer_keyword?: string;
|
|
57433
58238
|
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'>;
|
|
58239
|
+
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
58240
|
has_active_round?: boolean;
|
|
57436
58241
|
name?: string;
|
|
57437
58242
|
/**
|
|
@@ -57499,7 +58304,7 @@ export type ProposalPublicCallsRetrieveData = {
|
|
|
57499
58304
|
uuid: string;
|
|
57500
58305
|
};
|
|
57501
58306
|
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'>;
|
|
58307
|
+
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
58308
|
};
|
|
57504
58309
|
url: '/api/proposal-public-calls/{uuid}/';
|
|
57505
58310
|
};
|
|
@@ -57507,6 +58312,18 @@ export type ProposalPublicCallsRetrieveResponses = {
|
|
|
57507
58312
|
200: PublicCall;
|
|
57508
58313
|
};
|
|
57509
58314
|
export type ProposalPublicCallsRetrieveResponse = ProposalPublicCallsRetrieveResponses[keyof ProposalPublicCallsRetrieveResponses];
|
|
58315
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveData = {
|
|
58316
|
+
body?: never;
|
|
58317
|
+
path: {
|
|
58318
|
+
uuid: string;
|
|
58319
|
+
};
|
|
58320
|
+
query?: never;
|
|
58321
|
+
url: '/api/proposal-public-calls/{uuid}/check_eligibility/';
|
|
58322
|
+
};
|
|
58323
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponses = {
|
|
58324
|
+
200: EligibilityCheck;
|
|
58325
|
+
};
|
|
58326
|
+
export type ProposalPublicCallsCheckEligibilityRetrieveResponse = ProposalPublicCallsCheckEligibilityRetrieveResponses[keyof ProposalPublicCallsCheckEligibilityRetrieveResponses];
|
|
57510
58327
|
export type ProposalRequestedOfferingsListData = {
|
|
57511
58328
|
body?: never;
|
|
57512
58329
|
path?: never;
|
|
@@ -65325,7 +66142,7 @@ export type UsersListData = {
|
|
|
65325
66142
|
* Email
|
|
65326
66143
|
*/
|
|
65327
66144
|
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'>;
|
|
66145
|
+
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
66146
|
/**
|
|
65330
66147
|
* Full name
|
|
65331
66148
|
*/
|
|
@@ -65547,7 +66364,7 @@ export type UsersRetrieveData = {
|
|
|
65547
66364
|
uuid: string;
|
|
65548
66365
|
};
|
|
65549
66366
|
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'>;
|
|
66367
|
+
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
66368
|
};
|
|
65552
66369
|
url: '/api/users/{uuid}/';
|
|
65553
66370
|
};
|
|
@@ -65621,6 +66438,137 @@ export type UsersChangePasswordResponses = {
|
|
|
65621
66438
|
*/
|
|
65622
66439
|
200: unknown;
|
|
65623
66440
|
};
|
|
66441
|
+
export type UsersDataAccessRetrieveData = {
|
|
66442
|
+
body?: never;
|
|
66443
|
+
path: {
|
|
66444
|
+
uuid: string;
|
|
66445
|
+
};
|
|
66446
|
+
query?: never;
|
|
66447
|
+
url: '/api/users/{uuid}/data_access/';
|
|
66448
|
+
};
|
|
66449
|
+
export type UsersDataAccessRetrieveResponses = {
|
|
66450
|
+
200: UserDataAccess;
|
|
66451
|
+
};
|
|
66452
|
+
export type UsersDataAccessRetrieveResponse = UsersDataAccessRetrieveResponses[keyof UsersDataAccessRetrieveResponses];
|
|
66453
|
+
export type UsersDataAccessHistoryListData = {
|
|
66454
|
+
body?: never;
|
|
66455
|
+
path: {
|
|
66456
|
+
uuid: string;
|
|
66457
|
+
};
|
|
66458
|
+
query?: {
|
|
66459
|
+
/**
|
|
66460
|
+
* Filter by accessor type (staff, support, organization_member, self)
|
|
66461
|
+
*/
|
|
66462
|
+
accessor_type?: string;
|
|
66463
|
+
/**
|
|
66464
|
+
* Agreement date after
|
|
66465
|
+
*/
|
|
66466
|
+
agreement_date?: string;
|
|
66467
|
+
civil_number?: string;
|
|
66468
|
+
/**
|
|
66469
|
+
* Customer UUID
|
|
66470
|
+
*/
|
|
66471
|
+
customer_uuid?: string;
|
|
66472
|
+
/**
|
|
66473
|
+
* Date joined after
|
|
66474
|
+
*/
|
|
66475
|
+
date_joined?: string;
|
|
66476
|
+
description?: string;
|
|
66477
|
+
/**
|
|
66478
|
+
* Email
|
|
66479
|
+
*/
|
|
66480
|
+
email?: string;
|
|
66481
|
+
/**
|
|
66482
|
+
* Filter logs until this date (inclusive)
|
|
66483
|
+
*/
|
|
66484
|
+
end_date?: string;
|
|
66485
|
+
/**
|
|
66486
|
+
* Full name
|
|
66487
|
+
*/
|
|
66488
|
+
full_name?: string;
|
|
66489
|
+
/**
|
|
66490
|
+
* Is active
|
|
66491
|
+
*/
|
|
66492
|
+
is_active?: boolean;
|
|
66493
|
+
/**
|
|
66494
|
+
* Is staff
|
|
66495
|
+
*/
|
|
66496
|
+
is_staff?: boolean;
|
|
66497
|
+
/**
|
|
66498
|
+
* Is support
|
|
66499
|
+
*/
|
|
66500
|
+
is_support?: boolean;
|
|
66501
|
+
/**
|
|
66502
|
+
* Job title
|
|
66503
|
+
*/
|
|
66504
|
+
job_title?: string;
|
|
66505
|
+
/**
|
|
66506
|
+
* Date modified after
|
|
66507
|
+
*/
|
|
66508
|
+
modified?: string;
|
|
66509
|
+
/**
|
|
66510
|
+
* Native name
|
|
66511
|
+
*/
|
|
66512
|
+
native_name?: string;
|
|
66513
|
+
/**
|
|
66514
|
+
* Ordering
|
|
66515
|
+
*
|
|
66516
|
+
*
|
|
66517
|
+
*/
|
|
66518
|
+
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'>;
|
|
66519
|
+
/**
|
|
66520
|
+
* Organization
|
|
66521
|
+
*/
|
|
66522
|
+
organization?: string;
|
|
66523
|
+
/**
|
|
66524
|
+
* Organization roles
|
|
66525
|
+
*/
|
|
66526
|
+
organization_roles?: string;
|
|
66527
|
+
/**
|
|
66528
|
+
* A page number within the paginated result set.
|
|
66529
|
+
*/
|
|
66530
|
+
page?: number;
|
|
66531
|
+
/**
|
|
66532
|
+
* Number of results to return per page.
|
|
66533
|
+
*/
|
|
66534
|
+
page_size?: number;
|
|
66535
|
+
phone_number?: string;
|
|
66536
|
+
/**
|
|
66537
|
+
* Project roles
|
|
66538
|
+
*/
|
|
66539
|
+
project_roles?: string;
|
|
66540
|
+
/**
|
|
66541
|
+
* Project UUID
|
|
66542
|
+
*/
|
|
66543
|
+
project_uuid?: string;
|
|
66544
|
+
/**
|
|
66545
|
+
* Filter by first name, last name, civil number, username or email
|
|
66546
|
+
*/
|
|
66547
|
+
query?: string;
|
|
66548
|
+
registration_method?: string;
|
|
66549
|
+
/**
|
|
66550
|
+
* Filter logs from this date (inclusive)
|
|
66551
|
+
*/
|
|
66552
|
+
start_date?: string;
|
|
66553
|
+
/**
|
|
66554
|
+
* User keyword
|
|
66555
|
+
*/
|
|
66556
|
+
user_keyword?: string;
|
|
66557
|
+
/**
|
|
66558
|
+
* Username (exact)
|
|
66559
|
+
*/
|
|
66560
|
+
username?: string;
|
|
66561
|
+
/**
|
|
66562
|
+
* Comma-separated usernames
|
|
66563
|
+
*/
|
|
66564
|
+
username_list?: string;
|
|
66565
|
+
};
|
|
66566
|
+
url: '/api/users/{uuid}/data_access_history/';
|
|
66567
|
+
};
|
|
66568
|
+
export type UsersDataAccessHistoryListResponses = {
|
|
66569
|
+
200: Array<UserDataAccessLog>;
|
|
66570
|
+
};
|
|
66571
|
+
export type UsersDataAccessHistoryListResponse = UsersDataAccessHistoryListResponses[keyof UsersDataAccessHistoryListResponses];
|
|
65624
66572
|
export type UsersPullRemoteUserData = {
|
|
65625
66573
|
body?: never;
|
|
65626
66574
|
path: {
|
|
@@ -65675,7 +66623,7 @@ export type UsersMeRetrieveData = {
|
|
|
65675
66623
|
body?: never;
|
|
65676
66624
|
path?: never;
|
|
65677
66625
|
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'>;
|
|
66626
|
+
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
66627
|
};
|
|
65680
66628
|
url: '/api/users/me/';
|
|
65681
66629
|
};
|
|
@@ -65695,6 +66643,642 @@ export type UsersMeCountResponses = {
|
|
|
65695
66643
|
*/
|
|
65696
66644
|
200: unknown;
|
|
65697
66645
|
};
|
|
66646
|
+
export type UsersUserActiveStatusCountListData = {
|
|
66647
|
+
body?: never;
|
|
66648
|
+
path?: never;
|
|
66649
|
+
query?: {
|
|
66650
|
+
/**
|
|
66651
|
+
* Agreement date after
|
|
66652
|
+
*/
|
|
66653
|
+
agreement_date?: string;
|
|
66654
|
+
civil_number?: string;
|
|
66655
|
+
/**
|
|
66656
|
+
* Customer UUID
|
|
66657
|
+
*/
|
|
66658
|
+
customer_uuid?: string;
|
|
66659
|
+
/**
|
|
66660
|
+
* Date joined after
|
|
66661
|
+
*/
|
|
66662
|
+
date_joined?: string;
|
|
66663
|
+
description?: string;
|
|
66664
|
+
/**
|
|
66665
|
+
* Email
|
|
66666
|
+
*/
|
|
66667
|
+
email?: string;
|
|
66668
|
+
/**
|
|
66669
|
+
* Full name
|
|
66670
|
+
*/
|
|
66671
|
+
full_name?: string;
|
|
66672
|
+
/**
|
|
66673
|
+
* Is active
|
|
66674
|
+
*/
|
|
66675
|
+
is_active?: boolean;
|
|
66676
|
+
/**
|
|
66677
|
+
* Is staff
|
|
66678
|
+
*/
|
|
66679
|
+
is_staff?: boolean;
|
|
66680
|
+
/**
|
|
66681
|
+
* Is support
|
|
66682
|
+
*/
|
|
66683
|
+
is_support?: boolean;
|
|
66684
|
+
/**
|
|
66685
|
+
* Job title
|
|
66686
|
+
*/
|
|
66687
|
+
job_title?: string;
|
|
66688
|
+
/**
|
|
66689
|
+
* Date modified after
|
|
66690
|
+
*/
|
|
66691
|
+
modified?: string;
|
|
66692
|
+
/**
|
|
66693
|
+
* Native name
|
|
66694
|
+
*/
|
|
66695
|
+
native_name?: string;
|
|
66696
|
+
/**
|
|
66697
|
+
* Ordering
|
|
66698
|
+
*
|
|
66699
|
+
*
|
|
66700
|
+
*/
|
|
66701
|
+
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'>;
|
|
66702
|
+
/**
|
|
66703
|
+
* Organization
|
|
66704
|
+
*/
|
|
66705
|
+
organization?: string;
|
|
66706
|
+
/**
|
|
66707
|
+
* Organization roles
|
|
66708
|
+
*/
|
|
66709
|
+
organization_roles?: string;
|
|
66710
|
+
/**
|
|
66711
|
+
* A page number within the paginated result set.
|
|
66712
|
+
*/
|
|
66713
|
+
page?: number;
|
|
66714
|
+
/**
|
|
66715
|
+
* Number of results to return per page.
|
|
66716
|
+
*/
|
|
66717
|
+
page_size?: number;
|
|
66718
|
+
phone_number?: string;
|
|
66719
|
+
/**
|
|
66720
|
+
* Project roles
|
|
66721
|
+
*/
|
|
66722
|
+
project_roles?: string;
|
|
66723
|
+
/**
|
|
66724
|
+
* Project UUID
|
|
66725
|
+
*/
|
|
66726
|
+
project_uuid?: string;
|
|
66727
|
+
/**
|
|
66728
|
+
* Filter by first name, last name, civil number, username or email
|
|
66729
|
+
*/
|
|
66730
|
+
query?: string;
|
|
66731
|
+
registration_method?: string;
|
|
66732
|
+
/**
|
|
66733
|
+
* User keyword
|
|
66734
|
+
*/
|
|
66735
|
+
user_keyword?: string;
|
|
66736
|
+
/**
|
|
66737
|
+
* Username (exact)
|
|
66738
|
+
*/
|
|
66739
|
+
username?: string;
|
|
66740
|
+
/**
|
|
66741
|
+
* Comma-separated usernames
|
|
66742
|
+
*/
|
|
66743
|
+
username_list?: string;
|
|
66744
|
+
};
|
|
66745
|
+
url: '/api/users/user_active_status_count/';
|
|
66746
|
+
};
|
|
66747
|
+
export type UsersUserActiveStatusCountListResponses = {
|
|
66748
|
+
200: Array<UserActiveStatusCount>;
|
|
66749
|
+
};
|
|
66750
|
+
export type UsersUserActiveStatusCountListResponse = UsersUserActiveStatusCountListResponses[keyof UsersUserActiveStatusCountListResponses];
|
|
66751
|
+
export type UsersUserActiveStatusCountCountData = {
|
|
66752
|
+
body?: never;
|
|
66753
|
+
path?: never;
|
|
66754
|
+
query?: {
|
|
66755
|
+
/**
|
|
66756
|
+
* Agreement date after
|
|
66757
|
+
*/
|
|
66758
|
+
agreement_date?: string;
|
|
66759
|
+
civil_number?: string;
|
|
66760
|
+
/**
|
|
66761
|
+
* Customer UUID
|
|
66762
|
+
*/
|
|
66763
|
+
customer_uuid?: string;
|
|
66764
|
+
/**
|
|
66765
|
+
* Date joined after
|
|
66766
|
+
*/
|
|
66767
|
+
date_joined?: string;
|
|
66768
|
+
description?: string;
|
|
66769
|
+
/**
|
|
66770
|
+
* Email
|
|
66771
|
+
*/
|
|
66772
|
+
email?: string;
|
|
66773
|
+
/**
|
|
66774
|
+
* Full name
|
|
66775
|
+
*/
|
|
66776
|
+
full_name?: string;
|
|
66777
|
+
/**
|
|
66778
|
+
* Is active
|
|
66779
|
+
*/
|
|
66780
|
+
is_active?: boolean;
|
|
66781
|
+
/**
|
|
66782
|
+
* Is staff
|
|
66783
|
+
*/
|
|
66784
|
+
is_staff?: boolean;
|
|
66785
|
+
/**
|
|
66786
|
+
* Is support
|
|
66787
|
+
*/
|
|
66788
|
+
is_support?: boolean;
|
|
66789
|
+
/**
|
|
66790
|
+
* Job title
|
|
66791
|
+
*/
|
|
66792
|
+
job_title?: string;
|
|
66793
|
+
/**
|
|
66794
|
+
* Date modified after
|
|
66795
|
+
*/
|
|
66796
|
+
modified?: string;
|
|
66797
|
+
/**
|
|
66798
|
+
* Native name
|
|
66799
|
+
*/
|
|
66800
|
+
native_name?: string;
|
|
66801
|
+
/**
|
|
66802
|
+
* Ordering
|
|
66803
|
+
*
|
|
66804
|
+
*
|
|
66805
|
+
*/
|
|
66806
|
+
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'>;
|
|
66807
|
+
/**
|
|
66808
|
+
* Organization
|
|
66809
|
+
*/
|
|
66810
|
+
organization?: string;
|
|
66811
|
+
/**
|
|
66812
|
+
* Organization roles
|
|
66813
|
+
*/
|
|
66814
|
+
organization_roles?: string;
|
|
66815
|
+
/**
|
|
66816
|
+
* A page number within the paginated result set.
|
|
66817
|
+
*/
|
|
66818
|
+
page?: number;
|
|
66819
|
+
/**
|
|
66820
|
+
* Number of results to return per page.
|
|
66821
|
+
*/
|
|
66822
|
+
page_size?: number;
|
|
66823
|
+
phone_number?: string;
|
|
66824
|
+
/**
|
|
66825
|
+
* Project roles
|
|
66826
|
+
*/
|
|
66827
|
+
project_roles?: string;
|
|
66828
|
+
/**
|
|
66829
|
+
* Project UUID
|
|
66830
|
+
*/
|
|
66831
|
+
project_uuid?: string;
|
|
66832
|
+
/**
|
|
66833
|
+
* Filter by first name, last name, civil number, username or email
|
|
66834
|
+
*/
|
|
66835
|
+
query?: string;
|
|
66836
|
+
registration_method?: string;
|
|
66837
|
+
/**
|
|
66838
|
+
* User keyword
|
|
66839
|
+
*/
|
|
66840
|
+
user_keyword?: string;
|
|
66841
|
+
/**
|
|
66842
|
+
* Username (exact)
|
|
66843
|
+
*/
|
|
66844
|
+
username?: string;
|
|
66845
|
+
/**
|
|
66846
|
+
* Comma-separated usernames
|
|
66847
|
+
*/
|
|
66848
|
+
username_list?: string;
|
|
66849
|
+
};
|
|
66850
|
+
url: '/api/users/user_active_status_count/';
|
|
66851
|
+
};
|
|
66852
|
+
export type UsersUserActiveStatusCountCountResponses = {
|
|
66853
|
+
/**
|
|
66854
|
+
* No response body
|
|
66855
|
+
*/
|
|
66856
|
+
200: unknown;
|
|
66857
|
+
};
|
|
66858
|
+
export type UsersUserLanguageCountListData = {
|
|
66859
|
+
body?: never;
|
|
66860
|
+
path?: never;
|
|
66861
|
+
query?: {
|
|
66862
|
+
/**
|
|
66863
|
+
* Agreement date after
|
|
66864
|
+
*/
|
|
66865
|
+
agreement_date?: string;
|
|
66866
|
+
civil_number?: string;
|
|
66867
|
+
/**
|
|
66868
|
+
* Customer UUID
|
|
66869
|
+
*/
|
|
66870
|
+
customer_uuid?: string;
|
|
66871
|
+
/**
|
|
66872
|
+
* Date joined after
|
|
66873
|
+
*/
|
|
66874
|
+
date_joined?: string;
|
|
66875
|
+
description?: string;
|
|
66876
|
+
/**
|
|
66877
|
+
* Email
|
|
66878
|
+
*/
|
|
66879
|
+
email?: string;
|
|
66880
|
+
/**
|
|
66881
|
+
* Full name
|
|
66882
|
+
*/
|
|
66883
|
+
full_name?: string;
|
|
66884
|
+
/**
|
|
66885
|
+
* Is active
|
|
66886
|
+
*/
|
|
66887
|
+
is_active?: boolean;
|
|
66888
|
+
/**
|
|
66889
|
+
* Is staff
|
|
66890
|
+
*/
|
|
66891
|
+
is_staff?: boolean;
|
|
66892
|
+
/**
|
|
66893
|
+
* Is support
|
|
66894
|
+
*/
|
|
66895
|
+
is_support?: boolean;
|
|
66896
|
+
/**
|
|
66897
|
+
* Job title
|
|
66898
|
+
*/
|
|
66899
|
+
job_title?: string;
|
|
66900
|
+
/**
|
|
66901
|
+
* Date modified after
|
|
66902
|
+
*/
|
|
66903
|
+
modified?: string;
|
|
66904
|
+
/**
|
|
66905
|
+
* Native name
|
|
66906
|
+
*/
|
|
66907
|
+
native_name?: string;
|
|
66908
|
+
/**
|
|
66909
|
+
* Ordering
|
|
66910
|
+
*
|
|
66911
|
+
*
|
|
66912
|
+
*/
|
|
66913
|
+
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'>;
|
|
66914
|
+
/**
|
|
66915
|
+
* Organization
|
|
66916
|
+
*/
|
|
66917
|
+
organization?: string;
|
|
66918
|
+
/**
|
|
66919
|
+
* Organization roles
|
|
66920
|
+
*/
|
|
66921
|
+
organization_roles?: string;
|
|
66922
|
+
/**
|
|
66923
|
+
* A page number within the paginated result set.
|
|
66924
|
+
*/
|
|
66925
|
+
page?: number;
|
|
66926
|
+
/**
|
|
66927
|
+
* Number of results to return per page.
|
|
66928
|
+
*/
|
|
66929
|
+
page_size?: number;
|
|
66930
|
+
phone_number?: string;
|
|
66931
|
+
/**
|
|
66932
|
+
* Project roles
|
|
66933
|
+
*/
|
|
66934
|
+
project_roles?: string;
|
|
66935
|
+
/**
|
|
66936
|
+
* Project UUID
|
|
66937
|
+
*/
|
|
66938
|
+
project_uuid?: string;
|
|
66939
|
+
/**
|
|
66940
|
+
* Filter by first name, last name, civil number, username or email
|
|
66941
|
+
*/
|
|
66942
|
+
query?: string;
|
|
66943
|
+
registration_method?: string;
|
|
66944
|
+
/**
|
|
66945
|
+
* User keyword
|
|
66946
|
+
*/
|
|
66947
|
+
user_keyword?: string;
|
|
66948
|
+
/**
|
|
66949
|
+
* Username (exact)
|
|
66950
|
+
*/
|
|
66951
|
+
username?: string;
|
|
66952
|
+
/**
|
|
66953
|
+
* Comma-separated usernames
|
|
66954
|
+
*/
|
|
66955
|
+
username_list?: string;
|
|
66956
|
+
};
|
|
66957
|
+
url: '/api/users/user_language_count/';
|
|
66958
|
+
};
|
|
66959
|
+
export type UsersUserLanguageCountListResponses = {
|
|
66960
|
+
200: Array<UserLanguageCount>;
|
|
66961
|
+
};
|
|
66962
|
+
export type UsersUserLanguageCountListResponse = UsersUserLanguageCountListResponses[keyof UsersUserLanguageCountListResponses];
|
|
66963
|
+
export type UsersUserLanguageCountCountData = {
|
|
66964
|
+
body?: never;
|
|
66965
|
+
path?: never;
|
|
66966
|
+
query?: {
|
|
66967
|
+
/**
|
|
66968
|
+
* Agreement date after
|
|
66969
|
+
*/
|
|
66970
|
+
agreement_date?: string;
|
|
66971
|
+
civil_number?: string;
|
|
66972
|
+
/**
|
|
66973
|
+
* Customer UUID
|
|
66974
|
+
*/
|
|
66975
|
+
customer_uuid?: string;
|
|
66976
|
+
/**
|
|
66977
|
+
* Date joined after
|
|
66978
|
+
*/
|
|
66979
|
+
date_joined?: string;
|
|
66980
|
+
description?: string;
|
|
66981
|
+
/**
|
|
66982
|
+
* Email
|
|
66983
|
+
*/
|
|
66984
|
+
email?: string;
|
|
66985
|
+
/**
|
|
66986
|
+
* Full name
|
|
66987
|
+
*/
|
|
66988
|
+
full_name?: string;
|
|
66989
|
+
/**
|
|
66990
|
+
* Is active
|
|
66991
|
+
*/
|
|
66992
|
+
is_active?: boolean;
|
|
66993
|
+
/**
|
|
66994
|
+
* Is staff
|
|
66995
|
+
*/
|
|
66996
|
+
is_staff?: boolean;
|
|
66997
|
+
/**
|
|
66998
|
+
* Is support
|
|
66999
|
+
*/
|
|
67000
|
+
is_support?: boolean;
|
|
67001
|
+
/**
|
|
67002
|
+
* Job title
|
|
67003
|
+
*/
|
|
67004
|
+
job_title?: string;
|
|
67005
|
+
/**
|
|
67006
|
+
* Date modified after
|
|
67007
|
+
*/
|
|
67008
|
+
modified?: string;
|
|
67009
|
+
/**
|
|
67010
|
+
* Native name
|
|
67011
|
+
*/
|
|
67012
|
+
native_name?: string;
|
|
67013
|
+
/**
|
|
67014
|
+
* Ordering
|
|
67015
|
+
*
|
|
67016
|
+
*
|
|
67017
|
+
*/
|
|
67018
|
+
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'>;
|
|
67019
|
+
/**
|
|
67020
|
+
* Organization
|
|
67021
|
+
*/
|
|
67022
|
+
organization?: string;
|
|
67023
|
+
/**
|
|
67024
|
+
* Organization roles
|
|
67025
|
+
*/
|
|
67026
|
+
organization_roles?: string;
|
|
67027
|
+
/**
|
|
67028
|
+
* A page number within the paginated result set.
|
|
67029
|
+
*/
|
|
67030
|
+
page?: number;
|
|
67031
|
+
/**
|
|
67032
|
+
* Number of results to return per page.
|
|
67033
|
+
*/
|
|
67034
|
+
page_size?: number;
|
|
67035
|
+
phone_number?: string;
|
|
67036
|
+
/**
|
|
67037
|
+
* Project roles
|
|
67038
|
+
*/
|
|
67039
|
+
project_roles?: string;
|
|
67040
|
+
/**
|
|
67041
|
+
* Project UUID
|
|
67042
|
+
*/
|
|
67043
|
+
project_uuid?: string;
|
|
67044
|
+
/**
|
|
67045
|
+
* Filter by first name, last name, civil number, username or email
|
|
67046
|
+
*/
|
|
67047
|
+
query?: string;
|
|
67048
|
+
registration_method?: string;
|
|
67049
|
+
/**
|
|
67050
|
+
* User keyword
|
|
67051
|
+
*/
|
|
67052
|
+
user_keyword?: string;
|
|
67053
|
+
/**
|
|
67054
|
+
* Username (exact)
|
|
67055
|
+
*/
|
|
67056
|
+
username?: string;
|
|
67057
|
+
/**
|
|
67058
|
+
* Comma-separated usernames
|
|
67059
|
+
*/
|
|
67060
|
+
username_list?: string;
|
|
67061
|
+
};
|
|
67062
|
+
url: '/api/users/user_language_count/';
|
|
67063
|
+
};
|
|
67064
|
+
export type UsersUserLanguageCountCountResponses = {
|
|
67065
|
+
/**
|
|
67066
|
+
* No response body
|
|
67067
|
+
*/
|
|
67068
|
+
200: unknown;
|
|
67069
|
+
};
|
|
67070
|
+
export type UsersUserRegistrationTrendListData = {
|
|
67071
|
+
body?: never;
|
|
67072
|
+
path?: never;
|
|
67073
|
+
query?: {
|
|
67074
|
+
/**
|
|
67075
|
+
* Agreement date after
|
|
67076
|
+
*/
|
|
67077
|
+
agreement_date?: string;
|
|
67078
|
+
civil_number?: string;
|
|
67079
|
+
/**
|
|
67080
|
+
* Customer UUID
|
|
67081
|
+
*/
|
|
67082
|
+
customer_uuid?: string;
|
|
67083
|
+
/**
|
|
67084
|
+
* Date joined after
|
|
67085
|
+
*/
|
|
67086
|
+
date_joined?: string;
|
|
67087
|
+
description?: string;
|
|
67088
|
+
/**
|
|
67089
|
+
* Email
|
|
67090
|
+
*/
|
|
67091
|
+
email?: string;
|
|
67092
|
+
/**
|
|
67093
|
+
* Full name
|
|
67094
|
+
*/
|
|
67095
|
+
full_name?: string;
|
|
67096
|
+
/**
|
|
67097
|
+
* Is active
|
|
67098
|
+
*/
|
|
67099
|
+
is_active?: boolean;
|
|
67100
|
+
/**
|
|
67101
|
+
* Is staff
|
|
67102
|
+
*/
|
|
67103
|
+
is_staff?: boolean;
|
|
67104
|
+
/**
|
|
67105
|
+
* Is support
|
|
67106
|
+
*/
|
|
67107
|
+
is_support?: boolean;
|
|
67108
|
+
/**
|
|
67109
|
+
* Job title
|
|
67110
|
+
*/
|
|
67111
|
+
job_title?: string;
|
|
67112
|
+
/**
|
|
67113
|
+
* Date modified after
|
|
67114
|
+
*/
|
|
67115
|
+
modified?: string;
|
|
67116
|
+
/**
|
|
67117
|
+
* Native name
|
|
67118
|
+
*/
|
|
67119
|
+
native_name?: string;
|
|
67120
|
+
/**
|
|
67121
|
+
* Ordering
|
|
67122
|
+
*
|
|
67123
|
+
*
|
|
67124
|
+
*/
|
|
67125
|
+
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'>;
|
|
67126
|
+
/**
|
|
67127
|
+
* Organization
|
|
67128
|
+
*/
|
|
67129
|
+
organization?: string;
|
|
67130
|
+
/**
|
|
67131
|
+
* Organization roles
|
|
67132
|
+
*/
|
|
67133
|
+
organization_roles?: string;
|
|
67134
|
+
/**
|
|
67135
|
+
* A page number within the paginated result set.
|
|
67136
|
+
*/
|
|
67137
|
+
page?: number;
|
|
67138
|
+
/**
|
|
67139
|
+
* Number of results to return per page.
|
|
67140
|
+
*/
|
|
67141
|
+
page_size?: number;
|
|
67142
|
+
phone_number?: string;
|
|
67143
|
+
/**
|
|
67144
|
+
* Project roles
|
|
67145
|
+
*/
|
|
67146
|
+
project_roles?: string;
|
|
67147
|
+
/**
|
|
67148
|
+
* Project UUID
|
|
67149
|
+
*/
|
|
67150
|
+
project_uuid?: string;
|
|
67151
|
+
/**
|
|
67152
|
+
* Filter by first name, last name, civil number, username or email
|
|
67153
|
+
*/
|
|
67154
|
+
query?: string;
|
|
67155
|
+
registration_method?: string;
|
|
67156
|
+
/**
|
|
67157
|
+
* User keyword
|
|
67158
|
+
*/
|
|
67159
|
+
user_keyword?: string;
|
|
67160
|
+
/**
|
|
67161
|
+
* Username (exact)
|
|
67162
|
+
*/
|
|
67163
|
+
username?: string;
|
|
67164
|
+
/**
|
|
67165
|
+
* Comma-separated usernames
|
|
67166
|
+
*/
|
|
67167
|
+
username_list?: string;
|
|
67168
|
+
};
|
|
67169
|
+
url: '/api/users/user_registration_trend/';
|
|
67170
|
+
};
|
|
67171
|
+
export type UsersUserRegistrationTrendListResponses = {
|
|
67172
|
+
200: Array<UserRegistrationTrend>;
|
|
67173
|
+
};
|
|
67174
|
+
export type UsersUserRegistrationTrendListResponse = UsersUserRegistrationTrendListResponses[keyof UsersUserRegistrationTrendListResponses];
|
|
67175
|
+
export type UsersUserRegistrationTrendCountData = {
|
|
67176
|
+
body?: never;
|
|
67177
|
+
path?: never;
|
|
67178
|
+
query?: {
|
|
67179
|
+
/**
|
|
67180
|
+
* Agreement date after
|
|
67181
|
+
*/
|
|
67182
|
+
agreement_date?: string;
|
|
67183
|
+
civil_number?: string;
|
|
67184
|
+
/**
|
|
67185
|
+
* Customer UUID
|
|
67186
|
+
*/
|
|
67187
|
+
customer_uuid?: string;
|
|
67188
|
+
/**
|
|
67189
|
+
* Date joined after
|
|
67190
|
+
*/
|
|
67191
|
+
date_joined?: string;
|
|
67192
|
+
description?: string;
|
|
67193
|
+
/**
|
|
67194
|
+
* Email
|
|
67195
|
+
*/
|
|
67196
|
+
email?: string;
|
|
67197
|
+
/**
|
|
67198
|
+
* Full name
|
|
67199
|
+
*/
|
|
67200
|
+
full_name?: string;
|
|
67201
|
+
/**
|
|
67202
|
+
* Is active
|
|
67203
|
+
*/
|
|
67204
|
+
is_active?: boolean;
|
|
67205
|
+
/**
|
|
67206
|
+
* Is staff
|
|
67207
|
+
*/
|
|
67208
|
+
is_staff?: boolean;
|
|
67209
|
+
/**
|
|
67210
|
+
* Is support
|
|
67211
|
+
*/
|
|
67212
|
+
is_support?: boolean;
|
|
67213
|
+
/**
|
|
67214
|
+
* Job title
|
|
67215
|
+
*/
|
|
67216
|
+
job_title?: string;
|
|
67217
|
+
/**
|
|
67218
|
+
* Date modified after
|
|
67219
|
+
*/
|
|
67220
|
+
modified?: string;
|
|
67221
|
+
/**
|
|
67222
|
+
* Native name
|
|
67223
|
+
*/
|
|
67224
|
+
native_name?: string;
|
|
67225
|
+
/**
|
|
67226
|
+
* Ordering
|
|
67227
|
+
*
|
|
67228
|
+
*
|
|
67229
|
+
*/
|
|
67230
|
+
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'>;
|
|
67231
|
+
/**
|
|
67232
|
+
* Organization
|
|
67233
|
+
*/
|
|
67234
|
+
organization?: string;
|
|
67235
|
+
/**
|
|
67236
|
+
* Organization roles
|
|
67237
|
+
*/
|
|
67238
|
+
organization_roles?: string;
|
|
67239
|
+
/**
|
|
67240
|
+
* A page number within the paginated result set.
|
|
67241
|
+
*/
|
|
67242
|
+
page?: number;
|
|
67243
|
+
/**
|
|
67244
|
+
* Number of results to return per page.
|
|
67245
|
+
*/
|
|
67246
|
+
page_size?: number;
|
|
67247
|
+
phone_number?: string;
|
|
67248
|
+
/**
|
|
67249
|
+
* Project roles
|
|
67250
|
+
*/
|
|
67251
|
+
project_roles?: string;
|
|
67252
|
+
/**
|
|
67253
|
+
* Project UUID
|
|
67254
|
+
*/
|
|
67255
|
+
project_uuid?: string;
|
|
67256
|
+
/**
|
|
67257
|
+
* Filter by first name, last name, civil number, username or email
|
|
67258
|
+
*/
|
|
67259
|
+
query?: string;
|
|
67260
|
+
registration_method?: string;
|
|
67261
|
+
/**
|
|
67262
|
+
* User keyword
|
|
67263
|
+
*/
|
|
67264
|
+
user_keyword?: string;
|
|
67265
|
+
/**
|
|
67266
|
+
* Username (exact)
|
|
67267
|
+
*/
|
|
67268
|
+
username?: string;
|
|
67269
|
+
/**
|
|
67270
|
+
* Comma-separated usernames
|
|
67271
|
+
*/
|
|
67272
|
+
username_list?: string;
|
|
67273
|
+
};
|
|
67274
|
+
url: '/api/users/user_registration_trend/';
|
|
67275
|
+
};
|
|
67276
|
+
export type UsersUserRegistrationTrendCountResponses = {
|
|
67277
|
+
/**
|
|
67278
|
+
* No response body
|
|
67279
|
+
*/
|
|
67280
|
+
200: unknown;
|
|
67281
|
+
};
|
|
65698
67282
|
export type VersionRetrieveData = {
|
|
65699
67283
|
body?: never;
|
|
65700
67284
|
path?: never;
|