waldur-js-client 7.9.7-dev.1 → 7.9.7-dev.2
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.d.ts +18 -20
- package/dist/sdk.gen.js +46 -135
- package/dist/types.gen.d.ts +83 -210
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -641,6 +641,14 @@ export type AvailableChecklist = {
|
|
|
641
641
|
readonly category_name: string | null;
|
|
642
642
|
readonly category_uuid: string | null;
|
|
643
643
|
};
|
|
644
|
+
export type AvailableChecklistsResponse = {
|
|
645
|
+
customer_checklist: {
|
|
646
|
+
[key: string]: unknown;
|
|
647
|
+
} | null;
|
|
648
|
+
intent_checklist: {
|
|
649
|
+
[key: string]: unknown;
|
|
650
|
+
} | null;
|
|
651
|
+
};
|
|
644
652
|
export type AwsImage = {
|
|
645
653
|
readonly url: string;
|
|
646
654
|
readonly uuid: string;
|
|
@@ -2522,7 +2530,7 @@ export type ChecklistTemplate = {
|
|
|
2522
2530
|
questions: Array<Question>;
|
|
2523
2531
|
initial_visible_questions: Array<Question>;
|
|
2524
2532
|
};
|
|
2525
|
-
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | '
|
|
2533
|
+
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
|
|
2526
2534
|
export type ClusterSecurityGroup = {
|
|
2527
2535
|
readonly uuid: string;
|
|
2528
2536
|
readonly name: string;
|
|
@@ -3029,7 +3037,8 @@ export type ConstanceSettings = {
|
|
|
3029
3037
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3030
3038
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
3031
3039
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
3032
|
-
|
|
3040
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
3041
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
3033
3042
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
3034
3043
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
3035
3044
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -3222,7 +3231,8 @@ export type ConstanceSettingsRequest = {
|
|
|
3222
3231
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
3223
3232
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
3224
3233
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
3225
|
-
|
|
3234
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
3235
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
3226
3236
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
3227
3237
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
3228
3238
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -8984,9 +8994,13 @@ export type OfferingUserUpdateRestrictionRequest = {
|
|
|
8984
8994
|
};
|
|
8985
8995
|
export type OnboardingCompanyValidationRequestRequest = {
|
|
8986
8996
|
/**
|
|
8987
|
-
*
|
|
8997
|
+
* Automatic validation method (e.g., 'ariregister', 'wirtschaftscompass', 'bolagsverket'). Leave empty for manual validation.
|
|
8988
8998
|
*/
|
|
8989
|
-
|
|
8999
|
+
validation_method?: ValidationMethodEnum | BlankEnum;
|
|
9000
|
+
/**
|
|
9001
|
+
* ISO country code (e.g., 'EE', 'AT') - optional, for display context
|
|
9002
|
+
*/
|
|
9003
|
+
country?: string;
|
|
8990
9004
|
/**
|
|
8991
9005
|
* Official company registration code
|
|
8992
9006
|
*/
|
|
@@ -9000,41 +9014,6 @@ export type OnboardingCompanyValidationRequestRequest = {
|
|
|
9000
9014
|
*/
|
|
9001
9015
|
is_manual_validation?: boolean;
|
|
9002
9016
|
};
|
|
9003
|
-
export type OnboardingCountryChecklistConfiguration = {
|
|
9004
|
-
readonly url: string;
|
|
9005
|
-
readonly uuid: string;
|
|
9006
|
-
/**
|
|
9007
|
-
* ISO country code (e.g., 'EE' for Estonia)
|
|
9008
|
-
*/
|
|
9009
|
-
country: string;
|
|
9010
|
-
/**
|
|
9011
|
-
* Checklist to use for this country's onboarding
|
|
9012
|
-
*/
|
|
9013
|
-
checklist: string;
|
|
9014
|
-
readonly checklist_name: string;
|
|
9015
|
-
readonly checklist_uuid: string;
|
|
9016
|
-
readonly questions: Array<QuestionAdmin>;
|
|
9017
|
-
/**
|
|
9018
|
-
* Whether this country configuration is active
|
|
9019
|
-
*/
|
|
9020
|
-
is_active?: boolean;
|
|
9021
|
-
readonly created: string;
|
|
9022
|
-
readonly modified: string;
|
|
9023
|
-
};
|
|
9024
|
-
export type OnboardingCountryChecklistConfigurationRequest = {
|
|
9025
|
-
/**
|
|
9026
|
-
* ISO country code (e.g., 'EE' for Estonia)
|
|
9027
|
-
*/
|
|
9028
|
-
country: string;
|
|
9029
|
-
/**
|
|
9030
|
-
* Checklist to use for this country's onboarding
|
|
9031
|
-
*/
|
|
9032
|
-
checklist: string;
|
|
9033
|
-
/**
|
|
9034
|
-
* Whether this country configuration is active
|
|
9035
|
-
*/
|
|
9036
|
-
is_active?: boolean;
|
|
9037
|
-
};
|
|
9038
9017
|
export type OnboardingJustification = {
|
|
9039
9018
|
readonly uuid: string;
|
|
9040
9019
|
verification: string;
|
|
@@ -9167,9 +9146,9 @@ export type OnboardingVerification = {
|
|
|
9167
9146
|
readonly user: string;
|
|
9168
9147
|
readonly user_full_name: string;
|
|
9169
9148
|
/**
|
|
9170
|
-
* ISO country code (e.g., 'EE' for
|
|
9149
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
9171
9150
|
*/
|
|
9172
|
-
country
|
|
9151
|
+
country?: string;
|
|
9173
9152
|
/**
|
|
9174
9153
|
* Official company registration code (required for automatic validation)
|
|
9175
9154
|
*/
|
|
@@ -9235,9 +9214,9 @@ export type OnboardingVerification = {
|
|
|
9235
9214
|
};
|
|
9236
9215
|
export type OnboardingVerificationRequest = {
|
|
9237
9216
|
/**
|
|
9238
|
-
* ISO country code (e.g., 'EE' for
|
|
9217
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
9239
9218
|
*/
|
|
9240
|
-
country
|
|
9219
|
+
country?: string;
|
|
9241
9220
|
/**
|
|
9242
9221
|
* Official company registration code (required for automatic validation)
|
|
9243
9222
|
*/
|
|
@@ -11851,20 +11830,6 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
11851
11830
|
*/
|
|
11852
11831
|
service_provider_comment_url?: string;
|
|
11853
11832
|
};
|
|
11854
|
-
export type PatchedOnboardingCountryChecklistConfigurationRequest = {
|
|
11855
|
-
/**
|
|
11856
|
-
* ISO country code (e.g., 'EE' for Estonia)
|
|
11857
|
-
*/
|
|
11858
|
-
country?: string;
|
|
11859
|
-
/**
|
|
11860
|
-
* Checklist to use for this country's onboarding
|
|
11861
|
-
*/
|
|
11862
|
-
checklist?: string;
|
|
11863
|
-
/**
|
|
11864
|
-
* Whether this country configuration is active
|
|
11865
|
-
*/
|
|
11866
|
-
is_active?: boolean;
|
|
11867
|
-
};
|
|
11868
11833
|
export type PatchedOnboardingJustificationRequest = {
|
|
11869
11834
|
verification?: string;
|
|
11870
11835
|
/**
|
|
@@ -11885,7 +11850,7 @@ export type PatchedOnboardingQuestionMetadataRequest = {
|
|
|
11885
11850
|
};
|
|
11886
11851
|
export type PatchedOnboardingVerificationRequest = {
|
|
11887
11852
|
/**
|
|
11888
|
-
* ISO country code (e.g., 'EE' for
|
|
11853
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
11889
11854
|
*/
|
|
11890
11855
|
country?: string;
|
|
11891
11856
|
/**
|
|
@@ -19977,7 +19942,8 @@ export type ConstanceSettingsRequestForm = {
|
|
|
19977
19942
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
19978
19943
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
19979
19944
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
19980
|
-
|
|
19945
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
19946
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
19981
19947
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
19982
19948
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
19983
19949
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -20170,7 +20136,8 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
20170
20136
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
20171
20137
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
20172
20138
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
20173
|
-
|
|
20139
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
20140
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
20174
20141
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
20175
20142
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
20176
20143
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -25452,13 +25419,13 @@ export type ChecklistsAdminListData = {
|
|
|
25452
25419
|
*
|
|
25453
25420
|
*
|
|
25454
25421
|
*/
|
|
25455
|
-
checklist_type?: '
|
|
25422
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25456
25423
|
/**
|
|
25457
25424
|
* Filter by multiple checklist types
|
|
25458
25425
|
*
|
|
25459
25426
|
*
|
|
25460
25427
|
*/
|
|
25461
|
-
checklist_type__in?: Array<'
|
|
25428
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
25462
25429
|
/**
|
|
25463
25430
|
* A page number within the paginated result set.
|
|
25464
25431
|
*/
|
|
@@ -25483,13 +25450,13 @@ export type ChecklistsAdminCountData = {
|
|
|
25483
25450
|
*
|
|
25484
25451
|
*
|
|
25485
25452
|
*/
|
|
25486
|
-
checklist_type?: '
|
|
25453
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25487
25454
|
/**
|
|
25488
25455
|
* Filter by multiple checklist types
|
|
25489
25456
|
*
|
|
25490
25457
|
*
|
|
25491
25458
|
*/
|
|
25492
|
-
checklist_type__in?: Array<'
|
|
25459
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
25493
25460
|
/**
|
|
25494
25461
|
* A page number within the paginated result set.
|
|
25495
25462
|
*/
|
|
@@ -25835,7 +25802,7 @@ export type ChecklistsAdminQuestionsListData = {
|
|
|
25835
25802
|
*
|
|
25836
25803
|
*
|
|
25837
25804
|
*/
|
|
25838
|
-
checklist_type?: '
|
|
25805
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25839
25806
|
checklist_uuid?: string;
|
|
25840
25807
|
/**
|
|
25841
25808
|
* Filter questions that have onboarding metadata mapping
|
|
@@ -25865,7 +25832,7 @@ export type ChecklistsAdminQuestionsCountData = {
|
|
|
25865
25832
|
*
|
|
25866
25833
|
*
|
|
25867
25834
|
*/
|
|
25868
|
-
checklist_type?: '
|
|
25835
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25869
25836
|
checklist_uuid?: string;
|
|
25870
25837
|
/**
|
|
25871
25838
|
* Filter questions that have onboarding metadata mapping
|
|
@@ -26011,13 +25978,13 @@ export type ChecklistsAdminChecklistQuestionsData = {
|
|
|
26011
25978
|
*
|
|
26012
25979
|
*
|
|
26013
25980
|
*/
|
|
26014
|
-
checklist_type?: '
|
|
25981
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
26015
25982
|
/**
|
|
26016
25983
|
* Filter by multiple checklist types
|
|
26017
25984
|
*
|
|
26018
25985
|
*
|
|
26019
25986
|
*/
|
|
26020
|
-
checklist_type__in?: Array<'
|
|
25987
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
26021
25988
|
/**
|
|
26022
25989
|
* A page number within the paginated result set.
|
|
26023
25990
|
*/
|
|
@@ -44683,111 +44650,6 @@ export type NotificationMessagesEnableResponses = {
|
|
|
44683
44650
|
*/
|
|
44684
44651
|
200: unknown;
|
|
44685
44652
|
};
|
|
44686
|
-
export type OnboardingCountryConfigsListData = {
|
|
44687
|
-
body?: never;
|
|
44688
|
-
path?: never;
|
|
44689
|
-
query?: {
|
|
44690
|
-
country?: string;
|
|
44691
|
-
is_active?: boolean;
|
|
44692
|
-
/**
|
|
44693
|
-
* A page number within the paginated result set.
|
|
44694
|
-
*/
|
|
44695
|
-
page?: number;
|
|
44696
|
-
/**
|
|
44697
|
-
* Number of results to return per page.
|
|
44698
|
-
*/
|
|
44699
|
-
page_size?: number;
|
|
44700
|
-
};
|
|
44701
|
-
url: '/api/onboarding-country-configs/';
|
|
44702
|
-
};
|
|
44703
|
-
export type OnboardingCountryConfigsListResponses = {
|
|
44704
|
-
200: Array<OnboardingCountryChecklistConfiguration>;
|
|
44705
|
-
};
|
|
44706
|
-
export type OnboardingCountryConfigsListResponse = OnboardingCountryConfigsListResponses[keyof OnboardingCountryConfigsListResponses];
|
|
44707
|
-
export type OnboardingCountryConfigsCountData = {
|
|
44708
|
-
body?: never;
|
|
44709
|
-
path?: never;
|
|
44710
|
-
query?: {
|
|
44711
|
-
country?: string;
|
|
44712
|
-
is_active?: boolean;
|
|
44713
|
-
/**
|
|
44714
|
-
* A page number within the paginated result set.
|
|
44715
|
-
*/
|
|
44716
|
-
page?: number;
|
|
44717
|
-
/**
|
|
44718
|
-
* Number of results to return per page.
|
|
44719
|
-
*/
|
|
44720
|
-
page_size?: number;
|
|
44721
|
-
};
|
|
44722
|
-
url: '/api/onboarding-country-configs/';
|
|
44723
|
-
};
|
|
44724
|
-
export type OnboardingCountryConfigsCountResponses = {
|
|
44725
|
-
/**
|
|
44726
|
-
* No response body
|
|
44727
|
-
*/
|
|
44728
|
-
200: unknown;
|
|
44729
|
-
};
|
|
44730
|
-
export type OnboardingCountryConfigsCreateData = {
|
|
44731
|
-
body: OnboardingCountryChecklistConfigurationRequest;
|
|
44732
|
-
path?: never;
|
|
44733
|
-
query?: never;
|
|
44734
|
-
url: '/api/onboarding-country-configs/';
|
|
44735
|
-
};
|
|
44736
|
-
export type OnboardingCountryConfigsCreateResponses = {
|
|
44737
|
-
201: OnboardingCountryChecklistConfiguration;
|
|
44738
|
-
};
|
|
44739
|
-
export type OnboardingCountryConfigsCreateResponse = OnboardingCountryConfigsCreateResponses[keyof OnboardingCountryConfigsCreateResponses];
|
|
44740
|
-
export type OnboardingCountryConfigsDestroyData = {
|
|
44741
|
-
body?: never;
|
|
44742
|
-
path: {
|
|
44743
|
-
uuid: string;
|
|
44744
|
-
};
|
|
44745
|
-
query?: never;
|
|
44746
|
-
url: '/api/onboarding-country-configs/{uuid}/';
|
|
44747
|
-
};
|
|
44748
|
-
export type OnboardingCountryConfigsDestroyResponses = {
|
|
44749
|
-
/**
|
|
44750
|
-
* No response body
|
|
44751
|
-
*/
|
|
44752
|
-
204: void;
|
|
44753
|
-
};
|
|
44754
|
-
export type OnboardingCountryConfigsDestroyResponse = OnboardingCountryConfigsDestroyResponses[keyof OnboardingCountryConfigsDestroyResponses];
|
|
44755
|
-
export type OnboardingCountryConfigsRetrieveData = {
|
|
44756
|
-
body?: never;
|
|
44757
|
-
path: {
|
|
44758
|
-
uuid: string;
|
|
44759
|
-
};
|
|
44760
|
-
query?: never;
|
|
44761
|
-
url: '/api/onboarding-country-configs/{uuid}/';
|
|
44762
|
-
};
|
|
44763
|
-
export type OnboardingCountryConfigsRetrieveResponses = {
|
|
44764
|
-
200: OnboardingCountryChecklistConfiguration;
|
|
44765
|
-
};
|
|
44766
|
-
export type OnboardingCountryConfigsRetrieveResponse = OnboardingCountryConfigsRetrieveResponses[keyof OnboardingCountryConfigsRetrieveResponses];
|
|
44767
|
-
export type OnboardingCountryConfigsPartialUpdateData = {
|
|
44768
|
-
body?: PatchedOnboardingCountryChecklistConfigurationRequest;
|
|
44769
|
-
path: {
|
|
44770
|
-
uuid: string;
|
|
44771
|
-
};
|
|
44772
|
-
query?: never;
|
|
44773
|
-
url: '/api/onboarding-country-configs/{uuid}/';
|
|
44774
|
-
};
|
|
44775
|
-
export type OnboardingCountryConfigsPartialUpdateResponses = {
|
|
44776
|
-
200: OnboardingCountryChecklistConfiguration;
|
|
44777
|
-
};
|
|
44778
|
-
export type OnboardingCountryConfigsPartialUpdateResponse = OnboardingCountryConfigsPartialUpdateResponses[keyof OnboardingCountryConfigsPartialUpdateResponses];
|
|
44779
|
-
export type OnboardingCountryConfigsUpdateData = {
|
|
44780
|
-
body: OnboardingCountryChecklistConfigurationRequest;
|
|
44781
|
-
path: {
|
|
44782
|
-
uuid: string;
|
|
44783
|
-
};
|
|
44784
|
-
query?: never;
|
|
44785
|
-
url: '/api/onboarding-country-configs/{uuid}/';
|
|
44786
|
-
};
|
|
44787
|
-
export type OnboardingCountryConfigsUpdateResponses = {
|
|
44788
|
-
200: OnboardingCountryChecklistConfiguration;
|
|
44789
|
-
};
|
|
44790
|
-
export type OnboardingCountryConfigsUpdateResponse = OnboardingCountryConfigsUpdateResponses[keyof OnboardingCountryConfigsUpdateResponses];
|
|
44791
44653
|
export type OnboardingJustificationsListData = {
|
|
44792
44654
|
body?: never;
|
|
44793
44655
|
path?: never;
|
|
@@ -45125,7 +44987,7 @@ export type OnboardingVerificationsCountResponses = {
|
|
|
45125
44987
|
200: unknown;
|
|
45126
44988
|
};
|
|
45127
44989
|
export type OnboardingVerificationsCreateData = {
|
|
45128
|
-
body
|
|
44990
|
+
body?: OnboardingVerificationRequest;
|
|
45129
44991
|
path?: never;
|
|
45130
44992
|
query?: never;
|
|
45131
44993
|
url: '/api/onboarding-verifications/';
|
|
@@ -45174,7 +45036,7 @@ export type OnboardingVerificationsPartialUpdateResponses = {
|
|
|
45174
45036
|
};
|
|
45175
45037
|
export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
|
|
45176
45038
|
export type OnboardingVerificationsUpdateData = {
|
|
45177
|
-
body
|
|
45039
|
+
body?: OnboardingVerificationRequest;
|
|
45178
45040
|
path: {
|
|
45179
45041
|
uuid: string;
|
|
45180
45042
|
};
|
|
@@ -45192,22 +45054,16 @@ export type OnboardingVerificationsChecklistRetrieveData = {
|
|
|
45192
45054
|
};
|
|
45193
45055
|
query?: {
|
|
45194
45056
|
/**
|
|
45195
|
-
*
|
|
45057
|
+
* Type of checklist to retrieve (customer or intent). Defaults to intent.
|
|
45058
|
+
*/
|
|
45059
|
+
checklist_type?: 'customer' | 'intent';
|
|
45060
|
+
/**
|
|
45061
|
+
* If true, returns all questions including hidden ones.
|
|
45196
45062
|
*/
|
|
45197
45063
|
include_all?: boolean;
|
|
45198
45064
|
};
|
|
45199
45065
|
url: '/api/onboarding-verifications/{uuid}/checklist/';
|
|
45200
45066
|
};
|
|
45201
|
-
export type OnboardingVerificationsChecklistRetrieveErrors = {
|
|
45202
|
-
/**
|
|
45203
|
-
* No checklist configured
|
|
45204
|
-
*/
|
|
45205
|
-
400: unknown;
|
|
45206
|
-
/**
|
|
45207
|
-
* Object not found
|
|
45208
|
-
*/
|
|
45209
|
-
404: unknown;
|
|
45210
|
-
};
|
|
45211
45067
|
export type OnboardingVerificationsChecklistRetrieveResponses = {
|
|
45212
45068
|
200: ChecklistResponse;
|
|
45213
45069
|
};
|
|
@@ -45217,19 +45073,14 @@ export type OnboardingVerificationsCompletionStatusRetrieveData = {
|
|
|
45217
45073
|
path: {
|
|
45218
45074
|
uuid: string;
|
|
45219
45075
|
};
|
|
45220
|
-
query?:
|
|
45076
|
+
query?: {
|
|
45077
|
+
/**
|
|
45078
|
+
* Type of checklist to retrieve (customer or intent). Defaults to intent.
|
|
45079
|
+
*/
|
|
45080
|
+
checklist_type?: 'customer' | 'intent';
|
|
45081
|
+
};
|
|
45221
45082
|
url: '/api/onboarding-verifications/{uuid}/completion_status/';
|
|
45222
45083
|
};
|
|
45223
|
-
export type OnboardingVerificationsCompletionStatusRetrieveErrors = {
|
|
45224
|
-
/**
|
|
45225
|
-
* No checklist configured
|
|
45226
|
-
*/
|
|
45227
|
-
400: unknown;
|
|
45228
|
-
/**
|
|
45229
|
-
* Object not found
|
|
45230
|
-
*/
|
|
45231
|
-
404: unknown;
|
|
45232
|
-
};
|
|
45233
45084
|
export type OnboardingVerificationsCompletionStatusRetrieveResponses = {
|
|
45234
45085
|
200: ChecklistCompletion;
|
|
45235
45086
|
};
|
|
@@ -45266,20 +45117,42 @@ export type OnboardingVerificationsSubmitAnswersData = {
|
|
|
45266
45117
|
query?: never;
|
|
45267
45118
|
url: '/api/onboarding-verifications/{uuid}/submit_answers/';
|
|
45268
45119
|
};
|
|
45269
|
-
export type OnboardingVerificationsSubmitAnswersErrors = {
|
|
45270
|
-
/**
|
|
45271
|
-
* Validation error or no checklist configured
|
|
45272
|
-
*/
|
|
45273
|
-
400: unknown;
|
|
45274
|
-
/**
|
|
45275
|
-
* Object not found
|
|
45276
|
-
*/
|
|
45277
|
-
404: unknown;
|
|
45278
|
-
};
|
|
45279
45120
|
export type OnboardingVerificationsSubmitAnswersResponses = {
|
|
45280
|
-
200:
|
|
45121
|
+
200: OnboardingVerification;
|
|
45281
45122
|
};
|
|
45282
45123
|
export type OnboardingVerificationsSubmitAnswersResponse = OnboardingVerificationsSubmitAnswersResponses[keyof OnboardingVerificationsSubmitAnswersResponses];
|
|
45124
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveData = {
|
|
45125
|
+
body?: never;
|
|
45126
|
+
path?: never;
|
|
45127
|
+
query?: {
|
|
45128
|
+
/**
|
|
45129
|
+
* Type of checklist to retrieve (customer, intent, or all). Defaults to all.
|
|
45130
|
+
*/
|
|
45131
|
+
checklist_type?: 'customer' | 'intent' | 'all';
|
|
45132
|
+
};
|
|
45133
|
+
url: '/api/onboarding-verifications/available_checklists/';
|
|
45134
|
+
};
|
|
45135
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveResponses = {
|
|
45136
|
+
200: AvailableChecklistsResponse;
|
|
45137
|
+
};
|
|
45138
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveResponse = OnboardingVerificationsAvailableChecklistsRetrieveResponses[keyof OnboardingVerificationsAvailableChecklistsRetrieveResponses];
|
|
45139
|
+
export type OnboardingVerificationsAvailableChecklistsCountData = {
|
|
45140
|
+
body?: never;
|
|
45141
|
+
path?: never;
|
|
45142
|
+
query?: {
|
|
45143
|
+
/**
|
|
45144
|
+
* Type of checklist to retrieve (customer, intent, or all). Defaults to all.
|
|
45145
|
+
*/
|
|
45146
|
+
checklist_type?: 'customer' | 'intent' | 'all';
|
|
45147
|
+
};
|
|
45148
|
+
url: '/api/onboarding-verifications/available_checklists/';
|
|
45149
|
+
};
|
|
45150
|
+
export type OnboardingVerificationsAvailableChecklistsCountResponses = {
|
|
45151
|
+
/**
|
|
45152
|
+
* No response body
|
|
45153
|
+
*/
|
|
45154
|
+
200: unknown;
|
|
45155
|
+
};
|
|
45283
45156
|
export type OnboardingVerificationsChecklistTemplateRetrieveData = {
|
|
45284
45157
|
body?: never;
|
|
45285
45158
|
path?: never;
|
|
@@ -45323,7 +45196,7 @@ export type OnboardingVerificationsChecklistTemplateCountResponses = {
|
|
|
45323
45196
|
200: unknown;
|
|
45324
45197
|
};
|
|
45325
45198
|
export type OnboardingVerificationsStartVerificationData = {
|
|
45326
|
-
body
|
|
45199
|
+
body?: OnboardingCompanyValidationRequestRequest;
|
|
45327
45200
|
path?: never;
|
|
45328
45201
|
query?: never;
|
|
45329
45202
|
url: '/api/onboarding-verifications/start_verification/';
|