waldur-js-client 8.0.4 → 8.0.5-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.gen.d.ts +49 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -7532,6 +7548,15 @@ export type InvoiceCost = {
|
|
|
7532
7548
|
readonly price: number;
|
|
7533
7549
|
readonly year: number;
|
|
7534
7550
|
readonly month: number;
|
|
7551
|
+
items?: Array<InvoiceCostItem>;
|
|
7552
|
+
};
|
|
7553
|
+
export type InvoiceCostItem = {
|
|
7554
|
+
readonly name: string;
|
|
7555
|
+
readonly unit_price: string;
|
|
7556
|
+
readonly unit: string;
|
|
7557
|
+
readonly quantity: string;
|
|
7558
|
+
readonly measured_unit: string;
|
|
7559
|
+
readonly price: number;
|
|
7535
7560
|
};
|
|
7536
7561
|
export type InvoiceGrowth = {
|
|
7537
7562
|
readonly periods: Array<string>;
|
|
@@ -19584,13 +19609,22 @@ export type Resource = {
|
|
|
19584
19609
|
readonly parent_uuid?: string;
|
|
19585
19610
|
readonly parent_name?: string;
|
|
19586
19611
|
backend_metadata?: BackendMetadata;
|
|
19612
|
+
/**
|
|
19613
|
+
* Returns True if the resource has usage-based components that track variable consumption.
|
|
19614
|
+
*/
|
|
19587
19615
|
readonly is_usage_based?: boolean;
|
|
19616
|
+
/**
|
|
19617
|
+
* Returns True if the resource has limit-based components with user-adjustable quotas.
|
|
19618
|
+
*/
|
|
19588
19619
|
readonly is_limit_based?: boolean;
|
|
19589
19620
|
name?: string;
|
|
19590
19621
|
/**
|
|
19591
19622
|
* URL-friendly identifier. Only editable by staff users.
|
|
19592
19623
|
*/
|
|
19593
19624
|
slug?: string;
|
|
19625
|
+
/**
|
|
19626
|
+
* Dictionary mapping component types to their latest reported usage amounts.
|
|
19627
|
+
*/
|
|
19594
19628
|
readonly current_usages?: {
|
|
19595
19629
|
[key: string]: number;
|
|
19596
19630
|
};
|
|
@@ -19602,6 +19636,9 @@ export type Resource = {
|
|
|
19602
19636
|
end_date?: string | null;
|
|
19603
19637
|
readonly end_date_requested_by?: string | null;
|
|
19604
19638
|
readonly username?: string | null;
|
|
19639
|
+
/**
|
|
19640
|
+
* Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
|
|
19641
|
+
*/
|
|
19605
19642
|
readonly limit_usage?: {
|
|
19606
19643
|
[key: string]: number;
|
|
19607
19644
|
};
|
|
@@ -24855,6 +24892,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
24855
24892
|
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
24856
24893
|
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
24857
24894
|
SIDEBAR_STYLE?: string;
|
|
24895
|
+
FONT_FAMILY?: string;
|
|
24858
24896
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
24859
24897
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
24860
24898
|
[key: string]: (Blob | File) | null;
|
|
@@ -25001,6 +25039,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
25001
25039
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
25002
25040
|
LLM_CHAT_SESSION_RETENTION_DAYS?: number;
|
|
25003
25041
|
LLM_CHAT_STORAGE_ENABLED?: boolean;
|
|
25042
|
+
LLM_CHAT_HISTORY_LIMIT?: number;
|
|
25004
25043
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
25005
25044
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
25006
25045
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -25094,6 +25133,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
25094
25133
|
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
25095
25134
|
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
25096
25135
|
SIDEBAR_STYLE?: string;
|
|
25136
|
+
FONT_FAMILY?: string;
|
|
25097
25137
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
25098
25138
|
LOGIN_LOGO_MULTILINGUAL?: {
|
|
25099
25139
|
[key: string]: (Blob | File) | null;
|
|
@@ -25240,6 +25280,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
25240
25280
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
25241
25281
|
LLM_CHAT_SESSION_RETENTION_DAYS?: number;
|
|
25242
25282
|
LLM_CHAT_STORAGE_ENABLED?: boolean;
|
|
25283
|
+
LLM_CHAT_HISTORY_LIMIT?: number;
|
|
25243
25284
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
25244
25285
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
25245
25286
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -51623,6 +51664,10 @@ export type MarketplaceSoftwarePackagesListData = {
|
|
|
51623
51664
|
* Filter packages by name (case-insensitive partial match)
|
|
51624
51665
|
*/
|
|
51625
51666
|
name?: string;
|
|
51667
|
+
/**
|
|
51668
|
+
* Filter packages by exact name (case-insensitive)
|
|
51669
|
+
*/
|
|
51670
|
+
name_exact?: string;
|
|
51626
51671
|
/**
|
|
51627
51672
|
* Ordering
|
|
51628
51673
|
*
|
|
@@ -51700,6 +51745,10 @@ export type MarketplaceSoftwarePackagesCountData = {
|
|
|
51700
51745
|
* Filter packages by name (case-insensitive partial match)
|
|
51701
51746
|
*/
|
|
51702
51747
|
name?: string;
|
|
51748
|
+
/**
|
|
51749
|
+
* Filter packages by exact name (case-insensitive)
|
|
51750
|
+
*/
|
|
51751
|
+
name_exact?: string;
|
|
51703
51752
|
/**
|
|
51704
51753
|
* Ordering
|
|
51705
51754
|
*
|