waldur-js-client 8.0.9-dev.0 → 8.0.9-dev.2

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.
@@ -3324,6 +3324,110 @@ export type CallRound = {
3324
3324
  status: RoundStatus;
3325
3325
  };
3326
3326
  export type CallStates = 'draft' | 'active' | 'archived';
3327
+ export type CallWorkflowStep = {
3328
+ readonly uuid: string;
3329
+ readonly created: string;
3330
+ readonly modified: string;
3331
+ step: StepEnum;
3332
+ readonly call_uuid: string;
3333
+ readonly call_name: string;
3334
+ /**
3335
+ * Whether this step is enabled. Disabled steps are skipped.
3336
+ */
3337
+ is_enabled?: boolean;
3338
+ /**
3339
+ * Duration in days. Used to calculate deadlines.
3340
+ */
3341
+ duration_in_days?: number | null;
3342
+ checklist?: string | null;
3343
+ readonly checklist_name: string | null;
3344
+ /**
3345
+ * Evaluators cannot see each other's assessments.
3346
+ */
3347
+ blind_review?: boolean;
3348
+ /**
3349
+ * Evaluator must confirm absence of conflict of interest.
3350
+ */
3351
+ requires_coi_confirmation?: boolean;
3352
+ /**
3353
+ * Minimum reviews required before step can complete.
3354
+ */
3355
+ min_reviewers?: number | null;
3356
+ /**
3357
+ * Minimum average score to pass this step.
3358
+ */
3359
+ min_score_threshold?: string | null;
3360
+ /**
3361
+ * Whether the applicant can see step details (not just status).
3362
+ */
3363
+ applicant_visible?: boolean;
3364
+ /**
3365
+ * Role expected to act on this step.
3366
+ */
3367
+ responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
3368
+ /**
3369
+ * How this step advances to the next.
3370
+ */
3371
+ transition_mode?: TransitionModeEnum;
3372
+ /**
3373
+ * Allocation decision: require applicant award response after decision.
3374
+ */
3375
+ include_award_response?: boolean;
3376
+ /**
3377
+ * Optional override of catalog ordering.
3378
+ */
3379
+ display_order?: number | null;
3380
+ criteria?: Array<WorkflowCriterion>;
3381
+ };
3382
+ export type CallWorkflowStepRequest = {
3383
+ step: StepEnum;
3384
+ /**
3385
+ * Whether this step is enabled. Disabled steps are skipped.
3386
+ */
3387
+ is_enabled?: boolean;
3388
+ /**
3389
+ * Duration in days. Used to calculate deadlines.
3390
+ */
3391
+ duration_in_days?: number | null;
3392
+ checklist?: string | null;
3393
+ /**
3394
+ * Evaluators cannot see each other's assessments.
3395
+ */
3396
+ blind_review?: boolean;
3397
+ /**
3398
+ * Evaluator must confirm absence of conflict of interest.
3399
+ */
3400
+ requires_coi_confirmation?: boolean;
3401
+ /**
3402
+ * Minimum reviews required before step can complete.
3403
+ */
3404
+ min_reviewers?: number | null;
3405
+ /**
3406
+ * Minimum average score to pass this step.
3407
+ */
3408
+ min_score_threshold?: string | null;
3409
+ /**
3410
+ * Whether the applicant can see step details (not just status).
3411
+ */
3412
+ applicant_visible?: boolean;
3413
+ /**
3414
+ * Role expected to act on this step.
3415
+ */
3416
+ responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
3417
+ /**
3418
+ * How this step advances to the next.
3419
+ */
3420
+ transition_mode?: TransitionModeEnum;
3421
+ /**
3422
+ * Allocation decision: require applicant award response after decision.
3423
+ */
3424
+ include_award_response?: boolean;
3425
+ /**
3426
+ * Optional override of catalog ordering.
3427
+ */
3428
+ display_order?: number | null;
3429
+ criteria?: Array<WorkflowCriterionRequest>;
3430
+ };
3327
3431
  export type Campaign = {
3328
3432
  readonly uuid: string;
3329
3433
  name: string;
@@ -4066,7 +4170,7 @@ export type ChecklistTemplate = {
4066
4170
  questions: Array<Question>;
4067
4171
  initial_visible_questions: Array<Question>;
4068
4172
  };
4069
- export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
4173
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent' | 'workflow_step';
4070
4174
  export type CircuitBreakerConfig = {
4071
4175
  /**
4072
4176
  * Number of failures before opening circuit
@@ -4220,6 +4324,31 @@ export type CommentRequest = {
4220
4324
  description: string;
4221
4325
  is_public?: boolean;
4222
4326
  };
4327
+ export type CompleteWorkflowStepRequest = {
4328
+ /**
4329
+ * UUID of the workflow step instance the client believes is active. Used to detect concurrent step transitions.
4330
+ */
4331
+ step_uuid: string;
4332
+ /**
4333
+ * Step outcome. Must be in the active step's allow-list. 'rejected' and 'expired' are reserved for system transitions.
4334
+ */
4335
+ outcome: OutcomeEnum;
4336
+ /**
4337
+ * Explanation for the outcome.
4338
+ */
4339
+ outcome_reason?: string;
4340
+ };
4341
+ export type CompleteWorkflowStepResponse = {
4342
+ detail: string;
4343
+ /**
4344
+ * New proposal state when the workflow terminates.
4345
+ */
4346
+ proposal_state?: string;
4347
+ /**
4348
+ * Identifier of the step that just became active.
4349
+ */
4350
+ next_step?: string;
4351
+ };
4223
4352
  export type ComplianceOverview = {
4224
4353
  readonly total_projects: number;
4225
4354
  readonly projects_with_completions: number;
@@ -4638,6 +4767,7 @@ export type ConstanceSettings = {
4638
4767
  SHORT_PAGE_TITLE?: string;
4639
4768
  FULL_PAGE_TITLE?: string;
4640
4769
  PROJECT_END_DATE_MANDATORY?: boolean;
4770
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
4641
4771
  ENABLE_ORDER_START_DATE?: boolean;
4642
4772
  BRAND_COLOR?: string;
4643
4773
  HERO_LINK_LABEL?: string;
@@ -4906,6 +5036,7 @@ export type ConstanceSettingsRequest = {
4906
5036
  SHORT_PAGE_TITLE?: string;
4907
5037
  FULL_PAGE_TITLE?: string;
4908
5038
  PROJECT_END_DATE_MANDATORY?: boolean;
5039
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
4909
5040
  ENABLE_ORDER_START_DATE?: boolean;
4910
5041
  BRAND_COLOR?: string;
4911
5042
  HERO_LINK_LABEL?: string;
@@ -5618,6 +5749,10 @@ export type Customer = {
5618
5749
  * List of allowed identity sources (identity providers).
5619
5750
  */
5620
5751
  user_identity_sources?: unknown;
5752
+ /**
5753
+ * Affiliations offered to project creators of this organization.
5754
+ */
5755
+ readonly default_affiliations?: Array<AffiliatedOrganization>;
5621
5756
  name?: string;
5622
5757
  /**
5623
5758
  * URL-friendly identifier. Only editable by staff users.
@@ -5789,6 +5924,9 @@ export type CustomerCreditConsumption = {
5789
5924
  readonly date: string;
5790
5925
  readonly price: string;
5791
5926
  };
5927
+ export type CustomerDefaultAffiliationsUpdateRequest = {
5928
+ default_affiliations?: Array<string>;
5929
+ };
5792
5930
  export type CustomerDetails = {
5793
5931
  name?: string;
5794
5932
  address?: string;
@@ -15667,6 +15805,7 @@ export type OrganizationalUser = {
15667
15805
  full_name: string;
15668
15806
  role: string | null;
15669
15807
  };
15808
+ export type OutcomeEnum = 'eligible' | 'ineligible' | 'feasible' | 'infeasible' | 'reviewed' | 'approved' | 'declined' | 'accepted' | 'rejected' | 'expired';
15670
15809
  export type PaidRequest = {
15671
15810
  date: string;
15672
15811
  proof?: Blob | File;
@@ -15958,6 +16097,54 @@ export type PatchedCallReviewerPoolUpdateRequest = {
15958
16097
  */
15959
16098
  max_assignments?: number;
15960
16099
  };
16100
+ export type PatchedCallWorkflowStepRequest = {
16101
+ /**
16102
+ * Whether this step is enabled. Disabled steps are skipped.
16103
+ */
16104
+ is_enabled?: boolean;
16105
+ /**
16106
+ * Duration in days. Used to calculate deadlines.
16107
+ */
16108
+ duration_in_days?: number | null;
16109
+ checklist?: string | null;
16110
+ /**
16111
+ * Evaluators cannot see each other's assessments.
16112
+ */
16113
+ blind_review?: boolean;
16114
+ /**
16115
+ * Evaluator must confirm absence of conflict of interest.
16116
+ */
16117
+ requires_coi_confirmation?: boolean;
16118
+ /**
16119
+ * Minimum reviews required before step can complete.
16120
+ */
16121
+ min_reviewers?: number | null;
16122
+ /**
16123
+ * Minimum average score to pass this step.
16124
+ */
16125
+ min_score_threshold?: string | null;
16126
+ /**
16127
+ * Whether the applicant can see step details (not just status).
16128
+ */
16129
+ applicant_visible?: boolean;
16130
+ /**
16131
+ * Role expected to act on this step.
16132
+ */
16133
+ responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
16134
+ /**
16135
+ * How this step advances to the next.
16136
+ */
16137
+ transition_mode?: TransitionModeEnum;
16138
+ /**
16139
+ * Allocation decision: require applicant award response after decision.
16140
+ */
16141
+ include_award_response?: boolean;
16142
+ /**
16143
+ * Optional override of catalog ordering.
16144
+ */
16145
+ display_order?: number | null;
16146
+ criteria?: Array<WorkflowCriterionRequest>;
16147
+ };
15961
16148
  export type PatchedCategoryColumnRequest = {
15962
16149
  /**
15963
16150
  * Index allows to reorder columns.
@@ -16893,6 +17080,7 @@ export type PatchedProjectRequest = {
16893
17080
  * List of allowed identity sources (identity providers).
16894
17081
  */
16895
17082
  user_identity_sources?: unknown;
17083
+ affiliation_uuid?: string | null;
16896
17084
  science_sub_domain?: string | null;
16897
17085
  };
16898
17086
  export type PatchedProjectServiceAccountRequest = {
@@ -18225,7 +18413,7 @@ export type Project = {
18225
18413
  * List of allowed identity sources (identity providers).
18226
18414
  */
18227
18415
  user_identity_sources?: unknown;
18228
- readonly affiliated_organizations?: Array<AffiliatedOrganization>;
18416
+ affiliation?: AffiliatedOrganization;
18229
18417
  science_sub_domain?: string | null;
18230
18418
  readonly science_sub_domain_name?: string;
18231
18419
  /**
@@ -18255,8 +18443,8 @@ export type ProjectAccountingSummary = {
18255
18443
  readonly total_spend: string;
18256
18444
  readonly current_month_spend: string;
18257
18445
  };
18258
- export type ProjectAffiliatedOrganizationsUpdateRequest = {
18259
- affiliated_organizations?: Array<string>;
18446
+ export type ProjectAffiliationUpdateRequest = {
18447
+ affiliation?: string | null;
18260
18448
  };
18261
18449
  export type ProjectAnswer = {
18262
18450
  readonly project_uuid: string;
@@ -18636,6 +18824,7 @@ export type ProjectRequest = {
18636
18824
  * List of allowed identity sources (identity providers).
18637
18825
  */
18638
18826
  user_identity_sources?: unknown;
18827
+ affiliation_uuid?: string | null;
18639
18828
  science_sub_domain?: string | null;
18640
18829
  };
18641
18830
  export type ProjectServiceAccount = {
@@ -19095,6 +19284,33 @@ export type ProposalUpdateProjectDetailsRequest = {
19095
19284
  duration_in_days?: number | null;
19096
19285
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
19097
19286
  };
19287
+ export type ProposalWorkflowStepInstance = {
19288
+ readonly uuid: string;
19289
+ step: StepEnum;
19290
+ readonly step_name: string;
19291
+ readonly step_description: string;
19292
+ readonly responsible_role: string | null;
19293
+ status: ProposalWorkflowStepInstanceStatusEnum;
19294
+ /**
19295
+ * Step-specific outcome (e.g., eligible, feasible, approved).
19296
+ */
19297
+ readonly outcome: string | null;
19298
+ /**
19299
+ * Explanation for the outcome (e.g., rejection reason).
19300
+ */
19301
+ readonly outcome_reason: string;
19302
+ /**
19303
+ * When this step became active.
19304
+ */
19305
+ readonly started_at: string | null;
19306
+ readonly completed_at: string | null;
19307
+ readonly completed_by: string | null;
19308
+ /**
19309
+ * Computed from started_at + step duration_in_days.
19310
+ */
19311
+ readonly deadline: string | null;
19312
+ };
19313
+ export type ProposalWorkflowStepInstanceStatusEnum = 'pending' | 'active' | 'completed' | 'expired' | 'skipped';
19098
19314
  export type ProposedAssignment = {
19099
19315
  readonly url: string;
19100
19316
  readonly uuid: string;
@@ -21157,6 +21373,20 @@ export type ReferenceNumberRequest = {
21157
21373
  */
21158
21374
  reference_number?: string;
21159
21375
  };
21376
+ export type RejectWorkflowStepRequest = {
21377
+ /**
21378
+ * UUID of the workflow step instance the client believes is active. Used to detect concurrent step transitions.
21379
+ */
21380
+ step_uuid: string;
21381
+ /**
21382
+ * Reason for rejecting the proposal at this step.
21383
+ */
21384
+ reason: string;
21385
+ };
21386
+ export type RejectWorkflowStepResponse = {
21387
+ detail: string;
21388
+ proposal_state: string;
21389
+ };
21160
21390
  export type RelationshipTypeEnum = 'employment' | 'consulting' | 'equity' | 'board' | 'royalties' | 'gifts' | 'other';
21161
21391
  export type RemoteAllocation = {
21162
21392
  readonly url?: string;
@@ -22156,6 +22386,7 @@ export type ResourcesLimits = {
22156
22386
  */
22157
22387
  readonly organization_group_uuid: string;
22158
22388
  };
22389
+ export type ResponsibleRoleEnum = 'call_manager' | 'offering_manager' | 'reviewer' | 'panel_member' | 'applicant';
22159
22390
  export type ReviewCommentRequest = {
22160
22391
  /**
22161
22392
  * Optional comment for review
@@ -24406,6 +24637,7 @@ export type StateTransitionError = {
24406
24637
  */
24407
24638
  detail: string;
24408
24639
  };
24640
+ export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
24409
24641
  export type StorageDataType = {
24410
24642
  key: string;
24411
24643
  label: string;
@@ -25040,6 +25272,7 @@ export type TransactionStats = {
25040
25272
  */
25041
25273
  readonly deadlocks: number;
25042
25274
  };
25275
+ export type TransitionModeEnum = 'automatic_on_completion';
25043
25276
  export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
25044
25277
  export type TriggerCoiDetectionRequest = {
25045
25278
  job_type?: TriggerCoiDetectionJobTypeEnum;
@@ -26288,6 +26521,15 @@ export type WebHookRequest = {
26288
26521
  content_type?: WebHookContentTypeEnum;
26289
26522
  };
26290
26523
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
26524
+ export type WorkflowCriterion = {
26525
+ readonly uuid: string;
26526
+ name: string;
26527
+ order?: number;
26528
+ };
26529
+ export type WorkflowCriterionRequest = {
26530
+ name: string;
26531
+ order?: number;
26532
+ };
26291
26533
  export type ZammadarticletypeEnum = 'email' | 'phone' | 'web' | 'note' | 'sms' | 'chat' | 'fax' | 'twitter status' | 'twitter direct-message' | 'facebook feed post' | 'facebook feed comment' | 'telegram personal-message';
26292
26534
  export type OfferingProfileRole = {
26293
26535
  uuid: string;
@@ -27275,6 +27517,7 @@ export type ProjectRequestForm = {
27275
27517
  * List of allowed identity sources (identity providers).
27276
27518
  */
27277
27519
  user_identity_sources?: unknown;
27520
+ affiliation_uuid?: string | null;
27278
27521
  science_sub_domain?: string | null;
27279
27522
  };
27280
27523
  export type ProjectRequestMultipart = {
@@ -27325,6 +27568,7 @@ export type ProjectRequestMultipart = {
27325
27568
  * List of allowed identity sources (identity providers).
27326
27569
  */
27327
27570
  user_identity_sources?: unknown;
27571
+ affiliation_uuid?: string | null;
27328
27572
  science_sub_domain?: string | null;
27329
27573
  };
27330
27574
  export type PatchedProjectRequestForm = {
@@ -27375,6 +27619,7 @@ export type PatchedProjectRequestForm = {
27375
27619
  * List of allowed identity sources (identity providers).
27376
27620
  */
27377
27621
  user_identity_sources?: unknown;
27622
+ affiliation_uuid?: string | null;
27378
27623
  science_sub_domain?: string | null;
27379
27624
  };
27380
27625
  export type PatchedProjectRequestMultipart = {
@@ -27425,6 +27670,7 @@ export type PatchedProjectRequestMultipart = {
27425
27670
  * List of allowed identity sources (identity providers).
27426
27671
  */
27427
27672
  user_identity_sources?: unknown;
27673
+ affiliation_uuid?: string | null;
27428
27674
  science_sub_domain?: string | null;
27429
27675
  };
27430
27676
  export type ConstanceSettingsRequestForm = {
@@ -27470,6 +27716,7 @@ export type ConstanceSettingsRequestForm = {
27470
27716
  SHORT_PAGE_TITLE?: string;
27471
27717
  FULL_PAGE_TITLE?: string;
27472
27718
  PROJECT_END_DATE_MANDATORY?: boolean;
27719
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
27473
27720
  ENABLE_ORDER_START_DATE?: boolean;
27474
27721
  BRAND_COLOR?: string;
27475
27722
  HERO_LINK_LABEL?: string;
@@ -27738,6 +27985,7 @@ export type ConstanceSettingsRequestMultipart = {
27738
27985
  SHORT_PAGE_TITLE?: string;
27739
27986
  FULL_PAGE_TITLE?: string;
27740
27987
  PROJECT_END_DATE_MANDATORY?: boolean;
27988
+ AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
27741
27989
  ENABLE_ORDER_START_DATE?: boolean;
27742
27990
  BRAND_COLOR?: string;
27743
27991
  HERO_LINK_LABEL?: string;
@@ -28397,6 +28645,7 @@ export type PatchedUserRequestMultipart = {
28397
28645
  };
28398
28646
  export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created' | 'description' | 'is_active' | 'maintenance_affected_offerings' | 'maintenance_external_reference_url' | 'maintenance_name' | 'maintenance_scheduled_end' | 'maintenance_scheduled_start' | 'maintenance_service_provider' | 'maintenance_state' | 'maintenance_type' | 'maintenance_uuid' | 'type' | 'uuid';
28399
28647
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
28648
+ export type AffiliatedOrganizationFieldEnum = 'abbreviation' | 'address' | 'code' | 'country' | 'created' | 'description' | 'email' | 'homepage' | 'modified' | 'name' | 'projects_count' | 'url' | 'uuid';
28400
28649
  export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
28401
28650
  export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
28402
28651
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
@@ -28428,7 +28677,7 @@ export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity'
28428
28677
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
28429
28678
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
28430
28679
  export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
28431
- export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
28680
+ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_affiliations' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
28432
28681
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
28433
28682
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
28434
28683
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -28471,7 +28720,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
28471
28720
  export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
28472
28721
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
28473
28722
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
28474
- export type ProjectFieldEnum = 'affiliated_organizations' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28723
+ export type ProjectFieldEnum = 'affiliation' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28475
28724
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | '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';
28476
28725
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
28477
28726
  export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
@@ -29982,6 +30231,11 @@ export type AffiliatedOrganizationsListData = {
29982
30231
  * Country
29983
30232
  */
29984
30233
  country?: string;
30234
+ /**
30235
+ * Limit to a customer's default affiliation list
30236
+ */
30237
+ default_for_customer?: string;
30238
+ field?: Array<AffiliatedOrganizationFieldEnum>;
29985
30239
  /**
29986
30240
  * Name
29987
30241
  */
@@ -30029,6 +30283,10 @@ export type AffiliatedOrganizationsCountData = {
30029
30283
  * Country
30030
30284
  */
30031
30285
  country?: string;
30286
+ /**
30287
+ * Limit to a customer's default affiliation list
30288
+ */
30289
+ default_for_customer?: string;
30032
30290
  /**
30033
30291
  * Name
30034
30292
  */
@@ -30092,7 +30350,9 @@ export type AffiliatedOrganizationsRetrieveData = {
30092
30350
  path: {
30093
30351
  uuid: string;
30094
30352
  };
30095
- query?: never;
30353
+ query?: {
30354
+ field?: Array<AffiliatedOrganizationFieldEnum>;
30355
+ };
30096
30356
  url: '/api/affiliated-organizations/{uuid}/';
30097
30357
  };
30098
30358
  export type AffiliatedOrganizationsRetrieveResponses = {
@@ -30151,6 +30411,10 @@ export type AffiliatedOrganizationsReportListData = {
30151
30411
  * Country
30152
30412
  */
30153
30413
  country?: string;
30414
+ /**
30415
+ * Limit to a customer's default affiliation list
30416
+ */
30417
+ default_for_customer?: string;
30154
30418
  /**
30155
30419
  * Name
30156
30420
  */
@@ -30198,6 +30462,10 @@ export type AffiliatedOrganizationsReportCountData = {
30198
30462
  * Country
30199
30463
  */
30200
30464
  country?: string;
30465
+ /**
30466
+ * Limit to a customer's default affiliation list
30467
+ */
30468
+ default_for_customer?: string;
30201
30469
  /**
30202
30470
  * Name
30203
30471
  */
@@ -37641,6 +37909,20 @@ export type CustomersUpdateProjectDigestConfigUpdateResponses = {
37641
37909
  200: ProjectDigestConfig;
37642
37910
  };
37643
37911
  export type CustomersUpdateProjectDigestConfigUpdateResponse = CustomersUpdateProjectDigestConfigUpdateResponses[keyof CustomersUpdateProjectDigestConfigUpdateResponses];
37912
+ export type CustomersUpdateDefaultAffiliationsData = {
37913
+ body?: CustomerDefaultAffiliationsUpdateRequest;
37914
+ path: {
37915
+ uuid: string;
37916
+ };
37917
+ query?: never;
37918
+ url: '/api/customers/{uuid}/update_default_affiliations/';
37919
+ };
37920
+ export type CustomersUpdateDefaultAffiliationsResponses = {
37921
+ /**
37922
+ * No response body
37923
+ */
37924
+ 200: unknown;
37925
+ };
37644
37926
  export type CustomersUpdateOrganizationGroupsData = {
37645
37927
  body?: OrganizationGroupsRequest;
37646
37928
  path: {
@@ -55280,13 +55562,13 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
55280
55562
  };
55281
55563
  query: {
55282
55564
  /**
55283
- * Affiliated organization name
55565
+ * Affiliation name
55284
55566
  */
55285
- affiliated_organization_name?: string;
55567
+ affiliation_name?: string;
55286
55568
  /**
55287
- * Affiliated organization UUID
55569
+ * Affiliation UUID
55288
55570
  */
55289
- affiliated_organization_uuid?: Array<string>;
55571
+ affiliation_uuid?: Array<string>;
55290
55572
  backend_id?: string;
55291
55573
  /**
55292
55574
  * Return a list of projects where current user is admin.
@@ -55330,9 +55612,9 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
55330
55612
  description?: string;
55331
55613
  field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
55332
55614
  /**
55333
- * Filter projects that have at least one affiliated organization.
55615
+ * Filter projects that have an affiliation.
55334
55616
  */
55335
- has_affiliated_organization?: boolean;
55617
+ has_affiliation?: boolean;
55336
55618
  /**
55337
55619
  * Is removed
55338
55620
  */
@@ -55834,13 +56116,13 @@ export type MarketplaceServiceProvidersProjectsListData = {
55834
56116
  };
55835
56117
  query?: {
55836
56118
  /**
55837
- * Affiliated organization name
56119
+ * Affiliation name
55838
56120
  */
55839
- affiliated_organization_name?: string;
56121
+ affiliation_name?: string;
55840
56122
  /**
55841
- * Affiliated organization UUID
56123
+ * Affiliation UUID
55842
56124
  */
55843
- affiliated_organization_uuid?: Array<string>;
56125
+ affiliation_uuid?: Array<string>;
55844
56126
  backend_id?: string;
55845
56127
  /**
55846
56128
  * Return a list of projects where current user is admin.
@@ -55884,9 +56166,9 @@ export type MarketplaceServiceProvidersProjectsListData = {
55884
56166
  description?: string;
55885
56167
  field?: Array<ProjectFieldEnum>;
55886
56168
  /**
55887
- * Filter projects that have at least one affiliated organization.
56169
+ * Filter projects that have an affiliation.
55888
56170
  */
55889
- has_affiliated_organization?: boolean;
56171
+ has_affiliation?: boolean;
55890
56172
  /**
55891
56173
  * Is removed
55892
56174
  */
@@ -62876,13 +63158,13 @@ export type OpenportalUnmanagedProjectsListData = {
62876
63158
  */
62877
63159
  accounting_is_running?: boolean;
62878
63160
  /**
62879
- * Affiliated organization name
63161
+ * Affiliation name
62880
63162
  */
62881
- affiliated_organization_name?: string;
63163
+ affiliation_name?: string;
62882
63164
  /**
62883
- * Affiliated organization UUID
63165
+ * Affiliation UUID
62884
63166
  */
62885
- affiliated_organization_uuid?: Array<string>;
63167
+ affiliation_uuid?: Array<string>;
62886
63168
  backend_id?: string;
62887
63169
  /**
62888
63170
  * Return a list of projects where current user is admin.
@@ -62926,9 +63208,9 @@ export type OpenportalUnmanagedProjectsListData = {
62926
63208
  description?: string;
62927
63209
  field?: Array<ProjectFieldEnum>;
62928
63210
  /**
62929
- * Filter projects that have at least one affiliated organization.
63211
+ * Filter projects that have an affiliation.
62930
63212
  */
62931
- has_affiliated_organization?: boolean;
63213
+ has_affiliation?: boolean;
62932
63214
  /**
62933
63215
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
62934
63216
  */
@@ -63007,13 +63289,13 @@ export type OpenportalUnmanagedProjectsCountData = {
63007
63289
  */
63008
63290
  accounting_is_running?: boolean;
63009
63291
  /**
63010
- * Affiliated organization name
63292
+ * Affiliation name
63011
63293
  */
63012
- affiliated_organization_name?: string;
63294
+ affiliation_name?: string;
63013
63295
  /**
63014
- * Affiliated organization UUID
63296
+ * Affiliation UUID
63015
63297
  */
63016
- affiliated_organization_uuid?: Array<string>;
63298
+ affiliation_uuid?: Array<string>;
63017
63299
  backend_id?: string;
63018
63300
  /**
63019
63301
  * Return a list of projects where current user is admin.
@@ -63056,9 +63338,9 @@ export type OpenportalUnmanagedProjectsCountData = {
63056
63338
  */
63057
63339
  description?: string;
63058
63340
  /**
63059
- * Filter projects that have at least one affiliated organization.
63341
+ * Filter projects that have an affiliation.
63060
63342
  */
63061
- has_affiliated_organization?: boolean;
63343
+ has_affiliation?: boolean;
63062
63344
  /**
63063
63345
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
63064
63346
  */
@@ -63398,15 +63680,15 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
63398
63680
  200: AnswerSubmitResponse;
63399
63681
  };
63400
63682
  export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
63401
- export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
63402
- body?: ProjectAffiliatedOrganizationsUpdateRequest;
63683
+ export type OpenportalUnmanagedProjectsUpdateAffiliationData = {
63684
+ body?: ProjectAffiliationUpdateRequest;
63403
63685
  path: {
63404
63686
  uuid: string;
63405
63687
  };
63406
63688
  query?: never;
63407
- url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
63689
+ url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliation/';
63408
63690
  };
63409
- export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
63691
+ export type OpenportalUnmanagedProjectsUpdateAffiliationResponses = {
63410
63692
  /**
63411
63693
  * No response body
63412
63694
  */
@@ -71850,13 +72132,13 @@ export type ProjectsListData = {
71850
72132
  */
71851
72133
  accounting_is_running?: boolean;
71852
72134
  /**
71853
- * Affiliated organization name
72135
+ * Affiliation name
71854
72136
  */
71855
- affiliated_organization_name?: string;
72137
+ affiliation_name?: string;
71856
72138
  /**
71857
- * Affiliated organization UUID
72139
+ * Affiliation UUID
71858
72140
  */
71859
- affiliated_organization_uuid?: Array<string>;
72141
+ affiliation_uuid?: Array<string>;
71860
72142
  backend_id?: string;
71861
72143
  /**
71862
72144
  * Return a list of projects where current user is admin.
@@ -71900,9 +72182,9 @@ export type ProjectsListData = {
71900
72182
  description?: string;
71901
72183
  field?: Array<ProjectFieldEnum>;
71902
72184
  /**
71903
- * Filter projects that have at least one affiliated organization.
72185
+ * Filter projects that have an affiliation.
71904
72186
  */
71905
- has_affiliated_organization?: boolean;
72187
+ has_affiliation?: boolean;
71906
72188
  /**
71907
72189
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
71908
72190
  */
@@ -71981,13 +72263,13 @@ export type ProjectsCountData = {
71981
72263
  */
71982
72264
  accounting_is_running?: boolean;
71983
72265
  /**
71984
- * Affiliated organization name
72266
+ * Affiliation name
71985
72267
  */
71986
- affiliated_organization_name?: string;
72268
+ affiliation_name?: string;
71987
72269
  /**
71988
- * Affiliated organization UUID
72270
+ * Affiliation UUID
71989
72271
  */
71990
- affiliated_organization_uuid?: Array<string>;
72272
+ affiliation_uuid?: Array<string>;
71991
72273
  backend_id?: string;
71992
72274
  /**
71993
72275
  * Return a list of projects where current user is admin.
@@ -72030,9 +72312,9 @@ export type ProjectsCountData = {
72030
72312
  */
72031
72313
  description?: string;
72032
72314
  /**
72033
- * Filter projects that have at least one affiliated organization.
72315
+ * Filter projects that have an affiliation.
72034
72316
  */
72035
- has_affiliated_organization?: boolean;
72317
+ has_affiliation?: boolean;
72036
72318
  /**
72037
72319
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
72038
72320
  */
@@ -72462,15 +72744,15 @@ export type ProjectsSyncUserRolesResponses = {
72462
72744
  */
72463
72745
  200: unknown;
72464
72746
  };
72465
- export type ProjectsUpdateAffiliatedOrganizationsData = {
72466
- body?: ProjectAffiliatedOrganizationsUpdateRequest;
72747
+ export type ProjectsUpdateAffiliationData = {
72748
+ body?: ProjectAffiliationUpdateRequest;
72467
72749
  path: {
72468
72750
  uuid: string;
72469
72751
  };
72470
72752
  query?: never;
72471
- url: '/api/projects/{uuid}/update_affiliated_organizations/';
72753
+ url: '/api/projects/{uuid}/update_affiliation/';
72472
72754
  };
72473
- export type ProjectsUpdateAffiliatedOrganizationsResponses = {
72755
+ export type ProjectsUpdateAffiliationResponses = {
72474
72756
  /**
72475
72757
  * No response body
72476
72758
  */
@@ -72951,6 +73233,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
72951
73233
  200: ChecklistReviewerResponse;
72952
73234
  };
72953
73235
  export type ProposalProposalsChecklistReviewRetrieveResponse = ProposalProposalsChecklistReviewRetrieveResponses[keyof ProposalProposalsChecklistReviewRetrieveResponses];
73236
+ export type ProposalProposalsCompleteWorkflowStepData = {
73237
+ body: CompleteWorkflowStepRequest;
73238
+ path: {
73239
+ uuid: string;
73240
+ };
73241
+ query?: never;
73242
+ url: '/api/proposal-proposals/{uuid}/complete_workflow_step/';
73243
+ };
73244
+ export type ProposalProposalsCompleteWorkflowStepResponses = {
73245
+ 200: CompleteWorkflowStepResponse;
73246
+ };
73247
+ export type ProposalProposalsCompleteWorkflowStepResponse = ProposalProposalsCompleteWorkflowStepResponses[keyof ProposalProposalsCompleteWorkflowStepResponses];
72954
73248
  export type ProposalProposalsCompletionReviewStatusRetrieveData = {
72955
73249
  body?: never;
72956
73250
  path: {
@@ -73098,6 +73392,18 @@ export type ProposalProposalsRejectResponses = {
73098
73392
  */
73099
73393
  200: unknown;
73100
73394
  };
73395
+ export type ProposalProposalsRejectWorkflowStepData = {
73396
+ body: RejectWorkflowStepRequest;
73397
+ path: {
73398
+ uuid: string;
73399
+ };
73400
+ query?: never;
73401
+ url: '/api/proposal-proposals/{uuid}/reject_workflow_step/';
73402
+ };
73403
+ export type ProposalProposalsRejectWorkflowStepResponses = {
73404
+ 200: RejectWorkflowStepResponse;
73405
+ };
73406
+ export type ProposalProposalsRejectWorkflowStepResponse = ProposalProposalsRejectWorkflowStepResponses[keyof ProposalProposalsRejectWorkflowStepResponses];
73101
73407
  export type ProposalProposalsResourcesListData = {
73102
73408
  body?: never;
73103
73409
  path: {
@@ -73248,6 +73554,45 @@ export type ProposalProposalsUpdateUserResponses = {
73248
73554
  200: UserRoleExpirationTime;
73249
73555
  };
73250
73556
  export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
73557
+ export type ProposalProposalsWorkflowStatesListData = {
73558
+ body?: never;
73559
+ path: {
73560
+ uuid: string;
73561
+ };
73562
+ query?: {
73563
+ call_uuid?: string;
73564
+ created_by_uuid?: string;
73565
+ my_proposals?: boolean;
73566
+ name?: string;
73567
+ /**
73568
+ * Ordering
73569
+ *
73570
+ *
73571
+ */
73572
+ o?: Array<ProposalOEnum>;
73573
+ organization_uuid?: string;
73574
+ /**
73575
+ * A page number within the paginated result set.
73576
+ */
73577
+ page?: number;
73578
+ /**
73579
+ * Number of results to return per page.
73580
+ */
73581
+ page_size?: number;
73582
+ round?: string;
73583
+ round_uuid?: string;
73584
+ /**
73585
+ * Slug
73586
+ */
73587
+ slug?: string;
73588
+ state?: Array<ProposalStates>;
73589
+ };
73590
+ url: '/api/proposal-proposals/{uuid}/workflow_states/';
73591
+ };
73592
+ export type ProposalProposalsWorkflowStatesListResponses = {
73593
+ 200: Array<ProposalWorkflowStepInstance>;
73594
+ };
73595
+ export type ProposalProposalsWorkflowStatesListResponse = ProposalProposalsWorkflowStatesListResponses[keyof ProposalProposalsWorkflowStatesListResponses];
73251
73596
  export type ProposalProposalsChecklistTemplateRetrieveData = {
73252
73597
  body?: never;
73253
73598
  path?: never;
@@ -74287,6 +74632,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
74287
74632
  200: UserRoleExpirationTime;
74288
74633
  };
74289
74634
  export type ProposalProtectedCallsUpdateUserResponse = ProposalProtectedCallsUpdateUserResponses[keyof ProposalProtectedCallsUpdateUserResponses];
74635
+ export type ProposalProtectedCallsWorkflowStepsListData = {
74636
+ body?: never;
74637
+ path: {
74638
+ uuid: string;
74639
+ };
74640
+ query?: {
74641
+ /**
74642
+ * A page number within the paginated result set.
74643
+ */
74644
+ page?: number;
74645
+ /**
74646
+ * Number of results to return per page.
74647
+ */
74648
+ page_size?: number;
74649
+ };
74650
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
74651
+ };
74652
+ export type ProposalProtectedCallsWorkflowStepsListResponses = {
74653
+ 200: Array<CallWorkflowStep>;
74654
+ };
74655
+ export type ProposalProtectedCallsWorkflowStepsListResponse = ProposalProtectedCallsWorkflowStepsListResponses[keyof ProposalProtectedCallsWorkflowStepsListResponses];
74656
+ export type ProposalProtectedCallsWorkflowStepsSetData = {
74657
+ body: CallWorkflowStepRequest;
74658
+ path: {
74659
+ uuid: string;
74660
+ };
74661
+ query?: never;
74662
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
74663
+ };
74664
+ export type ProposalProtectedCallsWorkflowStepsSetResponses = {
74665
+ 200: CallWorkflowStep;
74666
+ };
74667
+ export type ProposalProtectedCallsWorkflowStepsSetResponse = ProposalProtectedCallsWorkflowStepsSetResponses[keyof ProposalProtectedCallsWorkflowStepsSetResponses];
74668
+ export type ProposalProtectedCallsWorkflowStepsDestroyData = {
74669
+ body?: never;
74670
+ path: {
74671
+ obj_uuid: string;
74672
+ uuid: string;
74673
+ };
74674
+ query?: never;
74675
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74676
+ };
74677
+ export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
74678
+ /**
74679
+ * No response body
74680
+ */
74681
+ 204: void;
74682
+ };
74683
+ export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
74684
+ export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
74685
+ body?: never;
74686
+ path: {
74687
+ obj_uuid: string;
74688
+ uuid: string;
74689
+ };
74690
+ query?: never;
74691
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74692
+ };
74693
+ export type ProposalProtectedCallsWorkflowStepsRetrieveResponses = {
74694
+ 200: CallWorkflowStep;
74695
+ };
74696
+ export type ProposalProtectedCallsWorkflowStepsRetrieveResponse = ProposalProtectedCallsWorkflowStepsRetrieveResponses[keyof ProposalProtectedCallsWorkflowStepsRetrieveResponses];
74697
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateData = {
74698
+ body?: PatchedCallWorkflowStepRequest;
74699
+ path: {
74700
+ obj_uuid: string;
74701
+ uuid: string;
74702
+ };
74703
+ query?: never;
74704
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74705
+ };
74706
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponses = {
74707
+ 200: CallWorkflowStep;
74708
+ };
74709
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponse = ProposalProtectedCallsWorkflowStepsPartialUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsPartialUpdateResponses];
74710
+ export type ProposalProtectedCallsWorkflowStepsUpdateData = {
74711
+ body: CallWorkflowStepRequest;
74712
+ path: {
74713
+ obj_uuid: string;
74714
+ uuid: string;
74715
+ };
74716
+ query?: never;
74717
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74718
+ };
74719
+ export type ProposalProtectedCallsWorkflowStepsUpdateResponses = {
74720
+ 200: CallWorkflowStep;
74721
+ };
74722
+ export type ProposalProtectedCallsWorkflowStepsUpdateResponse = ProposalProtectedCallsWorkflowStepsUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsUpdateResponses];
74290
74723
  export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
74291
74724
  body?: never;
74292
74725
  path?: never;