waldur-js-client 7.9.4 → 7.9.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.
- package/dist/types.gen.d.ts +48 -10
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7675,6 +7675,7 @@ export type OnboardingJustification = {
|
|
|
7675
7675
|
readonly verification_uuid: string;
|
|
7676
7676
|
readonly country: string;
|
|
7677
7677
|
readonly user: string;
|
|
7678
|
+
readonly user_full_name: string;
|
|
7678
7679
|
readonly legal_person_identifier: string;
|
|
7679
7680
|
readonly legal_name: string;
|
|
7680
7681
|
readonly error_message: string;
|
|
@@ -7691,6 +7692,18 @@ export type OnboardingJustification = {
|
|
|
7691
7692
|
*/
|
|
7692
7693
|
readonly staff_notes: string;
|
|
7693
7694
|
readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
|
|
7695
|
+
/**
|
|
7696
|
+
* Onboarding-specific data like intents, purposes extracted from checklist answers
|
|
7697
|
+
*/
|
|
7698
|
+
readonly onboarding_metadata: {
|
|
7699
|
+
[key: string]: unknown;
|
|
7700
|
+
};
|
|
7701
|
+
/**
|
|
7702
|
+
* Customer-related data submitted by the user via checklist answers
|
|
7703
|
+
*/
|
|
7704
|
+
readonly user_submitted_customer_data: {
|
|
7705
|
+
[key: string]: unknown;
|
|
7706
|
+
};
|
|
7694
7707
|
readonly created: string;
|
|
7695
7708
|
readonly modified: string;
|
|
7696
7709
|
};
|
|
@@ -7785,7 +7798,8 @@ export type OnboardingVerification = {
|
|
|
7785
7798
|
/**
|
|
7786
7799
|
* User requesting company onboarding
|
|
7787
7800
|
*/
|
|
7788
|
-
user:
|
|
7801
|
+
readonly user: string;
|
|
7802
|
+
readonly user_full_name: string;
|
|
7789
7803
|
/**
|
|
7790
7804
|
* ISO country code (e.g., 'EE' for Estonia)
|
|
7791
7805
|
*/
|
|
@@ -7828,7 +7842,7 @@ export type OnboardingVerification = {
|
|
|
7828
7842
|
/**
|
|
7829
7843
|
* Customer created after successful validation
|
|
7830
7844
|
*/
|
|
7831
|
-
readonly customer:
|
|
7845
|
+
readonly customer: string | null;
|
|
7832
7846
|
/**
|
|
7833
7847
|
* Onboarding-specific data like intents, purposes extracted from checklist answers
|
|
7834
7848
|
*/
|
|
@@ -7853,10 +7867,6 @@ export type OnboardingVerification = {
|
|
|
7853
7867
|
readonly modified: string;
|
|
7854
7868
|
};
|
|
7855
7869
|
export type OnboardingVerificationRequest = {
|
|
7856
|
-
/**
|
|
7857
|
-
* User requesting company onboarding
|
|
7858
|
-
*/
|
|
7859
|
-
user: number;
|
|
7860
7870
|
/**
|
|
7861
7871
|
* ISO country code (e.g., 'EE' for Estonia)
|
|
7862
7872
|
*/
|
|
@@ -10363,10 +10373,6 @@ export type PatchedOnboardingQuestionMetadataRequest = {
|
|
|
10363
10373
|
intent_field?: string;
|
|
10364
10374
|
};
|
|
10365
10375
|
export type PatchedOnboardingVerificationRequest = {
|
|
10366
|
-
/**
|
|
10367
|
-
* User requesting company onboarding
|
|
10368
|
-
*/
|
|
10369
|
-
user?: number;
|
|
10370
10376
|
/**
|
|
10371
10377
|
* ISO country code (e.g., 'EE' for Estonia)
|
|
10372
10378
|
*/
|
|
@@ -41112,6 +41118,14 @@ export type OnboardingJustificationsListData = {
|
|
|
41112
41118
|
* Number of results to return per page.
|
|
41113
41119
|
*/
|
|
41114
41120
|
page_size?: number;
|
|
41121
|
+
/**
|
|
41122
|
+
* User UUID
|
|
41123
|
+
*/
|
|
41124
|
+
user_uuid?: string;
|
|
41125
|
+
/**
|
|
41126
|
+
* Verification UUID
|
|
41127
|
+
*/
|
|
41128
|
+
verification_uuid?: string;
|
|
41115
41129
|
};
|
|
41116
41130
|
url: '/api/onboarding-justifications/';
|
|
41117
41131
|
};
|
|
@@ -41131,6 +41145,14 @@ export type OnboardingJustificationsCountData = {
|
|
|
41131
41145
|
* Number of results to return per page.
|
|
41132
41146
|
*/
|
|
41133
41147
|
page_size?: number;
|
|
41148
|
+
/**
|
|
41149
|
+
* User UUID
|
|
41150
|
+
*/
|
|
41151
|
+
user_uuid?: string;
|
|
41152
|
+
/**
|
|
41153
|
+
* Verification UUID
|
|
41154
|
+
*/
|
|
41155
|
+
verification_uuid?: string;
|
|
41134
41156
|
};
|
|
41135
41157
|
url: '/api/onboarding-justifications/';
|
|
41136
41158
|
};
|
|
@@ -41368,6 +41390,9 @@ export type OnboardingVerificationsListData = {
|
|
|
41368
41390
|
body?: never;
|
|
41369
41391
|
path?: never;
|
|
41370
41392
|
query?: {
|
|
41393
|
+
country?: string;
|
|
41394
|
+
legal_name?: string;
|
|
41395
|
+
legal_person_identifier?: string;
|
|
41371
41396
|
/**
|
|
41372
41397
|
* A page number within the paginated result set.
|
|
41373
41398
|
*/
|
|
@@ -41376,6 +41401,11 @@ export type OnboardingVerificationsListData = {
|
|
|
41376
41401
|
* Number of results to return per page.
|
|
41377
41402
|
*/
|
|
41378
41403
|
page_size?: number;
|
|
41404
|
+
status?: string;
|
|
41405
|
+
/**
|
|
41406
|
+
* User UUID
|
|
41407
|
+
*/
|
|
41408
|
+
user_uuid?: string;
|
|
41379
41409
|
};
|
|
41380
41410
|
url: '/api/onboarding-verifications/';
|
|
41381
41411
|
};
|
|
@@ -41387,6 +41417,9 @@ export type OnboardingVerificationsCountData = {
|
|
|
41387
41417
|
body?: never;
|
|
41388
41418
|
path?: never;
|
|
41389
41419
|
query?: {
|
|
41420
|
+
country?: string;
|
|
41421
|
+
legal_name?: string;
|
|
41422
|
+
legal_person_identifier?: string;
|
|
41390
41423
|
/**
|
|
41391
41424
|
* A page number within the paginated result set.
|
|
41392
41425
|
*/
|
|
@@ -41395,6 +41428,11 @@ export type OnboardingVerificationsCountData = {
|
|
|
41395
41428
|
* Number of results to return per page.
|
|
41396
41429
|
*/
|
|
41397
41430
|
page_size?: number;
|
|
41431
|
+
status?: string;
|
|
41432
|
+
/**
|
|
41433
|
+
* User UUID
|
|
41434
|
+
*/
|
|
41435
|
+
user_uuid?: string;
|
|
41398
41436
|
};
|
|
41399
41437
|
url: '/api/onboarding-verifications/';
|
|
41400
41438
|
};
|