waldur-js-client 8.0.8-dev.32 → 8.0.8-dev.34

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.js CHANGED
@@ -45674,29 +45674,6 @@ export const proposalProtectedCallsAffinityMatrixRetrieve = (options) => {
45674
45674
  ...options
45675
45675
  });
45676
45676
  };
45677
- /**
45678
- * Get applicant attribute exposure configuration for this call.
45679
- */
45680
- export const proposalProtectedCallsApplicantAttributeConfigRetrieve = (options) => {
45681
- return (options.client ?? _heyApiClient).get({
45682
- security: [
45683
- {
45684
- name: 'Authorization',
45685
- type: 'apiKey'
45686
- },
45687
- {
45688
- scheme: 'bearer',
45689
- type: 'http'
45690
- },
45691
- {
45692
- scheme: 'bearer',
45693
- type: 'http'
45694
- }
45695
- ],
45696
- url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/',
45697
- ...options
45698
- });
45699
- };
45700
45677
  /**
45701
45678
  * Archive a call.
45702
45679
  */
@@ -45920,29 +45897,6 @@ export const proposalProtectedCallsCreateManualAssignment = (options) => {
45920
45897
  }
45921
45898
  });
45922
45899
  };
45923
- /**
45924
- * Delete custom applicant attribute config, reverting to system defaults.
45925
- */
45926
- export const proposalProtectedCallsDeleteApplicantAttributeConfigDestroy = (options) => {
45927
- return (options.client ?? _heyApiClient).delete({
45928
- security: [
45929
- {
45930
- name: 'Authorization',
45931
- type: 'apiKey'
45932
- },
45933
- {
45934
- scheme: 'bearer',
45935
- type: 'http'
45936
- },
45937
- {
45938
- scheme: 'bearer',
45939
- type: 'http'
45940
- }
45941
- ],
45942
- url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/',
45943
- ...options
45944
- });
45945
- };
45946
45900
  /**
45947
45901
  * Revoke a role from a user
45948
45902
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -46814,60 +46768,6 @@ export const proposalProtectedCallsSuggestionsList = (options) => {
46814
46768
  ...options
46815
46769
  });
46816
46770
  };
46817
- /**
46818
- * Create or update applicant attribute exposure configuration.
46819
- */
46820
- export const proposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdate = (options) => {
46821
- return (options.client ?? _heyApiClient).patch({
46822
- security: [
46823
- {
46824
- name: 'Authorization',
46825
- type: 'apiKey'
46826
- },
46827
- {
46828
- scheme: 'bearer',
46829
- type: 'http'
46830
- },
46831
- {
46832
- scheme: 'bearer',
46833
- type: 'http'
46834
- }
46835
- ],
46836
- url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
46837
- ...options,
46838
- headers: {
46839
- 'Content-Type': 'application/json',
46840
- ...options.headers
46841
- }
46842
- });
46843
- };
46844
- /**
46845
- * Create or update applicant attribute exposure configuration.
46846
- */
46847
- export const proposalProtectedCallsUpdateApplicantAttributeConfig = (options) => {
46848
- return (options.client ?? _heyApiClient).post({
46849
- security: [
46850
- {
46851
- name: 'Authorization',
46852
- type: 'apiKey'
46853
- },
46854
- {
46855
- scheme: 'bearer',
46856
- type: 'http'
46857
- },
46858
- {
46859
- scheme: 'bearer',
46860
- type: 'http'
46861
- }
46862
- ],
46863
- url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
46864
- ...options,
46865
- headers: {
46866
- 'Content-Type': 'application/json',
46867
- ...options.headers
46868
- }
46869
- });
46870
- };
46871
46771
  /**
46872
46772
  * Update a user's role expiration
46873
46773
  * Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
@@ -2790,51 +2790,63 @@ export type CachedProjectUsageReport = {
2790
2790
  is_complete?: boolean;
2791
2791
  report: ProjectUsageReport;
2792
2792
  };
2793
- export type CallApplicantAttributeConfig = {
2794
- readonly uuid: string;
2795
- readonly call_uuid: string;
2796
- readonly call_name: string;
2793
+ export type CallApplicantVisibilityConfig = {
2794
+ readonly uuid?: string;
2795
+ readonly created?: string;
2796
+ readonly modified?: string;
2797
2797
  expose_full_name?: boolean;
2798
2798
  expose_email?: boolean;
2799
+ expose_username?: boolean;
2800
+ expose_registration_method?: boolean;
2799
2801
  expose_organization?: boolean;
2800
- expose_affiliations?: boolean;
2801
- expose_organization_type?: boolean;
2802
2802
  expose_organization_country?: boolean;
2803
+ expose_organization_type?: boolean;
2804
+ expose_organization_registry_code?: boolean;
2805
+ expose_affiliations?: boolean;
2806
+ expose_phone_number?: boolean;
2807
+ expose_job_title?: boolean;
2808
+ expose_gender?: boolean;
2809
+ expose_personal_title?: boolean;
2810
+ expose_place_of_birth?: boolean;
2811
+ expose_address?: boolean;
2812
+ expose_country_of_residence?: boolean;
2803
2813
  expose_nationality?: boolean;
2804
2814
  expose_nationalities?: boolean;
2805
- expose_country_of_residence?: boolean;
2806
2815
  expose_eduperson_assurance?: boolean;
2807
2816
  expose_identity_source?: boolean;
2808
- /**
2809
- * If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
2810
- */
2811
- reviewers_see_applicant_details?: boolean;
2812
- /**
2813
- * Return list of currently exposed field names.
2814
- */
2815
- readonly exposed_fields: Array<string>;
2817
+ expose_civil_number?: boolean;
2818
+ expose_birth_date?: boolean;
2819
+ expose_active_isds?: boolean;
2820
+ readonly exposed_fields?: Array<string>;
2816
2821
  /**
2817
2822
  * Return True if this is a default (unsaved) config.
2818
2823
  */
