waldur-js-client 7.9.9 → 7.9.10-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.
@@ -2736,6 +2736,10 @@ export type ChatResponse = {
2736
2736
  * Tag or language for dynamic blocks.
2737
2737
  */
2738
2738
  t?: string;
2739
+ /**
2740
+ * Error message.
2741
+ */
2742
+ e?: string;
2739
2743
  /**
2740
2744
  * Table headers.
2741
2745
  */
@@ -2754,10 +2758,6 @@ export type ChatResponse = {
2754
2758
  m?: {
2755
2759
  [key: string]: unknown;
2756
2760
  };
2757
- /**
2758
- * Error message.
2759
- */
2760
- e?: string;
2761
2761
  };
2762
2762
  export type CheckUniqueBackendIdRequest = {
2763
2763
  /**
@@ -3341,6 +3341,7 @@ export type ConstanceSettings = {
3341
3341
  THUMBNAIL_SIZE?: string;
3342
3342
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
3343
3343
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
3344
+ RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
3344
3345
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
3345
3346
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
3346
3347
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -3516,6 +3517,9 @@ export type ConstanceSettings = {
3516
3517
  LLM_INFERENCES_API_URL?: string;
3517
3518
  LLM_INFERENCES_API_TOKEN?: string;
3518
3519
  LLM_INFERENCES_MODEL?: string;
3520
+ LLM_TOKEN_LIMIT_DAILY?: number;
3521
+ LLM_TOKEN_LIMIT_WEEKLY?: number;
3522
+ LLM_TOKEN_LIMIT_MONTHLY?: number;
3519
3523
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
3520
3524
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
3521
3525
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -3526,6 +3530,11 @@ export type ConstanceSettings = {
3526
3530
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
3527
3531
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
3528
3532
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
3533
+ TABLE_GROWTH_MONITORING_ENABLED?: boolean;
3534
+ TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
3535
+ TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
3536
+ TABLE_GROWTH_RETENTION_DAYS?: number;
3537
+ TABLE_GROWTH_MIN_SIZE_BYTES?: number;
3529
3538
  USER_ACTIONS_ENABLED?: boolean;
3530
3539
  USER_ACTIONS_PENDING_ORDER_HOURS?: number;
3531
3540
  USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
@@ -3548,6 +3557,7 @@ export type ConstanceSettingsRequest = {
3548
3557
  THUMBNAIL_SIZE?: string;
3549
3558
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
3550
3559
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
3560
+ RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
3551
3561
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
3552
3562
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
3553
3563
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -3723,6 +3733,9 @@ export type ConstanceSettingsRequest = {
3723
3733
  LLM_INFERENCES_API_URL?: string;
3724
3734
  LLM_INFERENCES_API_TOKEN?: string;
3725
3735
  LLM_INFERENCES_MODEL?: string;
3736
+ LLM_TOKEN_LIMIT_DAILY?: number;
3737
+ LLM_TOKEN_LIMIT_WEEKLY?: number;
3738
+ LLM_TOKEN_LIMIT_MONTHLY?: number;
3726
3739
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
3727
3740
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
3728
3741
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -3733,6 +3746,11 @@ export type ConstanceSettingsRequest = {
3733
3746
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
3734
3747
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
3735
3748
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
3749
+ TABLE_GROWTH_MONITORING_ENABLED?: boolean;
3750
+ TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
3751
+ TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
3752
+ TABLE_GROWTH_RETENTION_DAYS?: number;
3753
+ TABLE_GROWTH_MIN_SIZE_BYTES?: number;
3736
3754
  USER_ACTIONS_ENABLED?: boolean;
3737
3755
  USER_ACTIONS_PENDING_ORDER_HOURS?: number;
3738
3756
  USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
@@ -4444,6 +4462,22 @@ export type DlqQueue = {
4444
4462
  */
4445
4463
  readonly consumers: number;
4446
4464
  };
4465
+ export type DailyMaintenanceStats = {
4466
+ /**
4467
+ * Date
4468
+ */
4469
+ date: string;
4470
+ /**
4471
+ * Number of maintenances on this day
4472
+ */
4473
+ count: number;
4474
+ /**
4475
+ * Maintenance counts grouped by state
4476
+ */
4477
+ by_state: {
4478
+ [key: string]: number;
4479
+ };
4480
+ };
4447
4481
  export type DailyOrderStats = {
4448
4482
  /**
4449
4483
  * Date of the statistics
@@ -6833,6 +6867,32 @@ export type MaintenanceAnnouncementTemplateRequest = {
6833
6867
  */
6834
6868
  service_provider: string;
6835
6869
  };
6870
+ export type MaintenanceProviderStats = {
6871
+ /**
6872
+ * Service provider UUID
6873
+ */
6874
+ uuid: string;
6875
+ /**
6876
+ * Service provider name
6877
+ */
6878
+ name: string;
6879
+ /**
6880
+ * Total maintenances
6881
+ */
6882
+ total: number;
6883
+ /**
6884
+ * Active maintenances
6885
+ */
6886
+ active: number;
6887
+ /**
6888
+ * Scheduled maintenances
6889
+ */
6890
+ scheduled: number;
6891
+ /**
6892
+ * Completed maintenances
6893
+ */
6894
+ completed: number;
6895
+ };
6836
6896
  export type MaintenanceStats = {
6837
6897
  /**
6838
6898
  * Age of the oldest transaction in transactions
@@ -6855,6 +6915,64 @@ export type MaintenanceStats = {
6855
6915
  */
6856
6916
  readonly dead_tuple_ratio_percent: number | null;
6857
6917
  };
6918
+ export type MaintenanceStatsResponse = {
6919
+ /**
6920
+ * Summary statistics
6921
+ */
6922
+ summary: MaintenanceStatsSummary;
6923
+ /**
6924
+ * Total counts grouped by state
6925
+ */
6926
+ by_state: {
6927
+ [key: string]: number;
6928
+ };
6929
+ /**
6930
+ * Total counts grouped by maintenance type
6931
+ */
6932
+ by_type: {
6933
+ [key: string]: number;
6934
+ };
6935
+ /**
6936
+ * Total counts grouped by max impact level
6937
+ */
6938
+ by_impact_level: {
6939
+ [key: string]: number;
6940
+ };
6941
+ /**
6942
+ * Daily breakdown
6943
+ */
6944
+ daily: Array<DailyMaintenanceStats>;
6945
+ /**
6946
+ * Statistics per provider
6947
+ */
6948
+ providers: Array<MaintenanceProviderStats>;
6949
+ };
6950
+ export type MaintenanceStatsSummary = {
6951
+ /**
6952
+ * Total number of maintenance announcements
6953
+ */
6954
+ total: number;
6955
+ /**
6956
+ * Number of currently active maintenances
6957
+ */
6958
+ active: number;
6959
+ /**
6960
+ * Number of scheduled maintenances
6961
+ */
6962
+ scheduled: number;
6963
+ /**
6964
+ * Number of completed maintenances
6965
+ */
6966
+ completed: number;
6967
+ /**
6968
+ * Average duration of completed maintenances in hours
6969
+ */
6970
+ average_duration_hours: number | null;
6971
+ /**
6972
+ * Percentage of maintenances completed on time
6973
+ */
6974
+ on_time_completion_rate: number | null;
6975
+ };
6858
6976
  export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
6859
6977
  export type ManagedProject = {
6860
6978
  readonly state: string;
@@ -8907,6 +9025,7 @@ export type Offering = {
8907
9025
  readonly billing_type_classification?: string;
8908
9026
  compliance_checklist?: string | null;
8909
9027
  readonly user_has_consent?: boolean;
9028
+ readonly is_accessible?: boolean;
8910
9029
  googlecalendar?: GoogleCalendar;
8911
9030
  };
8912
9031
  export type OfferingBackendMetadataRequest = {
@@ -9049,6 +9168,7 @@ export type OfferingCreateRequest = {
9049
9168
  options?: OfferingOptionsRequest;
9050
9169
  resource_options?: OfferingOptionsRequest;
9051
9170
  components?: Array<OfferingComponentRequest>;
9171
+ plugin_options?: MergedPluginOptionsRequest;
9052
9172
  vendor_details?: string;
9053
9173
  getting_started?: string;
9054
9174
  integration_guide?: string;
@@ -15600,6 +15720,7 @@ export type PublicOfferingDetails = {
15600
15720
  readonly billing_type_classification?: string;
15601
15721
  compliance_checklist?: string | null;
15602
15722
  readonly user_has_consent?: boolean;
15723
+ readonly is_accessible?: boolean;
15603
15724
  readonly google_calendar_is_public?: boolean | null;
15604
15725
  /**
15605
15726
  * Get the Google Calendar link for an offering.
@@ -19095,6 +19216,24 @@ export type SetOfferingsUsernameRequest = {
19095
19216
  */
19096
19217
  username: string;
19097
19218
  };
19219
+ export type SetTokenQuotaRequest = {
19220
+ /**
19221
+ * UUID of the user to set quota for.
19222
+ */
19223
+ user_uuid: string;
19224
+ /**
19225
+ * Daily token limit. Omit or null = system default, -1 = unlimited.
19226
+ */
19227
+ daily_limit?: number | null;
19228
+ /**
19229
+ * Weekly token limit. Omit or null = system default, -1 = unlimited.
19230
+ */
19231
+ weekly_limit?: number | null;
19232
+ /**
19233
+ * Monthly token limit. Omit or null = system default, -1 = unlimited.
19234
+ */
19235
+ monthly_limit?: number | null;
19236
+ };
19098
19237
  export type SettingsMetadataResponse = {
19099
19238
  /**
19100
19239
  * List of settings sections with configuration items
@@ -19766,6 +19905,74 @@ export type SupportedCountriesResponse = {
19766
19905
  supported_countries: Array<string>;
19767
19906
  };
19768
19907
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
19908
+ export type TableGrowthStats = {
19909
+ /**
19910
+ * Name of the database table
19911
+ */
19912
+ table_name: string;
19913
+ /**
19914
+ * Current total size including indexes in bytes
19915
+ */
19916
+ current_total_size: number;
19917
+ /**
19918
+ * Current data-only size in bytes
19919
+ */
19920
+ current_data_size: number;
19921
+ /**
19922
+ * Current estimated row count
19923
+ */
19924
+ current_row_estimate: number | null;
19925
+ /**
19926
+ * Total size from 7 days ago in bytes
19927
+ */
19928
+ week_ago_total_size: number | null;
19929
+ /**
19930
+ * Row estimate from 7 days ago
19931
+ */
19932
+ week_ago_row_estimate: number | null;
19933
+ /**
19934
+ * Total size from 30 days ago in bytes
19935
+ */
19936
+ month_ago_total_size: number | null;
19937
+ /**
19938
+ * Row estimate from 30 days ago
19939
+ */
19940
+ month_ago_row_estimate: number | null;
19941
+ /**
19942
+ * Percentage growth over the past week
19943
+ */
19944
+ weekly_growth_percent: number | null;
19945
+ /**
19946
+ * Percentage growth over the past month
19947
+ */
19948
+ monthly_growth_percent: number | null;
19949
+ /**
19950
+ * Percentage row count growth over the past week
19951
+ */
19952
+ weekly_row_growth_percent: number | null;
19953
+ /**
19954
+ * Percentage row count growth over the past month
19955
+ */
19956
+ monthly_row_growth_percent: number | null;
19957
+ };
19958
+ export type TableGrowthStatsResponse = {
19959
+ /**
19960
+ * Current date of the statistics
19961
+ */
19962
+ date: string;
19963
+ /**
19964
+ * Configured weekly growth alert threshold
19965
+ */
19966
+ weekly_threshold_percent: number;
19967
+ /**
19968
+ * Configured monthly growth alert threshold
19969
+ */
19970
+ monthly_threshold_percent: number;
19971
+ /**
19972
+ * Table growth statistics sorted by growth rate
19973
+ */
19974
+ tables: Array<TableGrowthStats>;
19975
+ };
19769
19976
  export type TableSize = {
19770
19977
  /**
19771
19978
  * Name of the database table
@@ -19895,6 +20102,59 @@ export type ToSConsentDashboard = {
19895
20102
  readonly active_users_over_time: Array<TimeSeriesToSData>;
19896
20103
  readonly accepted_consents_over_time: Array<TimeSeriesToSData>;
19897
20104
  };
20105
+ export type TokenQuotaUsageResponse = {
20106
+ /**
20107
+ * Daily token limit (non-negative integer). Null uses system default. -1 means unlimited.
20108
+ */
20109
+ daily_limit?: number | null;
20110
+ daily_usage?: number;
20111
+ /**
20112
+ * Get remaining daily tokens.
20113
+ */
20114
+ readonly daily_remaining: number | null;
20115
+ /**
20116
+ * Calculate next midnight (00:00:00).
20117
+ */
20118
+ readonly daily_reset_at: string;
20119
+ /**
20120
+ * Get system default daily token limit from constance config.
20121
+ */
20122
+ readonly daily_system_default: number;
20123
+ /**
20124
+ * Weekly token limit (non-negative integer). Null uses system default. -1 means unlimited.
20125
+ */
20126
+ weekly_limit?: number | null;
20127
+ weekly_usage?: number;
20128
+ /**
20129
+ * Get remaining weekly tokens.
20130
+ */
20131
+ readonly weekly_remaining: number | null;
20132
+ /**
20133
+ * Calculate next Monday at midnight.
20134
+ */
20135
+ readonly weekly_reset_at: string;
20136
+ /**
20137
+ * Get system default weekly token limit from constance config.
20138
+ */
20139
+ readonly weekly_system_default: number;
20140
+ /**
20141
+ * Monthly token limit (non-negative integer). Null uses system default. -1 means unlimited.
20142
+ */
20143
+ monthly_limit?: number | null;
20144
+ monthly_usage?: number;
20145
+ /**
20146
+ * Get remaining monthly tokens.
20147
+ */
20148
+ readonly monthly_remaining: number | null;
20149
+ /**
20150
+ * Calculate first day of next month at midnight.
20151
+ */
20152
+ readonly monthly_reset_at: string;
20153
+ /**
20154
+ * Get system default monthly token limit from constance config.
20155
+ */
20156
+ readonly monthly_system_default: number;
20157
+ };
19898
20158
  export type TokenRequest = {
19899
20159
  /**
19900
20160
  * Authentication token for invitation acceptance
@@ -21592,6 +21852,7 @@ export type OfferingCreateRequestForm = {
21592
21852
  options?: OfferingOptionsRequest;
21593
21853
  resource_options?: OfferingOptionsRequest;
21594
21854
  components?: Array<OfferingComponentRequest>;
21855
+ plugin_options?: MergedPluginOptionsRequest;
21595
21856
  vendor_details?: string;
21596
21857
  getting_started?: string;
21597
21858
  integration_guide?: string;
@@ -21640,6 +21901,7 @@ export type OfferingCreateRequestMultipart = {
21640
21901
  options?: OfferingOptionsRequest;
21641
21902
  resource_options?: OfferingOptionsRequest;
21642
21903
  components?: Array<OfferingComponentRequest>;
21904
+ plugin_options?: MergedPluginOptionsRequest;
21643
21905
  vendor_details?: string;
21644
21906
  getting_started?: string;
21645
21907
  integration_guide?: string;
@@ -21975,6 +22237,7 @@ export type ConstanceSettingsRequestForm = {
21975
22237
  THUMBNAIL_SIZE?: string;
21976
22238
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
21977
22239
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
22240
+ RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
21978
22241
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
21979
22242
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
21980
22243
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -22150,6 +22413,9 @@ export type ConstanceSettingsRequestForm = {
22150
22413
  LLM_INFERENCES_API_URL?: string;
22151
22414
  LLM_INFERENCES_API_TOKEN?: string;
22152
22415
  LLM_INFERENCES_MODEL?: string;
22416
+ LLM_TOKEN_LIMIT_DAILY?: number;
22417
+ LLM_TOKEN_LIMIT_WEEKLY?: number;
22418
+ LLM_TOKEN_LIMIT_MONTHLY?: number;
22153
22419
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
22154
22420
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
22155
22421
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -22160,6 +22426,11 @@ export type ConstanceSettingsRequestForm = {
22160
22426
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
22161
22427
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
22162
22428
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
22429
+ TABLE_GROWTH_MONITORING_ENABLED?: boolean;
22430
+ TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
22431
+ TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
22432
+ TABLE_GROWTH_RETENTION_DAYS?: number;
22433
+ TABLE_GROWTH_MIN_SIZE_BYTES?: number;
22163
22434
  USER_ACTIONS_ENABLED?: boolean;
22164
22435
  USER_ACTIONS_PENDING_ORDER_HOURS?: number;
22165
22436
  USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
@@ -22182,6 +22453,7 @@ export type ConstanceSettingsRequestMultipart = {
22182
22453
  THUMBNAIL_SIZE?: string;
22183
22454
  ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
22184
22455
  ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
22456
+ RESTRICTED_OFFERING_VISIBILITY_MODE?: string;
22185
22457
  NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
22186
22458
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
22187
22459
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
@@ -22357,6 +22629,9 @@ export type ConstanceSettingsRequestMultipart = {
22357
22629
  LLM_INFERENCES_API_URL?: string;
22358
22630
  LLM_INFERENCES_API_TOKEN?: string;
22359
22631
  LLM_INFERENCES_MODEL?: string;
22632
+ LLM_TOKEN_LIMIT_DAILY?: number;
22633
+ LLM_TOKEN_LIMIT_WEEKLY?: number;
22634
+ LLM_TOKEN_LIMIT_MONTHLY?: number;
22360
22635
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
22361
22636
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
22362
22637
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -22367,6 +22642,11 @@ export type ConstanceSettingsRequestMultipart = {
22367
22642
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
22368
22643
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
22369
22644
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
22645
+ TABLE_GROWTH_MONITORING_ENABLED?: boolean;
22646
+ TABLE_GROWTH_WEEKLY_THRESHOLD_PERCENT?: number;
22647
+ TABLE_GROWTH_MONTHLY_THRESHOLD_PERCENT?: number;
22648
+ TABLE_GROWTH_RETENTION_DAYS?: number;
22649
+ TABLE_GROWTH_MIN_SIZE_BYTES?: number;
22370
22650
  USER_ACTIONS_ENABLED?: boolean;
22371
22651
  USER_ACTIONS_PENDING_ORDER_HOURS?: number;
22372
22652
  USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
@@ -26307,7 +26587,7 @@ export type BookingOfferingsListData = {
26307
26587
  body?: never;
26308
26588
  path?: never;
26309
26589
  query?: {
26310
- 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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
26590
+ 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' | 'is_accessible' | '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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
26311
26591
  /**
26312
26592
  * A page number within the paginated result set.
26313
26593
  */
@@ -26350,7 +26630,7 @@ export type BookingOfferingsRetrieveData = {
26350
26630
  uuid: string;
26351
26631
  };
26352
26632
  query?: {
26353
- 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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
26633
+ 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' | 'is_accessible' | '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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
26354
26634
  };
26355
26635
  url: '/api/booking-offerings/{uuid}/';
26356
26636
  };
@@ -27707,6 +27987,33 @@ export type CeleryStatsRetrieveResponses = {
27707
27987
  200: CeleryStatsResponse;
27708
27988
  };
27709
27989
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
27990
+ export type ChatQuotaSetQuotaData = {
27991
+ body: SetTokenQuotaRequest;
27992
+ path?: never;
27993
+ query?: never;
27994
+ url: '/api/chat-quota/set_quota/';
27995
+ };
27996
+ export type ChatQuotaSetQuotaResponses = {
27997
+ /**
27998
+ * No response body
27999
+ */
28000
+ 200: unknown;
28001
+ };
28002
+ export type ChatQuotaUsageRetrieveData = {
28003
+ body?: never;
28004
+ path?: never;
28005
+ query?: {
28006
+ /**
28007
+ * UUID of user to view quota for (staff/support only). Omit to view your own quota.
28008
+ */
28009
+ user_uuid?: string;
28010
+ };
28011
+ url: '/api/chat-quota/usage/';
28012
+ };
28013
+ export type ChatQuotaUsageRetrieveResponses = {
28014
+ 200: TokenQuotaUsageResponse;
28015
+ };
28016
+ export type ChatQuotaUsageRetrieveResponse = ChatQuotaUsageRetrieveResponses[keyof ChatQuotaUsageRetrieveResponses];
27710
28017
  export type ChatToolsExecuteData = {
27711
28018
  body: ToolExecuteRequest;
27712
28019
  path?: never;
@@ -27719,16 +28026,6 @@ export type ChatToolsExecuteResponses = {
27719
28026
  };
27720
28027
  };
27721
28028
  export type ChatToolsExecuteResponse = ChatToolsExecuteResponses[keyof ChatToolsExecuteResponses];
27722
- export type ChatInvokeData = {
27723
- body?: never;
27724
- path?: never;
27725
- query?: never;
27726
- url: '/api/chat/invoke/';
27727
- };
27728
- export type ChatInvokeResponses = {
27729
- 200: string;
27730
- };
27731
- export type ChatInvokeResponse = ChatInvokeResponses[keyof ChatInvokeResponses];
27732
28029
  export type ChatStreamData = {
27733
28030
  body: ChatRequestRequest;
27734
28031
  path?: never;
@@ -33555,6 +33852,54 @@ export type MaintenanceAnnouncementsUnscheduleResponses = {
33555
33852
  200: MaintenanceActionResponse;
33556
33853
  };
33557
33854
  export type MaintenanceAnnouncementsUnscheduleResponse = MaintenanceAnnouncementsUnscheduleResponses[keyof MaintenanceAnnouncementsUnscheduleResponses];
33855
+ export type MaintenanceAnnouncementsMaintenanceStatsRetrieveData = {
33856
+ body?: never;
33857
+ path?: never;
33858
+ query?: {
33859
+ /**
33860
+ * End date in YYYY-MM-DD format. Defaults to 30 days in the future.
33861
+ */
33862
+ end?: string;
33863
+ /**
33864
+ * Filter by service provider UUID.
33865
+ */
33866
+ provider_uuid?: string;
33867
+ /**
33868
+ * Start date in YYYY-MM-DD format. Defaults to 90 days ago.
33869
+ */
33870
+ start?: string;
33871
+ };
33872
+ url: '/api/maintenance-announcements/maintenance_stats/';
33873
+ };
33874
+ export type MaintenanceAnnouncementsMaintenanceStatsRetrieveResponses = {
33875
+ 200: MaintenanceStatsResponse;
33876
+ };
33877
+ export type MaintenanceAnnouncementsMaintenanceStatsRetrieveResponse = MaintenanceAnnouncementsMaintenanceStatsRetrieveResponses[keyof MaintenanceAnnouncementsMaintenanceStatsRetrieveResponses];
33878
+ export type MaintenanceAnnouncementsMaintenanceStatsCountData = {
33879
+ body?: never;
33880
+ path?: never;
33881
+ query?: {
33882
+ /**
33883
+ * End date in YYYY-MM-DD format. Defaults to 30 days in the future.
33884
+ */
33885
+ end?: string;
33886
+ /**
33887
+ * Filter by service provider UUID.
33888
+ */
33889
+ provider_uuid?: string;
33890
+ /**
33891
+ * Start date in YYYY-MM-DD format. Defaults to 90 days ago.
33892
+ */
33893
+ start?: string;
33894
+ };
33895
+ url: '/api/maintenance-announcements/maintenance_stats/';
33896
+ };
33897
+ export type MaintenanceAnnouncementsMaintenanceStatsCountResponses = {
33898
+ /**
33899
+ * No response body
33900
+ */
33901
+ 200: unknown;
33902
+ };
33558
33903
  export type ManagedRancherClusterResourcesListData = {
33559
33904
  body?: never;
33560
33905
  path?: never;
@@ -41982,7 +42327,7 @@ export type MarketplacePublicOfferingsListData = {
41982
42327
  * Description contains
41983
42328
  */
41984
42329
  description?: string;
41985
- 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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
42330
+ 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' | 'is_accessible' | '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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
41986
42331
  /**
41987
42332
  * Has Active Terms of Service
41988
42333
  */
@@ -42274,7 +42619,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
42274
42619
  uuid: string;
42275
42620
  };
42276
42621
  query?: {
42277
- 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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
42622
+ 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' | 'is_accessible' | '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' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
42278
42623
  };
42279
42624
  url: '/api/marketplace-public-offerings/{uuid}/';
42280
42625
  };
@@ -65011,6 +65356,52 @@ export type SlurmJobsUnlinkResponses = {
65011
65356
  204: void;
65012
65357
  };
65013
65358
  export type SlurmJobsUnlinkResponse = SlurmJobsUnlinkResponses[keyof SlurmJobsUnlinkResponses];
65359
+ export type StatsCeleryRetrieveData = {
65360
+ body?: never;
65361
+ path?: never;
65362
+ query?: never;
65363
+ url: '/api/stats/celery/';
65364
+ };
65365
+ export type StatsCeleryRetrieveResponses = {
65366
+ 200: CeleryStatsResponse;
65367
+ };
65368
+ export type StatsCeleryRetrieveResponse = StatsCeleryRetrieveResponses[keyof StatsCeleryRetrieveResponses];
65369
+ export type StatsDatabaseRetrieveData = {
65370
+ body?: never;
65371
+ path?: never;
65372
+ query?: never;
65373
+ url: '/api/stats/database/';
65374
+ };
65375
+ export type StatsDatabaseRetrieveResponses = {
65376
+ 200: DatabaseStatsResponse;
65377
+ };
65378
+ export type StatsDatabaseRetrieveResponse = StatsDatabaseRetrieveResponses[keyof StatsDatabaseRetrieveResponses];
65379
+ export type StatsQueryData = {
65380
+ body: QueryRequest;
65381
+ path?: never;
65382
+ query?: never;
65383
+ url: '/api/stats/query/';
65384
+ };
65385
+ export type StatsQueryErrors = {
65386
+ /**
65387
+ * No response body
65388
+ */
65389
+ 400: unknown;
65390
+ };
65391
+ export type StatsQueryResponses = {
65392
+ 200: Array<unknown>;
65393
+ };
65394
+ export type StatsQueryResponse = StatsQueryResponses[keyof StatsQueryResponses];
65395
+ export type StatsTableGrowthRetrieveData = {
65396
+ body?: never;
65397
+ path?: never;
65398
+ query?: never;
65399
+ url: '/api/stats/table-growth/';
65400
+ };
65401
+ export type StatsTableGrowthRetrieveResponses = {
65402
+ 200: TableGrowthStatsResponse;
65403
+ };
65404
+ export type StatsTableGrowthRetrieveResponse = StatsTableGrowthRetrieveResponses[keyof StatsTableGrowthRetrieveResponses];
65014
65405
  export type SupportAttachmentsListData = {
65015
65406
  body?: never;
65016
65407
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.9",
3
+ "version": "7.9.10-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",