wg-api-sdk 4.30.269 → 4.30.271
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/esm/index.d.mts +1004 -713
- package/dist/esm/index.mjs +1 -1
- package/dist/index.d.ts +1004 -713
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -2784,7 +2784,7 @@ interface paths {
|
|
|
2784
2784
|
patch?: never;
|
|
2785
2785
|
trace?: never;
|
|
2786
2786
|
};
|
|
2787
|
-
"/v1/api/connections/outlook/sync": {
|
|
2787
|
+
"/v1/api/connections/outlook/sync/activate": {
|
|
2788
2788
|
parameters: {
|
|
2789
2789
|
query?: never;
|
|
2790
2790
|
header?: never;
|
|
@@ -2794,7 +2794,45 @@ interface paths {
|
|
|
2794
2794
|
get?: never;
|
|
2795
2795
|
put?: never;
|
|
2796
2796
|
/** Activate Outlook Connection Sync */
|
|
2797
|
-
post: operations["
|
|
2797
|
+
post: operations["activate_outlook_connection_sync_v1_api_connections_outlook_sync_activate_post"];
|
|
2798
|
+
delete?: never;
|
|
2799
|
+
options?: never;
|
|
2800
|
+
head?: never;
|
|
2801
|
+
patch?: never;
|
|
2802
|
+
trace?: never;
|
|
2803
|
+
};
|
|
2804
|
+
"/v1/api/connections/outlook/sync/deactivate": {
|
|
2805
|
+
parameters: {
|
|
2806
|
+
query?: never;
|
|
2807
|
+
header?: never;
|
|
2808
|
+
path?: never;
|
|
2809
|
+
cookie?: never;
|
|
2810
|
+
};
|
|
2811
|
+
get?: never;
|
|
2812
|
+
put?: never;
|
|
2813
|
+
/** Deactivate Outlook Connection Sync */
|
|
2814
|
+
post: operations["deactivate_outlook_connection_sync_v1_api_connections_outlook_sync_deactivate_post"];
|
|
2815
|
+
delete?: never;
|
|
2816
|
+
options?: never;
|
|
2817
|
+
head?: never;
|
|
2818
|
+
patch?: never;
|
|
2819
|
+
trace?: never;
|
|
2820
|
+
};
|
|
2821
|
+
"/v1/api/connections/outlook/sync": {
|
|
2822
|
+
parameters: {
|
|
2823
|
+
query?: never;
|
|
2824
|
+
header?: never;
|
|
2825
|
+
path?: never;
|
|
2826
|
+
cookie?: never;
|
|
2827
|
+
};
|
|
2828
|
+
get?: never;
|
|
2829
|
+
put?: never;
|
|
2830
|
+
/**
|
|
2831
|
+
* Outlook Connection Sync
|
|
2832
|
+
* @description To activate to mailfolder use POST /v1/api/connections/outlook/sync/activate
|
|
2833
|
+
* This action is done every 15minutes automatically, but if you want to manually sync you can call this.
|
|
2834
|
+
*/
|
|
2835
|
+
post: operations["outlook_connection_sync_v1_api_connections_outlook_sync_post"];
|
|
2798
2836
|
delete?: never;
|
|
2799
2837
|
options?: never;
|
|
2800
2838
|
head?: never;
|
|
@@ -9244,7 +9282,7 @@ interface components {
|
|
|
9244
9282
|
* Timestamp
|
|
9245
9283
|
* Format: date-time
|
|
9246
9284
|
* @description Timestamp of when the error occured
|
|
9247
|
-
* @default 2026-02-
|
|
9285
|
+
* @default 2026-02-24T16:09:10.950844
|
|
9248
9286
|
*/
|
|
9249
9287
|
timestamp: string;
|
|
9250
9288
|
/**
|
|
@@ -51974,9 +52012,34 @@ interface components {
|
|
|
51974
52012
|
};
|
|
51975
52013
|
/** ActivateOutlookSyncCmd */
|
|
51976
52014
|
ActivateOutlookSyncCmd: {
|
|
51977
|
-
/**
|
|
52015
|
+
/**
|
|
52016
|
+
* Mailfolders
|
|
52017
|
+
* @description An array of outlook_id's, these are long strings.
|
|
52018
|
+
*/
|
|
51978
52019
|
mailfolders: string[];
|
|
51979
52020
|
};
|
|
52021
|
+
/** deactivate_outlook_sync_params */
|
|
52022
|
+
deactivate_outlook_sync_params: {
|
|
52023
|
+
/**
|
|
52024
|
+
* Broker Id
|
|
52025
|
+
* Format: uuid
|
|
52026
|
+
*/
|
|
52027
|
+
broker_id: string;
|
|
52028
|
+
data: components["schemas"]["DeactivateOutlookSyncCmd"];
|
|
52029
|
+
};
|
|
52030
|
+
/** DeactivateOutlookSyncCmd */
|
|
52031
|
+
DeactivateOutlookSyncCmd: {
|
|
52032
|
+
/**
|
|
52033
|
+
* Mailfolders
|
|
52034
|
+
* @description An array of outlook_id's, these are long strings.
|
|
52035
|
+
*/
|
|
52036
|
+
mailfolders: string[];
|
|
52037
|
+
/**
|
|
52038
|
+
* Delete Emails
|
|
52039
|
+
* @default false
|
|
52040
|
+
*/
|
|
52041
|
+
delete_emails: boolean;
|
|
52042
|
+
};
|
|
51980
52043
|
/** PromotionQueryModel */
|
|
51981
52044
|
PromotionQueryModel: {
|
|
51982
52045
|
/** Code */
|
|
@@ -53773,7 +53836,7 @@ interface components {
|
|
|
53773
53836
|
/**
|
|
53774
53837
|
* Quote Specifications
|
|
53775
53838
|
* @default {
|
|
53776
|
-
* "contract_commencement_date": "2026-02-
|
|
53839
|
+
* "contract_commencement_date": "2026-02-24"
|
|
53777
53840
|
* }
|
|
53778
53841
|
*/
|
|
53779
53842
|
quote_specifications: components["schemas"]["QuoteSpecification"];
|
|
@@ -64718,7 +64781,7 @@ interface components {
|
|
|
64718
64781
|
/** Documents */
|
|
64719
64782
|
documents: components["schemas"]["flows__models__anva__AnvaQuote__Document"][];
|
|
64720
64783
|
/** Possible Packages */
|
|
64721
|
-
possible_packages: components["schemas"]["
|
|
64784
|
+
possible_packages: components["schemas"]["flows__models__anva__AnvaQuote__PossiblePackage"][];
|
|
64722
64785
|
/** Success */
|
|
64723
64786
|
success: boolean;
|
|
64724
64787
|
/** Error */
|
|
@@ -64794,7 +64857,7 @@ interface components {
|
|
|
64794
64857
|
type?: components["schemas"]["PARTY_DOCUMENT_TYPE"];
|
|
64795
64858
|
};
|
|
64796
64859
|
/** PossiblePackage */
|
|
64797
|
-
|
|
64860
|
+
flows__models__anva__AnvaQuote__PossiblePackage: {
|
|
64798
64861
|
/** Name */
|
|
64799
64862
|
name: string;
|
|
64800
64863
|
/** Code */
|
|
@@ -64857,6 +64920,8 @@ interface components {
|
|
|
64857
64920
|
start_date: string;
|
|
64858
64921
|
/** Documents */
|
|
64859
64922
|
documents: components["schemas"]["flows__models__dias__Document"][];
|
|
64923
|
+
/** Possible Packages */
|
|
64924
|
+
possible_packages: components["schemas"]["flows__models__dias__DiasQuote__PossiblePackage"][];
|
|
64860
64925
|
/** Success */
|
|
64861
64926
|
success: boolean;
|
|
64862
64927
|
/** Errors */
|
|
@@ -64918,6 +64983,13 @@ interface components {
|
|
|
64918
64983
|
filename: string;
|
|
64919
64984
|
type?: components["schemas"]["PARTY_DOCUMENT_TYPE"];
|
|
64920
64985
|
};
|
|
64986
|
+
/** PossiblePackage */
|
|
64987
|
+
flows__models__dias__DiasQuote__PossiblePackage: {
|
|
64988
|
+
/** Name */
|
|
64989
|
+
name: string;
|
|
64990
|
+
/** Dias Id */
|
|
64991
|
+
dias_id: number;
|
|
64992
|
+
};
|
|
64921
64993
|
/** Warning */
|
|
64922
64994
|
flows__models__dias__Warning: {
|
|
64923
64995
|
/** Description */
|
|
@@ -66497,6 +66569,8 @@ interface components {
|
|
|
66497
66569
|
status: components["schemas"]["DIAS_FLOW_STATUS"];
|
|
66498
66570
|
/** Packages */
|
|
66499
66571
|
packages: components["schemas"]["DiasPackage"][];
|
|
66572
|
+
/** Closing Questions */
|
|
66573
|
+
closing_questions: components["schemas"]["DiasClosingQuestion"][];
|
|
66500
66574
|
insurance_company: components["schemas"]["DiasInsuranceCompany"];
|
|
66501
66575
|
/** Required Object Codes */
|
|
66502
66576
|
required_object_codes: number[];
|
|
@@ -66528,8 +66602,6 @@ interface components {
|
|
|
66528
66602
|
DIAS_FLOW_STATUS: "ACTIVE" | "UNDER_CONSTRUCTION" | "DISABLED";
|
|
66529
66603
|
/** DiasPackage */
|
|
66530
66604
|
DiasPackage: {
|
|
66531
|
-
/** Id */
|
|
66532
|
-
id: number;
|
|
66533
66605
|
/** Dias Id */
|
|
66534
66606
|
dias_id: number;
|
|
66535
66607
|
/** Name */
|
|
@@ -66537,6 +66609,19 @@ interface components {
|
|
|
66537
66609
|
/** Enabled */
|
|
66538
66610
|
enabled: boolean;
|
|
66539
66611
|
};
|
|
66612
|
+
/** DiasClosingQuestion */
|
|
66613
|
+
DiasClosingQuestion: {
|
|
66614
|
+
/** Dias Id */
|
|
66615
|
+
dias_id: number;
|
|
66616
|
+
/** Text */
|
|
66617
|
+
text: string;
|
|
66618
|
+
/** Order */
|
|
66619
|
+
order: number;
|
|
66620
|
+
/** Show Clarification On Confirmation */
|
|
66621
|
+
show_clarification_on_confirmation: boolean;
|
|
66622
|
+
/** Show Clarification On Rejection */
|
|
66623
|
+
show_clarification_on_rejection: boolean;
|
|
66624
|
+
};
|
|
66540
66625
|
/** handle_import_dias_products_params */
|
|
66541
66626
|
handle_import_dias_products_params: {
|
|
66542
66627
|
auth: components["schemas"]["Auth"];
|
|
@@ -71871,6 +71956,8 @@ type SchemaOutlookConnectionDetails = components['schemas']['OutlookConnectionDe
|
|
|
71871
71956
|
type SchemaBrokerConnectionOutlookMailFolderSyncDetails = components['schemas']['BrokerConnectionOutlookMailFolderSyncDetails'];
|
|
71872
71957
|
type SchemaActivateOutlookSyncParams = components['schemas']['activate_outlook_sync_params'];
|
|
71873
71958
|
type SchemaActivateOutlookSyncCmd = components['schemas']['ActivateOutlookSyncCmd'];
|
|
71959
|
+
type SchemaDeactivateOutlookSyncParams = components['schemas']['deactivate_outlook_sync_params'];
|
|
71960
|
+
type SchemaDeactivateOutlookSyncCmd = components['schemas']['DeactivateOutlookSyncCmd'];
|
|
71874
71961
|
type SchemaPromotionQueryModel = components['schemas']['PromotionQueryModel'];
|
|
71875
71962
|
type SchemaMultiAffiliationInfoQueryModel = components['schemas']['MultiAffiliationInfoQueryModel'];
|
|
71876
71963
|
type SchemaAffiliationInfo = components['schemas']['AffiliationInfo'];
|
|
@@ -72388,7 +72475,7 @@ type SchemaAnvaInsurance = components['schemas']['AnvaInsurance'];
|
|
|
72388
72475
|
type SchemaAnvaProductTag = components['schemas']['AnvaProductTag'];
|
|
72389
72476
|
type SchemaFlowsModelsAnvaAnvaQuoteCoverage = components['schemas']['flows__models__anva__AnvaQuote__Coverage'];
|
|
72390
72477
|
type SchemaFlowsModelsAnvaAnvaQuoteDocument = components['schemas']['flows__models__anva__AnvaQuote__Document'];
|
|
72391
|
-
type
|
|
72478
|
+
type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage = components['schemas']['flows__models__anva__AnvaQuote__PossiblePackage'];
|
|
72392
72479
|
type SchemaAnvaPackageDiscount = components['schemas']['AnvaPackageDiscount'];
|
|
72393
72480
|
type SchemaFlowsModelsAnvaWarning = components['schemas']['flows__models__anva__Warning'];
|
|
72394
72481
|
type SchemaDiasQuote = components['schemas']['DiasQuote'];
|
|
@@ -72396,6 +72483,7 @@ type SchemaDiasInsuranceCompany = components['schemas']['DiasInsuranceCompany'];
|
|
|
72396
72483
|
type SchemaDiasInsurance = components['schemas']['DiasInsurance'];
|
|
72397
72484
|
type SchemaFlowsModelsDiasDiasQuoteCoverage = components['schemas']['flows__models__dias__DiasQuote__Coverage'];
|
|
72398
72485
|
type SchemaFlowsModelsDiasDocument = components['schemas']['flows__models__dias__Document'];
|
|
72486
|
+
type SchemaFlowsModelsDiasDiasQuotePossiblePackage = components['schemas']['flows__models__dias__DiasQuote__PossiblePackage'];
|
|
72399
72487
|
type SchemaFlowsModelsDiasWarning = components['schemas']['flows__models__dias__Warning'];
|
|
72400
72488
|
type SchemaYellowHiveQuote = components['schemas']['YellowHiveQuote'];
|
|
72401
72489
|
type SchemaYellowHiveInsurance = components['schemas']['YellowHiveInsurance'];
|
|
@@ -72510,6 +72598,7 @@ type SchemaDiasProduct = components['schemas']['DiasProduct'];
|
|
|
72510
72598
|
type SchemaDiasCoverage = components['schemas']['DiasCoverage'];
|
|
72511
72599
|
type SchemaDiasFlowStatus = components['schemas']['DIAS_FLOW_STATUS'];
|
|
72512
72600
|
type SchemaDiasPackage = components['schemas']['DiasPackage'];
|
|
72601
|
+
type SchemaDiasClosingQuestion = components['schemas']['DiasClosingQuestion'];
|
|
72513
72602
|
type SchemaHandleImportDiasProductsParams = components['schemas']['handle_import_dias_products_params'];
|
|
72514
72603
|
type SchemaDiasProductImportCmd = components['schemas']['DiasProductImportCmd'];
|
|
72515
72604
|
type SchemaHandleUpdateDiasflowsProductByIdParams = components['schemas']['handle_update_diasflows_product_by_id_params'];
|
|
@@ -87734,7 +87823,7 @@ interface operations {
|
|
|
87734
87823
|
};
|
|
87735
87824
|
};
|
|
87736
87825
|
};
|
|
87737
|
-
|
|
87826
|
+
activate_outlook_connection_sync_v1_api_connections_outlook_sync_activate_post: {
|
|
87738
87827
|
parameters: {
|
|
87739
87828
|
query?: {
|
|
87740
87829
|
/**
|
|
@@ -87826,6 +87915,186 @@ interface operations {
|
|
|
87826
87915
|
};
|
|
87827
87916
|
};
|
|
87828
87917
|
};
|
|
87918
|
+
deactivate_outlook_connection_sync_v1_api_connections_outlook_sync_deactivate_post: {
|
|
87919
|
+
parameters: {
|
|
87920
|
+
query?: {
|
|
87921
|
+
/**
|
|
87922
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
87923
|
+
* @example EN
|
|
87924
|
+
*/
|
|
87925
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87926
|
+
/**
|
|
87927
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
87928
|
+
* @example EN
|
|
87929
|
+
*/
|
|
87930
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87931
|
+
};
|
|
87932
|
+
header?: {
|
|
87933
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
87934
|
+
"x-release"?: string;
|
|
87935
|
+
};
|
|
87936
|
+
path?: never;
|
|
87937
|
+
cookie?: never;
|
|
87938
|
+
};
|
|
87939
|
+
requestBody: {
|
|
87940
|
+
content: {
|
|
87941
|
+
"application/json": components["schemas"]["deactivate_outlook_sync_params"]["data"];
|
|
87942
|
+
};
|
|
87943
|
+
};
|
|
87944
|
+
responses: {
|
|
87945
|
+
/** @description Successful Response */
|
|
87946
|
+
200: {
|
|
87947
|
+
headers: {
|
|
87948
|
+
[name: string]: unknown;
|
|
87949
|
+
};
|
|
87950
|
+
content: {
|
|
87951
|
+
"application/json": components["schemas"]["app__handlers__nats__models__StatusResponse"];
|
|
87952
|
+
};
|
|
87953
|
+
};
|
|
87954
|
+
/** @description Bad Request */
|
|
87955
|
+
400: {
|
|
87956
|
+
headers: {
|
|
87957
|
+
[name: string]: unknown;
|
|
87958
|
+
};
|
|
87959
|
+
content: {
|
|
87960
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
87961
|
+
};
|
|
87962
|
+
};
|
|
87963
|
+
/** @description Unauthorized */
|
|
87964
|
+
401: {
|
|
87965
|
+
headers: {
|
|
87966
|
+
[name: string]: unknown;
|
|
87967
|
+
};
|
|
87968
|
+
content: {
|
|
87969
|
+
"application/json": components["schemas"]["Error_401"];
|
|
87970
|
+
};
|
|
87971
|
+
};
|
|
87972
|
+
/** @description Forbidden */
|
|
87973
|
+
403: {
|
|
87974
|
+
headers: {
|
|
87975
|
+
[name: string]: unknown;
|
|
87976
|
+
};
|
|
87977
|
+
content: {
|
|
87978
|
+
"application/json": components["schemas"]["Error_403"];
|
|
87979
|
+
};
|
|
87980
|
+
};
|
|
87981
|
+
/** @description Unprocessable Content */
|
|
87982
|
+
422: {
|
|
87983
|
+
headers: {
|
|
87984
|
+
[name: string]: unknown;
|
|
87985
|
+
};
|
|
87986
|
+
content: {
|
|
87987
|
+
"application/json": components["schemas"]["Error_422"];
|
|
87988
|
+
};
|
|
87989
|
+
};
|
|
87990
|
+
/** @description Too Many Requests */
|
|
87991
|
+
429: {
|
|
87992
|
+
headers: {
|
|
87993
|
+
[name: string]: unknown;
|
|
87994
|
+
};
|
|
87995
|
+
content: {
|
|
87996
|
+
"application/json": components["schemas"]["Error_429"];
|
|
87997
|
+
};
|
|
87998
|
+
};
|
|
87999
|
+
/** @description Internal Server Error */
|
|
88000
|
+
500: {
|
|
88001
|
+
headers: {
|
|
88002
|
+
[name: string]: unknown;
|
|
88003
|
+
};
|
|
88004
|
+
content: {
|
|
88005
|
+
"application/json": components["schemas"]["ServerError"];
|
|
88006
|
+
};
|
|
88007
|
+
};
|
|
88008
|
+
};
|
|
88009
|
+
};
|
|
88010
|
+
outlook_connection_sync_v1_api_connections_outlook_sync_post: {
|
|
88011
|
+
parameters: {
|
|
88012
|
+
query?: {
|
|
88013
|
+
/**
|
|
88014
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
88015
|
+
* @example EN
|
|
88016
|
+
*/
|
|
88017
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
88018
|
+
/**
|
|
88019
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
88020
|
+
* @example EN
|
|
88021
|
+
*/
|
|
88022
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
88023
|
+
};
|
|
88024
|
+
header?: {
|
|
88025
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
88026
|
+
"x-release"?: string;
|
|
88027
|
+
};
|
|
88028
|
+
path?: never;
|
|
88029
|
+
cookie?: never;
|
|
88030
|
+
};
|
|
88031
|
+
requestBody?: never;
|
|
88032
|
+
responses: {
|
|
88033
|
+
/** @description Successful Response */
|
|
88034
|
+
200: {
|
|
88035
|
+
headers: {
|
|
88036
|
+
[name: string]: unknown;
|
|
88037
|
+
};
|
|
88038
|
+
content: {
|
|
88039
|
+
"application/json": components["schemas"]["app__handlers__nats__models__StatusResponse"];
|
|
88040
|
+
};
|
|
88041
|
+
};
|
|
88042
|
+
/** @description Bad Request */
|
|
88043
|
+
400: {
|
|
88044
|
+
headers: {
|
|
88045
|
+
[name: string]: unknown;
|
|
88046
|
+
};
|
|
88047
|
+
content: {
|
|
88048
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
88049
|
+
};
|
|
88050
|
+
};
|
|
88051
|
+
/** @description Unauthorized */
|
|
88052
|
+
401: {
|
|
88053
|
+
headers: {
|
|
88054
|
+
[name: string]: unknown;
|
|
88055
|
+
};
|
|
88056
|
+
content: {
|
|
88057
|
+
"application/json": components["schemas"]["Error_401"];
|
|
88058
|
+
};
|
|
88059
|
+
};
|
|
88060
|
+
/** @description Forbidden */
|
|
88061
|
+
403: {
|
|
88062
|
+
headers: {
|
|
88063
|
+
[name: string]: unknown;
|
|
88064
|
+
};
|
|
88065
|
+
content: {
|
|
88066
|
+
"application/json": components["schemas"]["Error_403"];
|
|
88067
|
+
};
|
|
88068
|
+
};
|
|
88069
|
+
/** @description Unprocessable Content */
|
|
88070
|
+
422: {
|
|
88071
|
+
headers: {
|
|
88072
|
+
[name: string]: unknown;
|
|
88073
|
+
};
|
|
88074
|
+
content: {
|
|
88075
|
+
"application/json": components["schemas"]["Error_422"];
|
|
88076
|
+
};
|
|
88077
|
+
};
|
|
88078
|
+
/** @description Too Many Requests */
|
|
88079
|
+
429: {
|
|
88080
|
+
headers: {
|
|
88081
|
+
[name: string]: unknown;
|
|
88082
|
+
};
|
|
88083
|
+
content: {
|
|
88084
|
+
"application/json": components["schemas"]["Error_429"];
|
|
88085
|
+
};
|
|
88086
|
+
};
|
|
88087
|
+
/** @description Internal Server Error */
|
|
88088
|
+
500: {
|
|
88089
|
+
headers: {
|
|
88090
|
+
[name: string]: unknown;
|
|
88091
|
+
};
|
|
88092
|
+
content: {
|
|
88093
|
+
"application/json": components["schemas"]["ServerError"];
|
|
88094
|
+
};
|
|
88095
|
+
};
|
|
88096
|
+
};
|
|
88097
|
+
};
|
|
87829
88098
|
deprecated_get_anva_parties_v1_api_integrations_anva_parties_get: {
|
|
87830
88099
|
parameters: {
|
|
87831
88100
|
query: {
|
|
@@ -119456,52 +119725,52 @@ type Middleware = Middleware$1;
|
|
|
119456
119725
|
type ClientType = ReturnType<typeof createClient<paths>>;
|
|
119457
119726
|
declare const wgApiClient: (options: ClientOptions) => ClientType;
|
|
119458
119727
|
|
|
119459
|
-
declare const routeName$
|
|
119460
|
-
type GetWeatherInfoQueryParams = paths[typeof routeName$
|
|
119461
|
-
type GetWeatherInfoResponse = paths[typeof routeName$
|
|
119462
|
-
type GetWeatherInfoProps = paths[typeof routeName$
|
|
119728
|
+
declare const routeName$7Y = "/v1/api/weather/info";
|
|
119729
|
+
type GetWeatherInfoQueryParams = paths[typeof routeName$7Y]['get']['parameters']['query'];
|
|
119730
|
+
type GetWeatherInfoResponse = paths[typeof routeName$7Y]['get']['responses'][200]['content']['application/json'];
|
|
119731
|
+
type GetWeatherInfoProps = paths[typeof routeName$7Y]['get']['parameters'];
|
|
119463
119732
|
declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
|
|
119464
119733
|
|
|
119465
|
-
declare const routeName$
|
|
119466
|
-
type SearchCitiesByCountryQueryParams = paths[typeof routeName$
|
|
119467
|
-
type SearchCitiesByCountryResponse = paths[typeof routeName$
|
|
119468
|
-
type SearchCitiesByCountryProps = paths[typeof routeName$
|
|
119734
|
+
declare const routeName$7X = "/v1/api/address/cities";
|
|
119735
|
+
type SearchCitiesByCountryQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
|
|
119736
|
+
type SearchCitiesByCountryResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
|
|
119737
|
+
type SearchCitiesByCountryProps = paths[typeof routeName$7X]['get']['parameters'];
|
|
119469
119738
|
declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
|
|
119470
119739
|
|
|
119471
|
-
declare const routeName$
|
|
119472
|
-
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$
|
|
119473
|
-
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$
|
|
119474
|
-
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$
|
|
119740
|
+
declare const routeName$7W = "/v1/api/address/streets";
|
|
119741
|
+
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
|
|
119742
|
+
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
|
|
119743
|
+
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7W]['get']['parameters'];
|
|
119475
119744
|
declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
|
|
119476
119745
|
|
|
119477
|
-
declare const routeName$
|
|
119478
|
-
type SearchAddressesByCountryQueryParams = paths[typeof routeName$
|
|
119479
|
-
type SearchAddressesByCountryResponse = paths[typeof routeName$
|
|
119480
|
-
type SearchAddressesByCountryProps = paths[typeof routeName$
|
|
119746
|
+
declare const routeName$7V = "/v1/api/address/search";
|
|
119747
|
+
type SearchAddressesByCountryQueryParams = paths[typeof routeName$7V]['get']['parameters']['query'];
|
|
119748
|
+
type SearchAddressesByCountryResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
|
|
119749
|
+
type SearchAddressesByCountryProps = paths[typeof routeName$7V]['get']['parameters'];
|
|
119481
119750
|
declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
|
|
119482
119751
|
|
|
119483
|
-
declare const routeName$
|
|
119484
|
-
type GetAddressInfoQueryParams = paths[typeof routeName$
|
|
119485
|
-
type GetAddressInfoResponse = paths[typeof routeName$
|
|
119486
|
-
type GetAddressInfoProps = paths[typeof routeName$
|
|
119752
|
+
declare const routeName$7U = "/v1/api/address/info/premium";
|
|
119753
|
+
type GetAddressInfoQueryParams = paths[typeof routeName$7U]['get']['parameters']['query'];
|
|
119754
|
+
type GetAddressInfoResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
|
|
119755
|
+
type GetAddressInfoProps = paths[typeof routeName$7U]['get']['parameters'];
|
|
119487
119756
|
declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
|
|
119488
119757
|
|
|
119489
|
-
declare const routeName$
|
|
119490
|
-
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$
|
|
119491
|
-
type GetAddressInfoFreemiumResponse = paths[typeof routeName$
|
|
119492
|
-
type GetAddressInfoFreemiumProps = paths[typeof routeName$
|
|
119758
|
+
declare const routeName$7T = "/v1/api/address/info/freemium";
|
|
119759
|
+
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7T]['get']['parameters']['query'];
|
|
119760
|
+
type GetAddressInfoFreemiumResponse = paths[typeof routeName$7T]['get']['responses'][200]['content']['application/json'];
|
|
119761
|
+
type GetAddressInfoFreemiumProps = paths[typeof routeName$7T]['get']['parameters'];
|
|
119493
119762
|
declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
|
|
119494
119763
|
|
|
119495
|
-
declare const routeName$
|
|
119496
|
-
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$
|
|
119497
|
-
type GetAllAdvisoryReportsResponse = paths[typeof routeName$
|
|
119498
|
-
type GetAllAdvisoryReportsProps = paths[typeof routeName$
|
|
119764
|
+
declare const routeName$7S = "/v1/api/advisory-reports";
|
|
119765
|
+
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7S]['get']['parameters']['query'];
|
|
119766
|
+
type GetAllAdvisoryReportsResponse = paths[typeof routeName$7S]['get']['responses'][200]['content']['application/json'];
|
|
119767
|
+
type GetAllAdvisoryReportsProps = paths[typeof routeName$7S]['get']['parameters'];
|
|
119499
119768
|
declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
|
|
119500
119769
|
|
|
119501
|
-
declare const routeName$
|
|
119502
|
-
type CreateAdvisoryReportBody = paths[typeof routeName$
|
|
119503
|
-
type CreateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119504
|
-
type CreateAdvisoryReportResponse = paths[typeof routeName$
|
|
119770
|
+
declare const routeName$7R = "/v1/api/advisory-reports";
|
|
119771
|
+
type CreateAdvisoryReportBody = paths[typeof routeName$7R]['post']['requestBody']['content']['application/json'];
|
|
119772
|
+
type CreateAdvisoryReportQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
|
|
119773
|
+
type CreateAdvisoryReportResponse = paths[typeof routeName$7R]['post']['responses'][201]['content']['application/json'];
|
|
119505
119774
|
interface CreateAdvisoryReportProps {
|
|
119506
119775
|
body: CreateAdvisoryReportBody;
|
|
119507
119776
|
params: {
|
|
@@ -119510,17 +119779,17 @@ interface CreateAdvisoryReportProps {
|
|
|
119510
119779
|
}
|
|
119511
119780
|
declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
|
|
119512
119781
|
|
|
119513
|
-
declare const routeName$
|
|
119514
|
-
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119515
|
-
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119516
|
-
type GetAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119517
|
-
type GetAdvisoryReportByIdProps = paths[typeof routeName$
|
|
119782
|
+
declare const routeName$7Q = "/v1/api/advisory-reports/{report_id}";
|
|
119783
|
+
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7Q]['get']['parameters']['path'];
|
|
119784
|
+
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
|
|
119785
|
+
type GetAdvisoryReportByIdResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
|
|
119786
|
+
type GetAdvisoryReportByIdProps = paths[typeof routeName$7Q]['get']['parameters'];
|
|
119518
119787
|
declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
|
|
119519
119788
|
|
|
119520
|
-
declare const routeName$
|
|
119521
|
-
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
119522
|
-
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
119523
|
-
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
119789
|
+
declare const routeName$7P = "/v1/api/advisory-reports/{report_id}";
|
|
119790
|
+
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7P]['delete']['parameters']['path'];
|
|
119791
|
+
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7P]['delete']['parameters']['query'];
|
|
119792
|
+
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7P]['delete']['responses'][200]['content']['application/json'];
|
|
119524
119793
|
interface DeleteAdvisoryReportRevisionProps {
|
|
119525
119794
|
params: {
|
|
119526
119795
|
query: DeleteAdvisoryReportRevisionQueryParams;
|
|
@@ -119529,11 +119798,11 @@ interface DeleteAdvisoryReportRevisionProps {
|
|
|
119529
119798
|
}
|
|
119530
119799
|
declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
|
|
119531
119800
|
|
|
119532
|
-
declare const routeName$
|
|
119533
|
-
type UpdateAdvisoryReportBody = paths[typeof routeName$
|
|
119534
|
-
type UpdateAdvisoryReportPathParams = paths[typeof routeName$
|
|
119535
|
-
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119536
|
-
type UpdateAdvisoryReportResponse = paths[typeof routeName$
|
|
119801
|
+
declare const routeName$7O = "/v1/api/advisory-reports/{report_id}";
|
|
119802
|
+
type UpdateAdvisoryReportBody = paths[typeof routeName$7O]['patch']['requestBody']['content']['application/json'];
|
|
119803
|
+
type UpdateAdvisoryReportPathParams = paths[typeof routeName$7O]['patch']['parameters']['path'];
|
|
119804
|
+
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7O]['patch']['parameters']['query'];
|
|
119805
|
+
type UpdateAdvisoryReportResponse = paths[typeof routeName$7O]['patch']['responses'][200]['content']['application/json'];
|
|
119537
119806
|
interface UpdateAdvisoryReportProps {
|
|
119538
119807
|
body: UpdateAdvisoryReportBody;
|
|
119539
119808
|
params: {
|
|
@@ -119543,18 +119812,18 @@ interface UpdateAdvisoryReportProps {
|
|
|
119543
119812
|
}
|
|
119544
119813
|
declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
|
|
119545
119814
|
|
|
119546
|
-
declare const routeName$
|
|
119547
|
-
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
119548
|
-
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
119549
|
-
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
119550
|
-
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
119815
|
+
declare const routeName$7N = "/v1/api/advisory-reports/{report_id}/events";
|
|
119816
|
+
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7N]['get']['parameters']['path'];
|
|
119817
|
+
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
|
|
119818
|
+
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
|
|
119819
|
+
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7N]['get']['parameters'];
|
|
119551
119820
|
declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
|
|
119552
119821
|
|
|
119553
|
-
declare const routeName$
|
|
119554
|
-
type SendAdvisoryReportAsMailBody = paths[typeof routeName$
|
|
119555
|
-
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$
|
|
119556
|
-
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$
|
|
119557
|
-
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$
|
|
119822
|
+
declare const routeName$7M = "/v1/api/advisory-reports/{report_id}/email-inquiries";
|
|
119823
|
+
type SendAdvisoryReportAsMailBody = paths[typeof routeName$7M]['post']['requestBody']['content']['application/json'];
|
|
119824
|
+
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7M]['post']['parameters']['path'];
|
|
119825
|
+
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7M]['post']['parameters']['query'];
|
|
119826
|
+
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7M]['post']['responses'][201]['content']['application/json'];
|
|
119558
119827
|
interface SendAdvisoryReportAsMailProps {
|
|
119559
119828
|
body: SendAdvisoryReportAsMailBody;
|
|
119560
119829
|
params: {
|
|
@@ -119564,10 +119833,10 @@ interface SendAdvisoryReportAsMailProps {
|
|
|
119564
119833
|
}
|
|
119565
119834
|
declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
|
|
119566
119835
|
|
|
119567
|
-
declare const routeName$
|
|
119568
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119569
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119570
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119836
|
+
declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/docx";
|
|
119837
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7L]['post']['parameters']['path'];
|
|
119838
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7L]['post']['parameters']['query'];
|
|
119839
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7L]['post']['responses'][200]['content']['application/json'];
|
|
119571
119840
|
interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
119572
119841
|
params: {
|
|
119573
119842
|
query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
|
|
@@ -119576,17 +119845,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
|
119576
119845
|
}
|
|
119577
119846
|
declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
|
|
119578
119847
|
|
|
119579
|
-
declare const routeName$
|
|
119580
|
-
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119581
|
-
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119582
|
-
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119583
|
-
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$
|
|
119848
|
+
declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
119849
|
+
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7K]['get']['parameters']['path'];
|
|
119850
|
+
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
|
|
119851
|
+
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7K]['get']['responses'][307]['content']['application/json'];
|
|
119852
|
+
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7K]['get']['parameters'];
|
|
119584
119853
|
declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
|
|
119585
119854
|
|
|
119586
|
-
declare const routeName$
|
|
119587
|
-
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119588
|
-
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119589
|
-
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119855
|
+
declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
119856
|
+
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7J]['post']['parameters']['path'];
|
|
119857
|
+
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7J]['post']['parameters']['query'];
|
|
119858
|
+
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7J]['post']['responses'][200]['content']['application/json'];
|
|
119590
119859
|
interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
119591
119860
|
params: {
|
|
119592
119861
|
query: GeneratePdfOfAdvisoryReportByIdQueryParams;
|
|
@@ -119595,10 +119864,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
|
119595
119864
|
}
|
|
119596
119865
|
declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
|
|
119597
119866
|
|
|
119598
|
-
declare const routeName$
|
|
119599
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$
|
|
119600
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$
|
|
119601
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$
|
|
119867
|
+
declare const routeName$7I = "/v1/api/advisory-report-front-page-pdf";
|
|
119868
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7I]['post']['requestBody']['content']['application/json'];
|
|
119869
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7I]['post']['parameters']['query'];
|
|
119870
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7I]['post']['responses'][201]['content']['application/json'];
|
|
119602
119871
|
interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
119603
119872
|
body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
|
|
119604
119873
|
params: {
|
|
@@ -119607,11 +119876,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
|
119607
119876
|
}
|
|
119608
119877
|
declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
|
|
119609
119878
|
|
|
119610
|
-
declare const routeName$
|
|
119611
|
-
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$
|
|
119612
|
-
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$
|
|
119613
|
-
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119614
|
-
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$
|
|
119879
|
+
declare const routeName$7H = "/v1/api/advisory-reports/{report_id}/acceptances";
|
|
119880
|
+
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
|
|
119881
|
+
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7H]['post']['parameters']['path'];
|
|
119882
|
+
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
|
|
119883
|
+
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7H]['post']['responses'][200]['content']['application/json'];
|
|
119615
119884
|
interface AcceptOrRejectAnAdvisoryReportProps {
|
|
119616
119885
|
body: AcceptOrRejectAnAdvisoryReportBody;
|
|
119617
119886
|
params: {
|
|
@@ -119621,11 +119890,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
|
|
|
119621
119890
|
}
|
|
119622
119891
|
declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
|
|
119623
119892
|
|
|
119624
|
-
declare const routeName$
|
|
119625
|
-
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$
|
|
119626
|
-
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$
|
|
119627
|
-
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119628
|
-
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$
|
|
119893
|
+
declare const routeName$7G = "/v1/api/advisory-reports/{report_id}/conversations";
|
|
119894
|
+
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
|
|
119895
|
+
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7G]['post']['parameters']['path'];
|
|
119896
|
+
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
|
|
119897
|
+
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7G]['post']['responses'][201]['content']['application/json'];
|
|
119629
119898
|
interface LinkConversationToAdvisoryReportProps {
|
|
119630
119899
|
body: LinkConversationToAdvisoryReportBody;
|
|
119631
119900
|
params: {
|
|
@@ -119635,11 +119904,11 @@ interface LinkConversationToAdvisoryReportProps {
|
|
|
119635
119904
|
}
|
|
119636
119905
|
declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
|
|
119637
119906
|
|
|
119638
|
-
declare const routeName$
|
|
119639
|
-
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$
|
|
119640
|
-
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$
|
|
119641
|
-
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$
|
|
119642
|
-
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$
|
|
119907
|
+
declare const routeName$7F = "/v2/api/advisory-reports/{report_id}/revisions";
|
|
119908
|
+
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
|
|
119909
|
+
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
|
|
119910
|
+
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
|
|
119911
|
+
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
|
|
119643
119912
|
interface CreateAdvisoryReportRevisionV2Props {
|
|
119644
119913
|
body: CreateAdvisoryReportRevisionV2Body;
|
|
119645
119914
|
params: {
|
|
@@ -119649,11 +119918,11 @@ interface CreateAdvisoryReportRevisionV2Props {
|
|
|
119649
119918
|
}
|
|
119650
119919
|
declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
|
|
119651
119920
|
|
|
119652
|
-
declare const routeName$
|
|
119653
|
-
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$
|
|
119654
|
-
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
119655
|
-
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
119656
|
-
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
119921
|
+
declare const routeName$7E = "/v1/api/advisory-reports/{report_id}/revisions";
|
|
119922
|
+
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7E]['post']['requestBody']['content']['application/json'];
|
|
119923
|
+
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
|
|
119924
|
+
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
|
|
119925
|
+
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7E]['post']['responses'][201]['content']['application/json'];
|
|
119657
119926
|
interface CreateAdvisoryReportRevisionProps {
|
|
119658
119927
|
body: CreateAdvisoryReportRevisionBody;
|
|
119659
119928
|
params: {
|
|
@@ -119663,10 +119932,10 @@ interface CreateAdvisoryReportRevisionProps {
|
|
|
119663
119932
|
}
|
|
119664
119933
|
declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
|
|
119665
119934
|
|
|
119666
|
-
declare const routeName$
|
|
119667
|
-
type DeleteAdvisoryReportPathParams = paths[typeof routeName$
|
|
119668
|
-
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119669
|
-
type DeleteAdvisoryReportResponse = paths[typeof routeName$
|
|
119935
|
+
declare const routeName$7D = "/v2/api/advisory-reports/{report_id}";
|
|
119936
|
+
type DeleteAdvisoryReportPathParams = paths[typeof routeName$7D]['delete']['parameters']['path'];
|
|
119937
|
+
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7D]['delete']['parameters']['query'];
|
|
119938
|
+
type DeleteAdvisoryReportResponse = paths[typeof routeName$7D]['delete']['responses'][200]['content']['application/json'];
|
|
119670
119939
|
interface DeleteAdvisoryReportProps {
|
|
119671
119940
|
params: {
|
|
119672
119941
|
query: DeleteAdvisoryReportQueryParams;
|
|
@@ -119675,11 +119944,11 @@ interface DeleteAdvisoryReportProps {
|
|
|
119675
119944
|
}
|
|
119676
119945
|
declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
|
|
119677
119946
|
|
|
119678
|
-
declare const routeName$
|
|
119679
|
-
type PutClausesForReportBody = paths[typeof routeName$
|
|
119680
|
-
type PutClausesForReportPathParams = paths[typeof routeName$
|
|
119681
|
-
type PutClausesForReportQueryParams = paths[typeof routeName$
|
|
119682
|
-
type PutClausesForReportResponse = paths[typeof routeName$
|
|
119947
|
+
declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/clauses";
|
|
119948
|
+
type PutClausesForReportBody = paths[typeof routeName$7C]['put']['requestBody']['content']['application/json'];
|
|
119949
|
+
type PutClausesForReportPathParams = paths[typeof routeName$7C]['put']['parameters']['path'];
|
|
119950
|
+
type PutClausesForReportQueryParams = paths[typeof routeName$7C]['put']['parameters']['query'];
|
|
119951
|
+
type PutClausesForReportResponse = paths[typeof routeName$7C]['put']['responses'][200]['content']['application/json'];
|
|
119683
119952
|
interface PutClausesForReportProps {
|
|
119684
119953
|
body: PutClausesForReportBody;
|
|
119685
119954
|
params: {
|
|
@@ -119689,9 +119958,9 @@ interface PutClausesForReportProps {
|
|
|
119689
119958
|
}
|
|
119690
119959
|
declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
|
|
119691
119960
|
|
|
119692
|
-
declare const routeName$
|
|
119693
|
-
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$
|
|
119694
|
-
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$
|
|
119961
|
+
declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/personalise-advices";
|
|
119962
|
+
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7B]['post']['parameters']['path'];
|
|
119963
|
+
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7B]['post']['responses'][200]['content']['application/json'];
|
|
119695
119964
|
interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
119696
119965
|
params: {
|
|
119697
119966
|
path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
|
|
@@ -119699,18 +119968,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
|
119699
119968
|
}
|
|
119700
119969
|
declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
|
|
119701
119970
|
|
|
119702
|
-
declare const routeName$
|
|
119703
|
-
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
119704
|
-
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
119705
|
-
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
119706
|
-
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
119971
|
+
declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
119972
|
+
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7A]['get']['parameters']['path'];
|
|
119973
|
+
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7A]['get']['parameters']['query'];
|
|
119974
|
+
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7A]['get']['responses'][200]['content']['application/json'];
|
|
119975
|
+
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7A]['get']['parameters'];
|
|
119707
119976
|
declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
|
|
119708
119977
|
|
|
119709
|
-
declare const routeName$
|
|
119710
|
-
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$
|
|
119711
|
-
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$
|
|
119712
|
-
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$
|
|
119713
|
-
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$
|
|
119978
|
+
declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
119979
|
+
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7z]['put']['requestBody']['content']['application/json'];
|
|
119980
|
+
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7z]['put']['parameters']['path'];
|
|
119981
|
+
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7z]['put']['parameters']['query'];
|
|
119982
|
+
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7z]['put']['responses'][200]['content']['application/json'];
|
|
119714
119983
|
interface CreateAdvisoryReportStepSettingsProps {
|
|
119715
119984
|
body: CreateAdvisoryReportStepSettingsBody;
|
|
119716
119985
|
params: {
|
|
@@ -119720,11 +119989,11 @@ interface CreateAdvisoryReportStepSettingsProps {
|
|
|
119720
119989
|
}
|
|
119721
119990
|
declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
|
|
119722
119991
|
|
|
119723
|
-
declare const routeName$
|
|
119724
|
-
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119725
|
-
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119726
|
-
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119727
|
-
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119992
|
+
declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/risk-domains";
|
|
119993
|
+
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
|
|
119994
|
+
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
|
|
119995
|
+
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
|
|
119996
|
+
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
|
|
119728
119997
|
interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
119729
119998
|
body: CreateRiskDomainForAdvisoryReportByIdBody;
|
|
119730
119999
|
params: {
|
|
@@ -119734,10 +120003,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
|
119734
120003
|
}
|
|
119735
120004
|
declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
|
|
119736
120005
|
|
|
119737
|
-
declare const routeName$
|
|
119738
|
-
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119739
|
-
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119740
|
-
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120006
|
+
declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
|
|
120007
|
+
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7x]['delete']['parameters']['path'];
|
|
120008
|
+
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7x]['delete']['parameters']['query'];
|
|
120009
|
+
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7x]['delete']['responses'][200]['content']['application/json'];
|
|
119741
120010
|
interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
119742
120011
|
params: {
|
|
119743
120012
|
query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
|
|
@@ -119746,11 +120015,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
|
119746
120015
|
}
|
|
119747
120016
|
declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
|
|
119748
120017
|
|
|
119749
|
-
declare const routeName$
|
|
119750
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119751
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119752
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119753
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120018
|
+
declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
|
|
120019
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
|
|
120020
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
|
|
120021
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
|
|
120022
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
|
|
119754
120023
|
interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119755
120024
|
body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
119756
120025
|
params: {
|
|
@@ -119760,10 +120029,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119760
120029
|
}
|
|
119761
120030
|
declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119762
120031
|
|
|
119763
|
-
declare const routeName$
|
|
119764
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119765
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119766
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120032
|
+
declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
120033
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7v]['delete']['parameters']['path'];
|
|
120034
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7v]['delete']['parameters']['query'];
|
|
120035
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7v]['delete']['responses'][200]['content']['application/json'];
|
|
119767
120036
|
interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119768
120037
|
params: {
|
|
119769
120038
|
query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
|
|
@@ -119772,11 +120041,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119772
120041
|
}
|
|
119773
120042
|
declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119774
120043
|
|
|
119775
|
-
declare const routeName$
|
|
119776
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119777
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119778
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119779
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120044
|
+
declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
120045
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7u]['patch']['requestBody']['content']['application/json'];
|
|
120046
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7u]['patch']['parameters']['path'];
|
|
120047
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7u]['patch']['parameters']['query'];
|
|
120048
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7u]['patch']['responses'][201]['content']['application/json'];
|
|
119780
120049
|
interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119781
120050
|
body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
119782
120051
|
params: {
|
|
@@ -119786,11 +120055,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119786
120055
|
}
|
|
119787
120056
|
declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119788
120057
|
|
|
119789
|
-
declare const routeName$
|
|
119790
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119791
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119792
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119793
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120058
|
+
declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
|
|
120059
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7t]['put']['requestBody']['content']['application/json'];
|
|
120060
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7t]['put']['parameters']['path'];
|
|
120061
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7t]['put']['parameters']['query'];
|
|
120062
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7t]['put']['responses'][201]['content']['application/json'];
|
|
119794
120063
|
interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
119795
120064
|
body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
|
|
119796
120065
|
params: {
|
|
@@ -119800,11 +120069,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
|
119800
120069
|
}
|
|
119801
120070
|
declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
|
|
119802
120071
|
|
|
119803
|
-
declare const routeName$
|
|
119804
|
-
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119805
|
-
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119806
|
-
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119807
|
-
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120072
|
+
declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
|
|
120073
|
+
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7s]['post']['requestBody']['content']['application/json'];
|
|
120074
|
+
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7s]['post']['parameters']['path'];
|
|
120075
|
+
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7s]['post']['parameters']['query'];
|
|
120076
|
+
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7s]['post']['responses'][201]['content']['application/json'];
|
|
119808
120077
|
interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
119809
120078
|
body: CreateRiskDomainActionForAdvisoryReportByIdBody;
|
|
119810
120079
|
params: {
|
|
@@ -119814,10 +120083,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119814
120083
|
}
|
|
119815
120084
|
declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119816
120085
|
|
|
119817
|
-
declare const routeName$
|
|
119818
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119819
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119820
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120086
|
+
declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
120087
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7r]['delete']['parameters']['path'];
|
|
120088
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7r]['delete']['parameters']['query'];
|
|
120089
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7r]['delete']['responses'][200]['content']['application/json'];
|
|
119821
120090
|
interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
119822
120091
|
params: {
|
|
119823
120092
|
query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
|
|
@@ -119826,11 +120095,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119826
120095
|
}
|
|
119827
120096
|
declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119828
120097
|
|
|
119829
|
-
declare const routeName$
|
|
119830
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119831
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119832
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119833
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120098
|
+
declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
120099
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7q]['patch']['requestBody']['content']['application/json'];
|
|
120100
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7q]['patch']['parameters']['path'];
|
|
120101
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7q]['patch']['parameters']['query'];
|
|
120102
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7q]['patch']['responses'][200]['content']['application/json'];
|
|
119834
120103
|
interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
119835
120104
|
body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
|
|
119836
120105
|
params: {
|
|
@@ -119840,11 +120109,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119840
120109
|
}
|
|
119841
120110
|
declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119842
120111
|
|
|
119843
|
-
declare const routeName$
|
|
119844
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119845
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119846
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119847
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120112
|
+
declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/insurance-policies";
|
|
120113
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7p]['put']['requestBody']['content']['application/json'];
|
|
120114
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7p]['put']['parameters']['path'];
|
|
120115
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7p]['put']['parameters']['query'];
|
|
120116
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7p]['put']['responses'][200]['content']['application/json'];
|
|
119848
120117
|
interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
119849
120118
|
body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
|
|
119850
120119
|
params: {
|
|
@@ -119854,10 +120123,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
119854
120123
|
}
|
|
119855
120124
|
declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
119856
120125
|
|
|
119857
|
-
declare const routeName$
|
|
119858
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119859
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119860
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120126
|
+
declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
|
|
120127
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['delete']['parameters']['path'];
|
|
120128
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['delete']['parameters']['query'];
|
|
120129
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['delete']['responses'][200]['content']['application/json'];
|
|
119861
120130
|
interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
119862
120131
|
params: {
|
|
119863
120132
|
query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
|
|
@@ -119866,11 +120135,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
119866
120135
|
}
|
|
119867
120136
|
declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
119868
120137
|
|
|
119869
|
-
declare const routeName$
|
|
119870
|
-
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$
|
|
119871
|
-
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$
|
|
119872
|
-
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119873
|
-
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$
|
|
120138
|
+
declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
|
|
120139
|
+
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7n]['put']['requestBody']['content']['application/json'];
|
|
120140
|
+
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7n]['put']['parameters']['path'];
|
|
120141
|
+
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7n]['put']['parameters']['query'];
|
|
120142
|
+
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7n]['put']['responses'][200]['content']['application/json'];
|
|
119874
120143
|
interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
119875
120144
|
body: OrderInsurancePolciesOfAdvisoryReportBody;
|
|
119876
120145
|
params: {
|
|
@@ -119880,11 +120149,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
|
119880
120149
|
}
|
|
119881
120150
|
declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
|
|
119882
120151
|
|
|
119883
|
-
declare const routeName$
|
|
119884
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119885
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119886
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119887
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120152
|
+
declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/policy-packages";
|
|
120153
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7m]['put']['requestBody']['content']['application/json'];
|
|
120154
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['put']['parameters']['path'];
|
|
120155
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['put']['parameters']['query'];
|
|
120156
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['put']['responses'][200]['content']['application/json'];
|
|
119888
120157
|
interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
119889
120158
|
body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
|
|
119890
120159
|
params: {
|
|
@@ -119894,39 +120163,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
|
119894
120163
|
}
|
|
119895
120164
|
declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
|
|
119896
120165
|
|
|
119897
|
-
declare const routeName$
|
|
119898
|
-
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$
|
|
119899
|
-
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$
|
|
119900
|
-
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$
|
|
119901
|
-
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$
|
|
120166
|
+
declare const routeName$7l = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
|
|
120167
|
+
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
|
|
120168
|
+
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
|
|
120169
|
+
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
|
|
120170
|
+
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7l]['get']['parameters'];
|
|
119902
120171
|
declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
|
|
119903
120172
|
|
|
119904
|
-
declare const routeName$
|
|
119905
|
-
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$
|
|
120173
|
+
declare const routeName$7k = "/v1/api/affiliations";
|
|
120174
|
+
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
|
|
119906
120175
|
declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
|
|
119907
120176
|
|
|
119908
|
-
declare const routeName$
|
|
119909
|
-
type GetAnvaLabelsQueryParams = paths[typeof routeName$
|
|
119910
|
-
type GetAnvaLabelsResponse = paths[typeof routeName$
|
|
119911
|
-
type GetAnvaLabelsProps = paths[typeof routeName$
|
|
120177
|
+
declare const routeName$7j = "/v1/api/anvaflows/labels";
|
|
120178
|
+
type GetAnvaLabelsQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
|
|
120179
|
+
type GetAnvaLabelsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
|
|
120180
|
+
type GetAnvaLabelsProps = paths[typeof routeName$7j]['get']['parameters'];
|
|
119912
120181
|
declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
|
|
119913
120182
|
|
|
119914
|
-
declare const routeName$
|
|
119915
|
-
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$
|
|
119916
|
-
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$
|
|
119917
|
-
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$
|
|
120183
|
+
declare const routeName$7i = "/v1/api/anvaflows/supported-insurances";
|
|
120184
|
+
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
|
|
120185
|
+
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
|
|
120186
|
+
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7i]['get']['parameters'];
|
|
119918
120187
|
declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
|
|
119919
120188
|
|
|
119920
|
-
declare const routeName$
|
|
119921
|
-
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
119922
|
-
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$
|
|
119923
|
-
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$
|
|
120189
|
+
declare const routeName$7h = "/v1/api/anvaflows/supported-tags";
|
|
120190
|
+
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
|
|
120191
|
+
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
|
|
120192
|
+
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7h]['get']['parameters'];
|
|
119924
120193
|
declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
|
|
119925
120194
|
|
|
119926
|
-
declare const routeName$
|
|
119927
|
-
type CreateAnvaflowTagsBody = paths[typeof routeName$
|
|
119928
|
-
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
119929
|
-
type CreateAnvaflowTagsResponse = paths[typeof routeName$
|
|
120195
|
+
declare const routeName$7g = "/v1/api/anvaflows/supported-tags";
|
|
120196
|
+
type CreateAnvaflowTagsBody = paths[typeof routeName$7g]['put']['requestBody']['content']['application/json'];
|
|
120197
|
+
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7g]['put']['parameters']['query'];
|
|
120198
|
+
type CreateAnvaflowTagsResponse = paths[typeof routeName$7g]['put']['responses'][200]['content']['application/json'];
|
|
119930
120199
|
interface CreateAnvaflowTagsProps {
|
|
119931
120200
|
body: CreateAnvaflowTagsBody;
|
|
119932
120201
|
params: {
|
|
@@ -119935,35 +120204,35 @@ interface CreateAnvaflowTagsProps {
|
|
|
119935
120204
|
}
|
|
119936
120205
|
declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
|
|
119937
120206
|
|
|
119938
|
-
declare const routeName$
|
|
119939
|
-
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$
|
|
119940
|
-
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$
|
|
119941
|
-
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$
|
|
120207
|
+
declare const routeName$7f = "/v1/api/anvaflows/supported-coverages";
|
|
120208
|
+
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7f]['get']['parameters']['query'];
|
|
120209
|
+
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7f]['get']['responses'][200]['content']['application/json'];
|
|
120210
|
+
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7f]['get']['parameters'];
|
|
119942
120211
|
declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
|
|
119943
120212
|
|
|
119944
|
-
declare const routeName$
|
|
119945
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$
|
|
119946
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$
|
|
119947
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$
|
|
120213
|
+
declare const routeName$7e = "/v1/api/anvaflows/supported-adn-coverages";
|
|
120214
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
|
|
120215
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
|
|
120216
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7e]['get']['parameters'];
|
|
119948
120217
|
declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
|
|
119949
120218
|
|
|
119950
|
-
declare const routeName$
|
|
119951
|
-
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
119952
|
-
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$
|
|
119953
|
-
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$
|
|
120219
|
+
declare const routeName$7d = "/v1/api/anvaflows/supported-insurance-companies";
|
|
120220
|
+
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
|
|
120221
|
+
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
|
|
120222
|
+
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7d]['get']['parameters'];
|
|
119954
120223
|
declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
|
|
119955
120224
|
|
|
119956
|
-
declare const routeName$
|
|
119957
|
-
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$
|
|
119958
|
-
type GetAnvaMutationReasonsResponse = paths[typeof routeName$
|
|
119959
|
-
type GetAnvaMutationReasonsProps = paths[typeof routeName$
|
|
120225
|
+
declare const routeName$7c = "/v1/api/anvaflows/mutation-reasons";
|
|
120226
|
+
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
|
|
120227
|
+
type GetAnvaMutationReasonsResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
|
|
120228
|
+
type GetAnvaMutationReasonsProps = paths[typeof routeName$7c]['get']['parameters'];
|
|
119960
120229
|
declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
|
|
119961
120230
|
|
|
119962
|
-
declare const routeName$
|
|
119963
|
-
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
119964
|
-
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
119965
|
-
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
119966
|
-
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
120231
|
+
declare const routeName$7b = "/v1/api/anvaflows/{session_id}/calculate";
|
|
120232
|
+
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7b]['post']['requestBody']['content']['application/json'];
|
|
120233
|
+
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7b]['post']['parameters']['path'];
|
|
120234
|
+
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7b]['post']['parameters']['query'];
|
|
120235
|
+
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7b]['post']['responses'][200]['content']['application/json'];
|
|
119967
120236
|
interface CalculateAnvaquotesBySessionIdProps {
|
|
119968
120237
|
body: CalculateAnvaquotesBySessionIdBody;
|
|
119969
120238
|
params: {
|
|
@@ -119973,11 +120242,11 @@ interface CalculateAnvaquotesBySessionIdProps {
|
|
|
119973
120242
|
}
|
|
119974
120243
|
declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
|
|
119975
120244
|
|
|
119976
|
-
declare const routeName$
|
|
119977
|
-
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
119978
|
-
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
119979
|
-
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
119980
|
-
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
120245
|
+
declare const routeName$7a = "/v2/api/anvaflows/{session_id}/calculate";
|
|
120246
|
+
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$7a]['post']['requestBody']['content']['application/json'];
|
|
120247
|
+
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$7a]['post']['parameters']['path'];
|
|
120248
|
+
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7a]['post']['parameters']['query'];
|
|
120249
|
+
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$7a]['post']['responses'][202]['content']['application/json'];
|
|
119981
120250
|
interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
119982
120251
|
body: EnqueueCalculationAnvaquotesBySessionIdBody;
|
|
119983
120252
|
params: {
|
|
@@ -119987,11 +120256,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
|
119987
120256
|
}
|
|
119988
120257
|
declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
|
|
119989
120258
|
|
|
119990
|
-
declare const routeName$
|
|
119991
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$
|
|
119992
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$
|
|
119993
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$
|
|
119994
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$
|
|
120259
|
+
declare const routeName$79 = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
|
|
120260
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$79]['post']['requestBody']['content']['application/json'];
|
|
120261
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$79]['post']['parameters']['path'];
|
|
120262
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$79]['post']['parameters']['query'];
|
|
120263
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$79]['post']['responses'][200]['content']['application/json'];
|
|
119995
120264
|
interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
119996
120265
|
body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
|
|
119997
120266
|
params: {
|
|
@@ -120001,10 +120270,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
|
120001
120270
|
}
|
|
120002
120271
|
declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
|
|
120003
120272
|
|
|
120004
|
-
declare const routeName$
|
|
120005
|
-
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
120006
|
-
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
120007
|
-
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120273
|
+
declare const routeName$78 = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
120274
|
+
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
|
|
120275
|
+
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$78]['post']['parameters']['query'];
|
|
120276
|
+
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$78]['post']['responses'][201]['content']['application/json'];
|
|
120008
120277
|
interface SendOfferToAnvaBySessionIdProps {
|
|
120009
120278
|
params: {
|
|
120010
120279
|
query: SendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -120013,10 +120282,10 @@ interface SendOfferToAnvaBySessionIdProps {
|
|
|
120013
120282
|
}
|
|
120014
120283
|
declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
|
|
120015
120284
|
|
|
120016
|
-
declare const routeName$
|
|
120017
|
-
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
120018
|
-
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
120019
|
-
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120285
|
+
declare const routeName$77 = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
120286
|
+
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
|
|
120287
|
+
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
|
|
120288
|
+
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$77]['post']['responses'][202]['content']['application/json'];
|
|
120020
120289
|
interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
120021
120290
|
params: {
|
|
120022
120291
|
query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -120025,11 +120294,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
|
120025
120294
|
}
|
|
120026
120295
|
declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
|
|
120027
120296
|
|
|
120028
|
-
declare const routeName$
|
|
120029
|
-
type SendOfferMailBySessionIdBody = paths[typeof routeName$
|
|
120030
|
-
type SendOfferMailBySessionIdPathParams = paths[typeof routeName$
|
|
120031
|
-
type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$
|
|
120032
|
-
type SendOfferMailBySessionIdResponse = paths[typeof routeName$
|
|
120297
|
+
declare const routeName$76 = "/v1/api/anvaflows/{session_id}/send-offer-mail";
|
|
120298
|
+
type SendOfferMailBySessionIdBody = paths[typeof routeName$76]['post']['requestBody']['content']['application/json'];
|
|
120299
|
+
type SendOfferMailBySessionIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
|
|
120300
|
+
type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
|
|
120301
|
+
type SendOfferMailBySessionIdResponse = paths[typeof routeName$76]['post']['responses'][201]['content']['application/json'];
|
|
120033
120302
|
interface SendOfferMailBySessionIdProps {
|
|
120034
120303
|
body: SendOfferMailBySessionIdBody;
|
|
120035
120304
|
params: {
|
|
@@ -120039,11 +120308,11 @@ interface SendOfferMailBySessionIdProps {
|
|
|
120039
120308
|
}
|
|
120040
120309
|
declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
|
|
120041
120310
|
|
|
120042
|
-
declare const routeName$
|
|
120043
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$
|
|
120044
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
120045
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
120046
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120311
|
+
declare const routeName$75 = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
|
|
120312
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
|
|
120313
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
|
|
120314
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
|
|
120315
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$75]['post']['responses'][202]['content']['application/json'];
|
|
120047
120316
|
interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
120048
120317
|
body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
|
|
120049
120318
|
params: {
|
|
@@ -120053,11 +120322,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
|
120053
120322
|
}
|
|
120054
120323
|
declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
|
|
120055
120324
|
|
|
120056
|
-
declare const routeName$
|
|
120057
|
-
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$
|
|
120058
|
-
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$
|
|
120059
|
-
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$
|
|
120060
|
-
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$
|
|
120325
|
+
declare const routeName$74 = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
|
|
120326
|
+
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
|
|
120327
|
+
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
|
|
120328
|
+
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
|
|
120329
|
+
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$74]['post']['responses'][200]['content']['application/json'];
|
|
120061
120330
|
interface RecalculateSimulationBySessionIdProps {
|
|
120062
120331
|
body: RecalculateSimulationBySessionIdBody;
|
|
120063
120332
|
params: {
|
|
@@ -120067,23 +120336,23 @@ interface RecalculateSimulationBySessionIdProps {
|
|
|
120067
120336
|
}
|
|
120068
120337
|
declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
|
|
120069
120338
|
|
|
120070
|
-
declare const routeName$
|
|
120071
|
-
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$
|
|
120072
|
-
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$
|
|
120073
|
-
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$
|
|
120074
|
-
type GetAnvaCollectionMethodsProps = paths[typeof routeName$
|
|
120339
|
+
declare const routeName$73 = "/v1/api/anvaflows/{session_id}/collection-methods";
|
|
120340
|
+
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$73]['get']['parameters']['path'];
|
|
120341
|
+
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
|
|
120342
|
+
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
|
|
120343
|
+
type GetAnvaCollectionMethodsProps = paths[typeof routeName$73]['get']['parameters'];
|
|
120075
120344
|
declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
|
|
120076
120345
|
|
|
120077
|
-
declare const routeName$
|
|
120078
|
-
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
120079
|
-
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
120080
|
-
type GetAnvaClosingQuestionsProps = paths[typeof routeName$
|
|
120346
|
+
declare const routeName$72 = "/v1/api/anvaflows/closing-questions";
|
|
120347
|
+
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
|
|
120348
|
+
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
|
|
120349
|
+
type GetAnvaClosingQuestionsProps = paths[typeof routeName$72]['get']['parameters'];
|
|
120081
120350
|
declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
|
|
120082
120351
|
|
|
120083
|
-
declare const routeName$
|
|
120084
|
-
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$
|
|
120085
|
-
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
120086
|
-
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
120352
|
+
declare const routeName$71 = "/v1/api/anvaflows/closing-questions";
|
|
120353
|
+
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$71]['put']['requestBody']['content']['application/json'];
|
|
120354
|
+
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$71]['put']['parameters']['query'];
|
|
120355
|
+
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$71]['put']['responses'][200]['content']['application/json'];
|
|
120087
120356
|
interface UpsertAnvaClosingQuestionsProps {
|
|
120088
120357
|
body: UpsertAnvaClosingQuestionsBody;
|
|
120089
120358
|
params: {
|
|
@@ -120092,10 +120361,10 @@ interface UpsertAnvaClosingQuestionsProps {
|
|
|
120092
120361
|
}
|
|
120093
120362
|
declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
|
|
120094
120363
|
|
|
120095
|
-
declare const routeName$
|
|
120096
|
-
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$
|
|
120097
|
-
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
120098
|
-
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
120364
|
+
declare const routeName$70 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
|
|
120365
|
+
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$70]['delete']['parameters']['path'];
|
|
120366
|
+
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$70]['delete']['parameters']['query'];
|
|
120367
|
+
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$70]['delete']['responses'][200]['content']['application/json'];
|
|
120099
120368
|
interface DeleteAnvaClosingQuestionsProps {
|
|
120100
120369
|
params: {
|
|
120101
120370
|
query: DeleteAnvaClosingQuestionsQueryParams;
|
|
@@ -120104,11 +120373,11 @@ interface DeleteAnvaClosingQuestionsProps {
|
|
|
120104
120373
|
}
|
|
120105
120374
|
declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
|
|
120106
120375
|
|
|
120107
|
-
declare const routeName$
|
|
120108
|
-
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
120109
|
-
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
120110
|
-
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
120111
|
-
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
120376
|
+
declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
120377
|
+
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
|
|
120378
|
+
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
|
|
120379
|
+
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
|
|
120380
|
+
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
|
|
120112
120381
|
interface CreateAnvaPartyViaConversationProps {
|
|
120113
120382
|
body: CreateAnvaPartyViaConversationBody;
|
|
120114
120383
|
params: {
|
|
@@ -120118,11 +120387,11 @@ interface CreateAnvaPartyViaConversationProps {
|
|
|
120118
120387
|
}
|
|
120119
120388
|
declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
|
|
120120
120389
|
|
|
120121
|
-
declare const routeName$
|
|
120122
|
-
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
120123
|
-
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
120124
|
-
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
120125
|
-
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
120390
|
+
declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
120391
|
+
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$6_]['patch']['requestBody']['content']['application/json'];
|
|
120392
|
+
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$6_]['patch']['parameters']['path'];
|
|
120393
|
+
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6_]['patch']['parameters']['query'];
|
|
120394
|
+
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$6_]['patch']['responses'][200]['content']['application/json'];
|
|
120126
120395
|
interface UpdateAnvaPartyViaConversationProps {
|
|
120127
120396
|
body: UpdateAnvaPartyViaConversationBody;
|
|
120128
120397
|
params: {
|
|
@@ -120132,16 +120401,16 @@ interface UpdateAnvaPartyViaConversationProps {
|
|
|
120132
120401
|
}
|
|
120133
120402
|
declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
|
|
120134
120403
|
|
|
120135
|
-
declare const routeName$
|
|
120136
|
-
type GetAnvaproductsQueryParams = paths[typeof routeName$
|
|
120137
|
-
type GetAnvaproductsResponse = paths[typeof routeName$
|
|
120138
|
-
type GetAnvaproductsProps = paths[typeof routeName$
|
|
120404
|
+
declare const routeName$6Z = "/v1/api/anvaproducts";
|
|
120405
|
+
type GetAnvaproductsQueryParams = paths[typeof routeName$6Z]['get']['parameters']['query'];
|
|
120406
|
+
type GetAnvaproductsResponse = paths[typeof routeName$6Z]['get']['responses'][200]['content']['application/json'];
|
|
120407
|
+
type GetAnvaproductsProps = paths[typeof routeName$6Z]['get']['parameters'];
|
|
120139
120408
|
declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
|
|
120140
120409
|
|
|
120141
|
-
declare const routeName$
|
|
120142
|
-
type ImportAnvaproductBody = paths[typeof routeName$
|
|
120143
|
-
type ImportAnvaproductQueryParams = paths[typeof routeName$
|
|
120144
|
-
type ImportAnvaproductResponse = paths[typeof routeName$
|
|
120410
|
+
declare const routeName$6Y = "/v1/api/anvaproducts/import";
|
|
120411
|
+
type ImportAnvaproductBody = paths[typeof routeName$6Y]['post']['requestBody']['content']['application/json'];
|
|
120412
|
+
type ImportAnvaproductQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
|
|
120413
|
+
type ImportAnvaproductResponse = paths[typeof routeName$6Y]['post']['responses'][200]['content']['application/json'];
|
|
120145
120414
|
interface ImportAnvaproductProps {
|
|
120146
120415
|
body: ImportAnvaproductBody;
|
|
120147
120416
|
params: {
|
|
@@ -120150,18 +120419,18 @@ interface ImportAnvaproductProps {
|
|
|
120150
120419
|
}
|
|
120151
120420
|
declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
|
|
120152
120421
|
|
|
120153
|
-
declare const routeName$
|
|
120154
|
-
type GetAnvaproductByIdPathParams = paths[typeof routeName$
|
|
120155
|
-
type GetAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
120156
|
-
type GetAnvaproductByIdResponse = paths[typeof routeName$
|
|
120157
|
-
type GetAnvaproductByIdProps = paths[typeof routeName$
|
|
120422
|
+
declare const routeName$6X = "/v1/api/anvaproducts/{anva_product_id}";
|
|
120423
|
+
type GetAnvaproductByIdPathParams = paths[typeof routeName$6X]['get']['parameters']['path'];
|
|
120424
|
+
type GetAnvaproductByIdQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
|
|
120425
|
+
type GetAnvaproductByIdResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
|
|
120426
|
+
type GetAnvaproductByIdProps = paths[typeof routeName$6X]['get']['parameters'];
|
|
120158
120427
|
declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
|
|
120159
120428
|
|
|
120160
|
-
declare const routeName$
|
|
120161
|
-
type PatchAnvaproductByIdBody = paths[typeof routeName$
|
|
120162
|
-
type PatchAnvaproductByIdPathParams = paths[typeof routeName$
|
|
120163
|
-
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
120164
|
-
type PatchAnvaproductByIdResponse = paths[typeof routeName$
|
|
120429
|
+
declare const routeName$6W = "/v1/api/anvaproducts/{anva_product_id}";
|
|
120430
|
+
type PatchAnvaproductByIdBody = paths[typeof routeName$6W]['patch']['requestBody']['content']['application/json'];
|
|
120431
|
+
type PatchAnvaproductByIdPathParams = paths[typeof routeName$6W]['patch']['parameters']['path'];
|
|
120432
|
+
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6W]['patch']['parameters']['query'];
|
|
120433
|
+
type PatchAnvaproductByIdResponse = paths[typeof routeName$6W]['patch']['responses'][200]['content']['application/json'];
|
|
120165
120434
|
interface PatchAnvaproductByIdProps {
|
|
120166
120435
|
body: PatchAnvaproductByIdBody;
|
|
120167
120436
|
params: {
|
|
@@ -120171,11 +120440,11 @@ interface PatchAnvaproductByIdProps {
|
|
|
120171
120440
|
}
|
|
120172
120441
|
declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
|
|
120173
120442
|
|
|
120174
|
-
declare const routeName$
|
|
120175
|
-
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$
|
|
120176
|
-
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$
|
|
120177
|
-
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$
|
|
120178
|
-
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$
|
|
120443
|
+
declare const routeName$6V = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
|
|
120444
|
+
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6V]['patch']['requestBody']['content']['application/json'];
|
|
120445
|
+
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6V]['patch']['parameters']['path'];
|
|
120446
|
+
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6V]['patch']['parameters']['query'];
|
|
120447
|
+
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6V]['patch']['responses'][200]['content']['application/json'];
|
|
120179
120448
|
interface PatchAnvaproductCoverageByIdProps {
|
|
120180
120449
|
body: PatchAnvaproductCoverageByIdBody;
|
|
120181
120450
|
params: {
|
|
@@ -120185,18 +120454,18 @@ interface PatchAnvaproductCoverageByIdProps {
|
|
|
120185
120454
|
}
|
|
120186
120455
|
declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
|
|
120187
120456
|
|
|
120188
|
-
declare const routeName$
|
|
120189
|
-
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$
|
|
120190
|
-
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$
|
|
120191
|
-
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$
|
|
120192
|
-
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$
|
|
120457
|
+
declare const routeName$6U = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
120458
|
+
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
|
|
120459
|
+
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
|
|
120460
|
+
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
|
|
120461
|
+
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6U]['get']['parameters'];
|
|
120193
120462
|
declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
|
|
120194
120463
|
|
|
120195
|
-
declare const routeName$
|
|
120196
|
-
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
120197
|
-
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
120198
|
-
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
120199
|
-
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
120464
|
+
declare const routeName$6T = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
120465
|
+
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6T]['put']['requestBody']['content']['application/json'];
|
|
120466
|
+
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6T]['put']['parameters']['path'];
|
|
120467
|
+
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6T]['put']['parameters']['query'];
|
|
120468
|
+
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6T]['put']['responses'][200]['content']['application/json'];
|
|
120200
120469
|
interface UpdateAnvaflowsQuestionnaireProps {
|
|
120201
120470
|
body: UpdateAnvaflowsQuestionnaireBody;
|
|
120202
120471
|
params: {
|
|
@@ -120206,11 +120475,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
|
|
|
120206
120475
|
}
|
|
120207
120476
|
declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
|
|
120208
120477
|
|
|
120209
|
-
declare const routeName$
|
|
120210
|
-
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
120211
|
-
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
120212
|
-
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
120213
|
-
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
120478
|
+
declare const routeName$6S = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
|
|
120479
|
+
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6S]['post']['requestBody']['content']['application/json'];
|
|
120480
|
+
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6S]['post']['parameters']['path'];
|
|
120481
|
+
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6S]['post']['parameters']['query'];
|
|
120482
|
+
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6S]['post']['responses'][200]['content']['application/json'];
|
|
120214
120483
|
interface ValidateAnvaflowsQuestionnaireProps {
|
|
120215
120484
|
body: ValidateAnvaflowsQuestionnaireBody;
|
|
120216
120485
|
params: {
|
|
@@ -120220,10 +120489,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
|
|
|
120220
120489
|
}
|
|
120221
120490
|
declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
|
|
120222
120491
|
|
|
120223
|
-
declare const routeName$
|
|
120224
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$
|
|
120225
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$
|
|
120226
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$
|
|
120492
|
+
declare const routeName$6R = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
|
|
120493
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
|
|
120494
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
|
|
120495
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6R]['post']['responses'][200]['content']['application/json'];
|
|
120227
120496
|
interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
120228
120497
|
body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
|
|
120229
120498
|
params: {
|
|
@@ -120232,20 +120501,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
|
120232
120501
|
}
|
|
120233
120502
|
declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
|
|
120234
120503
|
|
|
120235
|
-
declare const routeName$
|
|
120236
|
-
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$
|
|
120504
|
+
declare const routeName$6Q = "/v1/api/brokers/me";
|
|
120505
|
+
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
|
|
120237
120506
|
declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
|
|
120238
120507
|
|
|
120239
|
-
declare const routeName$
|
|
120240
|
-
type GetTheBrokerByIdPathParams = paths[typeof routeName$
|
|
120241
|
-
type GetTheBrokerByIdResponse = paths[typeof routeName$
|
|
120242
|
-
type GetTheBrokerByIdProps = paths[typeof routeName$
|
|
120508
|
+
declare const routeName$6P = "/v1/api/brokers/{broker_id}";
|
|
120509
|
+
type GetTheBrokerByIdPathParams = paths[typeof routeName$6P]['get']['parameters']['path'];
|
|
120510
|
+
type GetTheBrokerByIdResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
|
|
120511
|
+
type GetTheBrokerByIdProps = paths[typeof routeName$6P]['get']['parameters'];
|
|
120243
120512
|
declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
|
|
120244
120513
|
|
|
120245
|
-
declare const routeName$
|
|
120246
|
-
type UpdateBrokerByBrokerBody = paths[typeof routeName$
|
|
120247
|
-
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$
|
|
120248
|
-
type UpdateBrokerByBrokerResponse = paths[typeof routeName$
|
|
120514
|
+
declare const routeName$6O = "/v1/api/brokers/{broker_id}";
|
|
120515
|
+
type UpdateBrokerByBrokerBody = paths[typeof routeName$6O]['patch']['requestBody']['content']['application/json'];
|
|
120516
|
+
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6O]['patch']['parameters']['path'];
|
|
120517
|
+
type UpdateBrokerByBrokerResponse = paths[typeof routeName$6O]['patch']['responses'][200]['content']['application/json'];
|
|
120249
120518
|
interface UpdateBrokerByBrokerProps {
|
|
120250
120519
|
body: UpdateBrokerByBrokerBody;
|
|
120251
120520
|
params: {
|
|
@@ -120254,16 +120523,16 @@ interface UpdateBrokerByBrokerProps {
|
|
|
120254
120523
|
}
|
|
120255
120524
|
declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
|
|
120256
120525
|
|
|
120257
|
-
declare const routeName$
|
|
120258
|
-
type GetBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
120259
|
-
type GetBrokerIntegrationsResponse = paths[typeof routeName$
|
|
120260
|
-
type GetBrokerIntegrationsProps = paths[typeof routeName$
|
|
120526
|
+
declare const routeName$6N = "/v1/api/brokers/{broker_id}/integrations";
|
|
120527
|
+
type GetBrokerIntegrationsPathParams = paths[typeof routeName$6N]['get']['parameters']['path'];
|
|
120528
|
+
type GetBrokerIntegrationsResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
|
|
120529
|
+
type GetBrokerIntegrationsProps = paths[typeof routeName$6N]['get']['parameters'];
|
|
120261
120530
|
declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
|
|
120262
120531
|
|
|
120263
|
-
declare const routeName$
|
|
120264
|
-
type UpdateBrokerIntegrationsBody = paths[typeof routeName$
|
|
120265
|
-
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
120266
|
-
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$
|
|
120532
|
+
declare const routeName$6M = "/v1/api/brokers/{broker_id}/integrations";
|
|
120533
|
+
type UpdateBrokerIntegrationsBody = paths[typeof routeName$6M]['patch']['requestBody']['content']['application/json'];
|
|
120534
|
+
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6M]['patch']['parameters']['path'];
|
|
120535
|
+
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6M]['patch']['responses'][200]['content']['application/json'];
|
|
120267
120536
|
interface UpdateBrokerIntegrationsProps {
|
|
120268
120537
|
body: UpdateBrokerIntegrationsBody;
|
|
120269
120538
|
params: {
|
|
@@ -120272,37 +120541,37 @@ interface UpdateBrokerIntegrationsProps {
|
|
|
120272
120541
|
}
|
|
120273
120542
|
declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
|
|
120274
120543
|
|
|
120275
|
-
declare const routeName$
|
|
120276
|
-
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$
|
|
120277
|
-
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$
|
|
120278
|
-
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$
|
|
120544
|
+
declare const routeName$6L = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
|
|
120545
|
+
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
|
|
120546
|
+
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
|
|
120547
|
+
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6L]['get']['parameters'];
|
|
120279
120548
|
declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
|
|
120280
120549
|
|
|
120281
|
-
declare const routeName$
|
|
120282
|
-
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$
|
|
120283
|
-
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$
|
|
120284
|
-
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$
|
|
120550
|
+
declare const routeName$6K = "/v1/api/anva-producers/{anva_producer_id}";
|
|
120551
|
+
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
|
|
120552
|
+
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
|
|
120553
|
+
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6K]['get']['parameters'];
|
|
120285
120554
|
declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
|
|
120286
120555
|
|
|
120287
|
-
declare const routeName$
|
|
120288
|
-
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$
|
|
120289
|
-
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$
|
|
120290
|
-
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$
|
|
120291
|
-
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$
|
|
120556
|
+
declare const routeName$6J = "/v1/api/brokers/{broker_id}/checklists/onboarding";
|
|
120557
|
+
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
|
|
120558
|
+
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6J]['get']['parameters']['query'];
|
|
120559
|
+
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
|
|
120560
|
+
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6J]['get']['parameters'];
|
|
120292
120561
|
declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
|
|
120293
120562
|
|
|
120294
|
-
declare const routeName$
|
|
120295
|
-
type GetCampaignByIdPathParams = paths[typeof routeName$
|
|
120296
|
-
type GetCampaignByIdQueryParams = paths[typeof routeName$
|
|
120297
|
-
type GetCampaignByIdResponse = paths[typeof routeName$
|
|
120298
|
-
type GetCampaignByIdProps = paths[typeof routeName$
|
|
120563
|
+
declare const routeName$6I = "/v1/api/campaigns/{campaign_id}";
|
|
120564
|
+
type GetCampaignByIdPathParams = paths[typeof routeName$6I]['get']['parameters']['path'];
|
|
120565
|
+
type GetCampaignByIdQueryParams = paths[typeof routeName$6I]['get']['parameters']['query'];
|
|
120566
|
+
type GetCampaignByIdResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
|
|
120567
|
+
type GetCampaignByIdProps = paths[typeof routeName$6I]['get']['parameters'];
|
|
120299
120568
|
declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
|
|
120300
120569
|
|
|
120301
|
-
declare const routeName$
|
|
120302
|
-
type UpdateCampaignBody = paths[typeof routeName$
|
|
120303
|
-
type UpdateCampaignPathParams = paths[typeof routeName$
|
|
120304
|
-
type UpdateCampaignQueryParams = paths[typeof routeName$
|
|
120305
|
-
type UpdateCampaignResponse = paths[typeof routeName$
|
|
120570
|
+
declare const routeName$6H = "/v1/api/campaigns/{campaign_id}";
|
|
120571
|
+
type UpdateCampaignBody = paths[typeof routeName$6H]['patch']['requestBody']['content']['application/json'];
|
|
120572
|
+
type UpdateCampaignPathParams = paths[typeof routeName$6H]['patch']['parameters']['path'];
|
|
120573
|
+
type UpdateCampaignQueryParams = paths[typeof routeName$6H]['patch']['parameters']['query'];
|
|
120574
|
+
type UpdateCampaignResponse = paths[typeof routeName$6H]['patch']['responses'][200]['content']['application/json'];
|
|
120306
120575
|
interface UpdateCampaignProps {
|
|
120307
120576
|
body: UpdateCampaignBody;
|
|
120308
120577
|
params: {
|
|
@@ -120312,16 +120581,16 @@ interface UpdateCampaignProps {
|
|
|
120312
120581
|
}
|
|
120313
120582
|
declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
|
|
120314
120583
|
|
|
120315
|
-
declare const routeName$
|
|
120316
|
-
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$
|
|
120317
|
-
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$
|
|
120318
|
-
type GetAllCampaignsByDistributionProps = paths[typeof routeName$
|
|
120584
|
+
declare const routeName$6G = "/v1/api/campaigns";
|
|
120585
|
+
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
|
|
120586
|
+
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
|
|
120587
|
+
type GetAllCampaignsByDistributionProps = paths[typeof routeName$6G]['get']['parameters'];
|
|
120319
120588
|
declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
|
|
120320
120589
|
|
|
120321
|
-
declare const routeName$
|
|
120322
|
-
type CreateCampaignBody = paths[typeof routeName$
|
|
120323
|
-
type CreateCampaignQueryParams = paths[typeof routeName$
|
|
120324
|
-
type CreateCampaignResponse = paths[typeof routeName$
|
|
120590
|
+
declare const routeName$6F = "/v1/api/campaigns";
|
|
120591
|
+
type CreateCampaignBody = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
|
|
120592
|
+
type CreateCampaignQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
|
|
120593
|
+
type CreateCampaignResponse = paths[typeof routeName$6F]['post']['responses'][201]['content']['application/json'];
|
|
120325
120594
|
interface CreateCampaignProps {
|
|
120326
120595
|
body: CreateCampaignBody;
|
|
120327
120596
|
params: {
|
|
@@ -120330,17 +120599,17 @@ interface CreateCampaignProps {
|
|
|
120330
120599
|
}
|
|
120331
120600
|
declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
|
|
120332
120601
|
|
|
120333
|
-
declare const routeName$
|
|
120334
|
-
type GetMetricsByCampaignPathParams = paths[typeof routeName$
|
|
120335
|
-
type GetMetricsByCampaignQueryParams = paths[typeof routeName$
|
|
120336
|
-
type GetMetricsByCampaignResponse = paths[typeof routeName$
|
|
120337
|
-
type GetMetricsByCampaignProps = paths[typeof routeName$
|
|
120602
|
+
declare const routeName$6E = "/v1/api/campaigns/{campaign_id}/metrics";
|
|
120603
|
+
type GetMetricsByCampaignPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
|
|
120604
|
+
type GetMetricsByCampaignQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
|
|
120605
|
+
type GetMetricsByCampaignResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
|
|
120606
|
+
type GetMetricsByCampaignProps = paths[typeof routeName$6E]['get']['parameters'];
|
|
120338
120607
|
declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
|
|
120339
120608
|
|
|
120340
|
-
declare const routeName$
|
|
120341
|
-
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$
|
|
120342
|
-
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$
|
|
120343
|
-
type UpdateTargetsByCampaignResponse = paths[typeof routeName$
|
|
120609
|
+
declare const routeName$6D = "/v1/api/campaigns/{campaign_id}/targets";
|
|
120610
|
+
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6D]['patch']['parameters']['path'];
|
|
120611
|
+
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6D]['patch']['parameters']['query'];
|
|
120612
|
+
type UpdateTargetsByCampaignResponse = paths[typeof routeName$6D]['patch']['responses'][200]['content']['application/json'];
|
|
120344
120613
|
interface UpdateTargetsByCampaignProps {
|
|
120345
120614
|
params: {
|
|
120346
120615
|
query: UpdateTargetsByCampaignQueryParams;
|
|
@@ -120349,15 +120618,15 @@ interface UpdateTargetsByCampaignProps {
|
|
|
120349
120618
|
}
|
|
120350
120619
|
declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
|
|
120351
120620
|
|
|
120352
|
-
declare const routeName$
|
|
120353
|
-
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$
|
|
120354
|
-
type GetAllCampaignTemplatesResponse = paths[typeof routeName$
|
|
120355
|
-
type GetAllCampaignTemplatesProps = paths[typeof routeName$
|
|
120621
|
+
declare const routeName$6C = "/v1/api/campaign-templates";
|
|
120622
|
+
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
|
|
120623
|
+
type GetAllCampaignTemplatesResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
|
|
120624
|
+
type GetAllCampaignTemplatesProps = paths[typeof routeName$6C]['get']['parameters'];
|
|
120356
120625
|
declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
|
|
120357
120626
|
|
|
120358
|
-
declare const routeName$
|
|
120359
|
-
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$
|
|
120360
|
-
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$
|
|
120627
|
+
declare const routeName$6B = "/v1/api/campaigns/example-mails";
|
|
120628
|
+
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
|
|
120629
|
+
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6B]['post']['responses'][201]['content']['application/json'];
|
|
120361
120630
|
interface SendExampleCampaignTargetMailProps {
|
|
120362
120631
|
params: {
|
|
120363
120632
|
query: SendExampleCampaignTargetMailQueryParams;
|
|
@@ -120365,16 +120634,16 @@ interface SendExampleCampaignTargetMailProps {
|
|
|
120365
120634
|
}
|
|
120366
120635
|
declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
|
|
120367
120636
|
|
|
120368
|
-
declare const routeName$
|
|
120369
|
-
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$
|
|
120370
|
-
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$
|
|
120371
|
-
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$
|
|
120637
|
+
declare const routeName$6A = "/v1/api/distributions/campaign-settings";
|
|
120638
|
+
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
|
|
120639
|
+
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
|
|
120640
|
+
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6A]['get']['parameters'];
|
|
120372
120641
|
declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
|
|
120373
120642
|
|
|
120374
|
-
declare const routeName$
|
|
120375
|
-
type GenerateDnsPrefixBody = paths[typeof routeName$
|
|
120376
|
-
type GenerateDnsPrefixQueryParams = paths[typeof routeName$
|
|
120377
|
-
type GenerateDnsPrefixResponse = paths[typeof routeName$
|
|
120643
|
+
declare const routeName$6z = "/v1/api/campaigns/dns-prefixes/generate";
|
|
120644
|
+
type GenerateDnsPrefixBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
|
|
120645
|
+
type GenerateDnsPrefixQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
|
|
120646
|
+
type GenerateDnsPrefixResponse = paths[typeof routeName$6z]['post']['responses'][200]['content']['application/json'];
|
|
120378
120647
|
interface GenerateDnsPrefixProps {
|
|
120379
120648
|
body: GenerateDnsPrefixBody;
|
|
120380
120649
|
params: {
|
|
@@ -120383,16 +120652,16 @@ interface GenerateDnsPrefixProps {
|
|
|
120383
120652
|
}
|
|
120384
120653
|
declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
|
|
120385
120654
|
|
|
120386
|
-
declare const routeName$
|
|
120387
|
-
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$
|
|
120388
|
-
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$
|
|
120389
|
-
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$
|
|
120655
|
+
declare const routeName$6y = "/v1/api/mail-templates/campaign-target";
|
|
120656
|
+
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
|
|
120657
|
+
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
|
|
120658
|
+
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6y]['get']['parameters'];
|
|
120390
120659
|
declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
|
|
120391
120660
|
|
|
120392
|
-
declare const routeName$
|
|
120393
|
-
type CreateClaimAsCustomerPathParams = paths[typeof routeName$
|
|
120394
|
-
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
120395
|
-
type CreateClaimAsCustomerResponse = paths[typeof routeName$
|
|
120661
|
+
declare const routeName$6x = "/v1/api/distributions/{distribution_id}/claims";
|
|
120662
|
+
type CreateClaimAsCustomerPathParams = paths[typeof routeName$6x]['post']['parameters']['path'];
|
|
120663
|
+
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
|
|
120664
|
+
type CreateClaimAsCustomerResponse = paths[typeof routeName$6x]['post']['responses'][201]['content']['application/json'];
|
|
120396
120665
|
interface CreateClaimAsCustomerProps {
|
|
120397
120666
|
params: {
|
|
120398
120667
|
query: CreateClaimAsCustomerQueryParams;
|
|
@@ -120401,15 +120670,15 @@ interface CreateClaimAsCustomerProps {
|
|
|
120401
120670
|
}
|
|
120402
120671
|
declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
|
|
120403
120672
|
|
|
120404
|
-
declare const routeName$
|
|
120405
|
-
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$
|
|
120406
|
-
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$
|
|
120407
|
-
type GetAllClaimsAsBrokerProps = paths[typeof routeName$
|
|
120673
|
+
declare const routeName$6w = "/v1/api/claims";
|
|
120674
|
+
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
|
|
120675
|
+
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
|
|
120676
|
+
type GetAllClaimsAsBrokerProps = paths[typeof routeName$6w]['get']['parameters'];
|
|
120408
120677
|
declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
|
|
120409
120678
|
|
|
120410
|
-
declare const routeName$
|
|
120411
|
-
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$
|
|
120412
|
-
type CreateClaimAsBrokerResponse = paths[typeof routeName$
|
|
120679
|
+
declare const routeName$6v = "/v1/api/claims";
|
|
120680
|
+
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
|
|
120681
|
+
type CreateClaimAsBrokerResponse = paths[typeof routeName$6v]['post']['responses'][201]['content']['application/json'];
|
|
120413
120682
|
interface CreateClaimAsBrokerProps {
|
|
120414
120683
|
params: {
|
|
120415
120684
|
query: CreateClaimAsBrokerQueryParams;
|
|
@@ -120417,17 +120686,17 @@ interface CreateClaimAsBrokerProps {
|
|
|
120417
120686
|
}
|
|
120418
120687
|
declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
|
|
120419
120688
|
|
|
120420
|
-
declare const routeName$
|
|
120421
|
-
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120422
|
-
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120423
|
-
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120424
|
-
type GetClaimAsBrokerByIdProps = paths[typeof routeName$
|
|
120689
|
+
declare const routeName$6u = "/v1/api/claims/{claim_id}";
|
|
120690
|
+
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6u]['get']['parameters']['path'];
|
|
120691
|
+
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
|
|
120692
|
+
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
|
|
120693
|
+
type GetClaimAsBrokerByIdProps = paths[typeof routeName$6u]['get']['parameters'];
|
|
120425
120694
|
declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
|
|
120426
120695
|
|
|
120427
|
-
declare const routeName$
|
|
120428
|
-
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120429
|
-
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120430
|
-
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120696
|
+
declare const routeName$6t = "/v1/api/claims/{claim_id}";
|
|
120697
|
+
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6t]['delete']['parameters']['path'];
|
|
120698
|
+
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6t]['delete']['parameters']['query'];
|
|
120699
|
+
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6t]['delete']['responses'][200]['content']['application/json'];
|
|
120431
120700
|
interface DeleteClaimAsBrokerByIdProps {
|
|
120432
120701
|
params: {
|
|
120433
120702
|
query: DeleteClaimAsBrokerByIdQueryParams;
|
|
@@ -120436,10 +120705,10 @@ interface DeleteClaimAsBrokerByIdProps {
|
|
|
120436
120705
|
}
|
|
120437
120706
|
declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
|
|
120438
120707
|
|
|
120439
|
-
declare const routeName$
|
|
120440
|
-
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120441
|
-
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120442
|
-
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120708
|
+
declare const routeName$6s = "/v1/api/claims/{claim_id}";
|
|
120709
|
+
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6s]['patch']['parameters']['path'];
|
|
120710
|
+
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6s]['patch']['parameters']['query'];
|
|
120711
|
+
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6s]['patch']['responses'][200]['content']['application/json'];
|
|
120443
120712
|
interface UpdateClaimAsBrokerByIdProps {
|
|
120444
120713
|
params: {
|
|
120445
120714
|
query: UpdateClaimAsBrokerByIdQueryParams;
|
|
@@ -120448,10 +120717,10 @@ interface UpdateClaimAsBrokerByIdProps {
|
|
|
120448
120717
|
}
|
|
120449
120718
|
declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
|
|
120450
120719
|
|
|
120451
|
-
declare const routeName$
|
|
120452
|
-
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$
|
|
120453
|
-
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$
|
|
120454
|
-
type UpdateDeclarationRemarkResponse = paths[typeof routeName$
|
|
120720
|
+
declare const routeName$6r = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
|
|
120721
|
+
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6r]['put']['parameters']['path'];
|
|
120722
|
+
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6r]['put']['parameters']['query'];
|
|
120723
|
+
type UpdateDeclarationRemarkResponse = paths[typeof routeName$6r]['put']['responses'][200]['content']['application/json'];
|
|
120455
120724
|
interface UpdateDeclarationRemarkProps {
|
|
120456
120725
|
params: {
|
|
120457
120726
|
query: UpdateDeclarationRemarkQueryParams;
|
|
@@ -120460,10 +120729,10 @@ interface UpdateDeclarationRemarkProps {
|
|
|
120460
120729
|
}
|
|
120461
120730
|
declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
|
|
120462
120731
|
|
|
120463
|
-
declare const routeName$
|
|
120464
|
-
type CreateLockForClaimPathParams = paths[typeof routeName$
|
|
120465
|
-
type CreateLockForClaimQueryParams = paths[typeof routeName$
|
|
120466
|
-
type CreateLockForClaimResponse = paths[typeof routeName$
|
|
120732
|
+
declare const routeName$6q = "/v1/api/claims/{claim_id}/lock";
|
|
120733
|
+
type CreateLockForClaimPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
|
|
120734
|
+
type CreateLockForClaimQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
|
|
120735
|
+
type CreateLockForClaimResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
|
|
120467
120736
|
interface CreateLockForClaimProps {
|
|
120468
120737
|
params: {
|
|
120469
120738
|
query: CreateLockForClaimQueryParams;
|
|
@@ -120472,10 +120741,10 @@ interface CreateLockForClaimProps {
|
|
|
120472
120741
|
}
|
|
120473
120742
|
declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
|
|
120474
120743
|
|
|
120475
|
-
declare const routeName$
|
|
120476
|
-
type UnlockClaimPathParams = paths[typeof routeName$
|
|
120477
|
-
type UnlockClaimQueryParams = paths[typeof routeName$
|
|
120478
|
-
type UnlockClaimResponse = paths[typeof routeName$
|
|
120744
|
+
declare const routeName$6p = "/v1/api/claims/{claim_id}/unlock";
|
|
120745
|
+
type UnlockClaimPathParams = paths[typeof routeName$6p]['post']['parameters']['path'];
|
|
120746
|
+
type UnlockClaimQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
|
|
120747
|
+
type UnlockClaimResponse = paths[typeof routeName$6p]['post']['responses'][200]['content']['application/json'];
|
|
120479
120748
|
interface UnlockClaimProps {
|
|
120480
120749
|
params: {
|
|
120481
120750
|
query: UnlockClaimQueryParams;
|
|
@@ -120484,10 +120753,10 @@ interface UnlockClaimProps {
|
|
|
120484
120753
|
}
|
|
120485
120754
|
declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
|
|
120486
120755
|
|
|
120487
|
-
declare const routeName$
|
|
120488
|
-
type ClaimRequestUpdatePathParams = paths[typeof routeName$
|
|
120489
|
-
type ClaimRequestUpdateQueryParams = paths[typeof routeName$
|
|
120490
|
-
type ClaimRequestUpdateResponse = paths[typeof routeName$
|
|
120756
|
+
declare const routeName$6o = "/v1/api/claims/{claim_id}/request_update";
|
|
120757
|
+
type ClaimRequestUpdatePathParams = paths[typeof routeName$6o]['post']['parameters']['path'];
|
|
120758
|
+
type ClaimRequestUpdateQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
|
|
120759
|
+
type ClaimRequestUpdateResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
|
|
120491
120760
|
interface ClaimRequestUpdateProps {
|
|
120492
120761
|
params: {
|
|
120493
120762
|
query: ClaimRequestUpdateQueryParams;
|
|
@@ -120496,10 +120765,10 @@ interface ClaimRequestUpdateProps {
|
|
|
120496
120765
|
}
|
|
120497
120766
|
declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
|
|
120498
120767
|
|
|
120499
|
-
declare const routeName$
|
|
120500
|
-
type ValidateClaimPathParams = paths[typeof routeName$
|
|
120501
|
-
type ValidateClaimQueryParams = paths[typeof routeName$
|
|
120502
|
-
type ValidateClaimResponse = paths[typeof routeName$
|
|
120768
|
+
declare const routeName$6n = "/v1/api/claims/{claim_id}/validate";
|
|
120769
|
+
type ValidateClaimPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
|
|
120770
|
+
type ValidateClaimQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
|
|
120771
|
+
type ValidateClaimResponse = paths[typeof routeName$6n]['post']['responses'][200]['content']['application/json'];
|
|
120503
120772
|
interface ValidateClaimProps {
|
|
120504
120773
|
params: {
|
|
120505
120774
|
query: ValidateClaimQueryParams;
|
|
@@ -120508,10 +120777,10 @@ interface ValidateClaimProps {
|
|
|
120508
120777
|
}
|
|
120509
120778
|
declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
|
|
120510
120779
|
|
|
120511
|
-
declare const routeName$
|
|
120512
|
-
type CreateDocumentForClaimPathParams = paths[typeof routeName$
|
|
120513
|
-
type CreateDocumentForClaimQueryParams = paths[typeof routeName$
|
|
120514
|
-
type CreateDocumentForClaimResponse = paths[typeof routeName$
|
|
120780
|
+
declare const routeName$6m = "/v1/api/claims/{claim_id}/documents";
|
|
120781
|
+
type CreateDocumentForClaimPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
|
|
120782
|
+
type CreateDocumentForClaimQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
|
|
120783
|
+
type CreateDocumentForClaimResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
|
|
120515
120784
|
interface CreateDocumentForClaimProps {
|
|
120516
120785
|
params: {
|
|
120517
120786
|
query: CreateDocumentForClaimQueryParams;
|
|
@@ -120520,17 +120789,17 @@ interface CreateDocumentForClaimProps {
|
|
|
120520
120789
|
}
|
|
120521
120790
|
declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
|
|
120522
120791
|
|
|
120523
|
-
declare const routeName$
|
|
120524
|
-
type DownloadDocumentByIdPathParams = paths[typeof routeName$
|
|
120525
|
-
type DownloadDocumentByIdQueryParams = paths[typeof routeName$
|
|
120526
|
-
type DownloadDocumentByIdResponse = paths[typeof routeName$
|
|
120527
|
-
type DownloadDocumentByIdProps = paths[typeof routeName$
|
|
120792
|
+
declare const routeName$6l = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120793
|
+
type DownloadDocumentByIdPathParams = paths[typeof routeName$6l]['get']['parameters']['path'];
|
|
120794
|
+
type DownloadDocumentByIdQueryParams = paths[typeof routeName$6l]['get']['parameters']['query'];
|
|
120795
|
+
type DownloadDocumentByIdResponse = paths[typeof routeName$6l]['get']['responses'][307]['content']['application/json'];
|
|
120796
|
+
type DownloadDocumentByIdProps = paths[typeof routeName$6l]['get']['parameters'];
|
|
120528
120797
|
declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
|
|
120529
120798
|
|
|
120530
|
-
declare const routeName$
|
|
120531
|
-
type DeleteDocumentByIdPathParams = paths[typeof routeName$
|
|
120532
|
-
type DeleteDocumentByIdQueryParams = paths[typeof routeName$
|
|
120533
|
-
type DeleteDocumentByIdResponse = paths[typeof routeName$
|
|
120799
|
+
declare const routeName$6k = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120800
|
+
type DeleteDocumentByIdPathParams = paths[typeof routeName$6k]['delete']['parameters']['path'];
|
|
120801
|
+
type DeleteDocumentByIdQueryParams = paths[typeof routeName$6k]['delete']['parameters']['query'];
|
|
120802
|
+
type DeleteDocumentByIdResponse = paths[typeof routeName$6k]['delete']['responses'][200]['content']['application/json'];
|
|
120534
120803
|
interface DeleteDocumentByIdProps {
|
|
120535
120804
|
params: {
|
|
120536
120805
|
query: DeleteDocumentByIdQueryParams;
|
|
@@ -120539,10 +120808,10 @@ interface DeleteDocumentByIdProps {
|
|
|
120539
120808
|
}
|
|
120540
120809
|
declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
|
|
120541
120810
|
|
|
120542
|
-
declare const routeName$
|
|
120543
|
-
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$
|
|
120544
|
-
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$
|
|
120545
|
-
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$
|
|
120811
|
+
declare const routeName$6j = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120812
|
+
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6j]['patch']['parameters']['path'];
|
|
120813
|
+
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6j]['patch']['parameters']['query'];
|
|
120814
|
+
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6j]['patch']['responses'][200]['content']['application/json'];
|
|
120546
120815
|
interface UpdateDocumentMetadataByIdProps {
|
|
120547
120816
|
params: {
|
|
120548
120817
|
query: UpdateDocumentMetadataByIdQueryParams;
|
|
@@ -120551,17 +120820,17 @@ interface UpdateDocumentMetadataByIdProps {
|
|
|
120551
120820
|
}
|
|
120552
120821
|
declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
|
|
120553
120822
|
|
|
120554
|
-
declare const routeName$
|
|
120555
|
-
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120556
|
-
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120557
|
-
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120558
|
-
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$
|
|
120823
|
+
declare const routeName$6i = "/v1/api/claims/customer/token/{token}";
|
|
120824
|
+
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6i]['get']['parameters']['path'];
|
|
120825
|
+
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6i]['get']['parameters']['query'];
|
|
120826
|
+
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
|
|
120827
|
+
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6i]['get']['parameters'];
|
|
120559
120828
|
declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
|
|
120560
120829
|
|
|
120561
|
-
declare const routeName$
|
|
120562
|
-
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120563
|
-
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120564
|
-
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120830
|
+
declare const routeName$6h = "/v1/api/claims/customer/token/{token}";
|
|
120831
|
+
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6h]['patch']['parameters']['path'];
|
|
120832
|
+
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6h]['patch']['parameters']['query'];
|
|
120833
|
+
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6h]['patch']['responses'][200]['content']['application/json'];
|
|
120565
120834
|
interface UpdateClaimAsCustomerWithTokenProps {
|
|
120566
120835
|
params: {
|
|
120567
120836
|
query: UpdateClaimAsCustomerWithTokenQueryParams;
|
|
@@ -120570,10 +120839,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
|
|
|
120570
120839
|
}
|
|
120571
120840
|
declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
|
|
120572
120841
|
|
|
120573
|
-
declare const routeName$
|
|
120574
|
-
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120575
|
-
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120576
|
-
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120842
|
+
declare const routeName$6g = "/v1/api/claims/customer/token/{token}/entities";
|
|
120843
|
+
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
|
|
120844
|
+
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
|
|
120845
|
+
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
|
|
120577
120846
|
interface CreateEntityAsCustomerWithTokenProps {
|
|
120578
120847
|
params: {
|
|
120579
120848
|
query: CreateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -120582,10 +120851,10 @@ interface CreateEntityAsCustomerWithTokenProps {
|
|
|
120582
120851
|
}
|
|
120583
120852
|
declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
|
|
120584
120853
|
|
|
120585
|
-
declare const routeName$
|
|
120586
|
-
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120587
|
-
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120588
|
-
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120854
|
+
declare const routeName$6f = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
120855
|
+
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6f]['delete']['parameters']['path'];
|
|
120856
|
+
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6f]['delete']['parameters']['query'];
|
|
120857
|
+
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6f]['delete']['responses'][200]['content']['application/json'];
|
|
120589
120858
|
interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
120590
120859
|
params: {
|
|
120591
120860
|
query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120594,10 +120863,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
|
120594
120863
|
}
|
|
120595
120864
|
declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
|
|
120596
120865
|
|
|
120597
|
-
declare const routeName$
|
|
120598
|
-
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120599
|
-
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120600
|
-
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120866
|
+
declare const routeName$6e = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
120867
|
+
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6e]['patch']['parameters']['path'];
|
|
120868
|
+
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6e]['patch']['parameters']['query'];
|
|
120869
|
+
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6e]['patch']['responses'][200]['content']['application/json'];
|
|
120601
120870
|
interface UpdateEntityAsCustomerWithTokenProps {
|
|
120602
120871
|
params: {
|
|
120603
120872
|
query: UpdateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -120606,10 +120875,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
|
|
|
120606
120875
|
}
|
|
120607
120876
|
declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
|
|
120608
120877
|
|
|
120609
|
-
declare const routeName$
|
|
120610
|
-
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$
|
|
120611
|
-
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$
|
|
120612
|
-
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$
|
|
120878
|
+
declare const routeName$6d = "/v1/api/claims/upload/{claim_doc_category}";
|
|
120879
|
+
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
|
|
120880
|
+
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
|
|
120881
|
+
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6d]['post']['responses'][200]['content']['application/json'];
|
|
120613
120882
|
interface UploadClaimDocumentAsBrokerProps {
|
|
120614
120883
|
params: {
|
|
120615
120884
|
query: UploadClaimDocumentAsBrokerQueryParams;
|
|
@@ -120618,10 +120887,10 @@ interface UploadClaimDocumentAsBrokerProps {
|
|
|
120618
120887
|
}
|
|
120619
120888
|
declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
|
|
120620
120889
|
|
|
120621
|
-
declare const routeName$
|
|
120622
|
-
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$
|
|
120623
|
-
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$
|
|
120624
|
-
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$
|
|
120890
|
+
declare const routeName$6c = "/v1/api/claims/customer/upload/{claim_doc_category}";
|
|
120891
|
+
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
|
|
120892
|
+
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
|
|
120893
|
+
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
|
|
120625
120894
|
interface CreateUploadLinkAsCustomerProps {
|
|
120626
120895
|
params: {
|
|
120627
120896
|
query: CreateUploadLinkAsCustomerQueryParams;
|
|
@@ -120630,9 +120899,9 @@ interface CreateUploadLinkAsCustomerProps {
|
|
|
120630
120899
|
}
|
|
120631
120900
|
declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
|
|
120632
120901
|
|
|
120633
|
-
declare const routeName$
|
|
120634
|
-
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$
|
|
120635
|
-
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$
|
|
120902
|
+
declare const routeName$6b = "/v1/api/claims/generate/token";
|
|
120903
|
+
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
|
|
120904
|
+
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
|
|
120636
120905
|
interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
120637
120906
|
params: {
|
|
120638
120907
|
query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
|
|
@@ -120640,17 +120909,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
|
120640
120909
|
}
|
|
120641
120910
|
declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
|
|
120642
120911
|
|
|
120643
|
-
declare const routeName$
|
|
120644
|
-
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$
|
|
120645
|
-
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$
|
|
120646
|
-
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$
|
|
120647
|
-
type GetClaimEventsAsCustomerProps = paths[typeof routeName$
|
|
120912
|
+
declare const routeName$6a = "/v1/api/claims/customer/token/{token}/events";
|
|
120913
|
+
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
|
|
120914
|
+
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$6a]['get']['parameters']['query'];
|
|
120915
|
+
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
|
|
120916
|
+
type GetClaimEventsAsCustomerProps = paths[typeof routeName$6a]['get']['parameters'];
|
|
120648
120917
|
declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
|
|
120649
120918
|
|
|
120650
|
-
declare const routeName$
|
|
120651
|
-
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$
|
|
120652
|
-
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
120653
|
-
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$
|
|
120919
|
+
declare const routeName$69 = "/v1/api/claims/customer/token/{token}/documents";
|
|
120920
|
+
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$69]['post']['parameters']['path'];
|
|
120921
|
+
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
|
|
120922
|
+
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$69]['post']['responses'][200]['content']['application/json'];
|
|
120654
120923
|
interface CreateDocumentForClaimAsCustomerProps {
|
|
120655
120924
|
params: {
|
|
120656
120925
|
query: CreateDocumentForClaimAsCustomerQueryParams;
|
|
@@ -120659,10 +120928,10 @@ interface CreateDocumentForClaimAsCustomerProps {
|
|
|
120659
120928
|
}
|
|
120660
120929
|
declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
|
|
120661
120930
|
|
|
120662
|
-
declare const routeName$
|
|
120663
|
-
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120664
|
-
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120665
|
-
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120931
|
+
declare const routeName$68 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
120932
|
+
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$68]['delete']['parameters']['path'];
|
|
120933
|
+
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['delete']['parameters']['query'];
|
|
120934
|
+
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$68]['delete']['responses'][200]['content']['application/json'];
|
|
120666
120935
|
interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
120667
120936
|
params: {
|
|
120668
120937
|
query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120671,10 +120940,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
|
120671
120940
|
}
|
|
120672
120941
|
declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
|
|
120673
120942
|
|
|
120674
|
-
declare const routeName$
|
|
120675
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120676
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120677
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120943
|
+
declare const routeName$67 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
120944
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
|
|
120945
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['patch']['parameters']['query'];
|
|
120946
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
|
|
120678
120947
|
interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
120679
120948
|
params: {
|
|
120680
120949
|
query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120683,10 +120952,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
|
120683
120952
|
}
|
|
120684
120953
|
declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
|
|
120685
120954
|
|
|
120686
|
-
declare const routeName$
|
|
120687
|
-
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$
|
|
120688
|
-
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$
|
|
120689
|
-
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$
|
|
120955
|
+
declare const routeName$66 = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
|
|
120956
|
+
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
|
|
120957
|
+
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
|
|
120958
|
+
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$66]['post']['responses'][200]['content']['application/json'];
|
|
120690
120959
|
interface CreateNoteOnEventAsCustomerProps {
|
|
120691
120960
|
params: {
|
|
120692
120961
|
query: CreateNoteOnEventAsCustomerQueryParams;
|
|
@@ -120695,10 +120964,10 @@ interface CreateNoteOnEventAsCustomerProps {
|
|
|
120695
120964
|
}
|
|
120696
120965
|
declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
|
|
120697
120966
|
|
|
120698
|
-
declare const routeName$
|
|
120699
|
-
type CreateEntityAsBrokerPathParams = paths[typeof routeName$
|
|
120700
|
-
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$
|
|
120701
|
-
type CreateEntityAsBrokerResponse = paths[typeof routeName$
|
|
120967
|
+
declare const routeName$65 = "/v1/api/claims/{claim_id}/entities";
|
|
120968
|
+
type CreateEntityAsBrokerPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
|
|
120969
|
+
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
|
|
120970
|
+
type CreateEntityAsBrokerResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
|
|
120702
120971
|
interface CreateEntityAsBrokerProps {
|
|
120703
120972
|
params: {
|
|
120704
120973
|
query: CreateEntityAsBrokerQueryParams;
|
|
@@ -120707,10 +120976,10 @@ interface CreateEntityAsBrokerProps {
|
|
|
120707
120976
|
}
|
|
120708
120977
|
declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
|
|
120709
120978
|
|
|
120710
|
-
declare const routeName$
|
|
120711
|
-
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120712
|
-
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120713
|
-
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
120979
|
+
declare const routeName$64 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
120980
|
+
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
|
|
120981
|
+
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
|
|
120982
|
+
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
|
|
120714
120983
|
interface DeleteEntityAsBrokerByIdProps {
|
|
120715
120984
|
params: {
|
|
120716
120985
|
query: DeleteEntityAsBrokerByIdQueryParams;
|
|
@@ -120719,10 +120988,10 @@ interface DeleteEntityAsBrokerByIdProps {
|
|
|
120719
120988
|
}
|
|
120720
120989
|
declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
|
|
120721
120990
|
|
|
120722
|
-
declare const routeName$
|
|
120723
|
-
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120724
|
-
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120725
|
-
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
120991
|
+
declare const routeName$63 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
120992
|
+
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$63]['patch']['parameters']['path'];
|
|
120993
|
+
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$63]['patch']['parameters']['query'];
|
|
120994
|
+
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$63]['patch']['responses'][200]['content']['application/json'];
|
|
120726
120995
|
interface UpdateEntityAsBrokerByIdProps {
|
|
120727
120996
|
params: {
|
|
120728
120997
|
query: UpdateEntityAsBrokerByIdQueryParams;
|
|
@@ -120731,17 +121000,17 @@ interface UpdateEntityAsBrokerByIdProps {
|
|
|
120731
121000
|
}
|
|
120732
121001
|
declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
|
|
120733
121002
|
|
|
120734
|
-
declare const routeName$
|
|
120735
|
-
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120736
|
-
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120737
|
-
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$
|
|
120738
|
-
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$
|
|
121003
|
+
declare const routeName$62 = "/v1/api/claims/{claim_id}/events";
|
|
121004
|
+
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$62]['get']['parameters']['path'];
|
|
121005
|
+
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
|
|
121006
|
+
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
|
|
121007
|
+
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$62]['get']['parameters'];
|
|
120739
121008
|
declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
|
|
120740
121009
|
|
|
120741
|
-
declare const routeName$
|
|
120742
|
-
type SendClaimToKeypointPathParams = paths[typeof routeName$
|
|
120743
|
-
type SendClaimToKeypointQueryParams = paths[typeof routeName$
|
|
120744
|
-
type SendClaimToKeypointResponse = paths[typeof routeName$
|
|
121010
|
+
declare const routeName$61 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
|
|
121011
|
+
type SendClaimToKeypointPathParams = paths[typeof routeName$61]['post']['parameters']['path'];
|
|
121012
|
+
type SendClaimToKeypointQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
|
|
121013
|
+
type SendClaimToKeypointResponse = paths[typeof routeName$61]['post']['responses'][201]['content']['application/json'];
|
|
120745
121014
|
interface SendClaimToKeypointProps {
|
|
120746
121015
|
params: {
|
|
120747
121016
|
query: SendClaimToKeypointQueryParams;
|
|
@@ -120750,10 +121019,10 @@ interface SendClaimToKeypointProps {
|
|
|
120750
121019
|
}
|
|
120751
121020
|
declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
|
|
120752
121021
|
|
|
120753
|
-
declare const routeName$
|
|
120754
|
-
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$
|
|
120755
|
-
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$
|
|
120756
|
-
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$
|
|
121022
|
+
declare const routeName$60 = "/v1/api/claims/{claim_id}/customer/followup-page/email";
|
|
121023
|
+
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
|
|
121024
|
+
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
|
|
121025
|
+
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$60]['post']['responses'][200]['content']['application/json'];
|
|
120757
121026
|
interface SendMailFollowupPageToCustomerProps {
|
|
120758
121027
|
params: {
|
|
120759
121028
|
query: SendMailFollowupPageToCustomerQueryParams;
|
|
@@ -120762,21 +121031,21 @@ interface SendMailFollowupPageToCustomerProps {
|
|
|
120762
121031
|
}
|
|
120763
121032
|
declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
|
|
120764
121033
|
|
|
120765
|
-
declare const routeName$
|
|
120766
|
-
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$
|
|
121034
|
+
declare const routeName$5$ = "/v1/api/claims/categories/CAR";
|
|
121035
|
+
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
|
|
120767
121036
|
declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
|
|
120768
121037
|
|
|
120769
|
-
declare const routeName$
|
|
120770
|
-
type GetInfoForClaimPathParams = paths[typeof routeName$
|
|
120771
|
-
type GetInfoForClaimQueryParams = paths[typeof routeName$
|
|
120772
|
-
type GetInfoForClaimResponse = paths[typeof routeName$
|
|
120773
|
-
type GetInfoForClaimProps = paths[typeof routeName$
|
|
121038
|
+
declare const routeName$5_ = "/v1/api/claims/info/{claim_type}/{claim_category}";
|
|
121039
|
+
type GetInfoForClaimPathParams = paths[typeof routeName$5_]['get']['parameters']['path'];
|
|
121040
|
+
type GetInfoForClaimQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
|
|
121041
|
+
type GetInfoForClaimResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
|
|
121042
|
+
type GetInfoForClaimProps = paths[typeof routeName$5_]['get']['parameters'];
|
|
120774
121043
|
declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
|
|
120775
121044
|
|
|
120776
|
-
declare const routeName$
|
|
120777
|
-
type CreateNoteOnEventPathParams = paths[typeof routeName$
|
|
120778
|
-
type CreateNoteOnEventQueryParams = paths[typeof routeName$
|
|
120779
|
-
type CreateNoteOnEventResponse = paths[typeof routeName$
|
|
121045
|
+
declare const routeName$5Z = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
|
|
121046
|
+
type CreateNoteOnEventPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
|
|
121047
|
+
type CreateNoteOnEventQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
|
|
121048
|
+
type CreateNoteOnEventResponse = paths[typeof routeName$5Z]['post']['responses'][201]['content']['application/json'];
|
|
120780
121049
|
interface CreateNoteOnEventProps {
|
|
120781
121050
|
params: {
|
|
120782
121051
|
query: CreateNoteOnEventQueryParams;
|
|
@@ -120785,10 +121054,10 @@ interface CreateNoteOnEventProps {
|
|
|
120785
121054
|
}
|
|
120786
121055
|
declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
|
|
120787
121056
|
|
|
120788
|
-
declare const routeName$
|
|
120789
|
-
type DeleteNotePathParams = paths[typeof routeName$
|
|
120790
|
-
type DeleteNoteQueryParams = paths[typeof routeName$
|
|
120791
|
-
type DeleteNoteResponse = paths[typeof routeName$
|
|
121057
|
+
declare const routeName$5Y = "/v1/api/claims/notes/{note_id}";
|
|
121058
|
+
type DeleteNotePathParams = paths[typeof routeName$5Y]['delete']['parameters']['path'];
|
|
121059
|
+
type DeleteNoteQueryParams = paths[typeof routeName$5Y]['delete']['parameters']['query'];
|
|
121060
|
+
type DeleteNoteResponse = paths[typeof routeName$5Y]['delete']['responses'][200]['content']['application/json'];
|
|
120792
121061
|
interface DeleteNoteProps {
|
|
120793
121062
|
params: {
|
|
120794
121063
|
query: DeleteNoteQueryParams;
|
|
@@ -120797,10 +121066,10 @@ interface DeleteNoteProps {
|
|
|
120797
121066
|
}
|
|
120798
121067
|
declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
|
|
120799
121068
|
|
|
120800
|
-
declare const routeName$
|
|
120801
|
-
type UpdateNotePathParams = paths[typeof routeName$
|
|
120802
|
-
type UpdateNoteQueryParams = paths[typeof routeName$
|
|
120803
|
-
type UpdateNoteResponse = paths[typeof routeName$
|
|
121069
|
+
declare const routeName$5X = "/v1/api/claims/notes/{note_id}";
|
|
121070
|
+
type UpdateNotePathParams = paths[typeof routeName$5X]['patch']['parameters']['path'];
|
|
121071
|
+
type UpdateNoteQueryParams = paths[typeof routeName$5X]['patch']['parameters']['query'];
|
|
121072
|
+
type UpdateNoteResponse = paths[typeof routeName$5X]['patch']['responses'][200]['content']['application/json'];
|
|
120804
121073
|
interface UpdateNoteProps {
|
|
120805
121074
|
params: {
|
|
120806
121075
|
query: UpdateNoteQueryParams;
|
|
@@ -120809,17 +121078,17 @@ interface UpdateNoteProps {
|
|
|
120809
121078
|
}
|
|
120810
121079
|
declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
|
|
120811
121080
|
|
|
120812
|
-
declare const routeName$
|
|
120813
|
-
type ClaimReportByIdPathParams = paths[typeof routeName$
|
|
120814
|
-
type ClaimReportByIdQueryParams = paths[typeof routeName$
|
|
120815
|
-
type ClaimReportByIdResponse = paths[typeof routeName$
|
|
120816
|
-
type ClaimReportByIdProps = paths[typeof routeName$
|
|
121081
|
+
declare const routeName$5W = "/v1/api/claims/{claim_id}/report";
|
|
121082
|
+
type ClaimReportByIdPathParams = paths[typeof routeName$5W]['get']['parameters']['path'];
|
|
121083
|
+
type ClaimReportByIdQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
|
|
121084
|
+
type ClaimReportByIdResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
|
|
121085
|
+
type ClaimReportByIdProps = paths[typeof routeName$5W]['get']['parameters'];
|
|
120817
121086
|
declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
|
|
120818
121087
|
|
|
120819
|
-
declare const routeName$
|
|
120820
|
-
type SendMailClaimReportByIdPathParams = paths[typeof routeName$
|
|
120821
|
-
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$
|
|
120822
|
-
type SendMailClaimReportByIdResponse = paths[typeof routeName$
|
|
121088
|
+
declare const routeName$5V = "/v1/api/claims/{claim_id}/report/email";
|
|
121089
|
+
type SendMailClaimReportByIdPathParams = paths[typeof routeName$5V]['post']['parameters']['path'];
|
|
121090
|
+
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5V]['post']['parameters']['query'];
|
|
121091
|
+
type SendMailClaimReportByIdResponse = paths[typeof routeName$5V]['post']['responses'][200]['content']['application/json'];
|
|
120823
121092
|
interface SendMailClaimReportByIdProps {
|
|
120824
121093
|
params: {
|
|
120825
121094
|
query: SendMailClaimReportByIdQueryParams;
|
|
@@ -120828,16 +121097,16 @@ interface SendMailClaimReportByIdProps {
|
|
|
120828
121097
|
}
|
|
120829
121098
|
declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
|
|
120830
121099
|
|
|
120831
|
-
declare const routeName$
|
|
120832
|
-
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
120833
|
-
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
120834
|
-
type GetBrokerConnectionsByIdProps = paths[typeof routeName$
|
|
121100
|
+
declare const routeName$5U = "/v1/api/brokers/{broker_id}/connections";
|
|
121101
|
+
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5U]['get']['parameters']['path'];
|
|
121102
|
+
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
|
|
121103
|
+
type GetBrokerConnectionsByIdProps = paths[typeof routeName$5U]['get']['parameters'];
|
|
120835
121104
|
declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
|
|
120836
121105
|
|
|
120837
|
-
declare const routeName$
|
|
120838
|
-
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$
|
|
120839
|
-
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
120840
|
-
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
121106
|
+
declare const routeName$5T = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121107
|
+
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5T]['post']['requestBody']['content']['application/json'];
|
|
121108
|
+
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
|
|
121109
|
+
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5T]['post']['responses'][201]['content']['application/json'];
|
|
120841
121110
|
interface CreateBrokerConnectionsByIdProps {
|
|
120842
121111
|
body: CreateBrokerConnectionsByIdBody;
|
|
120843
121112
|
params: {
|
|
@@ -120846,9 +121115,9 @@ interface CreateBrokerConnectionsByIdProps {
|
|
|
120846
121115
|
}
|
|
120847
121116
|
declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
|
|
120848
121117
|
|
|
120849
|
-
declare const routeName$
|
|
120850
|
-
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
120851
|
-
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
121118
|
+
declare const routeName$5S = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121119
|
+
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5S]['delete']['parameters']['path'];
|
|
121120
|
+
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5S]['delete']['responses'][200]['content']['application/json'];
|
|
120852
121121
|
interface DeleteBrokerConnectionByKeyProps {
|
|
120853
121122
|
params: {
|
|
120854
121123
|
path: DeleteBrokerConnectionByKeyPathParams;
|
|
@@ -120856,10 +121125,10 @@ interface DeleteBrokerConnectionByKeyProps {
|
|
|
120856
121125
|
}
|
|
120857
121126
|
declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
|
|
120858
121127
|
|
|
120859
|
-
declare const routeName$
|
|
120860
|
-
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$
|
|
120861
|
-
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
120862
|
-
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
121128
|
+
declare const routeName$5R = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121129
|
+
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5R]['patch']['requestBody']['content']['application/json'];
|
|
121130
|
+
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5R]['patch']['parameters']['path'];
|
|
121131
|
+
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5R]['patch']['responses'][200]['content']['application/json'];
|
|
120863
121132
|
interface UpdateBrokerConnectionByKeyProps {
|
|
120864
121133
|
body: UpdateBrokerConnectionByKeyBody;
|
|
120865
121134
|
params: {
|
|
@@ -120868,10 +121137,10 @@ interface UpdateBrokerConnectionByKeyProps {
|
|
|
120868
121137
|
}
|
|
120869
121138
|
declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
|
|
120870
121139
|
|
|
120871
|
-
declare const routeName$
|
|
120872
|
-
type CreateDistributionConnectionByIdBody = paths[typeof routeName$
|
|
120873
|
-
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$
|
|
120874
|
-
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$
|
|
121140
|
+
declare const routeName$5Q = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121141
|
+
type CreateDistributionConnectionByIdBody = paths[typeof routeName$5Q]['post']['requestBody']['content']['application/json'];
|
|
121142
|
+
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
|
|
121143
|
+
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5Q]['post']['responses'][201]['content']['application/json'];
|
|
120875
121144
|
interface CreateDistributionConnectionByIdProps {
|
|
120876
121145
|
body: CreateDistributionConnectionByIdBody;
|
|
120877
121146
|
params: {
|
|
@@ -120880,9 +121149,9 @@ interface CreateDistributionConnectionByIdProps {
|
|
|
120880
121149
|
}
|
|
120881
121150
|
declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
|
|
120882
121151
|
|
|
120883
|
-
declare const routeName$
|
|
120884
|
-
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
120885
|
-
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
121152
|
+
declare const routeName$5P = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121153
|
+
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5P]['delete']['parameters']['path'];
|
|
121154
|
+
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5P]['delete']['responses'][200]['content']['application/json'];
|
|
120886
121155
|
interface DeleteDistributionConnectionByKeyProps {
|
|
120887
121156
|
params: {
|
|
120888
121157
|
path: DeleteDistributionConnectionByKeyPathParams;
|
|
@@ -120890,10 +121159,10 @@ interface DeleteDistributionConnectionByKeyProps {
|
|
|
120890
121159
|
}
|
|
120891
121160
|
declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
|
|
120892
121161
|
|
|
120893
|
-
declare const routeName$
|
|
120894
|
-
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$
|
|
120895
|
-
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
120896
|
-
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
121162
|
+
declare const routeName$5O = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121163
|
+
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5O]['patch']['requestBody']['content']['application/json'];
|
|
121164
|
+
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5O]['patch']['parameters']['path'];
|
|
121165
|
+
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5O]['patch']['responses'][200]['content']['application/json'];
|
|
120897
121166
|
interface UpdateDistributionConnectionByKeyProps {
|
|
120898
121167
|
body: UpdateDistributionConnectionByKeyBody;
|
|
120899
121168
|
params: {
|
|
@@ -120902,41 +121171,41 @@ interface UpdateDistributionConnectionByKeyProps {
|
|
|
120902
121171
|
}
|
|
120903
121172
|
declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
|
|
120904
121173
|
|
|
120905
|
-
declare const routeName$
|
|
120906
|
-
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$
|
|
120907
|
-
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$
|
|
120908
|
-
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$
|
|
120909
|
-
type GetDistributionConnectionsByIdProps = paths[typeof routeName$
|
|
121174
|
+
declare const routeName$5N = "/v1/api/distributions/{distribution_id}/connections";
|
|
121175
|
+
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
|
|
121176
|
+
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
|
|
121177
|
+
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
|
|
121178
|
+
type GetDistributionConnectionsByIdProps = paths[typeof routeName$5N]['get']['parameters'];
|
|
120910
121179
|
declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
|
|
120911
121180
|
|
|
120912
|
-
declare const routeName$
|
|
120913
|
-
type GetAnvaPartiesQueryParams = paths[typeof routeName$
|
|
120914
|
-
type GetAnvaPartiesResponse = paths[typeof routeName$
|
|
120915
|
-
type GetAnvaPartiesProps = paths[typeof routeName$
|
|
121181
|
+
declare const routeName$5M = "/v1/api/connections/anva/parties";
|
|
121182
|
+
type GetAnvaPartiesQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
|
|
121183
|
+
type GetAnvaPartiesResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
|
|
121184
|
+
type GetAnvaPartiesProps = paths[typeof routeName$5M]['get']['parameters'];
|
|
120916
121185
|
declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
|
|
120917
121186
|
|
|
120918
|
-
declare const routeName$
|
|
120919
|
-
type GetAnvaEmployeesQueryParams = paths[typeof routeName$
|
|
120920
|
-
type GetAnvaEmployeesResponse = paths[typeof routeName$
|
|
120921
|
-
type GetAnvaEmployeesProps = paths[typeof routeName$
|
|
121187
|
+
declare const routeName$5L = "/v1/api/connections/anva/employees";
|
|
121188
|
+
type GetAnvaEmployeesQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
|
|
121189
|
+
type GetAnvaEmployeesResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
|
|
121190
|
+
type GetAnvaEmployeesProps = paths[typeof routeName$5L]['get']['parameters'];
|
|
120922
121191
|
declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
|
|
120923
121192
|
|
|
120924
|
-
declare const routeName$
|
|
120925
|
-
type GetAnvaAgentsQueryParams = paths[typeof routeName$
|
|
120926
|
-
type GetAnvaAgentsResponse = paths[typeof routeName$
|
|
120927
|
-
type GetAnvaAgentsProps = paths[typeof routeName$
|
|
121193
|
+
declare const routeName$5K = "/v1/api/connections/anva/agents";
|
|
121194
|
+
type GetAnvaAgentsQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
|
|
121195
|
+
type GetAnvaAgentsResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
|
|
121196
|
+
type GetAnvaAgentsProps = paths[typeof routeName$5K]['get']['parameters'];
|
|
120928
121197
|
declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
|
|
120929
121198
|
|
|
120930
|
-
declare const routeName$
|
|
120931
|
-
type GetAnvaProductsQueryParams = paths[typeof routeName$
|
|
120932
|
-
type GetAnvaProductsResponse = paths[typeof routeName$
|
|
120933
|
-
type GetAnvaProductsProps = paths[typeof routeName$
|
|
121199
|
+
declare const routeName$5J = "/v1/api/connections/anva/products";
|
|
121200
|
+
type GetAnvaProductsQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
|
|
121201
|
+
type GetAnvaProductsResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
|
|
121202
|
+
type GetAnvaProductsProps = paths[typeof routeName$5J]['get']['parameters'];
|
|
120934
121203
|
declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
|
|
120935
121204
|
|
|
120936
|
-
declare const routeName$
|
|
120937
|
-
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$
|
|
120938
|
-
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$
|
|
120939
|
-
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$
|
|
121205
|
+
declare const routeName$5I = "/v1/api/connections/anva/parties/{anva_id}/imports";
|
|
121206
|
+
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5I]['post']['parameters']['path'];
|
|
121207
|
+
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5I]['post']['parameters']['query'];
|
|
121208
|
+
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5I]['post']['responses'][201]['content']['application/json'];
|
|
120940
121209
|
interface ImportAnvaPartyInWegroupProps {
|
|
120941
121210
|
params: {
|
|
120942
121211
|
query: ImportAnvaPartyInWegroupQueryParams;
|
|
@@ -120945,31 +121214,31 @@ interface ImportAnvaPartyInWegroupProps {
|
|
|
120945
121214
|
}
|
|
120946
121215
|
declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
|
|
120947
121216
|
|
|
120948
|
-
declare const routeName$
|
|
120949
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$
|
|
120950
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120951
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$
|
|
120952
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$
|
|
121217
|
+
declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
|
|
121218
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
|
|
121219
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
|
|
121220
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5H]['get']['responses'][307]['content']['application/json'];
|
|
121221
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5H]['get']['parameters'];
|
|
120953
121222
|
declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
|
|
120954
121223
|
|
|
120955
|
-
declare const routeName$
|
|
120956
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$
|
|
120957
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120958
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$
|
|
120959
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$
|
|
121224
|
+
declare const routeName$5G = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
|
|
121225
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
|
|
121226
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
|
|
121227
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][307]['content']['application/json'];
|
|
121228
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
|
|
120960
121229
|
declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
|
|
120961
121230
|
|
|
120962
|
-
declare const routeName$
|
|
120963
|
-
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120964
|
-
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$
|
|
120965
|
-
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$
|
|
121231
|
+
declare const routeName$5F = "/v1/api/connections/anva/documents/import";
|
|
121232
|
+
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
|
|
121233
|
+
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][307]['content']['application/json'];
|
|
121234
|
+
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
|
|
120966
121235
|
declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
|
|
120967
121236
|
|
|
120968
|
-
declare const routeName$
|
|
120969
|
-
type CreateAnvaTaskBody = paths[typeof routeName$
|
|
120970
|
-
type CreateAnvaTaskPathParams = paths[typeof routeName$
|
|
120971
|
-
type CreateAnvaTaskQueryParams = paths[typeof routeName$
|
|
120972
|
-
type CreateAnvaTaskResponse = paths[typeof routeName$
|
|
121237
|
+
declare const routeName$5E = "/v1/api/connections/anva/parties/{anva_party_id}/task";
|
|
121238
|
+
type CreateAnvaTaskBody = paths[typeof routeName$5E]['post']['requestBody']['content']['application/json'];
|
|
121239
|
+
type CreateAnvaTaskPathParams = paths[typeof routeName$5E]['post']['parameters']['path'];
|
|
121240
|
+
type CreateAnvaTaskQueryParams = paths[typeof routeName$5E]['post']['parameters']['query'];
|
|
121241
|
+
type CreateAnvaTaskResponse = paths[typeof routeName$5E]['post']['responses'][201]['content']['application/json'];
|
|
120973
121242
|
interface CreateAnvaTaskProps {
|
|
120974
121243
|
body: CreateAnvaTaskBody;
|
|
120975
121244
|
params: {
|
|
@@ -120979,9 +121248,9 @@ interface CreateAnvaTaskProps {
|
|
|
120979
121248
|
}
|
|
120980
121249
|
declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
|
|
120981
121250
|
|
|
120982
|
-
declare const routeName$
|
|
120983
|
-
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$
|
|
120984
|
-
type ValidateAnvaConnectionResponse = paths[typeof routeName$
|
|
121251
|
+
declare const routeName$5D = "/v1/api/connections/anva/validate";
|
|
121252
|
+
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
|
|
121253
|
+
type ValidateAnvaConnectionResponse = paths[typeof routeName$5D]['post']['responses'][200]['content']['application/json'];
|
|
120985
121254
|
interface ValidateAnvaConnectionProps {
|
|
120986
121255
|
params: {
|
|
120987
121256
|
query: ValidateAnvaConnectionQueryParams;
|
|
@@ -120989,9 +121258,9 @@ interface ValidateAnvaConnectionProps {
|
|
|
120989
121258
|
}
|
|
120990
121259
|
declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
|
|
120991
121260
|
|
|
120992
|
-
declare const routeName$
|
|
120993
|
-
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$
|
|
120994
|
-
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$
|
|
121261
|
+
declare const routeName$5C = "/v1/api/connections/anva_dwh/validate";
|
|
121262
|
+
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
|
|
121263
|
+
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5C]['post']['responses'][200]['content']['application/json'];
|
|
120995
121264
|
interface ValidateAnvaDwhConnectionProps {
|
|
120996
121265
|
params: {
|
|
120997
121266
|
query: ValidateAnvaDwhConnectionQueryParams;
|
|
@@ -120999,22 +121268,22 @@ interface ValidateAnvaDwhConnectionProps {
|
|
|
120999
121268
|
}
|
|
121000
121269
|
declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
|
|
121001
121270
|
|
|
121002
|
-
declare const routeName$
|
|
121003
|
-
type GetDiasPartiesQueryParams = paths[typeof routeName$
|
|
121004
|
-
type GetDiasPartiesResponse = paths[typeof routeName$
|
|
121005
|
-
type GetDiasPartiesProps = paths[typeof routeName$
|
|
121271
|
+
declare const routeName$5B = "/v1/api/connections/dias/parties";
|
|
121272
|
+
type GetDiasPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
|
|
121273
|
+
type GetDiasPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
|
|
121274
|
+
type GetDiasPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
|
|
121006
121275
|
declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
|
|
121007
121276
|
|
|
121008
|
-
declare const routeName$
|
|
121009
|
-
type GetDiasEmployeesQueryParams = paths[typeof routeName$
|
|
121010
|
-
type GetDiasEmployeesResponse = paths[typeof routeName$
|
|
121011
|
-
type GetDiasEmployeesProps = paths[typeof routeName$
|
|
121277
|
+
declare const routeName$5A = "/v1/api/connections/dias/employees";
|
|
121278
|
+
type GetDiasEmployeesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
|
|
121279
|
+
type GetDiasEmployeesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
|
|
121280
|
+
type GetDiasEmployeesProps = paths[typeof routeName$5A]['get']['parameters'];
|
|
121012
121281
|
declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
|
|
121013
121282
|
|
|
121014
|
-
declare const routeName$
|
|
121015
|
-
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$
|
|
121016
|
-
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$
|
|
121017
|
-
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$
|
|
121283
|
+
declare const routeName$5z = "/v1/api/connections/dias/parties/{dias_id}/imports";
|
|
121284
|
+
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
|
|
121285
|
+
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
|
|
121286
|
+
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
|
|
121018
121287
|
interface ImportDiasPartyInWegroupProps {
|
|
121019
121288
|
params: {
|
|
121020
121289
|
query: ImportDiasPartyInWegroupQueryParams;
|
|
@@ -121023,37 +121292,37 @@ interface ImportDiasPartyInWegroupProps {
|
|
|
121023
121292
|
}
|
|
121024
121293
|
declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
|
|
121025
121294
|
|
|
121026
|
-
declare const routeName$
|
|
121027
|
-
type GetDiasProductsQueryParams = paths[typeof routeName$
|
|
121028
|
-
type GetDiasProductsResponse = paths[typeof routeName$
|
|
121029
|
-
type GetDiasProductsProps = paths[typeof routeName$
|
|
121295
|
+
declare const routeName$5y = "/v1/api/connections/dias/products";
|
|
121296
|
+
type GetDiasProductsQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
|
|
121297
|
+
type GetDiasProductsResponse = paths[typeof routeName$5y]['get']['responses'][200]['content']['application/json'];
|
|
121298
|
+
type GetDiasProductsProps = paths[typeof routeName$5y]['get']['parameters'];
|
|
121030
121299
|
declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
|
|
121031
121300
|
|
|
121032
|
-
declare const routeName$
|
|
121033
|
-
type GetDiasAfdbranchesResponse = paths[typeof routeName$
|
|
121301
|
+
declare const routeName$5x = "/v1/api/connections/dias/afdbranches";
|
|
121302
|
+
type GetDiasAfdbranchesResponse = paths[typeof routeName$5x]['get']['responses'][200]['content']['application/json'];
|
|
121034
121303
|
declare const getDiasAfdbranches: (wgApiClient: ClientType) => Promise<GetDiasAfdbranchesResponse>;
|
|
121035
121304
|
|
|
121036
|
-
declare const routeName$
|
|
121037
|
-
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$
|
|
121038
|
-
type GetFasterforwardEmployeesResponse = paths[typeof routeName$
|
|
121039
|
-
type GetFasterforwardEmployeesProps = paths[typeof routeName$
|
|
121305
|
+
declare const routeName$5w = "/v1/api/connections/fasterforward/employees";
|
|
121306
|
+
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
|
|
121307
|
+
type GetFasterforwardEmployeesResponse = paths[typeof routeName$5w]['get']['responses'][200]['content']['application/json'];
|
|
121308
|
+
type GetFasterforwardEmployeesProps = paths[typeof routeName$5w]['get']['parameters'];
|
|
121040
121309
|
declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
|
|
121041
121310
|
|
|
121042
|
-
declare const routeName$
|
|
121043
|
-
type GetAssuEmployeesQueryParams = paths[typeof routeName$
|
|
121044
|
-
type GetAssuEmployeesResponse = paths[typeof routeName$
|
|
121045
|
-
type GetAssuEmployeesProps = paths[typeof routeName$
|
|
121311
|
+
declare const routeName$5v = "/v1/api/connections/assu/employees";
|
|
121312
|
+
type GetAssuEmployeesQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
|
|
121313
|
+
type GetAssuEmployeesResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
|
|
121314
|
+
type GetAssuEmployeesProps = paths[typeof routeName$5v]['get']['parameters'];
|
|
121046
121315
|
declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
|
|
121047
121316
|
|
|
121048
|
-
declare const routeName$
|
|
121049
|
-
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$
|
|
121050
|
-
type GetFasterforwardTeamsResponse = paths[typeof routeName$
|
|
121051
|
-
type GetFasterforwardTeamsProps = paths[typeof routeName$
|
|
121317
|
+
declare const routeName$5u = "/v1/api/connections/fasterforward/teams";
|
|
121318
|
+
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
|
|
121319
|
+
type GetFasterforwardTeamsResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
|
|
121320
|
+
type GetFasterforwardTeamsProps = paths[typeof routeName$5u]['get']['parameters'];
|
|
121052
121321
|
declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
|
|
121053
121322
|
|
|
121054
|
-
declare const routeName$
|
|
121055
|
-
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$
|
|
121056
|
-
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$
|
|
121323
|
+
declare const routeName$5t = "/v1/api/connections/fasterforward/validate";
|
|
121324
|
+
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
|
|
121325
|
+
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
|
|
121057
121326
|
interface ValidateFasterforwardConnectionProps {
|
|
121058
121327
|
params: {
|
|
121059
121328
|
query: ValidateFasterforwardConnectionQueryParams;
|
|
@@ -121061,42 +121330,42 @@ interface ValidateFasterforwardConnectionProps {
|
|
|
121061
121330
|
}
|
|
121062
121331
|
declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
|
|
121063
121332
|
|
|
121064
|
-
declare const routeName$
|
|
121065
|
-
type GetOutlookMailsQueryParams = paths[typeof routeName$
|
|
121066
|
-
type GetOutlookMailsResponse = paths[typeof routeName$
|
|
121067
|
-
type GetOutlookMailsProps = paths[typeof routeName$
|
|
121333
|
+
declare const routeName$5s = "/v1/api/connections/outlook/mails";
|
|
121334
|
+
type GetOutlookMailsQueryParams = paths[typeof routeName$5s]['get']['parameters']['query'];
|
|
121335
|
+
type GetOutlookMailsResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
|
|
121336
|
+
type GetOutlookMailsProps = paths[typeof routeName$5s]['get']['parameters'];
|
|
121068
121337
|
declare const getOutlookMails: (props: GetOutlookMailsProps, wgApiClient: ClientType) => Promise<GetOutlookMailsResponse>;
|
|
121069
121338
|
|
|
121070
|
-
declare const routeName$
|
|
121071
|
-
type GetOutlookMailByIdPathParams = paths[typeof routeName$
|
|
121072
|
-
type GetOutlookMailByIdQueryParams = paths[typeof routeName$
|
|
121073
|
-
type GetOutlookMailByIdResponse = paths[typeof routeName$
|
|
121074
|
-
type GetOutlookMailByIdProps = paths[typeof routeName$
|
|
121339
|
+
declare const routeName$5r = "/v1/api/connections/outlook/mails/{id}";
|
|
121340
|
+
type GetOutlookMailByIdPathParams = paths[typeof routeName$5r]['get']['parameters']['path'];
|
|
121341
|
+
type GetOutlookMailByIdQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
|
|
121342
|
+
type GetOutlookMailByIdResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
|
|
121343
|
+
type GetOutlookMailByIdProps = paths[typeof routeName$5r]['get']['parameters'];
|
|
121075
121344
|
declare const getOutlookMailById: (props: GetOutlookMailByIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByIdResponse>;
|
|
121076
121345
|
|
|
121077
|
-
declare const routeName$
|
|
121078
|
-
type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$
|
|
121079
|
-
type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$
|
|
121080
|
-
type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$
|
|
121081
|
-
type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$
|
|
121346
|
+
declare const routeName$5q = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
|
|
121347
|
+
type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5q]['get']['parameters']['path'];
|
|
121348
|
+
type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
|
|
121349
|
+
type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
|
|
121350
|
+
type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5q]['get']['parameters'];
|
|
121082
121351
|
declare const getOutlookMailByOutlookMessageId: (props: GetOutlookMailByOutlookMessageIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByOutlookMessageIdResponse>;
|
|
121083
121352
|
|
|
121084
|
-
declare const routeName$
|
|
121085
|
-
type GetOutlookMailfoldersQueryParams = paths[typeof routeName$
|
|
121086
|
-
type GetOutlookMailfoldersResponse = paths[typeof routeName$
|
|
121087
|
-
type GetOutlookMailfoldersProps = paths[typeof routeName$
|
|
121353
|
+
declare const routeName$5p = "/v1/api/connections/outlook/mailfolders";
|
|
121354
|
+
type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
|
|
121355
|
+
type GetOutlookMailfoldersResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
|
|
121356
|
+
type GetOutlookMailfoldersProps = paths[typeof routeName$5p]['get']['parameters'];
|
|
121088
121357
|
declare const getOutlookMailfolders: (props: GetOutlookMailfoldersProps, wgApiClient: ClientType) => Promise<GetOutlookMailfoldersResponse>;
|
|
121089
121358
|
|
|
121090
|
-
declare const routeName$
|
|
121091
|
-
type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$
|
|
121092
|
-
type GetOutlookConnectionDetailsResponse = paths[typeof routeName$
|
|
121093
|
-
type GetOutlookConnectionDetailsProps = paths[typeof routeName$
|
|
121359
|
+
declare const routeName$5o = "/v1/api/connections/outlook";
|
|
121360
|
+
type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
|
|
121361
|
+
type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
|
|
121362
|
+
type GetOutlookConnectionDetailsProps = paths[typeof routeName$5o]['get']['parameters'];
|
|
121094
121363
|
declare const getOutlookConnectionDetails: (props: GetOutlookConnectionDetailsProps, wgApiClient: ClientType) => Promise<GetOutlookConnectionDetailsResponse>;
|
|
121095
121364
|
|
|
121096
|
-
declare const routeName$
|
|
121097
|
-
type ActivateOutlookConnectionSyncBody = paths[typeof routeName$
|
|
121098
|
-
type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$
|
|
121099
|
-
type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$
|
|
121365
|
+
declare const routeName$5n = "/v1/api/connections/outlook/sync/activate";
|
|
121366
|
+
type ActivateOutlookConnectionSyncBody = paths[typeof routeName$5n]['post']['requestBody']['content']['application/json'];
|
|
121367
|
+
type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5n]['post']['parameters']['query'];
|
|
121368
|
+
type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$5n]['post']['responses'][200]['content']['application/json'];
|
|
121100
121369
|
interface ActivateOutlookConnectionSyncProps {
|
|
121101
121370
|
body: ActivateOutlookConnectionSyncBody;
|
|
121102
121371
|
params: {
|
|
@@ -121105,6 +121374,28 @@ interface ActivateOutlookConnectionSyncProps {
|
|
|
121105
121374
|
}
|
|
121106
121375
|
declare const activateOutlookConnectionSync: (props: ActivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<ActivateOutlookConnectionSyncResponse>;
|
|
121107
121376
|
|
|
121377
|
+
declare const routeName$5m = "/v1/api/connections/outlook/sync/deactivate";
|
|
121378
|
+
type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$5m]['post']['requestBody']['content']['application/json'];
|
|
121379
|
+
type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5m]['post']['parameters']['query'];
|
|
121380
|
+
type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$5m]['post']['responses'][200]['content']['application/json'];
|
|
121381
|
+
interface DeactivateOutlookConnectionSyncProps {
|
|
121382
|
+
body: DeactivateOutlookConnectionSyncBody;
|
|
121383
|
+
params: {
|
|
121384
|
+
query: DeactivateOutlookConnectionSyncQueryParams;
|
|
121385
|
+
};
|
|
121386
|
+
}
|
|
121387
|
+
declare const deactivateOutlookConnectionSync: (props: DeactivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<DeactivateOutlookConnectionSyncResponse>;
|
|
121388
|
+
|
|
121389
|
+
declare const routeName$5l = "/v1/api/connections/outlook/sync";
|
|
121390
|
+
type OutlookConnectionSyncQueryParams = paths[typeof routeName$5l]['post']['parameters']['query'];
|
|
121391
|
+
type OutlookConnectionSyncResponse = paths[typeof routeName$5l]['post']['responses'][200]['content']['application/json'];
|
|
121392
|
+
interface OutlookConnectionSyncProps {
|
|
121393
|
+
params: {
|
|
121394
|
+
query: OutlookConnectionSyncQueryParams;
|
|
121395
|
+
};
|
|
121396
|
+
}
|
|
121397
|
+
declare const outlookConnectionSync: (props: OutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<OutlookConnectionSyncResponse>;
|
|
121398
|
+
|
|
121108
121399
|
declare const routeName$5k = "/v1/api/integrations/anva/parties";
|
|
121109
121400
|
type DeprecatedGetAnvaPartiesQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
|
|
121110
121401
|
type DeprecatedGetAnvaPartiesResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
|
|
@@ -124222,4 +124513,4 @@ interface ValidateYellowhiveQuestionnaireProps {
|
|
|
124222
124513
|
}
|
|
124223
124514
|
declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
|
|
124224
124515
|
|
|
124225
|
-
export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasContactPersonBody, type CreateDiasContactPersonPathParams, type CreateDiasContactPersonQueryParams, type CreateDiasContactPersonResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedGetAnvaPartiesQueryParams, type DeprecatedGetAnvaPartiesResponse, type DeprecatedImportAnvaPartyInWegroupPathParams, type DeprecatedImportAnvaPartyInWegroupQueryParams, type DeprecatedImportAnvaPartyInWegroupResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasContactPersonCreateCmd, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasContactPersonParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookConnectionDetails, type SchemaOutlookEmail, type SchemaOutlookEmailItem, type SchemaOutlookEmails, type SchemaOutlookMailHeader, type SchemaOutlookMailRecepient, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasContactPerson, createDiasPartyViaConversation, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedGetAnvaParties, deprecatedImportAnvaPartyInWegroup, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
|
|
124516
|
+
export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasContactPersonBody, type CreateDiasContactPersonPathParams, type CreateDiasContactPersonQueryParams, type CreateDiasContactPersonResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeactivateOutlookConnectionSyncBody, type DeactivateOutlookConnectionSyncQueryParams, type DeactivateOutlookConnectionSyncResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedGetAnvaPartiesQueryParams, type DeprecatedGetAnvaPartiesResponse, type DeprecatedImportAnvaPartyInWegroupPathParams, type DeprecatedImportAnvaPartyInWegroupQueryParams, type DeprecatedImportAnvaPartyInWegroupResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OutlookConnectionSyncQueryParams, type OutlookConnectionSyncResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasContactPersonCreateCmd, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeactivateOutlookSyncCmd, type SchemaDeactivateOutlookSyncParams, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasClosingQuestion, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasContactPersonParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookConnectionDetails, type SchemaOutlookEmail, type SchemaOutlookEmailItem, type SchemaOutlookEmails, type SchemaOutlookMailHeader, type SchemaOutlookMailRecepient, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasContactPerson, createDiasPartyViaConversation, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deactivateOutlookConnectionSync, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedGetAnvaParties, deprecatedImportAnvaPartyInWegroup, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, outlookConnectionSync, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
|