waldur-js-client 8.0.4 → 8.0.5-dev.0

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.
@@ -2328,13 +2328,22 @@ export type BookingResource = {
2328
2328
  readonly parent_uuid?: string;
2329
2329
  readonly parent_name?: string;
2330
2330
  backend_metadata?: BackendMetadata;
2331
+ /**
2332
+ * Returns True if the resource has usage-based components that track variable consumption.
2333
+ */
2331
2334
  readonly is_usage_based?: boolean;
2335
+ /**
2336
+ * Returns True if the resource has limit-based components with user-adjustable quotas.
2337
+ */
2332
2338
  readonly is_limit_based?: boolean;
2333
2339
  name?: string;
2334
2340
  /**
2335
2341
  * URL-friendly identifier. Only editable by staff users.
2336
2342
  */
2337
2343
  slug?: string;
2344
+ /**
2345
+ * Dictionary mapping component types to their latest reported usage amounts.
2346
+ */
2338
2347
  readonly current_usages?: {
2339
2348
  [key: string]: number;
2340
2349
  };
@@ -2346,6 +2355,9 @@ export type BookingResource = {
2346
2355
  end_date?: string | null;
2347
2356
  readonly end_date_requested_by?: string | null;
2348
2357
  readonly username?: string | null;
2358
+ /**
2359
+ * Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
2360
+ */
2349
2361
  readonly limit_usage?: {
2350
2362
  [key: string]: number;
2351
2363
  };
@@ -4072,6 +4084,7 @@ export type ConstanceSettings = {
4072
4084
  SIDEBAR_LOGO_DARK?: string | null;
4073
4085
  SIDEBAR_LOGO_MOBILE?: string | null;
4074
4086
  SIDEBAR_STYLE?: string;
4087
+ FONT_FAMILY?: string;
4075
4088
  LOGIN_LOGO?: string | null;
4076
4089
  LOGIN_LOGO_MULTILINGUAL?: {
4077
4090
  [key: string]: string | null;
@@ -4218,6 +4231,7 @@ export type ConstanceSettings = {
4218
4231
  LLM_TOKEN_LIMIT_MONTHLY?: number;
4219
4232
  LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4220
4233
  LLM_CHAT_STORAGE_ENABLED?: boolean;
4234
+ LLM_CHAT_HISTORY_LIMIT?: number;
4221
4235
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4222
4236
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4223
4237
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4311,6 +4325,7 @@ export type ConstanceSettingsRequest = {
4311
4325
  SIDEBAR_LOGO_DARK?: (Blob | File) | null;
4312
4326
  SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
4313
4327
  SIDEBAR_STYLE?: string;
4328
+ FONT_FAMILY?: string;
4314
4329
  LOGIN_LOGO?: (Blob | File) | null;
4315
4330
  LOGIN_LOGO_MULTILINGUAL?: {
4316
4331
  [key: string]: (Blob | File) | null;
@@ -4457,6 +4472,7 @@ export type ConstanceSettingsRequest = {
4457
4472
  LLM_TOKEN_LIMIT_MONTHLY?: number;
4458
4473
  LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4459
4474
  LLM_CHAT_STORAGE_ENABLED?: boolean;
4475
+ LLM_CHAT_HISTORY_LIMIT?: number;
4460
4476
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4461
4477
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4462
4478
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -19584,13 +19600,22 @@ export type Resource = {
19584
19600
  readonly parent_uuid?: string;
19585
19601
  readonly parent_name?: string;
19586
19602
  backend_metadata?: BackendMetadata;
19603
+ /**
19604
+ * Returns True if the resource has usage-based components that track variable consumption.
19605
+ */
19587
19606
  readonly is_usage_based?: boolean;
19607
+ /**
19608
+ * Returns True if the resource has limit-based components with user-adjustable quotas.
19609
+ */
19588
19610
  readonly is_limit_based?: boolean;
19589
19611
  name?: string;
19590
19612
  /**
19591
19613
  * URL-friendly identifier. Only editable by staff users.
19592
19614
  */
19593
19615
  slug?: string;
19616
+ /**
19617
+ * Dictionary mapping component types to their latest reported usage amounts.
19618
+ */
19594
19619
  readonly current_usages?: {
19595
19620
  [key: string]: number;
19596
19621
  };
@@ -19602,6 +19627,9 @@ export type Resource = {
19602
19627
  end_date?: string | null;
19603
19628
  readonly end_date_requested_by?: string | null;
19604
19629
  readonly username?: string | null;
19630
+ /**
19631
+ * Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
19632
+ */
19605
19633
  readonly limit_usage?: {
19606
19634
  [key: string]: number;
19607
19635
  };
@@ -24855,6 +24883,7 @@ export type ConstanceSettingsRequestForm = {
24855
24883
  SIDEBAR_LOGO_DARK?: (Blob | File) | null;
24856
24884
  SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
24857
24885
  SIDEBAR_STYLE?: string;
24886
+ FONT_FAMILY?: string;
24858
24887
  LOGIN_LOGO?: (Blob | File) | null;
24859
24888
  LOGIN_LOGO_MULTILINGUAL?: {
24860
24889
  [key: string]: (Blob | File) | null;
@@ -25001,6 +25030,7 @@ export type ConstanceSettingsRequestForm = {
25001
25030
  LLM_TOKEN_LIMIT_MONTHLY?: number;
25002
25031
  LLM_CHAT_SESSION_RETENTION_DAYS?: number;
25003
25032
  LLM_CHAT_STORAGE_ENABLED?: boolean;
25033
+ LLM_CHAT_HISTORY_LIMIT?: number;
25004
25034
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
25005
25035
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
25006
25036
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -25094,6 +25124,7 @@ export type ConstanceSettingsRequestMultipart = {
25094
25124
  SIDEBAR_LOGO_DARK?: (Blob | File) | null;
25095
25125
  SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
25096
25126
  SIDEBAR_STYLE?: string;
25127
+ FONT_FAMILY?: string;
25097
25128
  LOGIN_LOGO?: (Blob | File) | null;
25098
25129
  LOGIN_LOGO_MULTILINGUAL?: {
25099
25130
  [key: string]: (Blob | File) | null;
@@ -25240,6 +25271,7 @@ export type ConstanceSettingsRequestMultipart = {
25240
25271
  LLM_TOKEN_LIMIT_MONTHLY?: number;
25241
25272
  LLM_CHAT_SESSION_RETENTION_DAYS?: number;
25242
25273
  LLM_CHAT_STORAGE_ENABLED?: boolean;
25274
+ LLM_CHAT_HISTORY_LIMIT?: number;
25243
25275
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
25244
25276
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
25245
25277
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -51623,6 +51655,10 @@ export type MarketplaceSoftwarePackagesListData = {
51623
51655
  * Filter packages by name (case-insensitive partial match)
51624
51656
  */
51625
51657
  name?: string;
51658
+ /**
51659
+ * Filter packages by exact name (case-insensitive)
51660
+ */
51661
+ name_exact?: string;
51626
51662
  /**
51627
51663
  * Ordering
51628
51664
  *
@@ -51700,6 +51736,10 @@ export type MarketplaceSoftwarePackagesCountData = {
51700
51736
  * Filter packages by name (case-insensitive partial match)
51701
51737
  */
51702
51738
  name?: string;
51739
+ /**
51740
+ * Filter packages by exact name (case-insensitive)
51741
+ */
51742
+ name_exact?: string;
51703
51743
  /**
51704
51744
  * Ordering
51705
51745
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.4",
3
+ "version": "8.0.5-dev.0",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",