waldur-js-client 7.9.6-dev.14 → 7.9.6-dev.15

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.
@@ -10960,6 +10960,10 @@ export type PatchedProtectedCallRequest = {
10960
10960
  * Compliance checklist that proposals must complete before submission
10961
10961
  */
10962
10962
  compliance_checklist?: string | null;
10963
+ /**
10964
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
10965
+ */
10966
+ proposal_slug_template?: string | null;
10963
10967
  };
10964
10968
  export type PatchedProtectedRoundRequest = {
10965
10969
  start_time?: string;
@@ -12409,6 +12413,10 @@ export type ProtectedCall = {
12409
12413
  */
12410
12414
  compliance_checklist?: string | null;
12411
12415
  readonly compliance_checklist_name?: string;
12416
+ /**
12417
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12418
+ */
12419
+ proposal_slug_template?: string | null;
12412
12420
  };
12413
12421
  export type ProtectedCallRequest = {
12414
12422
  /**
@@ -12435,6 +12443,10 @@ export type ProtectedCallRequest = {
12435
12443
  * Compliance checklist that proposals must complete before submission
12436
12444
  */
12437
12445
  compliance_checklist?: string | null;
12446
+ /**
12447
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12448
+ */
12449
+ proposal_slug_template?: string | null;
12438
12450
  };
12439
12451
  export type ProtectedProposalList = {
12440
12452
  readonly uuid: string;
@@ -51900,7 +51912,7 @@ export type ProposalProtectedCallsListData = {
51900
51912
  customer?: string;
51901
51913
  customer_keyword?: string;
51902
51914
  customer_uuid?: string;
51903
- 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' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
51915
+ 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'>;
51904
51916
  has_active_round?: boolean;
51905
51917
  name?: string;
51906
51918
  /**
@@ -51993,7 +52005,7 @@ export type ProposalProtectedCallsRetrieveData = {
51993
52005
  uuid: string;
51994
52006
  };
51995
52007
  query?: {
51996
- 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' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
52008
+ 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'>;
51997
52009
  };
51998
52010
  url: '/api/proposal-protected-calls/{uuid}/';
51999
52011
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.6-dev.14",
3
+ "version": "7.9.6-dev.15",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",