waldur-js-client 7.9.7 → 7.9.8-dev.1

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.
@@ -2708,25 +2708,6 @@ export type Checklist = {
2708
2708
  */
2709
2709
  checklist_type?: ChecklistTypeEnum;
2710
2710
  readonly questions_count: number;
2711
- readonly category_name: string;
2712
- readonly category_uuid: string;
2713
- /**
2714
- * Category of the checklist
2715
- */
2716
- category?: string | null;
2717
- };
2718
- export type ChecklistCategory = {
2719
- readonly uuid: string;
2720
- icon?: string | null;
2721
- readonly url: string;
2722
- name: string;
2723
- description?: string;
2724
- readonly checklists_count: number;
2725
- };
2726
- export type ChecklistCategoryRequest = {
2727
- icon?: (Blob | File) | null;
2728
- name: string;
2729
- description?: string;
2730
2711
  };
2731
2712
  export type ChecklistCompletion = {
2732
2713
  readonly uuid: string;
@@ -2782,10 +2763,6 @@ export type ChecklistRequest = {
2782
2763
  * Type of compliance this checklist addresses
2783
2764
  */
2784
2765
  checklist_type?: ChecklistTypeEnum;
2785
- /**
2786
- * Category of the checklist
2787
- */
2788
- category?: string | null;
2789
2766
  };
2790
2767
  export type ChecklistResponse = {
2791
2768
  readonly checklist: {
@@ -2809,6 +2786,78 @@ export type ChecklistTemplate = {
2809
2786
  initial_visible_questions: Array<Question>;
2810
2787
  };
2811
2788
  export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
2789
+ export type CircuitBreakerConfig = {
2790
+ /**
2791
+ * Number of failures before opening circuit
2792
+ */
2793
+ readonly failure_threshold: number;
2794
+ /**
2795
+ * Seconds to wait before attempting recovery
2796
+ */
2797
+ readonly recovery_timeout: number;
2798
+ /**
2799
+ * Successful calls needed in half-open state to close
2800
+ */
2801
+ readonly success_threshold: number;
2802
+ };
2803
+ export type CircuitBreakerReset = {
2804
+ /**
2805
+ * Operation status
2806
+ */
2807
+ readonly status: string;
2808
+ /**
2809
+ * New circuit breaker state after reset
2810
+ */
2811
+ readonly state: string;
2812
+ };
2813
+ export type CircuitBreakerStateChange = {
2814
+ /**
2815
+ * Unix timestamp of state change
2816
+ */
2817
+ readonly timestamp: number;
2818
+ /**
2819
+ * Previous state
2820
+ */
2821
+ readonly from_state: string | null;
2822
+ /**
2823
+ * New state
2824
+ */
2825
+ readonly to_state: string;
2826
+ /**
2827
+ * Reason for state change
2828
+ */
2829
+ readonly reason: string;
2830
+ };
2831
+ export type CircuitBreakerStatus = {
2832
+ /**
2833
+ * Current state: closed, open, or half_open
2834
+ */
2835
+ readonly state: string;
2836
+ /**
2837
+ * Number of consecutive failures
2838
+ */
2839
+ readonly failure_count: number;
2840
+ /**
2841
+ * Successful calls since last state change
2842
+ */
2843
+ readonly success_count: number;
2844
+ /**
2845
+ * Unix timestamp of last failure
2846
+ */
2847
+ readonly last_failure_time: number | null;
2848
+ /**
2849
+ * Unix timestamp of last state change
2850
+ */
2851
+ readonly last_state_change: number | null;
2852
+ /**
2853
+ * Circuit breaker configuration
2854
+ */
2855
+ config: CircuitBreakerConfig;
2856
+ /**
2857
+ * Recent state transitions (last 50)
2858
+ */
2859
+ readonly state_history: Array<CircuitBreakerStateChange>;
2860
+ };
2812
2861
  export type CleanupRequestRequest = {
2813
2862
  /**
2814
2863
  * If true, only return what would be deleted without actually deleting
@@ -4279,6 +4328,28 @@ export type CustomerUser = {
4279
4328
  readonly expiration_time?: string | null;
4280
4329
  image?: string | null;
4281
4330
  };
4331
+ export type DlqQueue = {
4332
+ /**
4333
+ * Virtual host name
4334
+ */
4335
+ readonly vhost: string;
4336
+ /**
4337
+ * DLQ queue name
4338
+ */
4339
+ readonly queue_name: string;
4340
+ /**
4341
+ * Total messages in DLQ
4342
+ */
4343
+ readonly messages: number;
4344
+ /**
4345
+ * Messages ready for delivery
4346
+ */
4347
+ readonly messages_ready: number;
4348
+ /**
4349
+ * Number of consumers attached
4350
+ */
4351
+ readonly consumers: number;
4352
+ };
4282
4353
  export type DataVolume = {
4283
4354
  size: number;
4284
4355
  volume_type?: string | null;
@@ -4351,6 +4422,24 @@ export type DatabaseStatsResponse = {
4351
4422
  */
4352
4423
  replication: ReplicationStats;
4353
4424
  };
4425
+ export type DeadLetterQueue = {
4426
+ /**
4427
+ * Total messages across all DLQs
4428
+ */
4429
+ readonly total_dlq_messages: number;
4430
+ /**
4431
+ * Number of DLQ queues found
4432
+ */
4433
+ readonly dlq_count: number;
4434
+ /**
4435
+ * List of DLQ queues with their statistics
4436
+ */
4437
+ readonly dlq_queues: Array<DlqQueue>;
4438
+ /**
4439
+ * Informational note about DLQs
4440
+ */
4441
+ readonly note: string;
4442
+ };
4354
4443
  export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
4355
4444
  export type DeleteAttachmentsRequest = {
4356
4445
  attachment_ids: Array<string>;
@@ -7544,6 +7633,30 @@ export type MergedSecretOptionsRequest = {
7544
7633
  export type MessageResponse = {
7545
7634
  message: string;
7546
7635
  };
7636
+ export type MessageStateCache = {
7637
+ /**
7638
+ * Cache TTL in seconds
7639
+ */
7640
+ readonly cache_ttl: number;
7641
+ /**
7642
+ * Cache description
7643
+ */
7644
+ readonly description: string;
7645
+ /**
7646
+ * Applied filters
7647
+ */
7648
+ filter: MessageStateCacheFilter;
7649
+ };
7650
+ export type MessageStateCacheFilter = {
7651
+ /**
7652
+ * Filter by resource UUID
7653
+ */
7654
+ readonly resource_uuid: string | null;
7655
+ /**
7656
+ * Filter by message type
7657
+ */
7658
+ readonly message_type: string | null;
7659
+ };
7547
7660
  export type MessageTemplate = {
7548
7661
  readonly url: string;
7549
7662
  readonly uuid: string;
@@ -7556,6 +7669,12 @@ export type MessageTemplateRequest = {
7556
7669
  subject: string;
7557
7670
  body: string;
7558
7671
  };
7672
+ export type MetricsReset = {
7673
+ /**
7674
+ * Operation status
7675
+ */
7676
+ readonly status: string;
7677
+ };
7559
7678
  export type MigrationCreate = {
7560
7679
  mappings?: Mapping;
7561
7680
  src_resource: string;
@@ -11743,11 +11862,6 @@ export type PatchedCategoryHelpArticlesRequest = {
11743
11862
  url?: string;
11744
11863
  categories?: Array<CategorySerializerForForNestedFieldsRequest>;
11745
11864
  };
11746
- export type PatchedChecklistCategoryRequest = {
11747
- icon?: (Blob | File) | null;
11748
- name?: string;
11749
- description?: string;
11750
- };
11751
11865
  export type PatchedChecklistRequest = {
11752
11866
  name?: string;
11753
11867
  description?: string;
@@ -11755,10 +11869,6 @@ export type PatchedChecklistRequest = {
11755
11869
  * Type of compliance this checklist addresses
11756
11870
  */
11757
11871
  checklist_type?: ChecklistTypeEnum;
11758
- /**
11759
- * Category of the checklist
11760
- */
11761
- category?: string | null;
11762
11872
  };
11763
11873
  export type PatchedClusterSecurityGroupRequest = {
11764
11874
  rules?: Array<RancherClusterSecurityGroupRuleRequest>;
@@ -14807,6 +14917,94 @@ export type PublicOfferingDetails = {
14807
14917
  readonly google_calendar_link?: string | null;
14808
14918
  readonly promotion_campaigns?: Array<NestedCampaign>;
14809
14919
  };
14920
+ export type PublishingMetrics = {
14921
+ /**
14922
+ * Total messages successfully sent
14923
+ */
14924
+ readonly messages_sent: number;
14925
+ /**
14926
+ * Total failed message attempts
14927
+ */
14928
+ readonly messages_failed: number;
14929
+ /**
14930
+ * Messages that required retry
14931
+ */
14932
+ readonly messages_retried: number;
14933
+ /**
14934
+ * Messages skipped due to circuit breaker
14935
+ */
14936
+ readonly messages_skipped: number;
14937
+ /**
14938
+ * Number of times circuit breaker opened
14939
+ */
14940
+ readonly circuit_breaker_trips: number;
14941
+ /**
14942
+ * Messages rejected by rate limiter
14943
+ */
14944
+ readonly rate_limiter_rejections: number;
14945
+ /**
14946
+ * Average message publish latency in milliseconds
14947
+ */
14948
+ readonly avg_publish_time_ms: number;
14949
+ /**
14950
+ * Unix timestamp of last publish attempt
14951
+ */
14952
+ readonly last_publish_time: number | null;
14953
+ };
14954
+ export type PubsubCircuitBreakerSummary = {
14955
+ /**
14956
+ * Current state: closed, open, or half_open
14957
+ */
14958
+ readonly state: string;
14959
+ /**
14960
+ * Whether circuit breaker is in healthy state (closed)
14961
+ */
14962
+ readonly healthy: boolean;
14963
+ /**
14964
+ * Number of consecutive failures
14965
+ */
14966
+ readonly failure_count: number;
14967
+ };
14968
+ export type PubsubMetricsSummary = {
14969
+ /**
14970
+ * Total messages sent
14971
+ */
14972
+ readonly messages_sent: number;
14973
+ /**
14974
+ * Total messages failed
14975
+ */
14976
+ readonly messages_failed: number;
14977
+ /**
14978
+ * Failure rate as percentage string
14979
+ */
14980
+ readonly failure_rate: string;
14981
+ /**
14982
+ * Average publish latency in milliseconds
14983
+ */
14984
+ readonly avg_latency_ms: number;
14985
+ };
14986
+ export type PubsubOverview = {
14987
+ /**
14988
+ * Overall health: healthy, degraded, or critical
14989
+ */
14990
+ readonly health_status: string;
14991
+ /**
14992
+ * List of current issues affecting health
14993
+ */
14994
+ readonly issues: Array<string>;
14995
+ /**
14996
+ * Circuit breaker summary
14997
+ */
14998
+ circuit_breaker: PubsubCircuitBreakerSummary;
14999
+ /**
15000
+ * Publishing metrics summary
15001
+ */
15002
+ metrics: PubsubMetricsSummary;
15003
+ /**
15004
+ * Timestamp when overview was generated
15005
+ */
15006
+ readonly last_updated: string;
15007
+ };
14810
15008
  export type PullMarketplaceScriptResourceRequest = {
14811
15009
  resource_uuid: string;
14812
15010
  };
@@ -17990,7 +18188,6 @@ export type ServiceProviderChecklistSummary = {
17990
18188
  readonly checklist_name: string;
17991
18189
  readonly questions_count: number;
17992
18190
  readonly offerings_count: number;
17993
- readonly category_name: string | null;
17994
18191
  };
17995
18192
  export type ServiceProviderComplianceOverview = {
17996
18193
  readonly offering_uuid: string;
@@ -18575,6 +18772,24 @@ export type SubresourceOffering = {
18575
18772
  */
18576
18773
  readonly type: string;
18577
18774
  };
18775
+ export type SubscriptionQueuesOverview = {
18776
+ /**
18777
+ * Total number of vhosts with subscription queues
18778
+ */
18779
+ readonly total_vhosts: number;
18780
+ /**
18781
+ * Total number of subscription queues
18782
+ */
18783
+ readonly total_queues: number;
18784
+ /**
18785
+ * Total messages across all subscription queues
18786
+ */
18787
+ readonly total_messages: number;
18788
+ /**
18789
+ * Top 10 queues by message count
18790
+ */
18791
+ readonly top_queues_by_messages: Array<TopQueue>;
18792
+ };
18578
18793
  export type SuggestAlternativeReviewers = {
18579
18794
  /**
18580
18795
  * List of alternative reviewers with affinity scores
@@ -18721,6 +18936,24 @@ export type ToolExecuteRequest = {
18721
18936
  */
18722
18937
  arguments?: unknown;
18723
18938
  };
18939
+ export type TopQueue = {
18940
+ /**
18941
+ * Virtual host name
18942
+ */
18943
+ readonly vhost: string;
18944
+ /**
18945
+ * Queue name
18946
+ */
18947
+ readonly name: string;
18948
+ /**
18949
+ * Number of messages in queue
18950
+ */
18951
+ readonly messages: number;
18952
+ /**
18953
+ * Number of consumers attached
18954
+ */
18955
+ readonly consumers: number;
18956
+ };
18724
18957
  export type TotalCustomerCost = {
18725
18958
  readonly total: number;
18726
18959
  readonly price: number;
@@ -19808,26 +20041,6 @@ export type PatchedCallManagingOrganisationRequestMultipart = {
19808
20041
  description?: string;
19809
20042
  image?: (Blob | File) | null;
19810
20043
  };
19811
- export type ChecklistCategoryRequestForm = {
19812
- icon?: (Blob | File) | null;
19813
- name: string;
19814
- description?: string;
19815
- };
19816
- export type ChecklistCategoryRequestMultipart = {
19817
- icon?: (Blob | File) | null;
19818
- name: string;
19819
- description?: string;
19820
- };
19821
- export type PatchedChecklistCategoryRequestForm = {
19822
- icon?: (Blob | File) | null;
19823
- name?: string;
19824
- description?: string;
19825
- };
19826
- export type PatchedChecklistCategoryRequestMultipart = {
19827
- icon?: (Blob | File) | null;
19828
- name?: string;
19829
- description?: string;
19830
- };
19831
20044
  export type CustomerRequestForm = {
19832
20045
  /**
19833
20046
  * Organization identifier in another application.
@@ -26392,107 +26605,6 @@ export type ChecklistsAdminCreateResponses = {
26392
26605
  201: Checklist;
26393
26606
  };
26394
26607
  export type ChecklistsAdminCreateResponse = ChecklistsAdminCreateResponses[keyof ChecklistsAdminCreateResponses];
26395
- export type ChecklistsAdminCategoriesListData = {
26396
- body?: never;
26397
- path?: never;
26398
- query?: {
26399
- /**
26400
- * A page number within the paginated result set.
26401
- */
26402
- page?: number;
26403
- /**
26404
- * Number of results to return per page.
26405
- */
26406
- page_size?: number;
26407
- };
26408
- url: '/api/checklists-admin-categories/';
26409
- };
26410
- export type ChecklistsAdminCategoriesListResponses = {
26411
- 200: Array<ChecklistCategory>;
26412
- };
26413
- export type ChecklistsAdminCategoriesListResponse = ChecklistsAdminCategoriesListResponses[keyof ChecklistsAdminCategoriesListResponses];
26414
- export type ChecklistsAdminCategoriesCountData = {
26415
- body?: never;
26416
- path?: never;
26417
- query?: {
26418
- /**
26419
- * A page number within the paginated result set.
26420
- */
26421
- page?: number;
26422
- /**
26423
- * Number of results to return per page.
26424
- */
26425
- page_size?: number;
26426
- };
26427
- url: '/api/checklists-admin-categories/';
26428
- };
26429
- export type ChecklistsAdminCategoriesCountResponses = {
26430
- /**
26431
- * No response body
26432
- */
26433
- 200: unknown;
26434
- };
26435
- export type ChecklistsAdminCategoriesCreateData = {
26436
- body: ChecklistCategoryRequest;
26437
- path?: never;
26438
- query?: never;
26439
- url: '/api/checklists-admin-categories/';
26440
- };
26441
- export type ChecklistsAdminCategoriesCreateResponses = {
26442
- 201: ChecklistCategory;
26443
- };
26444
- export type ChecklistsAdminCategoriesCreateResponse = ChecklistsAdminCategoriesCreateResponses[keyof ChecklistsAdminCategoriesCreateResponses];
26445
- export type ChecklistsAdminCategoriesDestroyData = {
26446
- body?: never;
26447
- path: {
26448
- uuid: string;
26449
- };
26450
- query?: never;
26451
- url: '/api/checklists-admin-categories/{uuid}/';
26452
- };
26453
- export type ChecklistsAdminCategoriesDestroyResponses = {
26454
- /**
26455
- * No response body
26456
- */
26457
- 204: void;
26458
- };
26459
- export type ChecklistsAdminCategoriesDestroyResponse = ChecklistsAdminCategoriesDestroyResponses[keyof ChecklistsAdminCategoriesDestroyResponses];
26460
- export type ChecklistsAdminCategoriesRetrieveData = {
26461
- body?: never;
26462
- path: {
26463
- uuid: string;
26464
- };
26465
- query?: never;
26466
- url: '/api/checklists-admin-categories/{uuid}/';
26467
- };
26468
- export type ChecklistsAdminCategoriesRetrieveResponses = {
26469
- 200: ChecklistCategory;
26470
- };
26471
- export type ChecklistsAdminCategoriesRetrieveResponse = ChecklistsAdminCategoriesRetrieveResponses[keyof ChecklistsAdminCategoriesRetrieveResponses];
26472
- export type ChecklistsAdminCategoriesPartialUpdateData = {
26473
- body?: PatchedChecklistCategoryRequest;
26474
- path: {
26475
- uuid: string;
26476
- };
26477
- query?: never;
26478
- url: '/api/checklists-admin-categories/{uuid}/';
26479
- };
26480
- export type ChecklistsAdminCategoriesPartialUpdateResponses = {
26481
- 200: ChecklistCategory;
26482
- };
26483
- export type ChecklistsAdminCategoriesPartialUpdateResponse = ChecklistsAdminCategoriesPartialUpdateResponses[keyof ChecklistsAdminCategoriesPartialUpdateResponses];
26484
- export type ChecklistsAdminCategoriesUpdateData = {
26485
- body: ChecklistCategoryRequest;
26486
- path: {
26487
- uuid: string;
26488
- };
26489
- query?: never;
26490
- url: '/api/checklists-admin-categories/{uuid}/';
26491
- };
26492
- export type ChecklistsAdminCategoriesUpdateResponses = {
26493
- 200: ChecklistCategory;
26494
- };
26495
- export type ChecklistsAdminCategoriesUpdateResponse = ChecklistsAdminCategoriesUpdateResponses[keyof ChecklistsAdminCategoriesUpdateResponses];
26496
26608
  export type ChecklistsAdminQuestionDependenciesListData = {
26497
26609
  body?: never;
26498
26610
  path?: never;
@@ -28351,6 +28463,94 @@ export type DatabaseStatsRetrieveResponses = {
28351
28463
  200: DatabaseStatsResponse;
28352
28464
  };
28353
28465
  export type DatabaseStatsRetrieveResponse = DatabaseStatsRetrieveResponses[keyof DatabaseStatsRetrieveResponses];
28466
+ export type DebugPubsubCircuitBreakerRetrieveData = {
28467
+ body?: never;
28468
+ path?: never;
28469
+ query?: never;
28470
+ url: '/api/debug/pubsub/circuit_breaker/';
28471
+ };
28472
+ export type DebugPubsubCircuitBreakerRetrieveResponses = {
28473
+ 200: CircuitBreakerStatus;
28474
+ };
28475
+ export type DebugPubsubCircuitBreakerRetrieveResponse = DebugPubsubCircuitBreakerRetrieveResponses[keyof DebugPubsubCircuitBreakerRetrieveResponses];
28476
+ export type DebugPubsubCircuitBreakerResetData = {
28477
+ body?: never;
28478
+ path?: never;
28479
+ query?: never;
28480
+ url: '/api/debug/pubsub/circuit_breaker_reset/';
28481
+ };
28482
+ export type DebugPubsubCircuitBreakerResetResponses = {
28483
+ 200: CircuitBreakerReset;
28484
+ };
28485
+ export type DebugPubsubCircuitBreakerResetResponse = DebugPubsubCircuitBreakerResetResponses[keyof DebugPubsubCircuitBreakerResetResponses];
28486
+ export type DebugPubsubDeadLetterQueueRetrieveData = {
28487
+ body?: never;
28488
+ path?: never;
28489
+ query?: never;
28490
+ url: '/api/debug/pubsub/dead_letter_queue/';
28491
+ };
28492
+ export type DebugPubsubDeadLetterQueueRetrieveErrors = {
28493
+ 503: RmqStatsError;
28494
+ };
28495
+ export type DebugPubsubDeadLetterQueueRetrieveError = DebugPubsubDeadLetterQueueRetrieveErrors[keyof DebugPubsubDeadLetterQueueRetrieveErrors];
28496
+ export type DebugPubsubDeadLetterQueueRetrieveResponses = {
28497
+ 200: DeadLetterQueue;
28498
+ };
28499
+ export type DebugPubsubDeadLetterQueueRetrieveResponse = DebugPubsubDeadLetterQueueRetrieveResponses[keyof DebugPubsubDeadLetterQueueRetrieveResponses];
28500
+ export type DebugPubsubMessageStateCacheRetrieveData = {
28501
+ body?: never;
28502
+ path?: never;
28503
+ query?: never;
28504
+ url: '/api/debug/pubsub/message_state_cache/';
28505
+ };
28506
+ export type DebugPubsubMessageStateCacheRetrieveResponses = {
28507
+ 200: MessageStateCache;
28508
+ };
28509
+ export type DebugPubsubMessageStateCacheRetrieveResponse = DebugPubsubMessageStateCacheRetrieveResponses[keyof DebugPubsubMessageStateCacheRetrieveResponses];
28510
+ export type DebugPubsubMetricsRetrieveData = {
28511
+ body?: never;
28512
+ path?: never;
28513
+ query?: never;
28514
+ url: '/api/debug/pubsub/metrics/';
28515
+ };
28516
+ export type DebugPubsubMetricsRetrieveResponses = {
28517
+ 200: PublishingMetrics;
28518
+ };
28519
+ export type DebugPubsubMetricsRetrieveResponse = DebugPubsubMetricsRetrieveResponses[keyof DebugPubsubMetricsRetrieveResponses];
28520
+ export type DebugPubsubMetricsResetData = {
28521
+ body?: never;
28522
+ path?: never;
28523
+ query?: never;
28524
+ url: '/api/debug/pubsub/metrics_reset/';
28525
+ };
28526
+ export type DebugPubsubMetricsResetResponses = {
28527
+ 200: MetricsReset;
28528
+ };
28529
+ export type DebugPubsubMetricsResetResponse = DebugPubsubMetricsResetResponses[keyof DebugPubsubMetricsResetResponses];
28530
+ export type DebugPubsubOverviewRetrieveData = {
28531
+ body?: never;
28532
+ path?: never;
28533
+ query?: never;
28534
+ url: '/api/debug/pubsub/overview/';
28535
+ };
28536
+ export type DebugPubsubOverviewRetrieveResponses = {
28537
+ 200: PubsubOverview;
28538
+ };
28539
+ export type DebugPubsubOverviewRetrieveResponse = DebugPubsubOverviewRetrieveResponses[keyof DebugPubsubOverviewRetrieveResponses];
28540
+ export type DebugPubsubQueuesRetrieveData = {
28541
+ body?: never;
28542
+ path?: never;
28543
+ query?: never;
28544
+ url: '/api/debug/pubsub/queues/';
28545
+ };
28546
+ export type DebugPubsubQueuesRetrieveErrors = {
28547
+ 503: RmqStatsError;
28548
+ };
28549
+ export type DebugPubsubQueuesRetrieveError = DebugPubsubQueuesRetrieveErrors[keyof DebugPubsubQueuesRetrieveErrors];
28550
+ export type DebugPubsubQueuesRetrieveResponses = {
28551
+ 200: SubscriptionQueuesOverview;
28552
+ };
28553
+ export type DebugPubsubQueuesRetrieveResponse = DebugPubsubQueuesRetrieveResponses[keyof DebugPubsubQueuesRetrieveResponses];
28354
28554
  export type DigitaloceanDropletsListData = {
28355
28555
  body?: never;
28356
28556
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.7",
3
+ "version": "7.9.8-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",