waldur-js-client 7.9.3-dev.8 → 7.9.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.
package/dist/sdk.gen.d.ts CHANGED
@@ -2505,7 +2505,8 @@ export declare const marketplaceProviderOfferingsGroupsList: <ThrowOnError exten
2505
2505
  */
2506
2506
  export declare const marketplaceProviderOfferingsGroupsCount: <ThrowOnError extends boolean = false>(options?: Options<MarketplaceProviderOfferingsGroupsCountData, ThrowOnError>) => import("./client").RequestResult<MarketplaceProviderOfferingsGroupsCountResponses, unknown, ThrowOnError, "fields">;
2507
2507
  /**
2508
- * Import offering data with configurable parameters.
2508
+ * Import offering data
2509
+ * Imports an offering and all its connected parts from YAML format. Allows configuration of which components to import and how to handle conflicts. Imported offerings are always created in DRAFT state for security.
2509
2510
  */
2510
2511
  export declare const marketplaceProviderOfferingsImportOffering: <ThrowOnError extends boolean = false>(options: Options<MarketplaceProviderOfferingsImportOfferingData, ThrowOnError>) => import("./client").RequestResult<MarketplaceProviderOfferingsImportOfferingResponses, unknown, ThrowOnError, "fields">;
2511
2512
  /**
package/dist/sdk.gen.js CHANGED
@@ -14314,7 +14314,8 @@ export const marketplaceProviderOfferingsGroupsCount = (options) => {
14314
14314
  });
14315
14315
  };
14316
14316
  /**
14317
- * Import offering data with configurable parameters.
14317
+ * Import offering data
14318
+ * Imports an offering and all its connected parts from YAML format. Allows configuration of which components to import and how to handle conflicts. Imported offerings are always created in DRAFT state for security.
14318
14319
  */
