waldur-js-client 8.0.9-dev.1 → 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;
@@ -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;
@@ -26299,6 +26521,15 @@ export type WebHookRequest = {
26299
26521
  content_type?: WebHookContentTypeEnum;
26300
26522
  };
26301
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
+ };
26302
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';
26303
26534
  export type OfferingProfileRole = {
26304
26535
  uuid: string;
@@ -28414,6 +28645,7 @@ export type PatchedUserRequestMultipart = {
28414
28645
  };
28415
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';
28416
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';
28417
28649
  export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
28418
28650
  export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
28419
28651
  export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
@@ -30003,6 +30235,7 @@ export type AffiliatedOrganizationsListData = {
30003
30235
  * Limit to a customer's default affiliation list
30004
30236
  */
30005
30237
  default_for_customer?: string;
30238
+ field?: Array<AffiliatedOrganizationFieldEnum>;
30006
30239
  /**
30007
30240
  * Name
30008
30241
  */
@@ -30117,7 +30350,9 @@ export type AffiliatedOrganizationsRetrieveData = {
30117
30350
  path: {
30118
30351
  uuid: string;
30119
30352
  };
30120
- query?: never;
30353
+ query?: {
30354
+ field?: Array<AffiliatedOrganizationFieldEnum>;
30355
+ };
30121
30356
  url: '/api/affiliated-organizations/{uuid}/';
30122
30357
  };
30123
30358
  export type AffiliatedOrganizationsRetrieveResponses = {
@@ -72998,6 +73233,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
72998
73233
  200: ChecklistReviewerResponse;
72999
73234
  };
73000
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];
73001
73248
  export type ProposalProposalsCompletionReviewStatusRetrieveData = {
73002
73249
  body?: never;
73003
73250
  path: {
@@ -73145,6 +73392,18 @@ export type ProposalProposalsRejectResponses = {
73145
73392
  */
73146
73393
  200: unknown;
73147
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];
73148
73407
  export type ProposalProposalsResourcesListData = {
73149
73408
  body?: never;
73150
73409
  path: {
@@ -73295,6 +73554,45 @@ export type ProposalProposalsUpdateUserResponses = {
73295
73554
  200: UserRoleExpirationTime;
73296
73555
  };
73297
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];
73298
73596
  export type ProposalProposalsChecklistTemplateRetrieveData = {
73299
73597
  body?: never;
73300
73598
  path?: never;
@@ -74334,6 +74632,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
74334
74632
  200: UserRoleExpirationTime;
74335
74633
  };
74336
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];
74337
74723
  export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
74338
74724
  body?: never;
74339
74725
  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.2",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",