waldur-js-client 7.9.10-dev.5 → 7.9.10-dev.7

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
@@ -13442,6 +13442,46 @@ export const marketplaceOrdersRetrieve = (options) => {
13442
13442
  ...options
13443
13443
  });
13444
13444
  };
13445
+ export const marketplaceOrdersPartialUpdate = (options) => {
13446
+ return (options.client ?? _heyApiClient).patch({
13447
+ security: [
13448
+ {
13449
+ name: 'Authorization',
13450
+ type: 'apiKey'
13451
+ },
13452
+ {
13453
+ scheme: 'bearer',
13454
+ type: 'http'
13455
+ }
13456
+ ],
13457
+ url: '/api/marketplace-orders/{uuid}/',
13458
+ ...options,
13459
+ headers: {
13460
+ 'Content-Type': 'application/json',
13461
+ ...options.headers
13462
+ }
13463
+ });
13464
+ };
13465
+ export const marketplaceOrdersUpdate = (options) => {
13466
+ return (options.client ?? _heyApiClient).put({
13467
+ security: [
13468
+ {
13469
+ name: 'Authorization',
13470
+ type: 'apiKey'
13471
+ },
13472
+ {
13473
+ scheme: 'bearer',
13474
+ type: 'http'
13475
+ }
13476
+ ],
13477
+ url: '/api/marketplace-orders/{uuid}/',
13478
+ ...options,
13479
+ headers: {
13480
+ 'Content-Type': 'application/json',
13481
+ ...options.headers
13482
+ }
13483
+ });
13484
+ };
13445
13485
  /**
13446
13486
  * Approve an order (consumer)
13447
13487
  * Approves a pending order from the consumer's side (e.g., project manager, customer owner). This transitions the order to the next state, which could be pending provider approval or executing.
@@ -21841,7 +21881,7 @@ export const marketplaceStatsResourceUsageByCustomerCount = (options) => {
21841
21881
  });
21842
21882
  };
21843
21883
  /**
21844
- * Return component usages grouped by creator's organization type.
21884
+ * Return component usages grouped by project members' organization type.
21845
21885
  */
21846
21886
  export const marketplaceStatsResourceUsageByOrganizationTypeList = (options) => {
21847
21887
  return (options?.client ?? _heyApiClient).get({
@@ -22144,6 +22184,44 @@ export const marketplaceStatsUserIdentitySourceCountCount = (options) => {
22144
22184
  ...options
22145
22185
  });
22146
22186
  };
22187
+ /**
22188
+ * Return user count grouped by job title.
22189
+ */
22190
+ export const marketplaceStatsUserJobTitleCountList = (options) => {
22191
+ return (options?.client ?? _heyApiClient).get({
22192
+ security: [
22193
+ {
22194
+ name: 'Authorization',
22195
+ type: 'apiKey'
22196
+ },
22197
+ {
22198
+ scheme: 'bearer',
22199
+ type: 'http'
22200
+ }
22201
+ ],
22202
+ url: '/api/marketplace-stats/user_job_title_count/',
22203
+ ...options
22204
+ });
22205
+ };
22206
+ /**
22207
+ * Get number of items in the collection matching the request parameters.
22208
+ */
22209
+ export const marketplaceStatsUserJobTitleCountCount = (options) => {
22210
+ return (options?.client ?? _heyApiClient).head({
22211
+ security: [
22212
+ {
22213
+ name: 'Authorization',
22214
+ type: 'apiKey'
22215
+ },
22216
+ {
22217
+ scheme: 'bearer',
22218
+ type: 'http'
22219
+ }
22220
+ ],
22221
+ url: '/api/marketplace-stats/user_job_title_count/',
22222
+ ...options
22223
+ });
22224
+ };
22147
22225
  /**
22148
22226
  * Return user count grouped by organization.
22149
22227
  */
@@ -22182,6 +22260,44 @@ export const marketplaceStatsUserOrganizationCountCount = (options) => {
22182
22260
  ...options
22183
22261
  });
22184
22262
  };