2819
- readonly is_default: boolean;
2824
+ readonly is_default?: boolean;
2820
2825
  };
2821
- export type CallApplicantAttributeConfigRequest = {
2822
- call?: string;
2826
+ export type CallApplicantVisibilityConfigRequest = {
2823
2827
  expose_full_name?: boolean;
2824
2828
  expose_email?: boolean;
2829
+ expose_username?: boolean;
2830
+ expose_registration_method?: boolean;
2825
2831
  expose_organization?: boolean;
2826
- expose_affiliations?: boolean;
2827
- expose_organization_type?: boolean;
2828
2832
  expose_organization_country?: boolean;
2833
+ expose_organization_type?: boolean;
2834
+ expose_organization_registry_code?: boolean;
2835
+ expose_affiliations?: boolean;
2836
+ expose_phone_number?: boolean;
2837
+ expose_job_title?: boolean;
2838
+ expose_gender?: boolean;
2839
+ expose_personal_title?: boolean;
2840
+ expose_place_of_birth?: boolean;
2841
+ expose_address?: boolean;
2842
+ expose_country_of_residence?: boolean;
2829
2843
  expose_nationality?: boolean;
2830
2844
  expose_nationalities?: boolean;
2831
- expose_country_of_residence?: boolean;
2832
2845
  expose_eduperson_assurance?: boolean;
2833
2846
  expose_identity_source?: boolean;
2834
- /**
2835
- * If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
2836
- */
2837
- reviewers_see_applicant_details?: boolean;
2847
+ expose_civil_number?: boolean;
2848
+ expose_birth_date?: boolean;
2849
+ expose_active_isds?: boolean;
2838
2850
  };
2839
2851
  export type CallAssignmentConfiguration = {
2840
2852
  readonly uuid: string;
@@ -4573,6 +4585,7 @@ export type ConstanceSettings = {
4573
4585
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4574
4586
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
4575
4587
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4588
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4576
4589
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
4577
4590
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4578
4591
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -4831,6 +4844,7 @@ export type ConstanceSettingsRequest = {
4831
4844
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4832
4845
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
4833
4846
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4847
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4834
4848
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
4835
4849
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4836
4850
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -12628,15 +12642,17 @@ export type OfferingUserAttributeConfig = {
12628
12642
  readonly uuid: string;
12629
12643
  readonly created: string;
12630
12644
  readonly modified: string;
12631
- readonly offering_uuid: string;
12632
- readonly offering_name: string;
12633
- expose_username?: boolean;
12634
12645
  expose_full_name?: boolean;
12635
12646
  expose_email?: boolean;
12636
- expose_phone_number?: boolean;
12647
+ expose_username?: boolean;
12648
+ expose_registration_method?: boolean;
12637
12649
  expose_organization?: boolean;
12638
- expose_job_title?: boolean;
12650
+ expose_organization_country?: boolean;
12651
+ expose_organization_type?: boolean;
12652
+ expose_organization_registry_code?: boolean;
12639
12653
  expose_affiliations?: boolean;
12654
+ expose_phone_number?: boolean;
12655
+ expose_job_title?: boolean;
12640
12656
  expose_gender?: boolean;
12641
12657
  expose_personal_title?: boolean;
12642
12658
  expose_place_of_birth?: boolean;
@@ -12644,32 +12660,31 @@ export type OfferingUserAttributeConfig = {
12644
12660
  expose_country_of_residence?: boolean;
12645
12661
  expose_nationality?: boolean;
12646
12662
  expose_nationalities?: boolean;
12647
- expose_organization_country?: boolean;
12648
- expose_organization_type?: boolean;
12649
- expose_organization_registry_code?: boolean;
12650
12663
  expose_eduperson_assurance?: boolean;
12664
+ expose_identity_source?: boolean;
12651
12665
  expose_civil_number?: boolean;
12652
12666
  expose_birth_date?: boolean;
12653
- expose_identity_source?: boolean;
12654
12667
  expose_active_isds?: boolean;
12655
- /**
12656
- * Return list of field names currently configured for exposure.
12657
- */
12658
12668
  readonly exposed_fields: Array<string>;
12659
12669
  /**
12660
12670
  * Return True if this is a default (unsaved) config.
12661
12671
  */
12662
12672
  readonly is_default: boolean;
12673
+ readonly offering_uuid: string;
12674
+ readonly offering_name: string;
12663
12675
  };
12664
12676
  export type OfferingUserAttributeConfigRequest = {
12665
- offering?: string;
12666
- expose_username?: boolean;
12667
12677
  expose_full_name?: boolean;
12668
12678
  expose_email?: boolean;
12669
- expose_phone_number?: boolean;
12679
+ expose_username?: boolean;
12680
+ expose_registration_method?: boolean;
12670
12681
  expose_organization?: boolean;
12671
- expose_job_title?: boolean;
12682
+ expose_organization_country?: boolean;
12683
+ expose_organization_type?: boolean;
12684
+ expose_organization_registry_code?: boolean;
12672
12685
  expose_affiliations?: boolean;
12686
+ expose_phone_number?: boolean;
12687
+ expose_job_title?: boolean;
12673
12688
  expose_gender?: boolean;
12674
12689
  expose_personal_title?: boolean;
12675
12690
  expose_place_of_birth?: boolean;
@@ -12677,14 +12692,12 @@ export type OfferingUserAttributeConfigRequest = {
12677
12692
  expose_country_of_residence?: boolean;
12678
12693
  expose_nationality?: boolean;
12679
12694
  expose_nationalities?: boolean;
12680
- expose_organization_country?: boolean;
12681
- expose_organization_type?: boolean;
12682
- expose_organization_registry_code?: boolean;
12683
12695
  expose_eduperson_assurance?: boolean;
12696
+ expose_identity_source?: boolean;
12684
12697
  expose_civil_number?: boolean;
12685
12698
  expose_birth_date?: boolean;
12686
- expose_identity_source?: boolean;
12687
12699
  expose_active_isds?: boolean;
12700
+ offering?: string;
12688
12701
  };
12689
12702
  export type OfferingUserRequest = {
12690
12703
  user?: string;
@@ -15686,24 +15699,6 @@ export type PatchedBroadcastMessageRequest = {
15686
15699
  query?: unknown;
15687
15700
  send_at?: string | null;
15688
15701
  };
15689
- export type PatchedCallApplicantAttributeConfigRequest = {
15690
- call?: string;
15691
- expose_full_name?: boolean;
15692
- expose_email?: boolean;
15693
- expose_organization?: boolean;
15694
- expose_affiliations?: boolean;
15695
- expose_organization_type?: boolean;
15696
- expose_organization_country?: boolean;
15697
- expose_nationality?: boolean;
15698
- expose_nationalities?: boolean;
15699
- expose_country_of_residence?: boolean;
15700
- expose_eduperson_assurance?: boolean;
15701
- expose_identity_source?: boolean;
15702
- /**
15703
- * If True, reviewers see applicant identity. If False, proposals are anonymized for reviewers.
15704
- */
15705
- reviewers_see_applicant_details?: boolean;
15706
- };
15707
15702
  export type PatchedCallAssignmentConfigurationRequest = {
15708
15703
  /**
15709
15704
  * Automatically assign next-best reviewer when someone declines. If False, manager must manually approve reassignments.
@@ -16438,14 +16433,17 @@ export type PatchedOfferingUsagePolicyRequest = {
16438
16433
  period?: PolicyPeriodEnum;
16439
16434
  };
16440
16435
  export type PatchedOfferingUserAttributeConfigRequest = {
16441
- offering?: string;
16442
- expose_username?: boolean;
16443
16436
  expose_full_name?: boolean;
16444
16437
  expose_email?: boolean;
16445
- expose_phone_number?: boolean;
16438
+ expose_username?: boolean;
16439
+ expose_registration_method?: boolean;
16446
16440
  expose_organization?: boolean;
16447
- expose_job_title?: boolean;
16441
+ expose_organization_country?: boolean;
16442
+ expose_organization_type?: boolean;
16443
+ expose_organization_registry_code?: boolean;
16448
16444
  expose_affiliations?: boolean;
16445
+ expose_phone_number?: boolean;
16446
+ expose_job_title?: boolean;
16449
16447
  expose_gender?: boolean;
16450
16448
  expose_personal_title?: boolean;
16451
16449
  expose_place_of_birth?: boolean;
@@ -16453,14 +16451,12 @@ export type PatchedOfferingUserAttributeConfigRequest = {
16453
16451
  expose_country_of_residence?: boolean;
16454
16452
  expose_nationality?: boolean;
16455
16453
  expose_nationalities?: boolean;
16456
- expose_organization_country?: boolean;
16457
- expose_organization_type?: boolean;
16458
- expose_organization_registry_code?: boolean;
16459
16454
  expose_eduperson_assurance?: boolean;
16455
+ expose_identity_source?: boolean;
16460
16456
  expose_civil_number?: boolean;
16461
16457
  expose_birth_date?: boolean;
16462
- expose_identity_source?: boolean;
16463
16458
  expose_active_isds?: boolean;
16459
+ offering?: string;
16464
16460
  };
16465
16461
  export type PatchedOfferingUserRequest = {
16466
16462
  user?: string;
@@ -16837,6 +16833,7 @@ export type PatchedProtectedCallRequest = {
16837
16833
  * List of required assurance URIs (REFEDS). User must have ALL of these.
16838
16834
  */
16839
16835
  user_assurance_levels?: unknown;
16836
+ applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
16840
16837
  };
16841
16838
  export type PatchedProtectedRoundRequest = {
16842
16839
  start_time?: string;
@@ -18694,6 +18691,71 @@ export type Proposal = {
18694
18691
  readonly created_by: string | null;
18695
18692
  readonly created_by_name: string;
18696
18693
  readonly created_by_uuid: string;
18694
+ /**
18695
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
18696
+ */
18697
+ readonly applicant_username: string;
18698
+ readonly applicant_full_name: string;
18699
+ readonly applicant_first_name: string;
18700
+ readonly applicant_last_name: string;
18701
+ /**
18702
+ * Email address
18703
+ */
18704
+ readonly applicant_email: string;
18705
+ /**
18706
+ * Indicates what registration method was used.
18707
+ */
18708
+ readonly applicant_registration_method: string;
18709
+ readonly applicant_phone_number: string;
18710
+ readonly applicant_organization: string;
18711
+ readonly applicant_organization_country: string;
18712
+ /**
18713
+ * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
18714
+ */
18715
+ readonly applicant_organization_type: string;
18716
+ /**
18717
+ * Company registration code of the user's organization, if known
18718
+ */
18719
+ readonly applicant_organization_registry_code: string;
18720
+ readonly applicant_job_title: string;
18721
+ /**
18722
+ * Person's affiliation within organization such as student, faculty, staff.
18723
+ */
18724
+ readonly applicant_affiliations: unknown;
18725
+ /**
18726
+ * User's gender (male, female, or unknown)
18727
+ */
18728
+ applicant_gender: GenderEnum | BlankEnum | NullEnum | null;
18729
+ /**
18730
+ * Honorific title (Mr, Ms, Dr, Prof, etc.)
18731
+ */
18732
+ readonly applicant_personal_title: string;
18733
+ readonly applicant_place_of_birth: string;
18734
+ readonly applicant_address: string;
18735
+ readonly applicant_country_of_residence: string;
18736
+ /**
18737
+ * Primary citizenship (ISO 3166-1 alpha-2 code)
18738
+ */
18739
+ readonly applicant_nationality: string;
18740
+ /**
18741
+ * List of all citizenships (ISO 3166-1 alpha-2 codes)
18742
+ */
18743
+ readonly applicant_nationalities: unknown;
18744
+ /**
18745
+ * REFEDS assurance profile URIs from identity provider
18746
+ */
18747
+ readonly applicant_eduperson_assurance: unknown;
18748
+ /**
18749
+ * Source of identity
18750
+ * Indicates what identity provider was used.
18751
+ */
18752
+ readonly applicant_identity_source: string;
18753
+ readonly applicant_civil_number: string | null;
18754
+ readonly applicant_birth_date: string | null;
18755
+ /**
18756
+ * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
18757
+ */
18758
+ readonly applicant_active_isds: unknown;
18697
18759
  /**
18698
18760
  * Duration in days after provisioning of resources.
18699
18761
  */
@@ -18936,6 +18998,7 @@ export type ProtectedCall = {
18936
18998
  * List of required assurance URIs (REFEDS). User must have ALL of these.
18937
18999
  */
18938
19000
  user_assurance_levels?: unknown;
19001
+ applicant_visibility_config?: CallApplicantVisibilityConfig | null;
18939
19002
  };
18940
19003
  export type ProtectedCallRequest = {
18941
19004
  /**
@@ -18990,6 +19053,7 @@ export type ProtectedCallRequest = {
18990
19053
  * List of required assurance URIs (REFEDS). User must have ALL of these.
18991
19054
  */
18992
19055
  user_assurance_levels?: unknown;
19056
+ applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
18993
19057
  };
18994
19058
  export type ProtectedProposalList = {
18995
19059
  readonly uuid: string;
@@ -25151,7 +25215,7 @@ export type UserAgreementRequest = {
25151
25215
  */
25152
25216
  language: string;
25153
25217
  };
25154
- export type UserAttributeEnum = 'username' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
25218
+ export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
25155
25219
  export type UserAuthMethodCount = {
25156
25220
  /**
25157
25221
  * Authentication method
@@ -27325,6 +27389,7 @@ export type ConstanceSettingsRequestForm = {
27325
27389
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
27326
27390
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
27327
27391
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27392
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27328
27393
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
27329
27394
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27330
27395
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -27583,6 +27648,7 @@ export type ConstanceSettingsRequestMultipart = {
27583
27648
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
27584
27649
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
27585
27650
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27651
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27586
27652
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
27587
27653
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
27588
27654
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -28226,7 +28292,7 @@ export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-proje
28226
28292
  export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
28227
28293
  export type CampaignStateEnum = 'Active' | 'Draft' | 'Terminated';
28228
28294
  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';
28295
+ 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
28296
  export type ProtectedCallOEnum = '-created' | '-manager__customer__name' | '-name' | 'created' | 'manager__customer__name' | 'name';
28231
28297
  export type AffinityMatrixResponseScopeEnum = 'all' | 'pool' | 'suggestions';
28232
28298
  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';
@@ -72229,18 +72295,6 @@ export type ProposalProtectedCallsAffinityMatrixRetrieveResponses = {
72229
72295
  200: AffinityMatrixResponse;
72230
72296
  };
72231
72297
  export type ProposalProtectedCallsAffinityMatrixRetrieveResponse = ProposalProtectedCallsAffinityMatrixRetrieveResponses[keyof ProposalProtectedCallsAffinityMatrixRetrieveResponses];
72232
- export type ProposalProtectedCallsApplicantAttributeConfigRetrieveData = {
72233
- body?: never;
72234
- path: {
72235
- uuid: string;
72236
- };
72237
- query?: never;
72238
- url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/';
72239
- };
72240
- export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses = {
72241
- 200: CallApplicantAttributeConfig;
72242
- };
72243
- export type ProposalProtectedCallsApplicantAttributeConfigRetrieveResponse = ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses[keyof ProposalProtectedCallsApplicantAttributeConfigRetrieveResponses];
72244
72298
  export type ProposalProtectedCallsArchiveData = {
72245
72299
  body?: never;
72246
72300
  path: {
@@ -72378,21 +72432,6 @@ export type ProposalProtectedCallsCreateManualAssignmentResponses = {
72378
72432
  200: CreateManualAssignmentResponse;
72379
72433
  };
72380
72434
  export type ProposalProtectedCallsCreateManualAssignmentResponse = ProposalProtectedCallsCreateManualAssignmentResponses[keyof ProposalProtectedCallsCreateManualAssignmentResponses];
72381
- export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyData = {
72382
- body?: never;
72383
- path: {
72384
- uuid: string;
72385
- };
72386
- query?: never;
72387
- url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/';
72388
- };
72389
- export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses = {
72390
- /**
72391
- * No response body
72392
- */
72393
- 204: void;
72394
- };
72395
- export type ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponse = ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses[keyof ProposalProtectedCallsDeleteApplicantAttributeConfigDestroyResponses];
72396
72435
  export type ProposalProtectedCallsDeleteUserData = {
72397
72436
  body: UserRoleDeleteRequest;
72398
72437
  path: {
@@ -73054,30 +73093,6 @@ export type ProposalProtectedCallsSuggestionsListResponses = {
73054
73093
  200: Array<ReviewerSuggestion>;
73055
73094
  };
73056
73095
  export type ProposalProtectedCallsSuggestionsListResponse = ProposalProtectedCallsSuggestionsListResponses[keyof ProposalProtectedCallsSuggestionsListResponses];
73057
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateData = {
73058
- body?: PatchedCallApplicantAttributeConfigRequest;
73059
- path: {
73060
- uuid: string;
73061
- };
73062
- query?: never;
73063
- url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
73064
- };
73065
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses = {
73066
- 200: CallApplicantAttributeConfig;
73067
- };
73068
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdateResponses];
73069
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigData = {
73070
- body?: CallApplicantAttributeConfigRequest;
73071
- path: {
73072
- uuid: string;
73073
- };
73074
- query?: never;
73075
- url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/';
73076
- };
73077
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponses = {
73078
- 200: CallApplicantAttributeConfig;
73079
- };
73080
- export type ProposalProtectedCallsUpdateApplicantAttributeConfigResponse = ProposalProtectedCallsUpdateApplicantAttributeConfigResponses[keyof ProposalProtectedCallsUpdateApplicantAttributeConfigResponses];
73081
73096
  export type ProposalProtectedCallsUpdateUserData = {
73082
73097
  body: UserRoleUpdateRequest;
73083
73098
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.32",
3
+ "version": "8.0.8-dev.34",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",