waldur-js-client 8.0.10-dev.24 → 8.0.10-dev.25
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 +5 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -20984,6 +20984,10 @@ export type ProtectedCall = {
|
|
|
20984
20984
|
[key: string]: unknown;
|
|
20985
20985
|
};
|
|
20986
20986
|
applicant_visibility_config?: CallApplicantVisibilityConfig | null;
|
|
20987
|
+
/**
|
|
20988
|
+
* Whether any proposal has been submitted to this call. Used by the frontend to gate slug-template and checklist fields.
|
|
20989
|
+
*/
|
|
20990
|
+
readonly has_proposals: boolean;
|
|
20987
20991
|
};
|
|
20988
20992
|
export type ProtectedCallRequest = {
|
|
20989
20993
|
/**
|
|
@@ -31333,7 +31337,7 @@ export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-proje
|
|
|
31333
31337
|
export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
|
|
31334
31338
|
export type CampaignStateEnum = 'Active' | 'Draft' | 'Terminated';
|
|
31335
31339
|
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';
|
|
31336
|
-
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';
|
|
31340
|
+
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' | 'has_proposals' | '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';
|
|
31337
31341
|
export type ProtectedCallOEnum = '-created' | '-manager__customer__name' | '-name' | 'created' | 'manager__customer__name' | 'name';
|
|
31338
31342
|
export type AffinityMatrixResponseScopeEnum = 'all' | 'pool' | 'suggestions';
|
|
31339
31343
|
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';
|