waldur-js-client 8.0.9-dev.1 → 8.0.9-dev.3

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;
@@ -15676,6 +15805,7 @@ export type OrganizationalUser = {
15676
15805
  full_name: string;
15677
15806
  role: string | null;
15678
15807
  };
15808
+ export type OutcomeEnum = 'eligible' | 'ineligible' | 'feasible' | 'infeasible' | 'reviewed' | 'approved' | 'declined' | 'accepted' | 'rejected' | 'expired';
15679
15809
  export type PaidRequest = {
15680
15810
  date: string;
15681
15811
  proof?: Blob | File;
@@ -15967,6 +16097,54 @@ export type PatchedCallReviewerPoolUpdateRequest = {
15967
16097
  */
15968
16098
  max_assignments?: number;
15969
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
+ };
15970
16148
  export type PatchedCategoryColumnRequest = {
15971
16149
  /**
15972
16150
  * Index allows to reorder columns.
@@ -19106,6 +19284,33 @@ export type ProposalUpdateProjectDetailsRequest = {
19106
19284
  duration_in_days?: number | null;
19107
19285
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
19108
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';
19109
19314
  export type ProposedAssignment = {
19110
19315
  readonly url: string;
19111
19316
  readonly uuid: string;
@@ -21168,6 +21373,20 @@ export type ReferenceNumberRequest = {
21168
21373
  */
21169
21374
  reference_number?: string;
21170
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
+ };
21171
21390
  export type RelationshipTypeEnum = 'employment' | 'consulting' | 'equity' | 'board' | 'royalties' | 'gifts' | 'other';
21172
21391
  export type RemoteAllocation = {
21173
21392
  readonly url?: string;
@@ -22167,6 +22386,7 @@ export type ResourcesLimits = {
22167
22386
  */
22168
22387
  readonly organization_group_uuid: string;
22169
22388
  };
22389
+ export type ResponsibleRoleEnum = 'call_manager' | 'offering_manager' | 'reviewer' | 'panel_member' | 'applicant';
22170
22390
  export type ReviewCommentRequest = {
22171
22391
  /**
22172
22392
  * Optional comment for review
@@ -24417,6 +24637,7 @@ export type StateTransitionError = {
24417
24637
  */
24418
24638
  detail: string;
24419
24639
  };
24640
+ export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
24420
24641
  export type StorageDataType = {
24421
24642
  key: string;
24422
24643
  label: string;
@@ -25051,6 +25272,7 @@ export type TransactionStats = {
25051
25272
  */
25052
25273
  readonly deadlocks: number;
25053
25274
  };
25275
+ export type TransitionModeEnum = 'automatic_on_completion';
25054
25276
  export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
25055
25277
  export type TriggerCoiDetectionRequest = {
25056
25278
  job_type?: TriggerCoiDetectionJobTypeEnum;
@@ -25467,7 +25689,7 @@ export type UserAuthToken = {
25467
25689
  };
25468
25690
  export type UserChecklistCompletion = {
25469
25691
  readonly uuid: string;
25470
- offering_user: OfferingUser;
25692
+ offering_user: UserChecklistCompletionOfferingUser | null;
25471
25693
  readonly offering_user_uuid: string | null;
25472
25694
  readonly offering_name: string | null;
25473
25695
  readonly offering_uuid: string | null;
@@ -25498,6 +25720,17 @@ export type UserChecklistCompletion = {
25498
25720
  readonly created: string;
25499
25721
  readonly modified: string;
25500
25722
  };
25723
+ export type UserChecklistCompletionOfferingUser = {
25724
+ readonly uuid: string;
25725
+ username?: string | null;
25726
+ readonly user_full_name: string;
25727
+ readonly user_email: string;
25728
+ readonly state: string;
25729
+ /**
25730
+ * Signal to service if the user account is restricted or not
25731
+ */
25732
+ is_restricted?: boolean;
25733
+ };
25501
25734
  export type UserConsentInfo = {
25502
25735
  readonly uuid: string;
25503
25736
  readonly version: string;
@@ -26299,6 +26532,15 @@ export type WebHookRequest = {
26299
26532
  content_type?: WebHookContentTypeEnum;
26300
26533
  };
26301
26534
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
26535
+ export type WorkflowCriterion = {
26536
+ readonly uuid: string;
26537
+ name: string;
26538
+ order?: number;
26539
+ };
26540
+ export type WorkflowCriterionRequest = {
26541
+ name: string;
26542
+ order?: number;
26543
+ };
26302
26544
  export type ZammadarticletypeEnum = 'email' | 'phone' | 'web' | 'note' | 'sms' | 'chat' | 'fax' | 'twitter status' | 'twitter direct-message' | 'facebook feed post' | 'facebook feed comment' | 'telegram personal-message';
26303
26545
  export type OfferingProfileRole = {
26304
26546
  uuid: string;
@@ -28414,6 +28656,7 @@ export type PatchedUserRequestMultipart = {
28414
28656
  };
28415
28657
  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';
28416
28658
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
28659
+ export type AffiliatedOrganizationFieldEnum = 'abbreviation' | 'address' | 'code' | 'country' | 'created' | 'description' | 'email' | 'homepage' | 'modified' | 'name' | 'projects_count' | 'url' | 'uuid';
28417
28660
  export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
28418
28661
  export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
28419
28662
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
@@ -30003,6 +30246,7 @@ export type AffiliatedOrganizationsListData = {
30003
30246
  * Limit to a customer's default affiliation list
30004
30247
  */
30005
30248
  default_for_customer?: string;
30249
+ field?: Array<AffiliatedOrganizationFieldEnum>;
30006
30250
  /**
30007
30251
  * Name
30008
30252
  */
@@ -30117,7 +30361,9 @@ export type AffiliatedOrganizationsRetrieveData = {
30117
30361
  path: {
30118
30362
  uuid: string;
30119
30363
  };
30120
- query?: never;
30364
+ query?: {
30365
+ field?: Array<AffiliatedOrganizationFieldEnum>;
30366
+ };
30121
30367
  url: '/api/affiliated-organizations/{uuid}/';
30122
30368
  };
30123
30369
  export type AffiliatedOrganizationsRetrieveResponses = {
@@ -72998,6 +73244,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
72998
73244
  200: ChecklistReviewerResponse;
72999
73245
  };
73000
73246
  export type ProposalProposalsChecklistReviewRetrieveResponse = ProposalProposalsChecklistReviewRetrieveResponses[keyof ProposalProposalsChecklistReviewRetrieveResponses];
73247
+ export type ProposalProposalsCompleteWorkflowStepData = {
73248
+ body: CompleteWorkflowStepRequest;
73249
+ path: {
73250
+ uuid: string;
73251
+ };
73252
+ query?: never;
73253
+ url: '/api/proposal-proposals/{uuid}/complete_workflow_step/';
73254
+ };
73255
+ export type ProposalProposalsCompleteWorkflowStepResponses = {
73256
+ 200: CompleteWorkflowStepResponse;
73257
+ };
73258
+ export type ProposalProposalsCompleteWorkflowStepResponse = ProposalProposalsCompleteWorkflowStepResponses[keyof ProposalProposalsCompleteWorkflowStepResponses];
73001
73259
  export type ProposalProposalsCompletionReviewStatusRetrieveData = {
73002
73260
  body?: never;
73003
73261
  path: {
@@ -73145,6 +73403,18 @@ export type ProposalProposalsRejectResponses = {
73145
73403
  */
73146
73404
  200: unknown;
73147
73405
  };
73406
+ export type ProposalProposalsRejectWorkflowStepData = {
73407
+ body: RejectWorkflowStepRequest;
73408
+ path: {
73409
+ uuid: string;
73410
+ };
73411
+ query?: never;
73412
+ url: '/api/proposal-proposals/{uuid}/reject_workflow_step/';
73413
+ };
73414
+ export type ProposalProposalsRejectWorkflowStepResponses = {
73415
+ 200: RejectWorkflowStepResponse;
73416
+ };
73417
+ export type ProposalProposalsRejectWorkflowStepResponse = ProposalProposalsRejectWorkflowStepResponses[keyof ProposalProposalsRejectWorkflowStepResponses];
73148
73418
  export type ProposalProposalsResourcesListData = {
73149
73419
  body?: never;
73150
73420
  path: {
@@ -73295,6 +73565,45 @@ export type ProposalProposalsUpdateUserResponses = {
73295
73565
  200: UserRoleExpirationTime;
73296
73566
  };
73297
73567
  export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
73568
+ export type ProposalProposalsWorkflowStatesListData = {
73569
+ body?: never;
73570
+ path: {
73571
+ uuid: string;
73572
+ };
73573
+ query?: {
73574
+ call_uuid?: string;
73575
+ created_by_uuid?: string;
73576
+ my_proposals?: boolean;
73577
+ name?: string;
73578
+ /**
73579
+ * Ordering
73580
+ *
73581
+ *
73582
+ */
73583
+ o?: Array<ProposalOEnum>;
73584
+ organization_uuid?: string;
73585
+ /**
73586
+ * A page number within the paginated result set.
73587
+ */
73588
+ page?: number;
73589
+ /**
73590
+ * Number of results to return per page.
73591
+ */
73592
+ page_size?: number;
73593
+ round?: string;
73594
+ round_uuid?: string;
73595
+ /**
73596
+ * Slug
73597
+ */
73598
+ slug?: string;
73599
+ state?: Array<ProposalStates>;
73600
+ };
73601
+ url: '/api/proposal-proposals/{uuid}/workflow_states/';
73602
+ };
73603
+ export type ProposalProposalsWorkflowStatesListResponses = {
73604
+ 200: Array<ProposalWorkflowStepInstance>;
73605
+ };
73606
+ export type ProposalProposalsWorkflowStatesListResponse = ProposalProposalsWorkflowStatesListResponses[keyof ProposalProposalsWorkflowStatesListResponses];
73298
73607
  export type ProposalProposalsChecklistTemplateRetrieveData = {
73299
73608
  body?: never;
73300
73609
  path?: never;
@@ -74334,6 +74643,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
74334
74643
  200: UserRoleExpirationTime;
74335
74644
  };
74336
74645
  export type ProposalProtectedCallsUpdateUserResponse = ProposalProtectedCallsUpdateUserResponses[keyof ProposalProtectedCallsUpdateUserResponses];
74646
+ export type ProposalProtectedCallsWorkflowStepsListData = {
74647
+ body?: never;
74648
+ path: {
74649
+ uuid: string;
74650
+ };
74651
+ query?: {
74652
+ /**
74653
+ * A page number within the paginated result set.
74654
+ */
74655
+ page?: number;
74656
+ /**
74657
+ * Number of results to return per page.
74658
+ */
74659
+ page_size?: number;
74660
+ };
74661
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
74662
+ };
74663
+ export type ProposalProtectedCallsWorkflowStepsListResponses = {
74664
+ 200: Array<CallWorkflowStep>;
74665
+ };
74666
+ export type ProposalProtectedCallsWorkflowStepsListResponse = ProposalProtectedCallsWorkflowStepsListResponses[keyof ProposalProtectedCallsWorkflowStepsListResponses];
74667
+ export type ProposalProtectedCallsWorkflowStepsSetData = {
74668
+ body: CallWorkflowStepRequest;
74669
+ path: {
74670
+ uuid: string;
74671
+ };
74672
+ query?: never;
74673
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
74674
+ };
74675
+ export type ProposalProtectedCallsWorkflowStepsSetResponses = {
74676
+ 200: CallWorkflowStep;
74677
+ };
74678
+ export type ProposalProtectedCallsWorkflowStepsSetResponse = ProposalProtectedCallsWorkflowStepsSetResponses[keyof ProposalProtectedCallsWorkflowStepsSetResponses];
74679
+ export type ProposalProtectedCallsWorkflowStepsDestroyData = {
74680
+ body?: never;
74681
+ path: {
74682
+ obj_uuid: string;
74683
+ uuid: string;
74684
+ };
74685
+ query?: never;
74686
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74687
+ };
74688
+ export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
74689
+ /**
74690
+ * No response body
74691
+ */
74692
+ 204: void;
74693
+ };
74694
+ export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
74695
+ export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
74696
+ body?: never;
74697
+ path: {
74698
+ obj_uuid: string;
74699
+ uuid: string;
74700
+ };
74701
+ query?: never;
74702
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74703
+ };
74704
+ export type ProposalProtectedCallsWorkflowStepsRetrieveResponses = {
74705
+ 200: CallWorkflowStep;
74706
+ };
74707
+ export type ProposalProtectedCallsWorkflowStepsRetrieveResponse = ProposalProtectedCallsWorkflowStepsRetrieveResponses[keyof ProposalProtectedCallsWorkflowStepsRetrieveResponses];
74708
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateData = {
74709
+ body?: PatchedCallWorkflowStepRequest;
74710
+ path: {
74711
+ obj_uuid: string;
74712
+ uuid: string;
74713
+ };
74714
+ query?: never;
74715
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74716
+ };
74717
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponses = {
74718
+ 200: CallWorkflowStep;
74719
+ };
74720
+ export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponse = ProposalProtectedCallsWorkflowStepsPartialUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsPartialUpdateResponses];
74721
+ export type ProposalProtectedCallsWorkflowStepsUpdateData = {
74722
+ body: CallWorkflowStepRequest;
74723
+ path: {
74724
+ obj_uuid: string;
74725
+ uuid: string;
74726
+ };
74727
+ query?: never;
74728
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
74729
+ };
74730
+ export type ProposalProtectedCallsWorkflowStepsUpdateResponses = {
74731
+ 200: CallWorkflowStep;
74732
+ };
74733
+ export type ProposalProtectedCallsWorkflowStepsUpdateResponse = ProposalProtectedCallsWorkflowStepsUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsUpdateResponses];
74337
74734
  export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
74338
74735
  body?: never;
74339
74736
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.1",
3
+ "version": "8.0.9-dev.3",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",