waldur-js-client 7.9.1 → 7.9.2-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.
package/dist/sdk.gen.js CHANGED
@@ -14524,6 +14524,26 @@ export const marketplaceProviderResourcesRefreshLastSync = (options) => {
14524
14524
  ...options
14525
14525
  });
14526
14526
  };
14527
+ export const marketplaceProviderResourcesRestore = (options) => {
14528
+ return (options.client ?? _heyApiClient).post({
14529
+ security: [
14530
+ {
14531
+ name: 'Authorization',
14532
+ type: 'apiKey'
14533
+ },
14534
+ {
14535
+ scheme: 'bearer',
14536
+ type: 'http'
14537
+ }
14538
+ ],
14539
+ url: '/api/marketplace-provider-resources/{uuid}/restore/',
14540
+ ...options,
14541
+ headers: {
14542
+ 'Content-Type': 'application/json',
14543
+ ...options.headers
14544
+ }
14545
+ });
14546
+ };
14527
14547
  /**
14528
14548
  * Set resource state to erred
14529
14549
  * Allows a service provider to manually set the state of a resource to 'erred'. An error message and traceback can be provided.
@@ -15662,6 +15682,26 @@ export const marketplaceResourcesRenew = (options) => {
15662
15682
  }
15663
15683
  });
15664
15684
  };
15685
+ export const marketplaceResourcesRestore = (options) => {
15686
+ return (options.client ?? _heyApiClient).post({
15687
+ security: [
15688
+ {
15689
+ name: 'Authorization',
15690
+ type: 'apiKey'
15691
+ },
15692
+ {
15693
+ scheme: 'bearer',
15694
+ type: 'http'
15695
+ }
15696
+ ],
15697
+ url: '/api/marketplace-resources/{uuid}/restore/',
15698
+ ...options,
15699
+ headers: {
15700
+ 'Content-Type': 'application/json',
15701
+ ...options.headers
15702
+ }
15703
+ });
15704
+ };
15665
15705
  /**
15666
15706
  * Set downscaled flag for resource
15667
15707
  * Sets the 'downscaled' flag for a resource. Requires staff permissions.
@@ -1386,6 +1386,7 @@ export type CascadeStepRequest = {
1386
1386
  choices_map?: unknown;
1387
1387
  };
1388
1388
  export type CascadeStepTypeEnum = 'select_string' | 'select_string_multi';
1389
+ export type CatalogTypeEnum = 'binary_runtime' | 'source_package' | 'package_manager';
1389
1390
  export type CategoryColumn = {
1390
1391
  readonly uuid: string;
1391
1392
  /**
@@ -2023,6 +2024,16 @@ export type ConstanceSettings = {
2023
2024
  LLM_INFERENCES_API_URL?: string;
2024
2025
  LLM_INFERENCES_API_TOKEN?: string;
2025
2026
  LLM_INFERENCES_MODEL?: string;
2027
+ SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
2028
+ SOFTWARE_CATALOG_EESSI_VERSION?: string;
2029
+ SOFTWARE_CATALOG_EESSI_API_URL?: string;
2030
+ SOFTWARE_CATALOG_EESSI_INCLUDE_EXTENSIONS?: boolean;
2031
+ SOFTWARE_CATALOG_SPACK_UPDATE_ENABLED?: boolean;
2032
+ SOFTWARE_CATALOG_SPACK_VERSION?: string;
2033
+ SOFTWARE_CATALOG_SPACK_DATA_URL?: string;
2034
+ SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
2035
+ SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
2036
+ SOFTWARE_CATALOG_RETENTION_DAYS?: number;
2026
2037
  };
2027
2038
  export type ConstanceSettingsRequest = {
2028
2039
  SITE_NAME?: string;
@@ -2183,6 +2194,16 @@ export type ConstanceSettingsRequest = {
2183
2194
  LLM_INFERENCES_API_URL?: string;
2184
2195
  LLM_INFERENCES_API_TOKEN?: string;
2185
2196
  LLM_INFERENCES_MODEL?: string;
2197
+ SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
2198
+ SOFTWARE_CATALOG_EESSI_VERSION?: string;
2199
+ SOFTWARE_CATALOG_EESSI_API_URL?: string;
2200
+ SOFTWARE_CATALOG_EESSI_INCLUDE_EXTENSIONS?: boolean;
2201
+ SOFTWARE_CATALOG_SPACK_UPDATE_ENABLED?: boolean;
2202
+ SOFTWARE_CATALOG_SPACK_VERSION?: string;
2203
+ SOFTWARE_CATALOG_SPACK_DATA_URL?: string;
2204
+ SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
2205
+ SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
2206
+ SOFTWARE_CATALOG_RETENTION_DAYS?: number;
2186
2207
  };
2187
2208
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
2188
2209
  export type CoreAuthToken = {
@@ -2877,7 +2898,7 @@ export type DryRunRequest = {
2877
2898
  order_offering?: string | null;
2878
2899
  };
2879
2900
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
2880
- export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Pull';
2901
+ export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
2881
2902
  export type EmailHook = {
2882
2903
  readonly url: string;
2883
2904
  readonly uuid: string;
@@ -4257,6 +4278,10 @@ export type MergedPluginOptions = {
4257
4278
  * If set to True, create orders when options of related resources are changed.
4258
4279
  */
