waldur-js-client 7.9.9-dev.7 → 7.9.9-dev.9

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.
package/dist/sdk.gen.js CHANGED
@@ -6699,6 +6699,73 @@ export const emailLogsRetrieve = (options) => {
6699
6699
  ...options
6700
6700
  });
6701
6701
  };
6702
+ export const eventSubscriptionQueuesList = (options) => {
6703
+ return (options?.client ?? _heyApiClient).get({
6704
+ security: [
6705
+ {
6706
+ name: 'Authorization',
6707
+ type: 'apiKey'
6708
+ },
6709
+ {
6710
+ scheme: 'bearer',
6711
+ type: 'http'
6712
+ }
6713
+ ],
6714
+ url: '/api/event-subscription-queues/',
6715
+ ...options
6716
+ });
6717
+ };
6718
+ /**
6719
+ * Get number of items in the collection matching the request parameters.
6720
+ */
6721
+ export const eventSubscriptionQueuesCount = (options) => {
6722
+ return (options?.client ?? _heyApiClient).head({
6723
+ security: [
6724
+ {
6725
+ name: 'Authorization',
6726
+ type: 'apiKey'
6727
+ },
6728
+ {
6729
+ scheme: 'bearer',
6730
+ type: 'http'
6731
+ }
6732
+ ],
6733
+ url: '/api/event-subscription-queues/',
6734
+ ...options
6735
+ });
6736
+ };
6737
+ export const eventSubscriptionQueuesDestroy = (options) => {
6738
+ return (options.client ?? _heyApiClient).delete({
6739
+ security: [
6740
+ {
6741
+ name: 'Authorization',
6742
+ type: 'apiKey'
6743
+ },
6744
+ {
6745
+ scheme: 'bearer',
6746
+ type: 'http'
6747
+ }
6748
+ ],
6749
+ url: '/api/event-subscription-queues/{uuid}/',
6750
+ ...options
6751
+ });
6752
+ };
6753
+ export const eventSubscriptionQueuesRetrieve = (options) => {
6754
+ return (options.client ?? _heyApiClient).get({
6755
+ security: [
6756
+ {
6757
+ name: 'Authorization',
6758
+ type: 'apiKey'
6759
+ },
6760
+ {
6761
+ scheme: 'bearer',
6762
+ type: 'http'
6763
+ }
6764
+ ],
6765
+ url: '/api/event-subscription-queues/{uuid}/',
6766
+ ...options
6767
+ });
6768
+ };
6702
6769
  export const eventSubscriptionsList = (options) => {
6703
6770
  return (options?.client ?? _heyApiClient).get({
6704
6771
  security: [
@@ -6786,6 +6853,29 @@ export const eventSubscriptionsRetrieve = (options) => {
6786
6853
  ...options
6787
6854
  });
6788
6855
  };
6856
+ /**
6857
+ * Create a RabbitMQ queue for receiving events for a specific offering and object type. The receiver must call this endpoint before subscribing via STOMP to ensure the queue is created with correct arguments (DLX, max-length, etc.).
6858
+ */
6859
+ export const eventSubscriptionsCreateQueue = (options) => {
6860
+ return (options.client ?? _heyApiClient).post({
6861
+ security: [
6862
+ {
6863
+ name: 'Authorization',
6864
+ type: 'apiKey'
6865
+ },
6866
+ {
6867
+ scheme: 'bearer',
6868
+ type: 'http'
6869
+ }
6870
+ ],
6871
+ url: '/api/event-subscriptions/{uuid}/create_queue/',
6872
+ ...options,
6873
+ headers: {
6874
+ 'Content-Type': 'application/json',
6875
+ ...options.headers
6876
+ }
6877
+ });
6878
+ };
6789
6879
  export const eventsList = (options) => {
6790
6880
  return (options?.client ?? _heyApiClient).get({
6791
6881
  security: [
@@ -18822,6 +18912,30 @@ export const marketplaceServiceProvidersDeleteUser = (options) => {
18822
18912
  }
18823
18913
  });
18824
18914
  };
18915
+ /**
18916
+ * Generate site agent configuration
18917
+ * Generates a YAML configuration file for waldur-site-agent based on selected SLURM offerings. The configuration includes offering details, components, backend settings, and optionally SLURM periodic usage policy settings. Secrets are shown as placeholders that need to be filled in.
18918
+ */
18919
+ export const marketplaceServiceProvidersGenerateSiteAgentConfig = (options) => {
18920
+ return (options.client ?? _heyApiClient).post({
18921
+ security: [
18922
+ {
18923
+ name: 'Authorization',
18924
+ type: 'apiKey'
18925
+ },
18926
+ {
18927
+ scheme: 'bearer',
18928
+ type: 'http'
18929
+ }
18930
+ ],
18931
+ url: '/api/marketplace-service-providers/{uuid}/generate_site_agent_config/',
18932
+ ...options,
18933
+ headers: {
18934
+ 'Content-Type': 'application/json',
18935
+ ...options.headers
18936
+ }
18937
+ });
18938
+ };
18825
18939
  /**
18826
18940
  * List users and their roles in a scope
18827
18941
  * Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
@@ -19110,29 +19224,6 @@ export const marketplaceSiteAgentIdentitiesUpdate = (options) => {
19110
19224
  }
19111
19225
  });
19112
19226
  };
19113
- /**
19114
- * Create a RabbitMQ queue for receiving events for a specific offering and object type. The receiver must call this endpoint before subscribing via STOMP to ensure the queue is created with correct arguments (DLX, max-length, etc.).
19115
- */
19116
- export const marketplaceSiteAgentIdentitiesCreateQueue = (options) => {
19117
- return (options.client ?? _heyApiClient).post({
19118
- security: [
19119
- {
19120
- name: 'Authorization',
19121
- type: 'apiKey'
19122
- },
19123
- {
19124
- scheme: 'bearer',
19125
- type: 'http'
19126
- }
19127
- ],
19128
- url: '/api/marketplace-site-agent-identities/{uuid}/create_queue/',
19129
- ...options,
19130
- headers: {
19131
- 'Content-Type': 'application/json',
19132
- ...options.headers
19133
- }
19134
- });
19135
- };
19136
19227
  /**
19137
19228
  * Register an event subscription for the specified agent identity and observable object type. Returns existing subscription if already exists.
19138
19229
  */
@@ -19605,6 +19696,29 @@ export const marketplaceSlurmPeriodicUsagePoliciesActionsCount = (options) => {
19605
19696
  ...options
19606
19697
  });
19607
19698
  };
19699
+ /**
19700
+ * Preview policy impact without saving. Returns threshold calculations, carryover projections, and QoS trigger points.
19701
+ */
19702
+ export const marketplaceSlurmPeriodicUsagePoliciesPreviewImpact = (options) => {
19703
+ return (options?.client ?? _heyApiClient).post({
19704
+ security: [
19705
+ {
19706
+ name: 'Authorization',
19707
+ type: 'apiKey'
19708
+ },
19709
+ {
19710
+ scheme: 'bearer',
19711
+ type: 'http'
19712
+ }
19713
+ ],
19714
+ url: '/api/marketplace-slurm-periodic-usage-policies/preview_impact/',
19715
+ ...options,
19716
+ headers: {
19717
+ 'Content-Type': 'application/json',
19718
+ ...options?.headers
19719
+ }
19720
+ });
19721
+ };
19608
19722
  /**
19609
19723
  * List software catalogs
19610
19724
  * Returns a paginated list of available software catalogs, such as EESSI or Spack.
@@ -4006,6 +4006,7 @@ export type CreateRouterRequest = {
4006
4006
  tenant: string;
4007
4007
  name: string;
4008
4008
  };
4009
+ export type CurrentQosStatusEnum = 'normal' | 'notification' | 'slowdown' | 'blocked';
4009
4010
  export type Customer = {
4010
4011
  readonly url?: string;
4011
4012
  readonly uuid?: string;
@@ -5029,10 +5030,7 @@ export type EventSubscriptionQueue = {
5029
5030
  readonly url: string;
5030
5031
  readonly event_subscription: string;
5031
5032
  readonly event_subscription_uuid: string;
5032
- /**
5033
- * UUID of the offering this queue receives events for
5034
- */
5035
- offering_uuid: string;
5033
+ readonly offering_uuid: string;
5036
5034
  /**
5037
5035
  * Observable object type (e.g., 'resource', 'order')
5038
5036
  */
@@ -5094,6 +5092,7 @@ export type ExecuteActionResponse = {
5094
5092
  [key: string]: unknown;
5095
5093
  };
5096
5094
  };