14319
14320
  export const marketplaceProviderOfferingsImportOffering = (options) => {
14320
14321
  return (options.client ?? _heyApiClient).post({
@@ -1571,10 +1571,19 @@ export type CategorySerializerForForNestedFieldsRequest = {
1571
1571
  title: string;
1572
1572
  };
1573
1573
  export type CheckUniqueBackendIdRequest = {
1574
+ /**
1575
+ * Backend identifier to check
1576
+ */
1574
1577
  backend_id: string;
1578
+ /**
1579
+ * Check across all offerings
1580
+ */
1575
1581
  check_all_offerings?: boolean;
1576
1582
  };
1577
1583
  export type CheckUniqueBackendIdResponse = {
1584
+ /**
1585
+ * Whether the backend ID is unique
1586
+ */
1578
1587
  is_unique: boolean;
1579
1588
  };
1580
1589
  export type Checklist = {
@@ -1786,8 +1795,17 @@ export type ComponentUsage = {
1786
1795
  modified_by?: number | null;
1787
1796
  };
1788
1797
  export type ComponentUsageCreateRequest = {
1798
+ /**
1799
+ * List of component usage items to report
1800
+ */
1789
1801
  usages: Array<ComponentUsageItemRequest>;
1802
+ /**
1803
+ * UUID of the specific resource plan period for usage reporting
1804
+ */
1790
1805
  plan_period?: string;
1806
+ /**
1807
+ * UUID of the resource for usage reporting (required if plan_period not provided)
1808
+ */
1791
1809
  resource?: string;
1792
1810
  /**
1793
1811
  * Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
@@ -2373,8 +2391,17 @@ export type CountProjectsOfServiceProvidersGroupedByOecd = {
2373
2391
  readonly oecd_fos_2007_name: string;
2374
2392
  };
2375
2393
  export type CountStats = {
2394
+ /**
2395
+ * Name from the record
2396
+ */
2376
2397
  readonly name: string;
2398
+ /**
2399
+ * UUID from the record
2400
+ */
2377
2401
  readonly uuid: string;
2402
+ /**
2403
+ * Count value from the record
2404
+ */
2378
2405
  readonly count: number;
2379
2406
  };
2380
2407
  export type CountUniqueUsersConnectedWithActiveResourcesOfServiceProvider = {
@@ -2730,10 +2757,25 @@ export type CustomerEstimatedCostPolicyRequest = {
2730
2757
  period?: PeriodEnum;
2731
2758
  };
2732
2759
  export type CustomerIndustryFlagStats = {
2760
+ /**
2761
+ * Name from the record
2762
+ */
2733
2763
  readonly name: string;
2764
+ /**
2765
+ * UUID from the record
2766
+ */
2734
2767
  readonly uuid: string;
2768
+ /**
2769
+ * Count value from the record
2770
+ */
2735
2771
  readonly count: number;
2772
+ /**
2773
+ * Customer abbreviation from the record
2774
+ */
2736
2775
  readonly abbreviation: string;
2776
+ /**
2777
+ * Industry classification flag
2778
+ */
2737
2779
  is_industry: string;
2738
2780
  };
2739
2781
  export type CustomerMemberCount = {
@@ -2759,9 +2801,21 @@ export type CustomerMemberCount = {
2759
2801
  readonly has_resources: boolean;
2760
2802
  };
2761
2803
  export type CustomerOecdCodeStats = {
2804
+ /**
2805
+ * Name from the record
2806
+ */
2762
2807
  readonly name: string;
2808
+ /**
2809
+ * UUID from the record
2810
+ */
2763
2811
  readonly uuid: string;
2812
+ /**
2813
+ * Count value from the record
2814
+ */
2764
2815
  readonly count: number;
2816
+ /**
2817
+ * Customer abbreviation from the record
2818
+ */
2765
2819
  readonly abbreviation: string;
2766
2820
  oecd: string;
2767
2821
  };
@@ -3831,7 +3885,13 @@ export type ImageUploadResponse = {
3831
3885
  export type ImpactLevelDisplayEnum = 'No impact' | 'Degraded performance' | 'Partial outage' | 'Full outage';
3832
3886
  export type ImpactLevelEnum = 1 | 2 | 3 | 4;
3833
3887
  export type ImportResourceRequest = {
3888
+ /**
3889
+ * Backend identifier of the resource
3890
+ */
3834
3891
  backend_id: string;
3892
+ /**
3893
+ * Target project for the resource
3894
+ */
3835
3895
  project: string;
3836
3896
  plan?: string;
3837
3897
  additional_details?: unknown;
@@ -4808,9 +4868,21 @@ export type MarketplaceCategoryRequest = {
4808
4868
  group?: string | null;
4809
4869
  };
4810
4870
  export type MarketplaceCustomerStats = {
4871
+ /**
4872
+ * Name from the record
4873
+ */
4811
4874
  readonly name: string;
4875
+ /**
4876
+ * UUID from the record
4877
+ */
4812
4878
  readonly uuid: string;
4879
+ /**
4880
+ * Count value from the record
4881
+ */
4813
4882
  readonly count: number;
4883
+ /**
4884
+ * Customer abbreviation from the record
4885
+ */
4814
4886
  readonly abbreviation: string;
4815
4887
  };
4816
4888
  export type MarketplaceProviderCustomer = {
@@ -5029,17 +5101,53 @@ export type MergedPluginOptions = {
5029
5101
  * List of UUID of OpenStack offerings where tenant can be created
5030
5102
  */
5031
5103
  openstack_offering_uuid_list?: Array<string>;
5104
+ /**
5105
+ * Flavor name for managed Rancher server instances
5106
+ */
5032
5107
  managed_rancher_server_flavor_name?: string;
5108
+ /**
5109
+ * System volume size in GB for managed Rancher server
5110
+ */
5033
5111
  managed_rancher_server_system_volume_size_gb?: number;
5112
+ /**
5113
+ * System volume type name for managed Rancher server
5114
+ */
5034
5115
  managed_rancher_server_system_volume_type_name?: string;
5116
+ /**
5117
+ * Data volume size in GB for managed Rancher server
5118
+ */
5035
5119
  managed_rancher_server_data_volume_size_gb?: number;
5120
+ /**
5121
+ * Data volume type name for managed Rancher server
5122
+ */
5036
5123
  managed_rancher_server_data_volume_type_name?: string;
5124
+ /**
5125
+ * System volume size in GB for managed Rancher worker nodes
5126
+ */
5037
5127
  managed_rancher_worker_system_volume_size_gb?: number;
5128
+ /**
5129
+ * System volume type name for managed Rancher worker nodes
5130
+ */
5038
5131
  managed_rancher_worker_system_volume_type_name?: string;
5132
+ /**
5133
+ * Flavor name for managed Rancher load balancer
5134
+ */
5039
5135
  managed_rancher_load_balancer_flavor_name?: string;
5136
+ /**
5137
+ * System volume size in GB for managed Rancher load balancer
5138
+ */
5040
5139
  managed_rancher_load_balancer_system_volume_size_gb?: number;
5140
+ /**
5141
+ * System volume type name for managed Rancher load balancer
5142
+ */
5041
5143
  managed_rancher_load_balancer_system_volume_type_name?: string;
5144
+ /**
5145
+ * Data volume size in GB for managed Rancher load balancer
5146
+ */
5042
5147
  managed_rancher_load_balancer_data_volume_size_gb?: number;
5148
+ /**
5149
+ * Data volume type name for managed Rancher load balancer
5150
+ */
5043
5151
  managed_rancher_load_balancer_data_volume_type_name?: string;
5044
5152
  /**
5045
5153
  * Max number of vCPUs for tenants
@@ -5227,17 +5335,53 @@ export type MergedPluginOptionsRequest = {
5227
5335
  * List of UUID of OpenStack offerings where tenant can be created
5228
5336
  */
5229
5337
  openstack_offering_uuid_list?: Array<string>;
5338
+ /**
5339
+ * Flavor name for managed Rancher server instances
5340
+ */
5230
5341
  managed_rancher_server_flavor_name?: string;
5342
+ /**
5343
+ * System volume size in GB for managed Rancher server
5344
+ */
5231
5345
  managed_rancher_server_system_volume_size_gb?: number;
5346
+ /**
5347
+ * System volume type name for managed Rancher server
5348
+ */
5232
5349
  managed_rancher_server_system_volume_type_name?: string;
5350
+ /**
5351
+ * Data volume size in GB for managed Rancher server
5352
+ */
5233
5353
  managed_rancher_server_data_volume_size_gb?: number;
5354
+ /**
5355
+ * Data volume type name for managed Rancher server
5356
+ */
5234
5357
  managed_rancher_server_data_volume_type_name?: string;
5358
+ /**
5359
+ * System volume size in GB for managed Rancher worker nodes
5360
+ */
5235
5361
  managed_rancher_worker_system_volume_size_gb?: number;
5362
+ /**
5363
+ * System volume type name for managed Rancher worker nodes
5364
+ */
5236
5365
  managed_rancher_worker_system_volume_type_name?: string;
5366
+ /**
5367
+ * Flavor name for managed Rancher load balancer
5368
+ */
5237
5369
  managed_rancher_load_balancer_flavor_name?: string;
5370
+ /**
5371
+ * System volume size in GB for managed Rancher load balancer
5372
+ */
5238
5373
  managed_rancher_load_balancer_system_volume_size_gb?: number;
5374
+ /**
5375
+ * System volume type name for managed Rancher load balancer
5376
+ */
5239
5377
  managed_rancher_load_balancer_system_volume_type_name?: string;
5378
+ /**
5379
+ * Data volume size in GB for managed Rancher load balancer
5380
+ */
5240
5381
  managed_rancher_load_balancer_data_volume_size_gb?: number;
5382
+ /**
5383
+ * Data volume type name for managed Rancher load balancer
5384
+ */
5241
5385
  managed_rancher_load_balancer_data_volume_type_name?: string;
5242
5386
  /**
5243
5387
  * Max number of vCPUs for tenants
@@ -5281,6 +5425,9 @@ export type MergedSecretOptions = {
5281
5425
  * OpenStack IPv4 external IP mapping
5282
5426
  */
5283
5427
  ipv4_external_ip_mapping?: Array<IpMapping>;
5428
+ /**
5429
+ * TLS certificate for OpenStack API connection verification
5430
+ */
5284
5431
  openstack_api_tls_certificate?: string;
5285
5432
  /**
5286
5433
  * Default value for new subnets DNS name servers. Should be defined as list.
@@ -5342,7 +5489,13 @@ export type MergedSecretOptions = {
5342
5489
  * Rancher secret key
5343
5490
  */
5344
5491
  password?: string;
5492
+ /**
5493
+ * Cloud-init template for Rancher cluster node initialization
5494
+ */
5345
5495
  cloud_init_template?: string;
5496
+ /**
5497
+ * Cloud-init template for managed Rancher load balancer initialization
5498
+ */
5346
5499
  managed_rancher_load_balancer_cloud_init_template?: string;
5347
5500
  /**
5348
5501
  * Host of the Vault server
@@ -5434,6 +5587,9 @@ export type MergedSecretOptionsRequest = {
5434
5587
  * OpenStack IPv4 external IP mapping
5435
5588
  */
5436
5589
  ipv4_external_ip_mapping?: Array<IpMappingRequest>;
5590
+ /**
5591
+ * TLS certificate for OpenStack API connection verification
5592
+ */
5437
5593
  openstack_api_tls_certificate?: string;
5438
5594
  /**
5439
5595
  * Default value for new subnets DNS name servers. Should be defined as list.
@@ -5495,7 +5651,13 @@ export type MergedSecretOptionsRequest = {
5495
5651
  * Rancher secret key
5496
5652
  */
5497
5653
  password?: string;
5654
+ /**
5655
+ * Cloud-init template for Rancher cluster node initialization
5656
+ */
5498
5657
  cloud_init_template?: string;
5658
+ /**
5659
+ * Cloud-init template for managed Rancher load balancer initialization
5660
+ */
5499
5661
  managed_rancher_load_balancer_cloud_init_template?: string;
5500
5662
  /**
5501
5663
  * Host of the Vault server
@@ -5625,7 +5787,13 @@ export type MigrationDetailsRequest = {
5625
5787
  };
5626
5788
  export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
5627
5789
  export type MoveOfferingRequest = {
5790
+ /**
5791
+ * Target customer URL with service provider profile where the offering should be moved
5792
+ */
5628
5793
  customer: string;
5794
+ /**
5795
+ * Whether to preserve existing permissions when moving the offering
5796
+ */
5629
5797
  preserve_permissions: boolean;
5630
5798
  };
5631
5799
  export type MoveProjectRequest = {
@@ -5633,6 +5801,9 @@ export type MoveProjectRequest = {
5633
5801
  preserve_permissions: boolean;
5634
5802
  };
5635
5803
  export type MoveResourceRequest = {
5804
+ /**
5805
+ * Target project URL where the resource should be moved
5806
+ */
5636
5807
  project: ProjectHyperlinkRequest;
5637
5808
  };
5638
5809
  export type NameUuid = {
@@ -6821,7 +6992,7 @@ export type OfferingGroups = {
6821
6992
  export type OfferingImageRequest = {
6822
6993
  image: Blob | File;
6823
6994
  };
6824
- export type OfferingImportParameters = {
6995
+ export type OfferingImportParametersRequest = {
6825
6996
  /**
6826
6997
  * Target customer for imported offering. If not provided, uses current user's customer
6827
6998
  */
@@ -6877,65 +7048,29 @@ export type OfferingImportParameters = {
6877
7048
  /**
6878
7049
  * The exported offering data to import
6879
7050
  */
6880
- offering_data: OfferingExportData;
7051
+ offering_data: OfferingExportDataRequest;
6881
7052
  };
6882
- export type OfferingImportParametersRequest = {
6883
- /**
6884
- * Target customer for imported offering. If not provided, uses current user's customer
6885
- */
6886
- customer?: string | null;
6887
- /**
6888
- * Target category name for imported offering. If not provided, uses category from export data
6889
- */
6890
- category?: string | null;
6891
- /**
6892
- * Target project for imported offering (optional)
6893
- */
6894
- project?: string | null;
6895
- /**
6896
- * Import offering components
6897
- */
6898
- import_components?: boolean;
6899
- /**
6900
- * Import offering plans
6901
- */
6902
- import_plans?: boolean;
6903
- /**
6904
- * Import offering screenshots
6905
- */
6906
- import_screenshots?: boolean;
6907
- /**
6908
- * Import offering files
6909
- */
6910
- import_files?: boolean;
6911
- /**
6912
- * Import offering access endpoints
6913
- */
6914
- import_endpoints?: boolean;
7053
+ export type OfferingImportResponse = {
6915
7054
  /**
6916
- * Import organization groups associations (may fail if groups don't exist)
7055
+ * UUID of the imported offering
6917
7056
  */
6918
- import_organization_groups?: boolean;
7057
+ imported_offering_uuid: string;
6919
7058
  /**
6920
- * Import terms of service configurations
7059
+ * Name of the imported offering
6921
7060
  */
6922
- import_terms_of_service?: boolean;
7061
+ imported_offering_name: string;
6923
7062
  /**
6924
- * Import plugin options
7063
+ * List of imported component types
6925
7064
  */
6926
- import_plugin_options?: boolean;
7065
+ imported_components: Array<string>;
6927
7066
  /**
6928
- * Import secret options (WARNING: will overwrite existing secrets)
7067
+ * List of warnings encountered during import
6929
7068
  */
6930
- import_secret_options?: boolean;
7069
+ warnings?: Array<string>;
6931
7070
  /**
6932
- * Overwrite existing offering if one with the same name exists
7071
+ * Timestamp when the import was completed
6933
7072
  */
6934
- overwrite_existing?: boolean;
6935
- /**
6936
- * The exported offering data to import
6937
- */
6938
- offering_data: OfferingExportDataRequest;
7073
+ import_timestamp: string;
6939
7074
  };
6940
7075
  export type OfferingIntegrationUpdateRequest = {
6941
7076
  secret_options?: MergedSecretOptionsRequest;
@@ -7458,10 +7593,19 @@ export type OfferingUserServiceProviderComment = {
7458
7593
  };
7459
7594
  export type OfferingUserState = 'Requested' | 'Creating' | 'Pending account linking' | 'Pending additional validation' | 'OK' | 'Requested deletion' | 'Deleting' | 'Deleted' | 'Error creating' | 'Error deleting';
7460
7595
  export type OfferingUserStateTransitionRequest = {
7596
+ /**
7597
+ * Comment explaining the state transition
7598
+ */
7461
7599
  comment?: string;
7600
+ /**
7601
+ * URL reference related to the state transition comment
7602
+ */
7462
7603
  comment_url?: string;
7463
7604
  };
7464
7605
  export type OfferingUserUpdateRestrictionRequest = {
7606
+ /**
7607
+ * Whether the offering user should be restricted from accessing resources
7608
+ */
7465
7609
  is_restricted: boolean;
7466
7610
  };
7467
7611
  export type OnboardingCompanyValidationRequestRequest = {
@@ -11174,10 +11318,25 @@ export type PlanComponent = {
11174
11318
  discount_rate?: number | null;
11175
11319
  };
11176
11320
  export type PlanUsageResponse = {
11321
+ /**
11322
+ * UUID of the plan
11323
+ */
11177
11324
  readonly plan_uuid: string;
11325
+ /**
11326
+ * Name of the plan
11327
+ */
11178
11328
  readonly plan_name: string;
11329
+ /**
11330
+ * Usage limit
11331
+ */
11179
11332
  readonly limit: number;
11333
+ /**
11334
+ * Current usage count
11335
+ */
11180
11336
  readonly usage: number;
11337
+ /**
11338
+ * Remaining usage
11339
+ */
11181
11340
  readonly remaining: number;
11182
11341
  readonly offering_uuid: string;
11183
11342
  readonly offering_name: string;
@@ -11677,6 +11836,9 @@ export type ProjectUser = {
11677
11836
  offering_user_state: OfferingUserState | NullEnum | null;
11678
11837
  };
11679
11838
  export type ProjectsLimitsGroupedByIndustryFlag = {
11839
+ /**
11840
+ * Nested dictionary of resource limits by category and component type
11841
+ */
11680
11842
  limits: {
11681
11843
  [key: string]: {
11682
11844
  [key: string]: string;
@@ -11684,6 +11846,9 @@ export type ProjectsLimitsGroupedByIndustryFlag = {
11684
11846
  };
11685
11847
  };
11686
11848
  export type ProjectsLimitsGroupedByOecd = {
11849
+ /**
11850
+ * Nested dictionary of resource limits by category and component type
11851
+ */
11687
11852
  limits: {
11688
11853
  [key: string]: {
11689
11854
  [key: string]: string;
@@ -11691,6 +11856,9 @@ export type ProjectsLimitsGroupedByOecd = {
11691
11856
  };
11692
11857
  };
11693
11858
  export type ProjectsUsagesGroupedByIndustryFlag = {
11859
+ /**
11860
+ * Nested dictionary of usage values by category and component type
11861
+ */
11694
11862
  usages: {
11695
11863
  [key: string]: {
11696
11864
  [key: string]: string;
@@ -11698,6 +11866,9 @@ export type ProjectsUsagesGroupedByIndustryFlag = {
11698
11866
  };
11699
11867
  };
11700
11868
  export type ProjectsUsagesGroupedByOecd = {
11869
+ /**
11870
+ * Nested dictionary of usage values by category and component type
11871
+ */
11701
11872
  usages: {
11702
11873
  [key: string]: {
11703
11874
  [key: string]: string;
@@ -12822,6 +12993,9 @@ export type QuotaRequest = {
12822
12993
  limit: number;
12823
12994
  };
12824
12995
  export type QuotasUpdateRequest = {
12996
+ /**
12997
+ * Dictionary of quotas to update
12998
+ */
12825
12999
  quotas: {
12826
13000
  [key: string]: number;
12827
13001
  };
@@ -14143,12 +14317,18 @@ export type ResourceRequest = {
14143
14317
  paused?: boolean;
14144
14318
  };
14145
14319
  export type ResourceResponseStatus = {
14320
+ /**
14321
+ * Status of the resource response
14322
+ */
14146
14323
  readonly status: string;
14147
14324
  };
14148
14325
  export type ResourceRestrictMemberAccessRequest = {
14149
14326
  restrict_member_access?: boolean;
14150
14327
  };
14151
14328
  export type ResourceSetLimitsRequest = {
14329
+ /**
14330
+ * Dictionary mapping component types to their new limit values
14331
+ */
14152
14332
  limits: unknown;
14153
14333
  };
14154
14334
  export type ResourceSetStateErredRequest = {
@@ -14169,6 +14349,7 @@ export type ResourceSwitchPlanRequest = {
14169
14349
  export type ResourceTerminateRequest = {
14170
14350
  /**
14171
14351
  * Termination attributes
14352
+ * Optional attributes/parameters to pass to the termination operation
14172
14353
  */
14173
14354
  attributes?: unknown;
14174
14355
  };
@@ -14216,11 +14397,29 @@ export type ResourceUserRequest = {
14216
14397
  user: string;
14217
14398
  };
14218
14399
  export type ResourcesLimits = {
14400
+ /**
14401
+ * UUID of the offering
14402
+ */
14219
14403
  readonly offering_uuid: string;
14404
+ /**
14405
+ * Name of the limit
14406
+ */
14220
14407
  readonly name: string;
14408
+ /**
14409
+ * Limit value
14410
+ */
14221
14411
  readonly value: number;
14412
+ /**
14413
+ * Country of the offering
14414
+ */
14222
14415
  readonly offering_country: string;
14416
+ /**
14417
+ * Name of the organization group
14418
+ */
14223
14419
  readonly organization_group_name: string;
14420
+ /**
14421
+ * UUID of the organization group
14422
+ */
14224
14423
  readonly organization_group_uuid: string;
14225
14424
  };
14226
14425
  export type ReviewCommentRequest = {
@@ -14802,8 +15001,17 @@ export type ServiceProviderRevenues = {
14802
15001
  readonly month: number;
14803
15002
  };
14804
15003
  export type ServiceProviderSignatureRequest = {
15004
+ /**
15005
+ * Service provider customer UUID
15006
+ */
14805
15007
  customer: string;
15008
+ /**
15009
+ * JWT-encoded data signed with the service provider's API secret code
15010
+ */
14806
15011
  data: string;
15012
+ /**
15013
+ * If true, validates the signature without executing the operation
15014
+ */
14807
15015
  dry_run?: boolean;
14808
15016
  };
14809
15017
  export type ServiceProviderStatistics = {
@@ -15318,7 +15526,13 @@ export type SubmitRequestResponse = {
15318
15526
  scope_uuid: string;
15319
15527
  };
15320
15528
  export type SubresourceOffering = {
15529
+ /**
15530
+ * UUID of the offering
15531
+ */
15321
15532
  readonly uuid: string;
15533
+ /**
15534
+ * Type of the offering
15535
+ */
15322
15536
  readonly type: string;
15323
15537
  };
15324
15538
  export type SupportStats = {
@@ -15408,11 +15622,29 @@ export type TimeSeriesToSData = {
15408
15622
  readonly count: number;
15409
15623
  };
15410
15624
  export type ToSConsentDashboard = {
15625
+ /**
15626
+ * Number of active users
15627
+ */
15411
15628
  readonly active_users_count: number;
15629
+ /**
15630
+ * Total number of users
15631
+ */
15412
15632
  readonly total_users_count: number;
15633
+ /**
15634
+ * Percentage of active users
15635
+ */
15413
15636
  readonly active_users_percentage: number;
15637
+ /**
15638
+ * Number of accepted consents
15639
+ */
15414
15640
  readonly accepted_consents_count: number;
15641
+ /**
15642
+ * Number of revoked consents
15643
+ */
15415
15644
  readonly revoked_consents_count: number;
15645
+ /**
15646
+ * Total number of consents
15647
+ */
15416
15648
  readonly total_consents_count: number;
15417
15649
  readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
15418
15650
  readonly tos_version_adoption: Array<VersionAdoption>;
@@ -15823,7 +16055,13 @@ export type Version = {
15823
16055
  latest_version?: string;
15824
16056
  };
15825
16057
  export type VersionAdoption = {
16058
+ /**
16059
+ * Version identifier
16060
+ */
15826
16061
  readonly version: string;
16062
+ /**
16063
+ * Number of users on this version
16064
+ */
15827
16065
  readonly users_count: number;
15828
16066
  };
15829
16067
  export type VisibilityEnum = 'private' | 'public';
@@ -34488,7 +34726,7 @@ export type MarketplaceProviderOfferingsImportOfferingData = {
34488
34726
  url: '/api/marketplace-provider-offerings/import_offering/';
34489
34727
  };
34490
34728
  export type MarketplaceProviderOfferingsImportOfferingResponses = {
34491
- 200: OfferingImportParameters;
34729
+ 200: OfferingImportResponse;
34492
34730
  };
34493
34731
  export type MarketplaceProviderOfferingsImportOfferingResponse = MarketplaceProviderOfferingsImportOfferingResponses[keyof MarketplaceProviderOfferingsImportOfferingResponses];
34494
34732
  export type MarketplaceProviderResourcesListData = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.3-dev.8",
3
+ "version": "7.9.3",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",