22263
+ /**
22264
+ * Return user count grouped by organization type (SCHAC URN).
22265
+ */
22266
+ export const marketplaceStatsUserOrganizationTypeCountList = (options) => {
22267
+ return (options?.client ?? _heyApiClient).get({
22268
+ security: [
22269
+ {
22270
+ name: 'Authorization',
22271
+ type: 'apiKey'
22272
+ },
22273
+ {
22274
+ scheme: 'bearer',
22275
+ type: 'http'
22276
+ }
22277
+ ],
22278
+ url: '/api/marketplace-stats/user_organization_type_count/',
22279
+ ...options
22280
+ });
22281
+ };
22282
+ /**
22283
+ * Get number of items in the collection matching the request parameters.
22284
+ */
22285
+ export const marketplaceStatsUserOrganizationTypeCountCount = (options) => {
22286
+ return (options?.client ?? _heyApiClient).head({
22287
+ security: [
22288
+ {
22289
+ name: 'Authorization',
22290
+ type: 'apiKey'
22291
+ },
22292
+ {
22293
+ scheme: 'bearer',
22294
+ type: 'http'
22295
+ }
22296
+ ],
22297
+ url: '/api/marketplace-stats/user_organization_type_count/',
22298
+ ...options
22299
+ });
22300
+ };
22185
22301
  export const marketplaceTagsList = (options) => {
22186
22302
  return (options?.client ?? _heyApiClient).get({
22187
22303
  security: [
@@ -1741,6 +1741,7 @@ export type BookingResource = {
1741
1741
  readonly parent_offering_uuid?: string;
1742
1742
  readonly parent_offering_name?: string;
1743
1743
  readonly parent_offering_slug?: string;
1744
+ readonly offering_backend_id?: string;
1744
1745
  readonly parent_uuid?: string;
1745
1746
  readonly parent_name?: string;
1746
1747
  backend_metadata?: BackendMetadata;
@@ -12266,6 +12267,26 @@ export type OrderUuid = {
12266
12267
  */
12267
12268
  readonly order_uuid: string;
12268
12269
  };
12270
+ export type OrderUpdate = {
12271
+ limits?: {
12272
+ [key: string]: number;
12273
+ };
12274
+ attributes?: unknown;
12275
+ /**
12276
+ * Enables delayed processing of resource provisioning order.
12277
+ */
12278
+ start_date?: string | null;
12279
+ };
12280
+ export type OrderUpdateRequest = {
12281
+ limits?: {
12282
+ [key: string]: number;
12283
+ };
12284
+ attributes?: unknown;
12285
+ /**
12286
+ * Enables delayed processing of resource provisioning order.
12287
+ */
12288
+ start_date?: string | null;
12289
+ };
12269
12290
  export type OrganizationGroup = {
12270
12291
  readonly uuid?: string;
12271
12292
  readonly url?: string;
@@ -13216,6 +13237,16 @@ export type PatchedOpenStackVolumeRequest = {
13216
13237
  */
13217
13238
  bootable?: boolean;
13218
13239
  };
13240
+ export type PatchedOrderUpdateRequest = {
13241
+ limits?: {
13242
+ [key: string]: number;
13243
+ };
13244
+ attributes?: unknown;
13245
+ /**
13246
+ * Enables delayed processing of resource provisioning order.
13247
+ */
13248
+ start_date?: string | null;
13249
+ };
13219
13250
  export type PatchedOrganizationGroupRequest = {
13220
13251
  name?: string;
13221
13252
  parent?: string | null;
@@ -17540,6 +17571,7 @@ export type Resource = {
17540
17571
  readonly parent_offering_uuid?: string;
17541
17572
  readonly parent_offering_name?: string;
17542
17573
  readonly parent_offering_slug?: string;
17574
+ readonly offering_backend_id?: string;
17543
17575
  readonly parent_uuid?: string;
17544
17576
  readonly parent_name?: string;
17545
17577
  backend_metadata?: BackendMetadata;
@@ -20754,6 +20786,16 @@ export type UserInfoRequest = {
20754
20786
  shortname?: string | null;
20755
20787
  user: string;
20756
20788
  };
20789
+ export type UserJobTitleCount = {
20790
+ /**
20791
+ * Job title
20792
+ */
20793
+ job_title: string | null;
20794
+ /**
20795
+ * Number of users
20796
+ */
20797
+ count: number;
20798
+ };
20757
20799
  export type UserLanguageCount = {
20758
20800
  language: string;
20759
20801
  count: number;
@@ -20805,6 +20847,16 @@ export type UserOrganizationCount = {
20805
20847
  */
20806
20848
  count: number;
20807
20849
  };
20850
+ export type UserOrganizationTypeCount = {
20851
+ /**
20852
+ * Organization type (SCHAC URN)
20853
+ */
20854
+ organization_type: string | null;
20855
+ /**
20856
+ * Number of users
20857
+ */
20858
+ count: number;
20859
+ };
20808
20860
  export type UserRegistrationTrend = {
20809
20861
  month: string;
20810
20862
  count: number;
@@ -26911,7 +26963,7 @@ export type BookingResourcesListData = {
26911
26963
  * Downscaled
26912
26964
  */
26913
26965
  downscaled?: boolean;
26914
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26966
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
26915
26967
  /**
26916
26968
  * Has termination date
26917
26969
  */
@@ -27239,7 +27291,7 @@ export type BookingResourcesRetrieveData = {
27239
27291
  uuid: string;
27240
27292
  };
27241
27293
  query?: {
27242
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27294
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27243
27295
  };
27244
27296
  url: '/api/booking-resources/{uuid}/';
27245
27297
  };
@@ -34359,7 +34411,7 @@ export type ManagedRancherClusterResourcesListData = {
34359
34411
  body?: never;
34360
34412
  path?: never;
34361
34413
  query?: {
34362
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34414
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34363
34415
  /**
34364
34416
  * A page number within the paginated result set.
34365
34417
  */
@@ -34402,7 +34454,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
34402
34454
  uuid: string;
34403
34455
  };
34404
34456
  query?: {
34405
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34457
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
34406
34458
  };
34407
34459
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
34408
34460
  };
@@ -38222,6 +38274,30 @@ export type MarketplaceOrdersRetrieveResponses = {
38222
38274
  200: OrderDetails;
38223
38275
  };
38224
38276
  export type MarketplaceOrdersRetrieveResponse = MarketplaceOrdersRetrieveResponses[keyof MarketplaceOrdersRetrieveResponses];
38277
+ export type MarketplaceOrdersPartialUpdateData = {
38278
+ body?: PatchedOrderUpdateRequest;
38279
+ path: {
38280
+ uuid: string;
38281
+ };
38282
+ query?: never;
38283
+ url: '/api/marketplace-orders/{uuid}/';
38284
+ };
38285
+ export type MarketplaceOrdersPartialUpdateResponses = {
38286
+ 200: OrderUpdate;
38287
+ };
38288
+ export type MarketplaceOrdersPartialUpdateResponse = MarketplaceOrdersPartialUpdateResponses[keyof MarketplaceOrdersPartialUpdateResponses];
38289
+ export type MarketplaceOrdersUpdateData = {
38290
+ body?: OrderUpdateRequest;
38291
+ path: {
38292
+ uuid: string;
38293
+ };
38294
+ query?: never;
38295
+ url: '/api/marketplace-orders/{uuid}/';
38296
+ };
38297
+ export type MarketplaceOrdersUpdateResponses = {
38298
+ 200: OrderUpdate;
38299
+ };
38300
+ export type MarketplaceOrdersUpdateResponse = MarketplaceOrdersUpdateResponses[keyof MarketplaceOrdersUpdateResponses];
38225
38301
  export type MarketplaceOrdersApproveByConsumerData = {
38226
38302
  body?: never;
38227
38303
  path: {
@@ -42060,7 +42136,7 @@ export type MarketplaceProviderResourcesListData = {
42060
42136
  * Downscaled
42061
42137
  */
42062
42138
  downscaled?: boolean;
42063
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
42139
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
42064
42140
  /**
42065
42141
  * Has termination date
42066
42142
  */
@@ -42387,7 +42463,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
42387
42463
  uuid: string;
42388
42464
  };
42389
42465
  query?: {
42390
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
42466
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
42391
42467
  };
42392
42468
  url: '/api/marketplace-provider-resources/{uuid}/';
42393
42469
  };
@@ -43692,7 +43768,7 @@ export type MarketplaceResourcesListData = {
43692
43768
  * Downscaled
43693
43769
  */
43694
43770
  downscaled?: boolean;
43695
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
43771
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
43696
43772
  /**
43697
43773
  * Has termination date
43698
43774
  */
@@ -44019,7 +44095,7 @@ export type MarketplaceResourcesRetrieveData = {
44019
44095
  uuid: string;
44020
44096
  };
44021
44097
  query?: {
44022
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
44098
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
44023
44099
  };
44024
44100
  url: '/api/marketplace-resources/{uuid}/';
44025
44101
  };
@@ -48991,6 +49067,46 @@ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
48991
49067
  */
48992
49068
  200: unknown;
48993
49069
  };
49070
+ export type MarketplaceStatsUserJobTitleCountListData = {
49071
+ body?: never;
49072
+ path?: never;
49073
+ query?: {
49074
+ /**
49075
+ * A page number within the paginated result set.
49076
+ */
49077
+ page?: number;
49078
+ /**
49079
+ * Number of results to return per page.
49080
+ */
49081
+ page_size?: number;
49082
+ };
49083
+ url: '/api/marketplace-stats/user_job_title_count/';
49084
+ };
49085
+ export type MarketplaceStatsUserJobTitleCountListResponses = {
49086
+ 200: Array<UserJobTitleCount>;
49087
+ };
49088
+ export type MarketplaceStatsUserJobTitleCountListResponse = MarketplaceStatsUserJobTitleCountListResponses[keyof MarketplaceStatsUserJobTitleCountListResponses];
49089
+ export type MarketplaceStatsUserJobTitleCountCountData = {
49090
+ body?: never;
49091
+ path?: never;
49092
+ query?: {
49093
+ /**
49094
+ * A page number within the paginated result set.
49095
+ */
49096
+ page?: number;
49097
+ /**
49098
+ * Number of results to return per page.
49099
+ */
49100
+ page_size?: number;
49101
+ };
49102
+ url: '/api/marketplace-stats/user_job_title_count/';
49103
+ };
49104
+ export type MarketplaceStatsUserJobTitleCountCountResponses = {
49105
+ /**
49106
+ * No response body
49107
+ */
49108
+ 200: unknown;
49109
+ };
48994
49110
  export type MarketplaceStatsUserOrganizationCountListData = {
48995
49111
  body?: never;
48996
49112
  path?: never;
@@ -49031,6 +49147,46 @@ export type MarketplaceStatsUserOrganizationCountCountResponses = {
49031
49147
  */
49032
49148
  200: unknown;
49033
49149
  };
49150
+ export type MarketplaceStatsUserOrganizationTypeCountListData = {
49151
+ body?: never;
49152
+ path?: never;
49153
+ query?: {
49154
+ /**
49155
+ * A page number within the paginated result set.
49156
+ */
49157
+ page?: number;
49158
+ /**
49159
+ * Number of results to return per page.
49160
+ */
49161
+ page_size?: number;
49162
+ };
49163
+ url: '/api/marketplace-stats/user_organization_type_count/';
49164
+ };
49165
+ export type MarketplaceStatsUserOrganizationTypeCountListResponses = {
49166
+ 200: Array<UserOrganizationTypeCount>;
49167
+ };
49168
+ export type MarketplaceStatsUserOrganizationTypeCountListResponse = MarketplaceStatsUserOrganizationTypeCountListResponses[keyof MarketplaceStatsUserOrganizationTypeCountListResponses];
49169
+ export type MarketplaceStatsUserOrganizationTypeCountCountData = {
49170
+ body?: never;
49171
+ path?: never;
49172
+ query?: {
49173
+ /**
49174
+ * A page number within the paginated result set.
49175
+ */
49176
+ page?: number;
49177
+ /**
49178
+ * Number of results to return per page.
49179
+ */
49180
+ page_size?: number;
49181
+ };
49182
+ url: '/api/marketplace-stats/user_organization_type_count/';
49183
+ };
49184
+ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
49185
+ /**
49186
+ * No response body
49187
+ */
49188
+ 200: unknown;
49189
+ };
49034
49190
  export type MarketplaceTagsListData = {
49035
49191
  body?: never;
49036
49192
  path?: never;
@@ -59168,7 +59324,7 @@ export type PromotionsCampaignsResourcesListData = {
59168
59324
  uuid: string;
59169
59325
  };
59170
59326
  query?: {
59171
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
59327
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
59172
59328
  /**
59173
59329
  * A page number within the paginated result set.
59174
59330
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.10-dev.5",
3
+ "version": "7.9.10-dev.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",