waldur-js-client 7.9.2-dev.0 → 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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +246 -25
  2. package/package.json +1 -1
@@ -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 = {
@@ -5559,14 +5580,48 @@ export type NestedSoftwareCatalogRequest = {
5559
5580
  };
5560
5581
  export type NestedSoftwareTarget = {
5561
5582
  readonly uuid: string;
5562
- cpu_family: string;
5563
- cpu_microarchitecture: string;
5564
- 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;
5565
5603
  };
5566
5604
  export type NestedSoftwareTargetRequest = {
5567
- cpu_family: string;
5568
- cpu_microarchitecture: string;
5569
- 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;
5570
5625
  };
5571
5626
  export type NestedSoftwareVersion = {
5572
5627
  readonly uuid: string;
@@ -5730,6 +5785,11 @@ export type Offering = {
5730
5785
  readonly parent_name?: string | null;
5731
5786
  backend_metadata?: unknown;
5732
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;
5733
5793
  compliance_checklist?: string | null;
5734
5794
  readonly user_has_consent?: boolean;
5735
5795
  googlecalendar?: GoogleCalendar;
@@ -9789,24 +9849,57 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
9789
9849
  };
9790
9850
  export type PatchedSoftwareCatalogRequest = {
9791
9851
  /**
9792
- * Catalog name (e.g., EESSI)
9852
+ * Catalog name (e.g., EESSI, Spack)
9793
9853
  */
9794
9854
  name?: string;
9795
9855
  /**
9796
- * Catalog version (e.g., 2023.06)
9856
+ * Catalog version (e.g., 2023.06, 0.21.0)
9797
9857
  */
9798
9858
  version?: string;
9859
+ /**
9860
+ * Type of software catalog
9861
+ */
9862
+ catalog_type?: CatalogTypeEnum;
9799
9863
  /**
9800
9864
  * Catalog source URL
9801
9865
  */
9802
9866
  source_url?: string;
9803
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;
9804
9877
  };
9805
9878
  export type PatchedSoftwarePackageRequest = {
9806
9879
  catalog?: string;
9807
9880
  name?: string;
9808
9881
  description?: string;
9809
- 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;
9810
9903
  };
9811
9904
  export type PatchedTemplateRequest = {
9812
9905
  name?: string;
@@ -10924,6 +11017,11 @@ export type ProviderOfferingDetails = {
10924
11017
  readonly parent_name?: string | null;
10925
11018
  backend_metadata?: unknown;
10926
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;
10927
11025
  compliance_checklist?: string | null;
10928
11026
  readonly integration_status?: Array<IntegrationStatus> | null;
10929
11027
  readonly google_calendar_is_public?: boolean | null;
@@ -11223,6 +11321,11 @@ export type PublicOfferingDetails = {
11223
11321
  readonly parent_name?: string | null;
11224
11322
  backend_metadata?: unknown;
11225
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;
11226
11329
  compliance_checklist?: string | null;
11227
11330
  readonly user_has_consent?: boolean;
11228
11331
  readonly google_calendar_is_public?: boolean | null;
@@ -13760,34 +13863,63 @@ export type SoftwareCatalog = {
13760
13863
  readonly created: string;
13761
13864
  readonly modified: string;
13762
13865
  /**
13763
- * Catalog name (e.g., EESSI)
13866
+ * Catalog name (e.g., EESSI, Spack)
13764
13867
  */
13765
13868
  name: string;
13766
13869
  /**
13767
- * Catalog version (e.g., 2023.06)
13870
+ * Catalog version (e.g., 2023.06, 0.21.0)
13768
13871
  */
13769
13872
  version: string;
13873
+ /**
13874
+ * Type of software catalog
13875
+ */
13876
+ catalog_type?: CatalogTypeEnum;
13877
+ readonly catalog_type_display: string;
13770
13878
  /**
13771
13879
  * Catalog source URL
13772
13880
  */
13773
13881
  source_url?: string;
13774
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;
13775
13894
  readonly package_count: number;
13776
13895
  };
13777
13896
  export type SoftwareCatalogRequest = {
13778
13897
  /**
13779
- * Catalog name (e.g., EESSI)
13898
+ * Catalog name (e.g., EESSI, Spack)
13780
13899
  */
13781
13900
  name: string;
13782
13901
  /**
13783
- * Catalog version (e.g., 2023.06)
13902
+ * Catalog version (e.g., 2023.06, 0.21.0)
13784
13903
  */
13785
13904
  version: string;
13905
+ /**
13906
+ * Type of software catalog
13907
+ */
13908
+ catalog_type?: CatalogTypeEnum;
13786
13909
  /**
13787
13910
  * Catalog source URL
13788
13911
  */
13789
13912
  source_url?: string;
13790
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;
13791
13923
  };
13792
13924
  export type SoftwareCatalogUuid = {
13793
13925
  uuid: string;
@@ -13800,26 +13932,86 @@ export type SoftwarePackage = {
13800
13932
  catalog: string;
13801
13933
  name: string;
13802
13934
  description?: string;
13803
- 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;
13804
13956
  readonly catalog_name: string;
13805
13957
  readonly catalog_version: string;
13958
+ readonly catalog_type: string;
13959
+ readonly catalog_type_display: string;
13806
13960
  readonly version_count: number;
13961
+ readonly extension_count: number;
13807
13962
  readonly versions: Array<NestedSoftwareVersion>;
13808
13963
  };
13809
13964
  export type SoftwarePackageRequest = {
13810
13965
  catalog: string;
13811
13966
  name: string;
13812
13967
  description?: string;
13813
- 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;
13814
13989
  };
13815
13990
  export type SoftwareTarget = {
13816
13991
  readonly url: string;
13817
13992
  readonly uuid: string;
13818
13993
  readonly created: string;
13819
13994
  readonly modified: string;
13820
- readonly cpu_family: string;
13821
- readonly cpu_microarchitecture: string;
13822
- 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;
13823
14015
  };
13824
14016
  export type SoftwareVersion = {
13825
14017
  readonly url: string;
@@ -13828,7 +14020,16 @@ export type SoftwareVersion = {
13828
14020
  readonly modified: string;
13829
14021
  readonly version: string;
13830
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;
13831
14031
  readonly package_name: string;
14032
+ readonly catalog_type: string;
13832
14033
  readonly target_count: number;
13833
14034
  };
13834
14035
  export type SshKey = {
@@ -15674,6 +15875,16 @@ export type ConstanceSettingsRequestForm = {
15674
15875
  LLM_INFERENCES_API_URL?: string;
15675
15876
  LLM_INFERENCES_API_TOKEN?: string;
15676
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;
15677
15888
  };
15678
15889
  export type ConstanceSettingsRequestMultipart = {
15679
15890
  SITE_NAME?: string;
@@ -15834,6 +16045,16 @@ export type ConstanceSettingsRequestMultipart = {
15834
16045
  LLM_INFERENCES_API_URL?: string;
15835
16046
  LLM_INFERENCES_API_TOKEN?: string;
15836
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;
15837
16058
  };
15838
16059
  export type PaymentRequestForm = {
15839
16060
  profile: string;
@@ -19307,7 +19528,7 @@ export type BookingOfferingsListData = {
19307
19528
  body?: never;
19308
19529
  path?: never;
19309
19530
  query?: {
19310
- 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'>;
19311
19532
  /**
19312
19533
  * A page number within the paginated result set.
19313
19534
  */
@@ -19350,7 +19571,7 @@ export type BookingOfferingsRetrieveData = {
19350
19571
  uuid: string;
19351
19572
  };
19352
19573
  query?: {
19353
- 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'>;
19354
19575
  };
19355
19576
  url: '/api/booking-offerings/{uuid}/';
19356
19577
  };
@@ -30439,7 +30660,7 @@ export type MarketplaceProviderOfferingsListData = {
30439
30660
  * Description contains
30440
30661
  */
30441
30662
  description?: string;
30442
- 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'>;
30443
30664
  /**
30444
30665
  * Has Active Terms of Service
30445
30666
  */
@@ -30724,7 +30945,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
30724
30945
  uuid: string;
30725
30946
  };
30726
30947
  query?: {
30727
- 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'>;
30728
30949
  };
30729
30950
  url: '/api/marketplace-provider-offerings/{uuid}/';
30730
30951
  };
@@ -32384,7 +32605,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
32384
32605
  uuid: string;
32385
32606
  };
32386
32607
  query: {
32387
- 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'>;
32388
32609
  /**
32389
32610
  * Username of the user to check.
32390
32611
  */
@@ -33494,7 +33715,7 @@ export type MarketplacePublicOfferingsListData = {
33494
33715
  * Description contains
33495
33716
  */
33496
33717
  description?: string;
33497
- 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'>;
33498
33719
  /**
33499
33720
  * Has Active Terms of Service
33500
33721
  */
@@ -33754,7 +33975,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
33754
33975
  uuid: string;
33755
33976
  };
33756
33977
  query?: {
33757
- 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'>;
33758
33979
  };
33759
33980
  url: '/api/marketplace-public-offerings/{uuid}/';
33760
33981
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.2-dev.0",
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",