waldur-js-client 7.8.8-dev.12 → 7.8.8-dev.14
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 +5 -1
- package/dist/types.gen.d.ts +39 -17
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -20325,7 +20325,11 @@ export const onboardingVerificationsRunValidation = (options) => {
|
|
|
20325
20325
|
}
|
|
20326
20326
|
],
|
|
20327
20327
|
url: '/api/onboarding-verifications/{uuid}/run_validation/',
|
|
20328
|
-
...options
|
|
20328
|
+
...options,
|
|
20329
|
+
headers: {
|
|
20330
|
+
'Content-Type': 'application/json',
|
|
20331
|
+
...options.headers
|
|
20332
|
+
}
|
|
20329
20333
|
});
|
|
20330
20334
|
};
|
|
20331
20335
|
/**
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -1994,6 +1994,11 @@ export type ConstanceSettings = {
|
|
|
1994
1994
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
1995
1995
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
1996
1996
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
1997
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
1998
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
1999
|
+
LLM_INFERENCES_API_URL?: string;
|
|
2000
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
2001
|
+
LLM_INFERENCES_MODEL?: string;
|
|
1997
2002
|
};
|
|
1998
2003
|
export type ConstanceSettingsRequest = {
|
|
1999
2004
|
SITE_NAME?: string;
|
|
@@ -2149,6 +2154,11 @@ export type ConstanceSettingsRequest = {
|
|
|
2149
2154
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
2150
2155
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
2151
2156
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
2157
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
2158
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
2159
|
+
LLM_INFERENCES_API_URL?: string;
|
|
2160
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
2161
|
+
LLM_INFERENCES_MODEL?: string;
|
|
2152
2162
|
};
|
|
2153
2163
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
2154
2164
|
export type CoreAuthToken = {
|
|
@@ -6398,22 +6408,6 @@ export type OnboardingCompanyValidationRequestRequest = {
|
|
|
6398
6408
|
* Indicates if the validation is to be performed manually
|
|
6399
6409
|
*/
|
|
6400
6410
|
is_manual_validation?: boolean;
|
|
6401
|
-
/**
|
|
6402
|
-
* Personal identifier (temporary workaround for Estonian civil_number)
|
|
6403
|
-
*/
|
|
6404
|
-
person_identifier?: string;
|
|
6405
|
-
/**
|
|
6406
|
-
* User's first name (temporary workaround for Austrian validation)
|
|
6407
|
-
*/
|
|
6408
|
-
first_name?: string;
|
|
6409
|
-
/**
|
|
6410
|
-
* User's last name (temporary workaround for Austrian validation)
|
|
6411
|
-
*/
|
|
6412
|
-
last_name?: string;
|
|
6413
|
-
/**
|
|
6414
|
-
* User's birth date (temporary workaround for Austrian validation)
|
|
6415
|
-
*/
|
|
6416
|
-
birth_date?: string | null;
|
|
6417
6411
|
};
|
|
6418
6412
|
export type OnboardingCountryChecklistConfiguration = {
|
|
6419
6413
|
readonly url: string;
|
|
@@ -6543,6 +6537,24 @@ export type OnboardingQuestionMetadataRequest = {
|
|
|
6543
6537
|
*/
|
|
6544
6538
|
intent_field?: string;
|
|
6545
6539
|
};
|
|
6540
|
+
export type OnboardingRunValidationRequestRequest = {
|
|
6541
|
+
/**
|
|
6542
|
+
* Personal identifier (temporary workaround for Estonian civil_number)
|
|
6543
|
+
*/
|
|
6544
|
+
person_identifier?: string;
|
|
6545
|
+
/**
|
|
6546
|
+
* User's first name (temporary workaround for Austrian validation)
|
|
6547
|
+
*/
|
|
6548
|
+
first_name?: string;
|
|
6549
|
+
/**
|
|
6550
|
+
* User's last name (temporary workaround for Austrian validation)
|
|
6551
|
+
*/
|
|
6552
|
+
last_name?: string;
|
|
6553
|
+
/**
|
|
6554
|
+
* User's birth date (temporary workaround for Austrian validation)
|
|
6555
|
+
*/
|
|
6556
|
+
birth_date?: string | null;
|
|
6557
|
+
};
|
|
6546
6558
|
export type OnboardingVerification = {
|
|
6547
6559
|
readonly uuid: string;
|
|
6548
6560
|
/**
|
|
@@ -15590,6 +15602,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
15590
15602
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15591
15603
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15592
15604
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15605
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
15606
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
15607
|
+
LLM_INFERENCES_API_URL?: string;
|
|
15608
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
15609
|
+
LLM_INFERENCES_MODEL?: string;
|
|
15593
15610
|
};
|
|
15594
15611
|
export type ConstanceSettingsRequestMultipart = {
|
|
15595
15612
|
SITE_NAME?: string;
|
|
@@ -15745,6 +15762,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
15745
15762
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15746
15763
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15747
15764
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15765
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
15766
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
15767
|
+
LLM_INFERENCES_API_URL?: string;
|
|
15768
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
15769
|
+
LLM_INFERENCES_MODEL?: string;
|
|
15748
15770
|
};
|
|
15749
15771
|
export type PaymentRequestForm = {
|
|
15750
15772
|
profile: string;
|
|
@@ -36447,7 +36469,7 @@ export type OnboardingVerificationsCreateCustomerResponses = {
|
|
|
36447
36469
|
};
|
|
36448
36470
|
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
36449
36471
|
export type OnboardingVerificationsRunValidationData = {
|
|
36450
|
-
body?:
|
|
36472
|
+
body?: OnboardingRunValidationRequestRequest;
|
|
36451
36473
|
path: {
|
|
36452
36474
|
uuid: string;
|
|
36453
36475
|
};
|