5095
+ export type ExecutionModeEnum = 'production' | 'emulator';
5097
5096
  export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
5098
5097
  export type ExpertiseCategory = {
5099
5098
  readonly url: string;
@@ -7294,6 +7293,10 @@ export type MergedPluginOptions = {
7294
7293
  * Enable display of order actions for service provider
7295
7294
  */
7296
7295
  enable_display_of_order_actions_for_service_provider?: boolean;
7296
+ /**
7297
+ * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
7298
+ */
7299
+ slurm_periodic_policy_enabled?: boolean;
7297
7300
  /**
7298
7301
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
7299
7302
  */
@@ -7544,6 +7547,10 @@ export type MergedPluginOptionsRequest = {
7544
7547
  * Enable display of order actions for service provider
7545
7548
  */
7546
7549
  enable_display_of_order_actions_for_service_provider?: boolean;
7550
+ /**
7551
+ * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
7552
+ */
7553
+ slurm_periodic_policy_enabled?: boolean;
7547
7554
  /**
7548
7555
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
7549
7556
  */
@@ -19078,6 +19085,24 @@ export type SilenceActionResponse = {
19078
19085
  status: string;
19079
19086
  duration_days?: number | null;
19080
19087
  };
19088
+ export type SiteAgentConfigGenerationRequest = {
19089
+ /**
19090
+ * List of SLURM offering UUIDs to include in configuration
19091
+ */
19092
+ offering_uuids: Array<string>;
19093
+ /**
19094
+ * Include SLURM periodic usage policy settings in configuration
19095
+ */
19096
+ include_policy_settings?: boolean;
19097
+ /**
19098
+ * Waldur API URL (defaults to current server URL)
19099
+ */
19100
+ waldur_api_url?: string;
19101
+ /**
19102
+ * Timezone for the site agent
19103
+ */
19104
+ timezone?: string;
19105
+ };
19081
19106
  export type SlurmAllocation = {
19082
19107
  readonly url?: string;
19083
19108
  readonly uuid?: string;
@@ -19158,6 +19183,58 @@ export type SlurmAssociation = {
19158
19183
  username: string;
19159
19184
  allocation: string;
19160
19185
  };
19186
+ export type SlurmCommand = {
19187
+ /**
19188
+ * Command type: fairshare, limits, qos, reset_usage
19189
+ */
19190
+ type: string;
19191
+ /**
19192
+ * Human-readable description
19193
+ */
19194
+ description: string;
19195
+ /**
19196
+ * Actual shell command
19197
+ */
19198
+ command: string;
19199
+ /**
19200
+ * Command parameters
19201
+ */
19202
+ parameters: {
19203
+ [key: string]: unknown;
19204
+ };
19205
+ };
19206
+ export type SlurmCommandHistory = {
19207
+ readonly uuid: string;
19208
+ /**
19209
+ * Type of command: fairshare, limits, qos, reset_usage
19210
+ */
19211
+ command_type: string;
19212
+ /**
19213
+ * Human-readable description of what the command does
19214
+ */
19215
+ description: string;
19216
+ /**
19217
+ * Actual shell command that was/would be executed
19218
+ */
19219
+ shell_command: string;
19220
+ /**
19221
+ * Command parameters as key-value pairs
19222
+ */
19223
+ parameters?: unknown;
19224
+ readonly executed_at: string;
19225
+ /**
19226
+ * Whether command was executed in production or emulator mode
19227
+ */
19228
+ execution_mode?: ExecutionModeEnum;
19229
+ /**
19230
+ * Whether the command execution was successful
19231
+ */
19232
+ success?: boolean;
19233
+ /**
19234
+ * Error message if command execution failed
19235
+ */
19236
+ error_message?: string;
19237
+ };
19161
19238
  export type SlurmPeriodicUsagePolicy = {
19162
19239
  readonly uuid: string;
19163
19240
  readonly url: string;
@@ -19262,6 +19339,91 @@ export type SlurmPeriodicUsagePolicyRequest = {
19262
19339
  */
19263
19340
  qos_strategy?: QosStrategyEnum;
19264
19341
  };
19342
+ export type SlurmPolicyCarryover = {
19343
+ previous_usage: number;
19344
+ days_elapsed: number;
19345
+ half_life: number;
19346
+ decay_factor: number;
19347
+ effective_usage: number;
19348
+ base_allocation: number;
19349
+ unused_carryover: number;
19350
+ total_allocation: number;
19351
+ };
19352
+ export type SlurmPolicyDateProjection = {
19353
+ days: number | null;
19354
+ date: string | null;
19355
+ status: SlurmPolicyDateProjectionStatusEnum;
19356
+ };
19357
+ export type SlurmPolicyDateProjectionStatusEnum = 'never' | 'exceeded' | 'projected';
19358
+ export type SlurmPolicyDateProjections = {
19359
+ notification: SlurmPolicyDateProjection;
19360
+ slowdown: SlurmPolicyDateProjection;
19361
+ blocked: SlurmPolicyDateProjection;
19362
+ };
19363
+ export type SlurmPolicyPreviewRequestRequest = {
19364
+ /**
19365
+ * Base allocation for the period (in node-hours or billing units)
19366
+ */
19367
+ allocation?: number;
19368
+ /**
19369
+ * Grace ratio for overconsumption allowance (0.2 = 20%)
19370
+ */
19371
+ grace_ratio?: number;
19372
+ /**
19373
+ * Usage from the previous period
19374
+ */
19375
+ previous_usage?: number;
19376
+ /**
19377
+ * Decay half-life in days for fairshare calculations
19378
+ */
19379
+ fairshare_decay_half_life?: number;
19380
+ /**
19381
+ * Whether unused allocation carries over to next period
19382
+ */
19383
+ carryover_enabled?: boolean;
19384
+ /**
19385
+ * Days elapsed since previous period (90 for quarterly)
19386
+ */
19387
+ days_elapsed?: number;
19388
+ /**
19389
+ * Optional resource UUID to use for current usage data
19390
+ */
19391
+ resource_uuid?: string | null;
19392
+ /**
19393
+ * Current usage in this period (manual input or from resource)
19394
+ */
19395
+ current_usage?: number;
19396
+ /**
19397
+ * Average daily usage rate for projections
19398
+ */
19399
+ daily_usage_rate?: number;
19400
+ };
19401
+ export type SlurmPolicyPreviewResponse = {
19402
+ base_allocation: number;
19403
+ effective_allocation: number;
19404
+ carryover_enabled: boolean;
19405
+ carryover: SlurmPolicyCarryover | null;
19406
+ thresholds: SlurmPolicyThresholds;
19407
+ grace_ratio: number;
19408
+ half_life: number;
19409
+ current_usage?: number;
19410
+ daily_usage_rate?: number;
19411
+ usage_percentage?: number;
19412
+ current_qos_status?: CurrentQosStatusEnum;
19413
+ date_projections?: SlurmPolicyDateProjections;
19414
+ preview_commands?: Array<SlurmCommand>;
19415
+ command_history?: Array<SlurmCommandHistory>;
19416
+ billing_period_start?: string;
19417
+ billing_period_end?: string;
19418
+ };
19419
+ export type SlurmPolicyThresholds = {
19420
+ allocation: number;
19421
+ grace_ratio: number;
19422
+ notification_ratio: number;
19423
+ notification_threshold: number;
19424
+ slowdown_threshold: number;
19425
+ blocked_threshold: number;
19426
+ };
19265
19427
  export type SmaxWebHookReceiver = {
19266
19428
  id: string;
19267
19429
  };
@@ -30294,6 +30456,91 @@ export type EmailLogsRetrieveResponses = {
30294
30456
  200: EmailLog;
30295
30457
  };
30296
30458
  export type EmailLogsRetrieveResponse = EmailLogsRetrieveResponses[keyof EmailLogsRetrieveResponses];
30459
+ export type EventSubscriptionQueuesListData = {
30460
+ body?: never;
30461
+ path?: never;
30462
+ query?: {
30463
+ event_subscription_uuid?: string;
30464
+ /**
30465
+ * Ordering
30466
+ *
30467
+ *
30468
+ */
30469
+ o?: Array<'-created' | 'created'>;
30470
+ object_type?: string;
30471
+ offering_uuid?: string;
30472
+ /**
30473
+ * A page number within the paginated result set.
30474
+ */
30475
+ page?: number;
30476
+ /**
30477
+ * Number of results to return per page.
30478
+ */
30479
+ page_size?: number;
30480
+ };
30481
+ url: '/api/event-subscription-queues/';
30482
+ };
30483
+ export type EventSubscriptionQueuesListResponses = {
30484
+ 200: Array<EventSubscriptionQueue>;
30485
+ };
30486
+ export type EventSubscriptionQueuesListResponse = EventSubscriptionQueuesListResponses[keyof EventSubscriptionQueuesListResponses];
30487
+ export type EventSubscriptionQueuesCountData = {
30488
+ body?: never;
30489
+ path?: never;
30490
+ query?: {
30491
+ event_subscription_uuid?: string;
30492
+ /**
30493
+ * Ordering
30494
+ *
30495
+ *
30496
+ */
30497
+ o?: Array<'-created' | 'created'>;
30498
+ object_type?: string;
30499
+ offering_uuid?: string;
30500
+ /**
30501
+ * A page number within the paginated result set.
30502
+ */
30503
+ page?: number;
30504
+ /**
30505
+ * Number of results to return per page.
30506
+ */
30507
+ page_size?: number;
30508
+ };
30509
+ url: '/api/event-subscription-queues/';
30510
+ };
30511
+ export type EventSubscriptionQueuesCountResponses = {
30512
+ /**
30513
+ * No response body
30514
+ */
30515
+ 200: unknown;
30516
+ };
30517
+ export type EventSubscriptionQueuesDestroyData = {
30518
+ body?: never;
30519
+ path: {
30520
+ uuid: string;
30521
+ };
30522
+ query?: never;
30523
+ url: '/api/event-subscription-queues/{uuid}/';
30524
+ };
30525
+ export type EventSubscriptionQueuesDestroyResponses = {
30526
+ /**
30527
+ * No response body
30528
+ */
30529
+ 204: void;
30530
+ };
30531
+ export type EventSubscriptionQueuesDestroyResponse = EventSubscriptionQueuesDestroyResponses[keyof EventSubscriptionQueuesDestroyResponses];
30532
+ export type EventSubscriptionQueuesRetrieveData = {
30533
+ body?: never;
30534
+ path: {
30535
+ uuid: string;
30536
+ };
30537
+ query?: never;
30538
+ url: '/api/event-subscription-queues/{uuid}/';
30539
+ };
30540
+ export type EventSubscriptionQueuesRetrieveResponses = {
30541
+ 200: EventSubscriptionQueue;
30542
+ };
30543
+ export type EventSubscriptionQueuesRetrieveResponse = EventSubscriptionQueuesRetrieveResponses[keyof EventSubscriptionQueuesRetrieveResponses];
30297
30544
  export type EventSubscriptionsListData = {
30298
30545
  body?: never;
30299
30546
  path?: never;
@@ -30387,6 +30634,19 @@ export type EventSubscriptionsRetrieveResponses = {
30387
30634
  200: EventSubscription;
30388
30635
  };
30389
30636
  export type EventSubscriptionsRetrieveResponse = EventSubscriptionsRetrieveResponses[keyof EventSubscriptionsRetrieveResponses];
30637
+ export type EventSubscriptionsCreateQueueData = {
30638
+ body: EventSubscriptionQueueCreateRequest;
30639
+ path: {
30640
+ uuid: string;
30641
+ };
30642
+ query?: never;
30643
+ url: '/api/event-subscriptions/{uuid}/create_queue/';
30644
+ };
30645
+ export type EventSubscriptionsCreateQueueResponses = {
30646
+ 200: EventSubscriptionQueue;
30647
+ 201: EventSubscriptionQueue;
30648
+ };
30649
+ export type EventSubscriptionsCreateQueueResponse = EventSubscriptionsCreateQueueResponses[keyof EventSubscriptionsCreateQueueResponses];
30390
30650
  export type EventsListData = {
30391
30651
  body?: never;
30392
30652
  path?: never;
@@ -44464,6 +44724,18 @@ export type MarketplaceServiceProvidersDeleteUserResponses = {
44464
44724
  */
44465
44725
  200: unknown;
44466
44726
  };
44727
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigData = {
44728
+ body: SiteAgentConfigGenerationRequest;
44729
+ path: {
44730
+ uuid: string;
44731
+ };
44732
+ query?: never;
44733
+ url: '/api/marketplace-service-providers/{uuid}/generate_site_agent_config/';
44734
+ };
44735
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponses = {
44736
+ 200: Blob | File;
44737
+ };
44738
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponse = MarketplaceServiceProvidersGenerateSiteAgentConfigResponses[keyof MarketplaceServiceProvidersGenerateSiteAgentConfigResponses];
44467
44739
  export type MarketplaceServiceProvidersListUsersListData = {
44468
44740
  body?: never;
44469
44741
  path: {
@@ -44761,19 +45033,6 @@ export type MarketplaceSiteAgentIdentitiesUpdateResponses = {
44761
45033
  200: AgentIdentity;
44762
45034
  };
44763
45035
  export type MarketplaceSiteAgentIdentitiesUpdateResponse = MarketplaceSiteAgentIdentitiesUpdateResponses[keyof MarketplaceSiteAgentIdentitiesUpdateResponses];
44764
- export type MarketplaceSiteAgentIdentitiesCreateQueueData = {
44765
- body: EventSubscriptionQueueCreateRequest;
44766
- path: {
44767
- uuid: string;
44768
- };
44769
- query?: never;
44770
- url: '/api/marketplace-site-agent-identities/{uuid}/create_queue/';
44771
- };
44772
- export type MarketplaceSiteAgentIdentitiesCreateQueueResponses = {
44773
- 200: EventSubscriptionQueue;
44774
- 201: EventSubscriptionQueue;
44775
- };
44776
- export type MarketplaceSiteAgentIdentitiesCreateQueueResponse = MarketplaceSiteAgentIdentitiesCreateQueueResponses[keyof MarketplaceSiteAgentIdentitiesCreateQueueResponses];
44777
45036
  export type MarketplaceSiteAgentIdentitiesRegisterEventSubscriptionData = {
44778
45037
  body: AgentEventSubscriptionCreateRequest;
44779
45038
  path: {
@@ -45186,6 +45445,16 @@ export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountResponses = {
45186
45445
  */
45187
45446
  200: unknown;
45188
45447
  };
45448
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactData = {
45449
+ body?: SlurmPolicyPreviewRequestRequest;
45450
+ path?: never;
45451
+ query?: never;
45452
+ url: '/api/marketplace-slurm-periodic-usage-policies/preview_impact/';
45453
+ };
45454
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses = {
45455
+ 200: SlurmPolicyPreviewResponse;
45456
+ };
45457
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponse = MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses];
45189
45458
  export type MarketplaceSoftwareCatalogsListData = {
45190
45459
  body?: never;
45191
45460
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.9-dev.7",
3
+ "version": "7.9.9-dev.9",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",