waldur-js-client 8.0.7-dev.5 → 8.0.7-dev.6
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 +10 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4348,6 +4348,7 @@ export type ConstanceSettings = {
|
|
|
4348
4348
|
LLM_INFERENCES_API_URL?: string;
|
|
4349
4349
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
4350
4350
|
LLM_INFERENCES_MODEL?: string;
|
|
4351
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
4351
4352
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
4352
4353
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
4353
4354
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -4392,6 +4393,7 @@ export type ConstanceSettings = {
|
|
|
4392
4393
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
4393
4394
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4394
4395
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4396
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4395
4397
|
};
|
|
4396
4398
|
export type ConstanceSettingsRequest = {
|
|
4397
4399
|
SITE_NAME?: string;
|
|
@@ -4593,6 +4595,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4593
4595
|
LLM_INFERENCES_API_URL?: string;
|
|
4594
4596
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
4595
4597
|
LLM_INFERENCES_MODEL?: string;
|
|
4598
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
4596
4599
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
4597
4600
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
4598
4601
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -4637,6 +4640,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4637
4640
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
4638
4641
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4639
4642
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4643
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4640
4644
|
};
|
|
4641
4645
|
export type ConsumptionStatisticsResponse = {
|
|
4642
4646
|
total_records: number;
|
|
@@ -6285,6 +6289,7 @@ export type DryRunRequest = {
|
|
|
6285
6289
|
};
|
|
6286
6290
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
6287
6291
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
6292
|
+
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6288
6293
|
export type EligibilityCheck = {
|
|
6289
6294
|
is_eligible: boolean;
|
|
6290
6295
|
restrictions: Array<string>;
|
|
@@ -9903,6 +9908,7 @@ export type Message = {
|
|
|
9903
9908
|
readonly thread: string;
|
|
9904
9909
|
role: MessageRoleEnum;
|
|
9905
9910
|
content: string;
|
|
9911
|
+
readonly tool_calls: unknown;
|
|
9906
9912
|
readonly sequence_index: number;
|
|
9907
9913
|
readonly replaces: string | null;
|
|
9908
9914
|
readonly created: string;
|
|
@@ -26267,6 +26273,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26267
26273
|
LLM_INFERENCES_API_URL?: string;
|
|
26268
26274
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
26269
26275
|
LLM_INFERENCES_MODEL?: string;
|
|
26276
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
26270
26277
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
26271
26278
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
26272
26279
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -26311,6 +26318,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26311
26318
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
26312
26319
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26313
26320
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26321
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
26314
26322
|
};
|
|
26315
26323
|
export type ConstanceSettingsRequestMultipart = {
|
|
26316
26324
|
SITE_NAME?: string;
|
|
@@ -26512,6 +26520,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26512
26520
|
LLM_INFERENCES_API_URL?: string;
|
|
26513
26521
|
LLM_INFERENCES_API_TOKEN?: string;
|
|
26514
26522
|
LLM_INFERENCES_MODEL?: string;
|
|
26523
|
+
LLM_COMPLETION_KWARGS?: string;
|
|
26515
26524
|
LLM_TOKEN_LIMIT_DAILY?: number;
|
|
26516
26525
|
LLM_TOKEN_LIMIT_WEEKLY?: number;
|
|
26517
26526
|
LLM_TOKEN_LIMIT_MONTHLY?: number;
|
|
@@ -26556,6 +26565,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26556
26565
|
ENABLE_PROJECT_DIGEST?: boolean;
|
|
26557
26566
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26558
26567
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26568
|
+
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
26559
26569
|
};
|
|
26560
26570
|
export type PaymentRequestForm = {
|
|
26561
26571
|
profile: string;
|