4259
4280
  create_orders_on_resource_option_change?: boolean;
4281
+ /**
4282
+ * If set to True, resource can be restored.
4283
+ */
4284
+ can_restore_resource?: boolean;
4260
4285
  /**
4261
4286
  * If set, it will be used as a default MTU for the first network in a tenant
4262
4287
  */
@@ -4447,6 +4472,10 @@ export type MergedPluginOptionsRequest = {
4447
4472
  * If set to True, create orders when options of related resources are changed.
4448
4473
  */
4449
4474
  create_orders_on_resource_option_change?: boolean;
4475
+ /**
4476
+ * If set to True, resource can be restored.
4477
+ */
4478
+ can_restore_resource?: boolean;
4450
4479
  /**
4451
4480
  * If set, it will be used as a default MTU for the first network in a tenant
4452
4481
  */
@@ -5551,14 +5580,48 @@ export type NestedSoftwareCatalogRequest = {
5551
5580
  };
5552
5581
  export type NestedSoftwareTarget = {
5553
5582
  readonly uuid: string;
5554
- cpu_family: string;
5555
- cpu_microarchitecture: string;
5556
- path: string;
5583
+ /**
5584
+ * Type of target (architecture, platform, variant, etc.)
5585
+ */
5586
+ target_type?: string;
5587
+ /**
5588
+ * Target identifier (x86_64/generic, linux, variant_name, etc.)
5589
+ */
5590
+ target_name?: string;
5591
+ /**
5592
+ * Target subtype (microarchitecture, distribution, etc.)
5593
+ */
5594
+ target_subtype?: string;
5595
+ /**
5596
+ * Target location (CVMFS path, download URL, etc.)
5597
+ */
5598
+ location?: string;
5599
+ /**
5600
+ * Target-specific metadata (build options, system requirements, etc.)
5601
+ */
5602
+ metadata?: unknown;
5557
5603
  };
5558
5604
  export type NestedSoftwareTargetRequest = {
5559
- cpu_family: string;
5560
- cpu_microarchitecture: string;
5561
- path: string;
5605
+ /**
5606
+ * Type of target (architecture, platform, variant, etc.)
5607
+ */
5608
+ target_type?: string;
5609
+ /**
5610
+ * Target identifier (x86_64/generic, linux, variant_name, etc.)
5611
+ */
5612
+ target_name?: string;
5613
+ /**
5614
+ * Target subtype (microarchitecture, distribution, etc.)
5615
+ */
5616
+ target_subtype?: string;
5617
+ /**
5618
+ * Target location (CVMFS path, download URL, etc.)
5619
+ */
5620
+ location?: string;
5621
+ /**
5622
+ * Target-specific metadata (build options, system requirements, etc.)
5623
+ */
5624
+ metadata?: unknown;
5562
5625
  };
5563
5626
  export type NestedSoftwareVersion = {
5564
5627
  readonly uuid: string;
@@ -5722,6 +5785,11 @@ export type Offering = {
5722
5785
  readonly parent_name?: string | null;
5723
5786
  backend_metadata?: unknown;
5724
5787
  readonly has_compliance_requirements?: boolean;
5788
+ /**
5789
+ * Classify offering components by billing type.
5790
+ * Returns 'limit_only', 'usage_only', or 'mixed'.
5791
+ */
5792
+ readonly billing_type_classification?: string;
5725
5793
  compliance_checklist?: string | null;
5726
5794
  readonly user_has_consent?: boolean;
5727
5795
  googlecalendar?: GoogleCalendar;
@@ -9781,24 +9849,57 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
9781
9849
  };
9782
9850
  export type PatchedSoftwareCatalogRequest = {
9783
9851
  /**
9784
- * Catalog name (e.g., EESSI)
9852
+ * Catalog name (e.g., EESSI, Spack)
9785
9853
  */
9786
9854
  name?: string;
9787
9855
  /**
9788
- * Catalog version (e.g., 2023.06)
9856
+ * Catalog version (e.g., 2023.06, 0.21.0)
9789
9857
  */
9790
9858
  version?: string;
9859
+ /**
9860
+ * Type of software catalog
9861
+ */
9862
+ catalog_type?: CatalogTypeEnum;
9791
9863
  /**
9792
9864
  * Catalog source URL
9793
9865
  */
9794
9866
  source_url?: string;
9795
9867
  description?: string;
9868
+ /**
9869
+ * Catalog-specific metadata (architecture maps, API endpoints, etc.)
9870
+ */
9871
+ metadata?: unknown;
9872
+ /**
9873
+ * Whether to automatically update this catalog via scheduled tasks
9874
+ */
9875
+ auto_update_enabled?: boolean;
9876
+ update_errors?: string;
9796
9877
  };
9797
9878
  export type PatchedSoftwarePackageRequest = {
9798
9879
  catalog?: string;
9799
9880
  name?: string;
9800
9881
  description?: string;
9801
- homepage?: string;
9882
+ homepage?: string | null;
9883
+ /**
9884
+ * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
9885
+ */
9886
+ categories?: unknown;
9887
+ /**
9888
+ * Software licenses (e.g., ['GPL-3.0', 'MIT'])
9889
+ */
9890
+ licenses?: unknown;
9891
+ /**
9892
+ * Package maintainers
9893
+ */
9894
+ maintainers?: unknown;
9895
+ /**
9896
+ * Whether this package is an extension of another package
9897
+ */
9898
+ is_extension?: boolean;
9899
+ /**
9900
+ * Parent package for extensions (e.g., Python package within Python)
9901
+ */
9902
+ parent_software?: string | null;
9802
9903
  };
9803
9904
  export type PatchedTemplateRequest = {
9804
9905
  name?: string;
@@ -10916,6 +11017,11 @@ export type ProviderOfferingDetails = {
10916
11017
  readonly parent_name?: string | null;
10917
11018
  backend_metadata?: unknown;
10918
11019
  readonly has_compliance_requirements?: boolean;
11020
+ /**
11021
+ * Classify offering components by billing type.
11022
+ * Returns 'limit_only', 'usage_only', or 'mixed'.
11023
+ */
11024
+ readonly billing_type_classification?: string;
10919
11025
  compliance_checklist?: string | null;
10920
11026
  readonly integration_status?: Array<IntegrationStatus> | null;
10921
11027
  readonly google_calendar_is_public?: boolean | null;
@@ -11215,6 +11321,11 @@ export type PublicOfferingDetails = {
11215
11321
  readonly parent_name?: string | null;
11216
11322
  backend_metadata?: unknown;
11217
11323
  readonly has_compliance_requirements?: boolean;
11324
+ /**
11325
+ * Classify offering components by billing type.
11326
+ * Returns 'limit_only', 'usage_only', or 'mixed'.
11327
+ */
11328
+ readonly billing_type_classification?: string;
11218
11329
  compliance_checklist?: string | null;
11219
11330
  readonly user_has_consent?: boolean;
11220
11331
  readonly google_calendar_is_public?: boolean | null;
@@ -12618,7 +12729,7 @@ export type ReportSectionRequest = {
12618
12729
  header: string;
12619
12730
  body: string;
12620
12731
  };
12621
- export type RequestTypes = 'Create' | 'Update' | 'Terminate';
12732
+ export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
12622
12733
  export type RequestedOffering = {
12623
12734
  readonly uuid: string;
12624
12735
  state: RequestedOfferingStates;
@@ -12847,6 +12958,18 @@ export type ResourceRenewRequest = {
12847
12958
  export type ResourceReportRequest = {
12848
12959
  report: Array<ReportSectionRequest>;
12849
12960
  };
12961
+ export type ResourceRequest = {
12962
+ offering: string;
12963
+ plan?: string;
12964
+ name: string;
12965
+ slug?: string;
12966
+ /**
12967
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
12968
+ */
12969
+ end_date?: string | null;
12970
+ downscaled?: boolean;
12971
+ paused?: boolean;
12972
+ };
12850
12973
  export type ResourceResponseStatus = {
12851
12974
  readonly status: string;
12852
12975
  };
@@ -13740,34 +13863,63 @@ export type SoftwareCatalog = {
13740
13863
  readonly created: string;
13741
13864
  readonly modified: string;
13742
13865
  /**
13743
- * Catalog name (e.g., EESSI)
13866
+ * Catalog name (e.g., EESSI, Spack)
13744
13867
  */
13745
13868
  name: string;
13746
13869
  /**
13747
- * Catalog version (e.g., 2023.06)
13870
+ * Catalog version (e.g., 2023.06, 0.21.0)
13748
13871
  */
13749
13872
  version: string;
13873
+ /**
13874
+ * Type of software catalog
13875
+ */
13876
+ catalog_type?: CatalogTypeEnum;
13877
+ readonly catalog_type_display: string;
13750
13878
  /**
13751
13879
  * Catalog source URL
13752
13880
  */
13753
13881
  source_url?: string;
13754
13882
  description?: string;
13883
+ /**
13884
+ * Catalog-specific metadata (architecture maps, API endpoints, etc.)
13885
+ */
13886
+ metadata?: unknown;
13887
+ /**
13888
+ * Whether to automatically update this catalog via scheduled tasks
13889
+ */
13890
+ auto_update_enabled?: boolean;
13891
+ readonly last_update_attempt: string | null;
13892
+ readonly last_successful_update: string | null;
13893
+ update_errors?: string;
13755
13894
  readonly package_count: number;
13756
13895
  };
13757
13896
  export type SoftwareCatalogRequest = {
13758
13897
  /**
13759
- * Catalog name (e.g., EESSI)
13898
+ * Catalog name (e.g., EESSI, Spack)
13760
13899
  */
13761
13900
  name: string;
13762
13901
  /**
13763
- * Catalog version (e.g., 2023.06)
13902
+ * Catalog version (e.g., 2023.06, 0.21.0)
13764
13903
  */
13765
13904
  version: string;
13905
+ /**
13906
+ * Type of software catalog
13907
+ */
13908
+ catalog_type?: CatalogTypeEnum;
13766
13909
  /**
13767
13910
  * Catalog source URL
13768
13911
  */
13769
13912
  source_url?: string;
13770
13913
  description?: string;
13914
+ /**
13915
+ * Catalog-specific metadata (architecture maps, API endpoints, etc.)
13916
+ */
13917
+ metadata?: unknown;
13918
+ /**
13919
+ * Whether to automatically update this catalog via scheduled tasks
13920
+ */
13921
+ auto_update_enabled?: boolean;
13922
+ update_errors?: string;
13771
13923
  };
13772
13924
  export type SoftwareCatalogUuid = {
13773
13925
  uuid: string;
@@ -13780,26 +13932,86 @@ export type SoftwarePackage = {
13780
13932
  catalog: string;
13781
13933
  name: string;
13782
13934
  description?: string;
13783
- homepage?: string;
13935
+ homepage?: string | null;
13936
+ /**
13937
+ * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
13938
+ */
13939
+ categories?: unknown;
13940
+ /**
13941
+ * Software licenses (e.g., ['GPL-3.0', 'MIT'])
13942
+ */
13943
+ licenses?: unknown;
13944
+ /**
13945
+ * Package maintainers
13946
+ */
13947
+ maintainers?: unknown;
13948
+ /**
13949
+ * Whether this package is an extension of another package
13950
+ */
13951
+ is_extension?: boolean;
13952
+ /**
13953
+ * Parent package for extensions (e.g., Python package within Python)
13954
+ */
13955
+ parent_software?: string | null;
13784
13956
  readonly catalog_name: string;
13785
13957
  readonly catalog_version: string;
13958
+ readonly catalog_type: string;
13959
+ readonly catalog_type_display: string;
13786
13960
  readonly version_count: number;
13961
+ readonly extension_count: number;
13787
13962
  readonly versions: Array<NestedSoftwareVersion>;
13788
13963
  };
13789
13964
  export type SoftwarePackageRequest = {
13790
13965
  catalog: string;
13791
13966
  name: string;
13792
13967
  description?: string;
13793
- homepage?: string;
13968
+ homepage?: string | null;
13969
+ /**
13970
+ * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
13971
+ */
13972
+ categories?: unknown;
13973
+ /**
13974
+ * Software licenses (e.g., ['GPL-3.0', 'MIT'])
13975
+ */
13976
+ licenses?: unknown;
13977
+ /**
13978
+ * Package maintainers
13979
+ */
13980
+ maintainers?: unknown;
13981
+ /**
13982
+ * Whether this package is an extension of another package
13983
+ */
13984
+ is_extension?: boolean;
13985
+ /**
13986
+ * Parent package for extensions (e.g., Python package within Python)
13987
+ */
13988
+ parent_software?: string | null;
13794
13989
  };
13795
13990
  export type SoftwareTarget = {
13796
13991
  readonly url: string;
13797
13992
  readonly uuid: string;
13798
13993
  readonly created: string;
13799
13994
  readonly modified: string;
13800
- readonly cpu_family: string;
13801
- readonly cpu_microarchitecture: string;
13802
- readonly path: string;
13995
+ /**
13996
+ * Type of target (architecture, platform, variant, etc.)
13997
+ */
13998
+ readonly target_type: string;
13999
+ /**
14000
+ * Target identifier (x86_64/generic, linux, variant_name, etc.)
14001
+ */
14002
+ readonly target_name: string;
14003
+ /**
14004
+ * Target subtype (microarchitecture, distribution, etc.)
14005
+ */
14006
+ readonly target_subtype: string;
14007
+ /**
14008
+ * Target location (CVMFS path, download URL, etc.)
14009
+ */
14010
+ readonly location: string;
14011
+ /**
14012
+ * Target-specific metadata (build options, system requirements, etc.)
14013
+ */
14014
+ readonly metadata: unknown;
13803
14015
  };
13804
14016
  export type SoftwareVersion = {
13805
14017
  readonly url: string;
@@ -13808,7 +14020,16 @@ export type SoftwareVersion = {
13808
14020
  readonly modified: string;
13809
14021
  readonly version: string;
13810
14022
  readonly release_date: string | null;
14023
+ /**
14024
+ * Package dependencies (format varies by catalog type)
14025
+ */
14026
+ readonly dependencies: unknown;
14027
+ /**
14028
+ * Version-specific metadata (toolchains, build info, modules, etc.)
14029
+ */
14030
+ readonly metadata: unknown;
13811
14031
  readonly package_name: string;
14032
+ readonly catalog_type: string;
13812
14033
  readonly target_count: number;
13813
14034
  };
13814
14035
  export type SshKey = {
@@ -15654,6 +15875,16 @@ export type ConstanceSettingsRequestForm = {
15654
15875
  LLM_INFERENCES_API_URL?: string;
15655
15876
  LLM_INFERENCES_API_TOKEN?: string;
15656
15877
  LLM_INFERENCES_MODEL?: string;
15878
+ SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
15879
+ SOFTWARE_CATALOG_EESSI_VERSION?: string;
15880
+ SOFTWARE_CATALOG_EESSI_API_URL?: string;
15881
+ SOFTWARE_CATALOG_EESSI_INCLUDE_EXTENSIONS?: boolean;
15882
+ SOFTWARE_CATALOG_SPACK_UPDATE_ENABLED?: boolean;
15883
+ SOFTWARE_CATALOG_SPACK_VERSION?: string;
15884
+ SOFTWARE_CATALOG_SPACK_DATA_URL?: string;
15885
+ SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
15886
+ SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
15887
+ SOFTWARE_CATALOG_RETENTION_DAYS?: number;
15657
15888
  };
15658
15889
  export type ConstanceSettingsRequestMultipart = {
15659
15890
  SITE_NAME?: string;
@@ -15814,6 +16045,16 @@ export type ConstanceSettingsRequestMultipart = {
15814
16045
  LLM_INFERENCES_API_URL?: string;
15815
16046
  LLM_INFERENCES_API_TOKEN?: string;
15816
16047
  LLM_INFERENCES_MODEL?: string;
16048
+ SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
16049
+ SOFTWARE_CATALOG_EESSI_VERSION?: string;
16050
+ SOFTWARE_CATALOG_EESSI_API_URL?: string;
16051
+ SOFTWARE_CATALOG_EESSI_INCLUDE_EXTENSIONS?: boolean;
16052
+ SOFTWARE_CATALOG_SPACK_UPDATE_ENABLED?: boolean;
16053
+ SOFTWARE_CATALOG_SPACK_VERSION?: string;
16054
+ SOFTWARE_CATALOG_SPACK_DATA_URL?: string;
16055
+ SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
16056
+ SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
16057
+ SOFTWARE_CATALOG_RETENTION_DAYS?: number;
15817
16058
  };
15818
16059
  export type PaymentRequestForm = {
15819
16060
  profile: string;
@@ -19287,7 +19528,7 @@ export type BookingOfferingsListData = {
19287
19528
  body?: never;
19288
19529
  path?: never;
19289
19530
  query?: {
19290
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
19531
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
19291
19532
  /**
19292
19533
  * A page number within the paginated result set.
19293
19534
  */
@@ -19330,7 +19571,7 @@ export type BookingOfferingsRetrieveData = {
19330
19571
  uuid: string;
19331
19572
  };
19332
19573
  query?: {
19333
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
19574
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
19334
19575
  };
19335
19576
  url: '/api/booking-offerings/{uuid}/';
19336
19577
  };
@@ -29283,7 +29524,7 @@ export type MarketplaceOrdersListData = {
29283
29524
  *
29284
29525
  *
29285
29526
  */
29286
- type?: Array<'Create' | 'Terminate' | 'Update'>;
29527
+ type?: Array<'Create' | 'Restore' | 'Terminate' | 'Update'>;
29287
29528
  };
29288
29529
  url: '/api/marketplace-orders/';
29289
29530
  };
@@ -29382,7 +29623,7 @@ export type MarketplaceOrdersCountData = {
29382
29623
  *
29383
29624
  *
29384
29625
  */
29385
- type?: Array<'Create' | 'Terminate' | 'Update'>;
29626
+ type?: Array<'Create' | 'Restore' | 'Terminate' | 'Update'>;
29386
29627
  };
29387
29628
  url: '/api/marketplace-orders/';
29388
29629
  };
@@ -30419,7 +30660,7 @@ export type MarketplaceProviderOfferingsListData = {
30419
30660
  * Description contains
30420
30661
  */
30421
30662
  description?: string;
30422
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
30663
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
30423
30664
  /**
30424
30665
  * Has Active Terms of Service
30425
30666
  */
@@ -30704,7 +30945,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
30704
30945
  uuid: string;
30705
30946
  };
30706
30947
  query?: {
30707
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
30948
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
30708
30949
  };
30709
30950
  url: '/api/marketplace-provider-offerings/{uuid}/';
30710
30951
  };
@@ -32364,7 +32605,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
32364
32605
  uuid: string;
32365
32606
  };
32366
32607
  query: {
32367
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
32608
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
32368
32609
  /**
32369
32610
  * Username of the user to check.
32370
32611
  */
@@ -33163,6 +33404,18 @@ export type MarketplaceProviderResourcesRefreshLastSyncResponses = {
33163
33404
  */
33164
33405
  200: unknown;
33165
33406
  };
33407
+ export type MarketplaceProviderResourcesRestoreData = {
33408
+ body: ResourceRequest;
33409
+ path: {
33410
+ uuid: string;
33411
+ };
33412
+ query?: never;
33413
+ url: '/api/marketplace-provider-resources/{uuid}/restore/';
33414
+ };
33415
+ export type MarketplaceProviderResourcesRestoreResponses = {
33416
+ 200: Resource;
33417
+ };
33418
+ export type MarketplaceProviderResourcesRestoreResponse = MarketplaceProviderResourcesRestoreResponses[keyof MarketplaceProviderResourcesRestoreResponses];
33166
33419
  export type MarketplaceProviderResourcesSetAsErredData = {
33167
33420
  body?: ResourceSetStateErredRequest;
33168
33421
  path: {
@@ -33462,7 +33715,7 @@ export type MarketplacePublicOfferingsListData = {
33462
33715
  * Description contains
33463
33716
  */
33464
33717
  description?: string;
33465
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
33718
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
33466
33719
  /**
33467
33720
  * Has Active Terms of Service
33468
33721
  */
@@ -33722,7 +33975,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
33722
33975
  uuid: string;
33723
33976
  };
33724
33977
  query?: {
33725
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
33978
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
33726
33979
  };
33727
33980
  url: '/api/marketplace-public-offerings/{uuid}/';
33728
33981
  };
@@ -34542,6 +34795,18 @@ export type MarketplaceResourcesRenewResponses = {
34542
34795
  200: OrderUuid;
34543
34796
  };
34544
34797
  export type MarketplaceResourcesRenewResponse = MarketplaceResourcesRenewResponses[keyof MarketplaceResourcesRenewResponses];
34798
+ export type MarketplaceResourcesRestoreData = {
34799
+ body: ResourceRequest;
34800
+ path: {
34801
+ uuid: string;
34802
+ };
34803
+ query?: never;
34804
+ url: '/api/marketplace-resources/{uuid}/restore/';
34805
+ };
34806
+ export type MarketplaceResourcesRestoreResponses = {
34807
+ 200: Resource;
34808
+ };
34809
+ export type MarketplaceResourcesRestoreResponse = MarketplaceResourcesRestoreResponses[keyof MarketplaceResourcesRestoreResponses];
34545
34810
  export type MarketplaceResourcesSetDownscaledData = {
34546
34811
  body?: ResourceDownscaledRequest;
34547
34812
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.1",
3
+ "version": "7.9.2-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",