waldur-js-client 8.0.8-dev.32 → 8.0.8-dev.33
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/types.gen.d.ts +159 -29
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2836,6 +2836,64 @@ export type CallApplicantAttributeConfigRequest = {
|
|
|
2836
2836
|
*/
|
|
2837
2837
|
reviewers_see_applicant_details?: boolean;
|
|
2838
2838
|
};
|
|
2839
|
+
export type CallApplicantVisibilityConfig = {
|
|
2840
|
+
readonly uuid?: string;
|
|
2841
|
+
readonly created?: string;
|
|
2842
|
+
readonly modified?: string;
|
|
2843
|
+
expose_full_name?: boolean;
|
|
2844
|
+
expose_email?: boolean;
|
|
2845
|
+
expose_username?: boolean;
|
|
2846
|
+
expose_registration_method?: boolean;
|
|
2847
|
+
expose_organization?: boolean;
|
|
2848
|
+
expose_organization_country?: boolean;
|
|
2849
|
+
expose_organization_type?: boolean;
|
|
2850
|
+
expose_organization_registry_code?: boolean;
|
|
2851
|
+
expose_affiliations?: boolean;
|
|
2852
|
+
expose_phone_number?: boolean;
|
|
2853
|
+
expose_job_title?: boolean;
|
|
2854
|
+
expose_gender?: boolean;
|
|
2855
|
+
expose_personal_title?: boolean;
|
|
2856
|
+
expose_place_of_birth?: boolean;
|
|
2857
|
+
expose_address?: boolean;
|
|
2858
|
+
expose_country_of_residence?: boolean;
|
|
2859
|
+
expose_nationality?: boolean;
|
|
2860
|
+
expose_nationalities?: boolean;
|
|
2861
|
+
expose_eduperson_assurance?: boolean;
|
|
2862
|
+
expose_identity_source?: boolean;
|
|
2863
|
+
expose_civil_number?: boolean;
|
|
2864
|
+
expose_birth_date?: boolean;
|
|
2865
|
+
expose_active_isds?: boolean;
|
|
2866
|
+
readonly exposed_fields?: Array<string>;
|
|
2867
|
+
/**
|
|
2868
|
+
* Return True if this is a default (unsaved) config.
|
|
2869
|
+
*/
|
|
2870
|
+
readonly is_default?: boolean;
|
|
2871
|
+
};
|
|
2872
|
+
export type CallApplicantVisibilityConfigRequest = {
|
|
2873
|
+
expose_full_name?: boolean;
|
|
2874
|
+
expose_email?: boolean;
|
|
2875
|
+
expose_username?: boolean;
|
|
2876
|
+
expose_registration_method?: boolean;
|
|
2877
|
+
expose_organization?: boolean;
|
|
2878
|
+
expose_organization_country?: boolean;
|
|
2879
|
+
expose_organization_type?: boolean;
|
|
2880
|
+
expose_organization_registry_code?: boolean;
|
|
2881
|
+
expose_affiliations?: boolean;
|
|
2882
|
+
expose_phone_number?: boolean;
|
|
2883
|
+
expose_job_title?: boolean;
|
|
2884
|
+
expose_gender?: boolean;
|
|
2885
|
+
expose_personal_title?: boolean;
|
|
2886
|
+
expose_place_of_birth?: boolean;
|
|
2887
|
+
expose_address?: boolean;
|
|
2888
|
+
expose_country_of_residence?: boolean;
|
|
2889
|
+
expose_nationality?: boolean;
|
|
2890
|
+
expose_nationalities?: boolean;
|
|
2891
|
+
expose_eduperson_assurance?: boolean;
|
|
2892
|
+
expose_identity_source?: boolean;
|
|
2893
|
+
expose_civil_number?: boolean;
|
|
2894
|
+
expose_birth_date?: boolean;
|
|
2895
|
+
expose_active_isds?: boolean;
|
|
2896
|
+
};
|
|
2839
2897
|
export type CallAssignmentConfiguration = {
|
|
2840
2898
|
readonly uuid: string;
|
|
2841
2899
|
readonly call: string;
|
|
@@ -4573,6 +4631,7 @@ export type ConstanceSettings = {
|
|
|
4573
4631
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
4574
4632
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
4575
4633
|
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4634
|
+
DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4576
4635
|
INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
|
|
4577
4636
|
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4578
4637
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -4831,6 +4890,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4831
4890
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
4832
4891
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
4833
4892
|
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4893
|
+
DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4834
4894
|
INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
|
|
4835
4895
|
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4836
4896
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -12628,15 +12688,17 @@ export type OfferingUserAttributeConfig = {
|
|
|
12628
12688
|
readonly uuid: string;
|
|
12629
12689
|
readonly created: string;
|
|
12630
12690
|
readonly modified: string;
|
|
12631
|
-
readonly offering_uuid: string;
|
|
12632
|
-
readonly offering_name: string;
|
|
12633
|
-
expose_username?: boolean;
|
|
12634
12691
|
expose_full_name?: boolean;
|
|
12635
12692
|
expose_email?: boolean;
|
|
12636
|
-
|
|
12693
|
+
expose_username?: boolean;
|
|
12694
|
+
expose_registration_method?: boolean;
|
|
12637
12695
|
expose_organization?: boolean;
|
|
12638
|
-
|
|
12696
|
+
expose_organization_country?: boolean;
|
|
12697
|
+
expose_organization_type?: boolean;
|
|
12698
|
+
expose_organization_registry_code?: boolean;
|
|
12639
12699
|
expose_affiliations?: boolean;
|
|
12700
|
+
expose_phone_number?: boolean;
|
|
12701
|
+
expose_job_title?: boolean;
|
|
12640
12702
|
expose_gender?: boolean;
|
|
12641
12703
|
expose_personal_title?: boolean;
|
|
12642
12704
|
expose_place_of_birth?: boolean;
|
|
@@ -12644,32 +12706,31 @@ export type OfferingUserAttributeConfig = {
|
|
|
12644
12706
|
expose_country_of_residence?: boolean;
|
|
12645
12707
|
expose_nationality?: boolean;
|
|
12646
12708
|
expose_nationalities?: boolean;
|
|
12647
|
-
expose_organization_country?: boolean;
|
|
12648
|
-
expose_organization_type?: boolean;
|
|
12649
|
-
expose_organization_registry_code?: boolean;
|
|
12650
12709
|
expose_eduperson_assurance?: boolean;
|
|
12710
|
+
expose_identity_source?: boolean;
|
|
12651
12711
|
expose_civil_number?: boolean;
|
|
12652
12712
|
expose_birth_date?: boolean;
|
|
12653
|
-
expose_identity_source?: boolean;
|
|
12654
12713
|
expose_active_isds?: boolean;
|
|
12655
|
-
/**
|
|
12656
|
-
* Return list of field names currently configured for exposure.
|
|
12657
|
-
*/
|
|
12658
12714
|
readonly exposed_fields: Array<string>;
|
|
12659
12715
|
/**
|
|
12660
12716
|
* Return True if this is a default (unsaved) config.
|
|
12661
12717
|
*/
|
|
12662
12718
|
readonly is_default: boolean;
|
|
12719
|
+
readonly offering_uuid: string;
|
|
12720
|
+
readonly offering_name: string;
|
|
12663
12721
|
};
|
|
12664
12722
|
export type OfferingUserAttributeConfigRequest = {
|
|
12665
|
-
offering?: string;
|
|
12666
|
-
expose_username?: boolean;
|
|
12667
12723
|
expose_full_name?: boolean;
|
|
12668
12724
|
expose_email?: boolean;
|
|
12669
|
-
|
|
12725
|
+
expose_username?: boolean;
|
|
12726
|
+
expose_registration_method?: boolean;
|
|
12670
12727
|
expose_organization?: boolean;
|
|
12671
|
-
|
|
12728
|
+
expose_organization_country?: boolean;
|
|
12729
|
+
expose_organization_type?: boolean;
|
|
12730
|
+
expose_organization_registry_code?: boolean;
|
|
12672
12731
|
expose_affiliations?: boolean;
|
|
12732
|
+
expose_phone_number?: boolean;
|
|
12733
|
+
expose_job_title?: boolean;
|
|
12673
12734
|
expose_gender?: boolean;
|
|
12674
12735
|
expose_personal_title?: boolean;
|
|
12675
12736
|
expose_place_of_birth?: boolean;
|
|
@@ -12677,14 +12738,12 @@ export type OfferingUserAttributeConfigRequest = {
|
|
|
12677
12738
|
expose_country_of_residence?: boolean;
|
|
12678
12739
|
expose_nationality?: boolean;
|
|
12679
12740
|
expose_nationalities?: boolean;
|
|
12680
|
-
expose_organization_country?: boolean;
|
|
12681
|
-
expose_organization_type?: boolean;
|
|
12682
|
-
expose_organization_registry_code?: boolean;
|
|
12683
12741
|
expose_eduperson_assurance?: boolean;
|
|
12742
|
+
expose_identity_source?: boolean;
|
|
12684
12743
|
expose_civil_number?: boolean;
|
|
12685
12744
|
expose_birth_date?: boolean;
|
|
12686
|
-
expose_identity_source?: boolean;
|
|
12687
12745
|
expose_active_isds?: boolean;
|
|
12746
|
+
offering?: string;
|
|
12688
12747
|
};
|
|
12689
12748
|
export type OfferingUserRequest = {
|
|
12690
12749
|
user?: string;
|
|
@@ -16438,14 +16497,17 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
16438
16497
|
period?: PolicyPeriodEnum;
|
|
16439
16498
|
};
|
|
16440
16499
|
export type PatchedOfferingUserAttributeConfigRequest = {
|
|
16441
|
-
offering?: string;
|
|
16442
|
-
expose_username?: boolean;
|
|
16443
16500
|
expose_full_name?: boolean;
|
|
16444
16501
|
expose_email?: boolean;
|
|
16445
|
-
|
|
16502
|
+
expose_username?: boolean;
|
|
16503
|
+
expose_registration_method?: boolean;
|
|
16446
16504
|
expose_organization?: boolean;
|
|
16447
|
-
|
|
16505
|
+
expose_organization_country?: boolean;
|
|
16506
|
+
expose_organization_type?: boolean;
|
|
16507
|
+
expose_organization_registry_code?: boolean;
|
|
16448
16508
|
expose_affiliations?: boolean;
|
|
16509
|
+
expose_phone_number?: boolean;
|
|
16510
|
+
expose_job_title?: boolean;
|
|
16449
16511
|
expose_gender?: boolean;
|
|
16450
16512
|
expose_personal_title?: boolean;
|
|
16451
16513
|
expose_place_of_birth?: boolean;
|
|
@@ -16453,14 +16515,12 @@ export type PatchedOfferingUserAttributeConfigRequest = {
|
|
|
16453
16515
|
expose_country_of_residence?: boolean;
|
|
16454
16516
|
expose_nationality?: boolean;
|
|
16455
16517
|
expose_nationalities?: boolean;
|
|
16456
|
-
expose_organization_country?: boolean;
|
|
16457
|
-
expose_organization_type?: boolean;
|
|
16458
|
-
expose_organization_registry_code?: boolean;
|
|
16459
16518
|
expose_eduperson_assurance?: boolean;
|
|
16519
|
+
expose_identity_source?: boolean;
|
|
16460
16520
|
expose_civil_number?: boolean;
|
|
16461
16521
|
expose_birth_date?: boolean;
|
|
16462
|
-
expose_identity_source?: boolean;
|
|
16463
16522
|
expose_active_isds?: boolean;
|
|
16523
|
+
offering?: string;
|
|
16464
16524
|
};
|
|
16465
16525
|
export type PatchedOfferingUserRequest = {
|
|
16466
16526
|
user?: string;
|
|
@@ -16837,6 +16897,7 @@ export type PatchedProtectedCallRequest = {
|
|
|
16837
16897
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
16838
16898
|
*/
|
|
16839
16899
|
user_assurance_levels?: unknown;
|
|
16900
|
+
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
16840
16901
|
};
|
|
16841
16902
|
export type PatchedProtectedRoundRequest = {
|
|
16842
16903
|
start_time?: string;
|
|
@@ -18694,6 +18755,71 @@ export type Proposal = {
|
|
|
18694
18755
|
readonly created_by: string | null;
|
|
18695
18756
|
readonly created_by_name: string;
|
|
18696
18757
|
readonly created_by_uuid: string;
|
|
18758
|
+
/**
|
|
18759
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18760
|
+
*/
|
|
18761
|
+
readonly applicant_username: string;
|
|
18762
|
+
readonly applicant_full_name: string;
|
|
18763
|
+
readonly applicant_first_name: string;
|
|
18764
|
+
readonly applicant_last_name: string;
|
|
18765
|
+
/**
|
|
18766
|
+
* Email address
|
|
18767
|
+
*/
|
|
18768
|
+
readonly applicant_email: string;
|
|
18769
|
+
/**
|
|
18770
|
+
* Indicates what registration method was used.
|
|
18771
|
+
*/
|
|
18772
|
+
readonly applicant_registration_method: string;
|
|
18773
|
+
readonly applicant_phone_number: string;
|
|
18774
|
+
readonly applicant_organization: string;
|
|
18775
|
+
readonly applicant_organization_country: string;
|
|
18776
|
+
/**
|
|
18777
|
+
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
18778
|
+
*/
|
|
18779
|
+
readonly applicant_organization_type: string;
|
|
18780
|
+
/**
|
|
18781
|
+
* Company registration code of the user's organization, if known
|
|
18782
|
+
*/
|
|
18783
|
+
readonly applicant_organization_registry_code: string;
|
|
18784
|
+
readonly applicant_job_title: string;
|
|
18785
|
+
/**
|
|
18786
|
+
* Person's affiliation within organization such as student, faculty, staff.
|
|
18787
|
+
*/
|
|
18788
|
+
readonly applicant_affiliations: unknown;
|
|
18789
|
+
/**
|
|
18790
|
+
* User's gender (male, female, or unknown)
|
|
18791
|
+
*/
|
|
18792
|
+
applicant_gender: GenderEnum | BlankEnum | NullEnum | null;
|
|
18793
|
+
/**
|
|
18794
|
+
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
18795
|
+
*/
|
|
18796
|
+
readonly applicant_personal_title: string;
|
|
18797
|
+
readonly applicant_place_of_birth: string;
|
|
18798
|
+
readonly applicant_address: string;
|
|
18799
|
+
readonly applicant_country_of_residence: string;
|
|
18800
|
+
/**
|
|
18801
|
+
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
18802
|
+
*/
|
|
18803
|
+
readonly applicant_nationality: string;
|
|
18804
|
+
/**
|
|
18805
|
+
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
18806
|
+
*/
|
|
18807
|
+
readonly applicant_nationalities: unknown;
|
|
18808
|
+
/**
|
|
18809
|
+
* REFEDS assurance profile URIs from identity provider
|
|
18810
|
+
*/
|
|
18811
|
+
readonly applicant_eduperson_assurance: unknown;
|
|
18812
|
+
/**
|
|
18813
|
+
* Source of identity
|
|
18814
|
+
* Indicates what identity provider was used.
|
|
18815
|
+
*/
|
|
18816
|
+
readonly applicant_identity_source: string;
|
|
18817
|
+
readonly applicant_civil_number: string | null;
|
|
18818
|
+
readonly applicant_birth_date: string | null;
|
|
18819
|
+
/**
|
|
18820
|
+
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
18821
|
+
*/
|
|
18822
|
+
readonly applicant_active_isds: unknown;
|
|
18697
18823
|
/**
|
|
18698
18824
|
* Duration in days after provisioning of resources.
|
|
18699
18825
|
*/
|
|
@@ -18936,6 +19062,7 @@ export type ProtectedCall = {
|
|
|
18936
19062
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
18937
19063
|
*/
|
|
18938
19064
|
user_assurance_levels?: unknown;
|
|
19065
|
+
applicant_visibility_config?: CallApplicantVisibilityConfig | null;
|
|
18939
19066
|
};
|
|
18940
19067
|
export type ProtectedCallRequest = {
|
|
18941
19068
|
/**
|
|
@@ -18990,6 +19117,7 @@ export type ProtectedCallRequest = {
|
|
|
18990
19117
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
18991
19118
|
*/
|
|
18992
19119
|
user_assurance_levels?: unknown;
|
|
19120
|
+
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
18993
19121
|
};
|
|
18994
19122
|
export type ProtectedProposalList = {
|
|
18995
19123
|
readonly uuid: string;
|
|
@@ -27325,6 +27453,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27325
27453
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
27326
27454
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
27327
27455
|
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27456
|
+
DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27328
27457
|
INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
|
|
27329
27458
|
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27330
27459
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -27583,6 +27712,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27583
27712
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
27584
27713
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
27585
27714
|
DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27715
|
+
DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27586
27716
|
INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
|
|
27587
27717
|
ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
27588
27718
|
MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -28226,7 +28356,7 @@ export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-proje
|
|
|
28226
28356
|
export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
|
|
28227
28357
|
export type CampaignStateEnum = 'Active' | 'Draft' | 'Terminated';
|
|
28228
28358
|
export type ProposalOEnum = '-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-slug' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'slug' | 'state';
|
|
28229
|
-
export type ProtectedCallFieldEnum = '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';
|
|
28359
|
+
export type ProtectedCallFieldEnum = 'applicant_visibility_config' | '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';
|
|
28230
28360
|
export type ProtectedCallOEnum = '-created' | '-manager__customer__name' | '-name' | 'created' | 'manager__customer__name' | 'name';
|
|
28231
28361
|
export type AffinityMatrixResponseScopeEnum = 'all' | 'pool' | 'suggestions';
|
|
28232
28362
|
export type PublicCallFieldEnum = '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';
|