waldur-js-client 7.9.7-dev.1 → 7.9.7-dev.3
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 +42 -20
- package/dist/sdk.gen.js +100 -135
- package/dist/types.gen.d.ts +210 -214
- 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
|
*/
|
|
@@ -8995,45 +9009,6 @@ export type OnboardingCompanyValidationRequestRequest = {
|
|
|
8995
9009
|
* Company name (optional)
|
|
8996
9010
|
*/
|
|
8997
9011
|
legal_name?: string;
|
|
8998
|
-
/**
|
|
8999
|
-
* Indicates if the validation is to be performed manually
|
|
9000
|
-
*/
|
|
9001
|
-
is_manual_validation?: boolean;
|
|
9002
|
-
};
|
|
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
9012
|
};
|
|
9038
9013
|
export type OnboardingJustification = {
|
|
9039
9014
|
readonly uuid: string;
|
|
@@ -9167,9 +9142,9 @@ export type OnboardingVerification = {
|
|
|
9167
9142
|
readonly user: string;
|
|
9168
9143
|
readonly user_full_name: string;
|
|
9169
9144
|
/**
|
|
9170
|
-
* ISO country code (e.g., 'EE' for
|
|
9145
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
9171
9146
|
*/
|
|
9172
|
-
country
|
|
9147
|
+
country?: string;
|
|
9173
9148
|
/**
|
|
9174
9149
|
* Official company registration code (required for automatic validation)
|
|
9175
9150
|
*/
|
|
@@ -9235,9 +9210,9 @@ export type OnboardingVerification = {
|
|
|
9235
9210
|
};
|
|
9236
9211
|
export type OnboardingVerificationRequest = {
|
|
9237
9212
|
/**
|
|
9238
|
-
* ISO country code (e.g., 'EE' for
|
|
9213
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
9239
9214
|
*/
|
|
9240
|
-
country
|
|
9215
|
+
country?: string;
|
|
9241
9216
|
/**
|
|
9242
9217
|
* Official company registration code (required for automatic validation)
|
|
9243
9218
|
*/
|
|
@@ -11851,20 +11826,6 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
|
|
|
11851
11826
|
*/
|
|
11852
11827
|
service_provider_comment_url?: string;
|
|
11853
11828
|
};
|
|
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
11829
|
export type PatchedOnboardingJustificationRequest = {
|
|
11869
11830
|
verification?: string;
|
|
11870
11831
|
/**
|
|
@@ -11885,7 +11846,7 @@ export type PatchedOnboardingQuestionMetadataRequest = {
|
|
|
11885
11846
|
};
|
|
11886
11847
|
export type PatchedOnboardingVerificationRequest = {
|
|
11887
11848
|
/**
|
|
11888
|
-
* ISO country code (e.g., 'EE' for
|
|
11849
|
+
* ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
|
|
11889
11850
|
*/
|
|
11890
11851
|
country?: string;
|
|
11891
11852
|
/**
|
|
@@ -16627,6 +16588,84 @@ export type RmqConnection = {
|
|
|
16627
16588
|
source_ip: string;
|
|
16628
16589
|
readonly vhost: string;
|
|
16629
16590
|
};
|
|
16591
|
+
export type RmqPurgeResponse = {
|
|
16592
|
+
/**
|
|
16593
|
+
* Number of queues that were purged
|
|
16594
|
+
*/
|
|
16595
|
+
readonly purged_queues: number;
|
|
16596
|
+
/**
|
|
16597
|
+
* Total number of messages that were purged
|
|
16598
|
+
*/
|
|
16599
|
+
readonly purged_messages: number;
|
|
16600
|
+
};
|
|
16601
|
+
export type RmqQueueStats = {
|
|
16602
|
+
/**
|
|
16603
|
+
* Queue name (e.g., 'subscription_{uuid}_offering_{uuid}_{type}')
|
|
16604
|
+
*/
|
|
16605
|
+
readonly name: string;
|
|
16606
|
+
/**
|
|
16607
|
+
* Total number of messages in the queue
|
|
16608
|
+
*/
|
|
16609
|
+
readonly messages: number;
|
|
16610
|
+
/**
|
|
16611
|
+
* Number of messages ready for delivery
|
|
16612
|
+
*/
|
|
16613
|
+
readonly messages_ready: number;
|
|
16614
|
+
/**
|
|
16615
|
+
* Number of messages awaiting acknowledgement
|
|
16616
|
+
*/
|
|
16617
|
+
readonly messages_unacknowledged: number;
|
|
16618
|
+
/**
|
|
16619
|
+
* Number of active consumers for this queue
|
|
16620
|
+
*/
|
|
16621
|
+
readonly consumers: number;
|
|
16622
|
+
/**
|
|
16623
|
+
* Parsed subscription UUID from queue name
|
|
16624
|
+
*/
|
|
16625
|
+
readonly subscription_uuid: string | null;
|
|
16626
|
+
/**
|
|
16627
|
+
* Parsed offering UUID from queue name
|
|
16628
|
+
*/
|
|
16629
|
+
readonly offering_uuid: string | null;
|
|
16630
|
+
/**
|
|
16631
|
+
* Parsed object type from queue name (e.g., 'resource', 'order')
|
|
16632
|
+
*/
|
|
16633
|
+
readonly object_type: string | null;
|
|
16634
|
+
};
|
|
16635
|
+
export type RmqStatsError = {
|
|
16636
|
+
/**
|
|
16637
|
+
* Error message describing what went wrong
|
|
16638
|
+
*/
|
|
16639
|
+
readonly error: string;
|
|
16640
|
+
};
|
|
16641
|
+
export type RmqStatsResponse = {
|
|
16642
|
+
/**
|
|
16643
|
+
* List of vhosts with their subscription queues
|
|
16644
|
+
*/
|
|
16645
|
+
readonly vhosts: Array<RmqVhostStats>;
|
|
16646
|
+
/**
|
|
16647
|
+
* Total messages across all subscription queues
|
|
16648
|
+
*/
|
|
16649
|
+
readonly total_messages: number;
|
|
16650
|
+
/**
|
|
16651
|
+
* Total number of subscription queues
|
|
16652
|
+
*/
|
|
16653
|
+
readonly total_queues: number;
|
|
16654
|
+
};
|
|
16655
|
+
export type RmqStatsUser = {
|
|
16656
|
+
/**
|
|
16657
|
+
* Waldur user UUID
|
|
16658
|
+
*/
|
|
16659
|
+
readonly uuid: string;
|
|
16660
|
+
/**
|
|
16661
|
+
* Waldur username
|
|
16662
|
+
*/
|
|
16663
|
+
readonly username: string;
|
|
16664
|
+
/**
|
|
16665
|
+
* User's full name
|
|
16666
|
+
*/
|
|
16667
|
+
readonly full_name: string;
|
|
16668
|
+
};
|
|
16630
16669
|
export type RmqSubscription = {
|
|
16631
16670
|
readonly created: string;
|
|
16632
16671
|
readonly uuid: string;
|
|
@@ -16644,6 +16683,24 @@ export type RmqVHostStatsItem = {
|
|
|
16644
16683
|
waldur_user: RmqWaldurUser;
|
|
16645
16684
|
readonly subscriptions: Array<RmqSubscription>;
|
|
16646
16685
|
};
|
|
16686
|
+
export type RmqVhostStats = {
|
|
16687
|
+
/**
|
|
16688
|
+
* Virtual host name (corresponds to Waldur user UUID)
|
|
16689
|
+
*/
|
|
16690
|
+
readonly name: string;
|
|
16691
|
+
/**
|
|
16692
|
+
* Waldur user associated with this vhost
|
|
16693
|
+
*/
|
|
16694
|
+
user: RmqStatsUser | null;
|
|
16695
|
+
/**
|
|
16696
|
+
* List of subscription queues in this vhost
|
|
16697
|
+
*/
|
|
16698
|
+
readonly queues: Array<RmqQueueStats>;
|
|
16699
|
+
/**
|
|
16700
|
+
* Total messages across all queues in this vhost
|
|
16701
|
+
*/
|
|
16702
|
+
readonly total_messages: number;
|
|
16703
|
+
};
|
|
16647
16704
|
export type RmqWaldurUser = {
|
|
16648
16705
|
readonly full_name: string;
|
|
16649
16706
|
readonly username: string;
|
|
@@ -17882,6 +17939,7 @@ export type ToSConsentDashboard = {
|
|
|
17882
17939
|
readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
|
|
17883
17940
|
readonly tos_version_adoption: Array<VersionAdoption>;
|
|
17884
17941
|
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
17942
|
+
readonly accepted_consents_over_time: Array<TimeSeriesToSData>;
|
|
17885
17943
|
};
|
|
17886
17944
|
export type TokenRequest = {
|
|
17887
17945
|
/**
|
|
@@ -19977,7 +20035,8 @@ export type ConstanceSettingsRequestForm = {
|
|
|
19977
20035
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
19978
20036
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
19979
20037
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
19980
|
-
|
|
20038
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
20039
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
19981
20040
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
19982
20041
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
19983
20042
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -20170,7 +20229,8 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
20170
20229
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
20171
20230
|
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
20172
20231
|
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
20173
|
-
|
|
20232
|
+
ONBOARDING_SUPPORTED_COUNTRIES?: Array<string>;
|
|
20233
|
+
ONBOARDING_VALIDATION_METHODS?: Array<string>;
|
|
20174
20234
|
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
20175
20235
|
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
20176
20236
|
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
@@ -25452,13 +25512,13 @@ export type ChecklistsAdminListData = {
|
|
|
25452
25512
|
*
|
|
25453
25513
|
*
|
|
25454
25514
|
*/
|
|
25455
|
-
checklist_type?: '
|
|
25515
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25456
25516
|
/**
|
|
25457
25517
|
* Filter by multiple checklist types
|
|
25458
25518
|
*
|
|
25459
25519
|
*
|
|
25460
25520
|
*/
|
|
25461
|
-
checklist_type__in?: Array<'
|
|
25521
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
25462
25522
|
/**
|
|
25463
25523
|
* A page number within the paginated result set.
|
|
25464
25524
|
*/
|
|
@@ -25483,13 +25543,13 @@ export type ChecklistsAdminCountData = {
|
|
|
25483
25543
|
*
|
|
25484
25544
|
*
|
|
25485
25545
|
*/
|
|
25486
|
-
checklist_type?: '
|
|
25546
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25487
25547
|
/**
|
|
25488
25548
|
* Filter by multiple checklist types
|
|
25489
25549
|
*
|
|
25490
25550
|
*
|
|
25491
25551
|
*/
|
|
25492
|
-
checklist_type__in?: Array<'
|
|
25552
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
25493
25553
|
/**
|
|
25494
25554
|
* A page number within the paginated result set.
|
|
25495
25555
|
*/
|
|
@@ -25835,7 +25895,7 @@ export type ChecklistsAdminQuestionsListData = {
|
|
|
25835
25895
|
*
|
|
25836
25896
|
*
|
|
25837
25897
|
*/
|
|
25838
|
-
checklist_type?: '
|
|
25898
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25839
25899
|
checklist_uuid?: string;
|
|
25840
25900
|
/**
|
|
25841
25901
|
* Filter questions that have onboarding metadata mapping
|
|
@@ -25865,7 +25925,7 @@ export type ChecklistsAdminQuestionsCountData = {
|
|
|
25865
25925
|
*
|
|
25866
25926
|
*
|
|
25867
25927
|
*/
|
|
25868
|
-
checklist_type?: '
|
|
25928
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
25869
25929
|
checklist_uuid?: string;
|
|
25870
25930
|
/**
|
|
25871
25931
|
* Filter questions that have onboarding metadata mapping
|
|
@@ -26011,13 +26071,13 @@ export type ChecklistsAdminChecklistQuestionsData = {
|
|
|
26011
26071
|
*
|
|
26012
26072
|
*
|
|
26013
26073
|
*/
|
|
26014
|
-
checklist_type?: '
|
|
26074
|
+
checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
|
|
26015
26075
|
/**
|
|
26016
26076
|
* Filter by multiple checklist types
|
|
26017
26077
|
*
|
|
26018
26078
|
*
|
|
26019
26079
|
*/
|
|
26020
|
-
checklist_type__in?: Array<'
|
|
26080
|
+
checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
|
|
26021
26081
|
/**
|
|
26022
26082
|
* A page number within the paginated result set.
|
|
26023
26083
|
*/
|
|
@@ -44683,111 +44743,6 @@ export type NotificationMessagesEnableResponses = {
|
|
|
44683
44743
|
*/
|
|
44684
44744
|
200: unknown;
|
|
44685
44745
|
};
|
|
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
44746
|
export type OnboardingJustificationsListData = {
|
|
44792
44747
|
body?: never;
|
|
44793
44748
|
path?: never;
|
|
@@ -45125,7 +45080,7 @@ export type OnboardingVerificationsCountResponses = {
|
|
|
45125
45080
|
200: unknown;
|
|
45126
45081
|
};
|
|
45127
45082
|
export type OnboardingVerificationsCreateData = {
|
|
45128
|
-
body
|
|
45083
|
+
body?: OnboardingVerificationRequest;
|
|
45129
45084
|
path?: never;
|
|
45130
45085
|
query?: never;
|
|
45131
45086
|
url: '/api/onboarding-verifications/';
|
|
@@ -45174,7 +45129,7 @@ export type OnboardingVerificationsPartialUpdateResponses = {
|
|
|
45174
45129
|
};
|
|
45175
45130
|
export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
|
|
45176
45131
|
export type OnboardingVerificationsUpdateData = {
|
|
45177
|
-
body
|
|
45132
|
+
body?: OnboardingVerificationRequest;
|
|
45178
45133
|
path: {
|
|
45179
45134
|
uuid: string;
|
|
45180
45135
|
};
|
|
@@ -45192,22 +45147,16 @@ export type OnboardingVerificationsChecklistRetrieveData = {
|
|
|
45192
45147
|
};
|
|
45193
45148
|
query?: {
|
|
45194
45149
|
/**
|
|
45195
|
-
*
|
|
45150
|
+
* Type of checklist to retrieve (customer or intent). Defaults to intent.
|
|
45151
|
+
*/
|
|
45152
|
+
checklist_type?: 'customer' | 'intent';
|
|
45153
|
+
/**
|
|
45154
|
+
* If true, returns all questions including hidden ones.
|
|
45196
45155
|
*/
|
|
45197
45156
|
include_all?: boolean;
|
|
45198
45157
|
};
|
|
45199
45158
|
url: '/api/onboarding-verifications/{uuid}/checklist/';
|
|
45200
45159
|
};
|
|
45201
|
-
export type OnboardingVerificationsChecklistRetrieveErrors = {
|
|
45202
|
-
/**
|
|
45203
|
-
* No checklist configured
|
|
45204
|
-
*/
|
|
45205
|
-
400: unknown;
|
|
45206
|
-
/**
|
|
45207
|
-
* Object not found
|
|
45208
|
-
*/
|
|
45209
|
-
404: unknown;
|
|
45210
|
-
};
|
|
45211
45160
|
export type OnboardingVerificationsChecklistRetrieveResponses = {
|
|
45212
45161
|
200: ChecklistResponse;
|
|
45213
45162
|
};
|
|
@@ -45217,19 +45166,14 @@ export type OnboardingVerificationsCompletionStatusRetrieveData = {
|
|
|
45217
45166
|
path: {
|
|
45218
45167
|
uuid: string;
|
|
45219
45168
|
};
|
|
45220
|
-
query?:
|
|
45169
|
+
query?: {
|
|
45170
|
+
/**
|
|
45171
|
+
* Type of checklist to retrieve (customer or intent). Defaults to intent.
|
|
45172
|
+
*/
|
|
45173
|
+
checklist_type?: 'customer' | 'intent';
|
|
45174
|
+
};
|
|
45221
45175
|
url: '/api/onboarding-verifications/{uuid}/completion_status/';
|
|
45222
45176
|
};
|
|
45223
|
-
export type OnboardingVerificationsCompletionStatusRetrieveErrors = {
|
|
45224
|
-
/**
|
|
45225
|
-
* No checklist configured
|
|
45226
|
-
*/
|
|
45227
|
-
400: unknown;
|
|
45228
|
-
/**
|
|
45229
|
-
* Object not found
|
|
45230
|
-
*/
|
|
45231
|
-
404: unknown;
|
|
45232
|
-
};
|
|
45233
45177
|
export type OnboardingVerificationsCompletionStatusRetrieveResponses = {
|
|
45234
45178
|
200: ChecklistCompletion;
|
|
45235
45179
|
};
|
|
@@ -45266,20 +45210,42 @@ export type OnboardingVerificationsSubmitAnswersData = {
|
|
|
45266
45210
|
query?: never;
|
|
45267
45211
|
url: '/api/onboarding-verifications/{uuid}/submit_answers/';
|
|
45268
45212
|
};
|
|
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
45213
|
export type OnboardingVerificationsSubmitAnswersResponses = {
|
|
45280
|
-
200:
|
|
45214
|
+
200: OnboardingVerification;
|
|
45281
45215
|
};
|
|
45282
45216
|
export type OnboardingVerificationsSubmitAnswersResponse = OnboardingVerificationsSubmitAnswersResponses[keyof OnboardingVerificationsSubmitAnswersResponses];
|
|
45217
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveData = {
|
|
45218
|
+
body?: never;
|
|
45219
|
+
path?: never;
|
|
45220
|
+
query?: {
|
|
45221
|
+
/**
|
|
45222
|
+
* Type of checklist to retrieve (customer, intent, or all). Defaults to all.
|
|
45223
|
+
*/
|
|
45224
|
+
checklist_type?: 'customer' | 'intent' | 'all';
|
|
45225
|
+
};
|
|
45226
|
+
url: '/api/onboarding-verifications/available_checklists/';
|
|
45227
|
+
};
|
|
45228
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveResponses = {
|
|
45229
|
+
200: AvailableChecklistsResponse;
|
|
45230
|
+
};
|
|
45231
|
+
export type OnboardingVerificationsAvailableChecklistsRetrieveResponse = OnboardingVerificationsAvailableChecklistsRetrieveResponses[keyof OnboardingVerificationsAvailableChecklistsRetrieveResponses];
|
|
45232
|
+
export type OnboardingVerificationsAvailableChecklistsCountData = {
|
|
45233
|
+
body?: never;
|
|
45234
|
+
path?: never;
|
|
45235
|
+
query?: {
|
|
45236
|
+
/**
|
|
45237
|
+
* Type of checklist to retrieve (customer, intent, or all). Defaults to all.
|
|
45238
|
+
*/
|
|
45239
|
+
checklist_type?: 'customer' | 'intent' | 'all';
|
|
45240
|
+
};
|
|
45241
|
+
url: '/api/onboarding-verifications/available_checklists/';
|
|
45242
|
+
};
|
|
45243
|
+
export type OnboardingVerificationsAvailableChecklistsCountResponses = {
|
|
45244
|
+
/**
|
|
45245
|
+
* No response body
|
|
45246
|
+
*/
|
|
45247
|
+
200: unknown;
|
|
45248
|
+
};
|
|
45283
45249
|
export type OnboardingVerificationsChecklistTemplateRetrieveData = {
|
|
45284
45250
|
body?: never;
|
|
45285
45251
|
path?: never;
|
|
@@ -45323,7 +45289,7 @@ export type OnboardingVerificationsChecklistTemplateCountResponses = {
|
|
|
45323
45289
|
200: unknown;
|
|
45324
45290
|
};
|
|
45325
45291
|
export type OnboardingVerificationsStartVerificationData = {
|
|
45326
|
-
body
|
|
45292
|
+
body?: OnboardingCompanyValidationRequestRequest;
|
|
45327
45293
|
path?: never;
|
|
45328
45294
|
query?: never;
|
|
45329
45295
|
url: '/api/onboarding-verifications/start_verification/';
|
|
@@ -56537,6 +56503,36 @@ export type QueryResponses = {
|
|
|
56537
56503
|
200: Array<unknown>;
|
|
56538
56504
|
};
|
|
56539
56505
|
export type QueryResponse = QueryResponses[keyof QueryResponses];
|
|
56506
|
+
export type RabbitmqStatsDestroyData = {
|
|
56507
|
+
body?: never;
|
|
56508
|
+
path?: never;
|
|
56509
|
+
query?: never;
|
|
56510
|
+
url: '/api/rabbitmq-stats/';
|
|
56511
|
+
};
|
|
56512
|
+
export type RabbitmqStatsDestroyErrors = {
|
|
56513
|
+
400: RmqStatsError;
|
|
56514
|
+
404: RmqStatsError;
|
|
56515
|
+
503: RmqStatsError;
|
|
56516
|
+
};
|
|
56517
|
+
export type RabbitmqStatsDestroyError = RabbitmqStatsDestroyErrors[keyof RabbitmqStatsDestroyErrors];
|
|
56518
|
+
export type RabbitmqStatsDestroyResponses = {
|
|
56519
|
+
200: RmqPurgeResponse;
|
|
56520
|
+
};
|
|
56521
|
+
export type RabbitmqStatsDestroyResponse = RabbitmqStatsDestroyResponses[keyof RabbitmqStatsDestroyResponses];
|
|
56522
|
+
export type RabbitmqStatsRetrieveData = {
|
|
56523
|
+
body?: never;
|
|
56524
|
+
path?: never;
|
|
56525
|
+
query?: never;
|
|
56526
|
+
url: '/api/rabbitmq-stats/';
|
|
56527
|
+
};
|
|
56528
|
+
export type RabbitmqStatsRetrieveErrors = {
|
|
56529
|
+
503: RmqStatsError;
|
|
56530
|
+
};
|
|
56531
|
+
export type RabbitmqStatsRetrieveError = RabbitmqStatsRetrieveErrors[keyof RabbitmqStatsRetrieveErrors];
|
|
56532
|
+
export type RabbitmqStatsRetrieveResponses = {
|
|
56533
|
+
200: RmqStatsResponse;
|
|
56534
|
+
};
|
|
56535
|
+
export type RabbitmqStatsRetrieveResponse = RabbitmqStatsRetrieveResponses[keyof RabbitmqStatsRetrieveResponses];
|
|
56540
56536
|
export type RabbitmqUserStatsListData = {
|
|
56541
56537
|
body?: never;
|
|
56542
56538
|
path?: never;
|