wg-api-sdk 4.30.268 → 4.30.270
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 +1120 -702
- package/dist/esm/index.mjs +1 -1
- package/dist/index.d.ts +1120 -702
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -2784,6 +2784,61 @@ interface paths {
|
|
|
2784
2784
|
patch?: never;
|
|
2785
2785
|
trace?: never;
|
|
2786
2786
|
};
|
|
2787
|
+
"/v1/api/connections/outlook/sync/activate": {
|
|
2788
|
+
parameters: {
|
|
2789
|
+
query?: never;
|
|
2790
|
+
header?: never;
|
|
2791
|
+
path?: never;
|
|
2792
|
+
cookie?: never;
|
|
2793
|
+
};
|
|
2794
|
+
get?: never;
|
|
2795
|
+
put?: never;
|
|
2796
|
+
/** Activate Outlook Connection Sync */
|
|
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"];
|
|
2836
|
+
delete?: never;
|
|
2837
|
+
options?: never;
|
|
2838
|
+
head?: never;
|
|
2839
|
+
patch?: never;
|
|
2840
|
+
trace?: never;
|
|
2841
|
+
};
|
|
2787
2842
|
"/v1/api/integrations/anva/parties": {
|
|
2788
2843
|
parameters: {
|
|
2789
2844
|
query?: never;
|
|
@@ -9227,7 +9282,7 @@ interface components {
|
|
|
9227
9282
|
* Timestamp
|
|
9228
9283
|
* Format: date-time
|
|
9229
9284
|
* @description Timestamp of when the error occured
|
|
9230
|
-
* @default 2026-02-
|
|
9285
|
+
* @default 2026-02-24T13:50:45.240479
|
|
9231
9286
|
*/
|
|
9232
9287
|
timestamp: string;
|
|
9233
9288
|
/**
|
|
@@ -51946,6 +52001,45 @@ interface components {
|
|
|
51946
52001
|
*/
|
|
51947
52002
|
last_error_at?: string;
|
|
51948
52003
|
};
|
|
52004
|
+
/** activate_outlook_sync_params */
|
|
52005
|
+
activate_outlook_sync_params: {
|
|
52006
|
+
/**
|
|
52007
|
+
* Broker Id
|
|
52008
|
+
* Format: uuid
|
|
52009
|
+
*/
|
|
52010
|
+
broker_id: string;
|
|
52011
|
+
data: components["schemas"]["ActivateOutlookSyncCmd"];
|
|
52012
|
+
};
|
|
52013
|
+
/** ActivateOutlookSyncCmd */
|
|
52014
|
+
ActivateOutlookSyncCmd: {
|
|
52015
|
+
/**
|
|
52016
|
+
* Mailfolders
|
|
52017
|
+
* @description An array of outlook_id's, these are long strings.
|
|
52018
|
+
*/
|
|
52019
|
+
mailfolders: string[];
|
|
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
|
+
};
|
|
51949
52043
|
/** PromotionQueryModel */
|
|
51950
52044
|
PromotionQueryModel: {
|
|
51951
52045
|
/** Code */
|
|
@@ -53742,7 +53836,7 @@ interface components {
|
|
|
53742
53836
|
/**
|
|
53743
53837
|
* Quote Specifications
|
|
53744
53838
|
* @default {
|
|
53745
|
-
* "contract_commencement_date": "2026-02-
|
|
53839
|
+
* "contract_commencement_date": "2026-02-24"
|
|
53746
53840
|
* }
|
|
53747
53841
|
*/
|
|
53748
53842
|
quote_specifications: components["schemas"]["QuoteSpecification"];
|
|
@@ -66466,6 +66560,8 @@ interface components {
|
|
|
66466
66560
|
status: components["schemas"]["DIAS_FLOW_STATUS"];
|
|
66467
66561
|
/** Packages */
|
|
66468
66562
|
packages: components["schemas"]["DiasPackage"][];
|
|
66563
|
+
/** Closing Questions */
|
|
66564
|
+
closing_questions: components["schemas"]["DiasClosingQuestion"][];
|
|
66469
66565
|
insurance_company: components["schemas"]["DiasInsuranceCompany"];
|
|
66470
66566
|
/** Required Object Codes */
|
|
66471
66567
|
required_object_codes: number[];
|
|
@@ -66497,8 +66593,6 @@ interface components {
|
|
|
66497
66593
|
DIAS_FLOW_STATUS: "ACTIVE" | "UNDER_CONSTRUCTION" | "DISABLED";
|
|
66498
66594
|
/** DiasPackage */
|
|
66499
66595
|
DiasPackage: {
|
|
66500
|
-
/** Id */
|
|
66501
|
-
id: number;
|
|
66502
66596
|
/** Dias Id */
|
|
66503
66597
|
dias_id: number;
|
|
66504
66598
|
/** Name */
|
|
@@ -66506,6 +66600,19 @@ interface components {
|
|
|
66506
66600
|
/** Enabled */
|
|
66507
66601
|
enabled: boolean;
|
|
66508
66602
|
};
|
|
66603
|
+
/** DiasClosingQuestion */
|
|
66604
|
+
DiasClosingQuestion: {
|
|
66605
|
+
/** Dias Id */
|
|
66606
|
+
dias_id: number;
|
|
66607
|
+
/** Text */
|
|
66608
|
+
text: string;
|
|
66609
|
+
/** Order */
|
|
66610
|
+
order: number;
|
|
66611
|
+
/** Show Clarification On Confirmation */
|
|
66612
|
+
show_clarification_on_confirmation: boolean;
|
|
66613
|
+
/** Show Clarification On Rejection */
|
|
66614
|
+
show_clarification_on_rejection: boolean;
|
|
66615
|
+
};
|
|
66509
66616
|
/** handle_import_dias_products_params */
|
|
66510
66617
|
handle_import_dias_products_params: {
|
|
66511
66618
|
auth: components["schemas"]["Auth"];
|
|
@@ -71838,6 +71945,10 @@ type SchemaMicrosoftOutlookMailFolders = components['schemas']['MicrosoftOutlook
|
|
|
71838
71945
|
type SchemaMicrosoftOutlookMailFolder = components['schemas']['MicrosoftOutlookMailFolder'];
|
|
71839
71946
|
type SchemaOutlookConnectionDetails = components['schemas']['OutlookConnectionDetails'];
|
|
71840
71947
|
type SchemaBrokerConnectionOutlookMailFolderSyncDetails = components['schemas']['BrokerConnectionOutlookMailFolderSyncDetails'];
|
|
71948
|
+
type SchemaActivateOutlookSyncParams = components['schemas']['activate_outlook_sync_params'];
|
|
71949
|
+
type SchemaActivateOutlookSyncCmd = components['schemas']['ActivateOutlookSyncCmd'];
|
|
71950
|
+
type SchemaDeactivateOutlookSyncParams = components['schemas']['deactivate_outlook_sync_params'];
|
|
71951
|
+
type SchemaDeactivateOutlookSyncCmd = components['schemas']['DeactivateOutlookSyncCmd'];
|
|
71841
71952
|
type SchemaPromotionQueryModel = components['schemas']['PromotionQueryModel'];
|
|
71842
71953
|
type SchemaMultiAffiliationInfoQueryModel = components['schemas']['MultiAffiliationInfoQueryModel'];
|
|
71843
71954
|
type SchemaAffiliationInfo = components['schemas']['AffiliationInfo'];
|
|
@@ -72477,6 +72588,7 @@ type SchemaDiasProduct = components['schemas']['DiasProduct'];
|
|
|
72477
72588
|
type SchemaDiasCoverage = components['schemas']['DiasCoverage'];
|
|
72478
72589
|
type SchemaDiasFlowStatus = components['schemas']['DIAS_FLOW_STATUS'];
|
|
72479
72590
|
type SchemaDiasPackage = components['schemas']['DiasPackage'];
|
|
72591
|
+
type SchemaDiasClosingQuestion = components['schemas']['DiasClosingQuestion'];
|
|
72480
72592
|
type SchemaHandleImportDiasProductsParams = components['schemas']['handle_import_dias_products_params'];
|
|
72481
72593
|
type SchemaDiasProductImportCmd = components['schemas']['DiasProductImportCmd'];
|
|
72482
72594
|
type SchemaHandleUpdateDiasflowsProductByIdParams = components['schemas']['handle_update_diasflows_product_by_id_params'];
|
|
@@ -87701,6 +87813,278 @@ interface operations {
|
|
|
87701
87813
|
};
|
|
87702
87814
|
};
|
|
87703
87815
|
};
|
|
87816
|
+
activate_outlook_connection_sync_v1_api_connections_outlook_sync_activate_post: {
|
|
87817
|
+
parameters: {
|
|
87818
|
+
query?: {
|
|
87819
|
+
/**
|
|
87820
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
87821
|
+
* @example EN
|
|
87822
|
+
*/
|
|
87823
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87824
|
+
/**
|
|
87825
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
87826
|
+
* @example EN
|
|
87827
|
+
*/
|
|
87828
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87829
|
+
};
|
|
87830
|
+
header?: {
|
|
87831
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
87832
|
+
"x-release"?: string;
|
|
87833
|
+
};
|
|
87834
|
+
path?: never;
|
|
87835
|
+
cookie?: never;
|
|
87836
|
+
};
|
|
87837
|
+
requestBody: {
|
|
87838
|
+
content: {
|
|
87839
|
+
"application/json": components["schemas"]["activate_outlook_sync_params"]["data"];
|
|
87840
|
+
};
|
|
87841
|
+
};
|
|
87842
|
+
responses: {
|
|
87843
|
+
/** @description Successful Response */
|
|
87844
|
+
200: {
|
|
87845
|
+
headers: {
|
|
87846
|
+
[name: string]: unknown;
|
|
87847
|
+
};
|
|
87848
|
+
content: {
|
|
87849
|
+
"application/json": components["schemas"]["app__handlers__nats__models__StatusResponse"];
|
|
87850
|
+
};
|
|
87851
|
+
};
|
|
87852
|
+
/** @description Bad Request */
|
|
87853
|
+
400: {
|
|
87854
|
+
headers: {
|
|
87855
|
+
[name: string]: unknown;
|
|
87856
|
+
};
|
|
87857
|
+
content: {
|
|
87858
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
87859
|
+
};
|
|
87860
|
+
};
|
|
87861
|
+
/** @description Unauthorized */
|
|
87862
|
+
401: {
|
|
87863
|
+
headers: {
|
|
87864
|
+
[name: string]: unknown;
|
|
87865
|
+
};
|
|
87866
|
+
content: {
|
|
87867
|
+
"application/json": components["schemas"]["Error_401"];
|
|
87868
|
+
};
|
|
87869
|
+
};
|
|
87870
|
+
/** @description Forbidden */
|
|
87871
|
+
403: {
|
|
87872
|
+
headers: {
|
|
87873
|
+
[name: string]: unknown;
|
|
87874
|
+
};
|
|
87875
|
+
content: {
|
|
87876
|
+
"application/json": components["schemas"]["Error_403"];
|
|
87877
|
+
};
|
|
87878
|
+
};
|
|
87879
|
+
/** @description Unprocessable Content */
|
|
87880
|
+
422: {
|
|
87881
|
+
headers: {
|
|
87882
|
+
[name: string]: unknown;
|
|
87883
|
+
};
|
|
87884
|
+
content: {
|
|
87885
|
+
"application/json": components["schemas"]["Error_422"];
|
|
87886
|
+
};
|
|
87887
|
+
};
|
|
87888
|
+
/** @description Too Many Requests */
|
|
87889
|
+
429: {
|
|
87890
|
+
headers: {
|
|
87891
|
+
[name: string]: unknown;
|
|
87892
|
+
};
|
|
87893
|
+
content: {
|
|
87894
|
+
"application/json": components["schemas"]["Error_429"];
|
|
87895
|
+
};
|
|
87896
|
+
};
|
|
87897
|
+
/** @description Internal Server Error */
|
|
87898
|
+
500: {
|
|
87899
|
+
headers: {
|
|
87900
|
+
[name: string]: unknown;
|
|
87901
|
+
};
|
|
87902
|
+
content: {
|
|
87903
|
+
"application/json": components["schemas"]["ServerError"];
|
|
87904
|
+
};
|
|
87905
|
+
};
|
|
87906
|
+
};
|
|
87907
|
+
};
|
|
87908
|
+
deactivate_outlook_connection_sync_v1_api_connections_outlook_sync_deactivate_post: {
|
|
87909
|
+
parameters: {
|
|
87910
|
+
query?: {
|
|
87911
|
+
/**
|
|
87912
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
87913
|
+
* @example EN
|
|
87914
|
+
*/
|
|
87915
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87916
|
+
/**
|
|
87917
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
87918
|
+
* @example EN
|
|
87919
|
+
*/
|
|
87920
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
87921
|
+
};
|
|
87922
|
+
header?: {
|
|
87923
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
87924
|
+
"x-release"?: string;
|
|
87925
|
+
};
|
|
87926
|
+
path?: never;
|
|
87927
|
+
cookie?: never;
|
|
87928
|
+
};
|
|
87929
|
+
requestBody: {
|
|
87930
|
+
content: {
|
|
87931
|
+
"application/json": components["schemas"]["deactivate_outlook_sync_params"]["data"];
|
|
87932
|
+
};
|
|
87933
|
+
};
|
|
87934
|
+
responses: {
|
|
87935
|
+
/** @description Successful Response */
|
|
87936
|
+
200: {
|
|
87937
|
+
headers: {
|
|
87938
|
+
[name: string]: unknown;
|
|
87939
|
+
};
|
|
87940
|
+
content: {
|
|
87941
|
+
"application/json": components["schemas"]["app__handlers__nats__models__StatusResponse"];
|
|
87942
|
+
};
|
|
87943
|
+
};
|
|
87944
|
+
/** @description Bad Request */
|
|
87945
|
+
400: {
|
|
87946
|
+
headers: {
|
|
87947
|
+
[name: string]: unknown;
|
|
87948
|
+
};
|
|
87949
|
+
content: {
|
|
87950
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
87951
|
+
};
|
|
87952
|
+
};
|
|
87953
|
+
/** @description Unauthorized */
|
|
87954
|
+
401: {
|
|
87955
|
+
headers: {
|
|
87956
|
+
[name: string]: unknown;
|
|
87957
|
+
};
|
|
87958
|
+
content: {
|
|
87959
|
+
"application/json": components["schemas"]["Error_401"];
|
|
87960
|
+
};
|
|
87961
|
+
};
|
|
87962
|
+
/** @description Forbidden */
|
|
87963
|
+
403: {
|
|
87964
|
+
headers: {
|
|
87965
|
+
[name: string]: unknown;
|
|
87966
|
+
};
|
|
87967
|
+
content: {
|
|
87968
|
+
"application/json": components["schemas"]["Error_403"];
|
|
87969
|
+
};
|
|
87970
|
+
};
|
|
87971
|
+
/** @description Unprocessable Content */
|
|
87972
|
+
422: {
|
|
87973
|
+
headers: {
|
|
87974
|
+
[name: string]: unknown;
|
|
87975
|
+
};
|
|
87976
|
+
content: {
|
|
87977
|
+
"application/json": components["schemas"]["Error_422"];
|
|
87978
|
+
};
|
|
87979
|
+
};
|
|
87980
|
+
/** @description Too Many Requests */
|
|
87981
|
+
429: {
|
|
87982
|
+
headers: {
|
|
87983
|
+
[name: string]: unknown;
|
|
87984
|
+
};
|
|
87985
|
+
content: {
|
|
87986
|
+
"application/json": components["schemas"]["Error_429"];
|
|
87987
|
+
};
|
|
87988
|
+
};
|
|
87989
|
+
/** @description Internal Server Error */
|
|
87990
|
+
500: {
|
|
87991
|
+
headers: {
|
|
87992
|
+
[name: string]: unknown;
|
|
87993
|
+
};
|
|
87994
|
+
content: {
|
|
87995
|
+
"application/json": components["schemas"]["ServerError"];
|
|
87996
|
+
};
|
|
87997
|
+
};
|
|
87998
|
+
};
|
|
87999
|
+
};
|
|
88000
|
+
outlook_connection_sync_v1_api_connections_outlook_sync_post: {
|
|
88001
|
+
parameters: {
|
|
88002
|
+
query?: {
|
|
88003
|
+
/**
|
|
88004
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
88005
|
+
* @example EN
|
|
88006
|
+
*/
|
|
88007
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
88008
|
+
/**
|
|
88009
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
88010
|
+
* @example EN
|
|
88011
|
+
*/
|
|
88012
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
88013
|
+
};
|
|
88014
|
+
header?: {
|
|
88015
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
88016
|
+
"x-release"?: string;
|
|
88017
|
+
};
|
|
88018
|
+
path?: never;
|
|
88019
|
+
cookie?: never;
|
|
88020
|
+
};
|
|
88021
|
+
requestBody?: never;
|
|
88022
|
+
responses: {
|
|
88023
|
+
/** @description Successful Response */
|
|
88024
|
+
200: {
|
|
88025
|
+
headers: {
|
|
88026
|
+
[name: string]: unknown;
|
|
88027
|
+
};
|
|
88028
|
+
content: {
|
|
88029
|
+
"application/json": components["schemas"]["app__handlers__nats__models__StatusResponse"];
|
|
88030
|
+
};
|
|
88031
|
+
};
|
|
88032
|
+
/** @description Bad Request */
|
|
88033
|
+
400: {
|
|
88034
|
+
headers: {
|
|
88035
|
+
[name: string]: unknown;
|
|
88036
|
+
};
|
|
88037
|
+
content: {
|
|
88038
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
88039
|
+
};
|
|
88040
|
+
};
|
|
88041
|
+
/** @description Unauthorized */
|
|
88042
|
+
401: {
|
|
88043
|
+
headers: {
|
|
88044
|
+
[name: string]: unknown;
|
|
88045
|
+
};
|
|
88046
|
+
content: {
|
|
88047
|
+
"application/json": components["schemas"]["Error_401"];
|
|
88048
|
+
};
|
|
88049
|
+
};
|
|
88050
|
+
/** @description Forbidden */
|
|
88051
|
+
403: {
|
|
88052
|
+
headers: {
|
|
88053
|
+
[name: string]: unknown;
|
|
88054
|
+
};
|
|
88055
|
+
content: {
|
|
88056
|
+
"application/json": components["schemas"]["Error_403"];
|
|
88057
|
+
};
|
|
88058
|
+
};
|
|
88059
|
+
/** @description Unprocessable Content */
|
|
88060
|
+
422: {
|
|
88061
|
+
headers: {
|
|
88062
|
+
[name: string]: unknown;
|
|
88063
|
+
};
|
|
88064
|
+
content: {
|
|
88065
|
+
"application/json": components["schemas"]["Error_422"];
|
|
88066
|
+
};
|
|
88067
|
+
};
|
|
88068
|
+
/** @description Too Many Requests */
|
|
88069
|
+
429: {
|
|
88070
|
+
headers: {
|
|
88071
|
+
[name: string]: unknown;
|
|
88072
|
+
};
|
|
88073
|
+
content: {
|
|
88074
|
+
"application/json": components["schemas"]["Error_429"];
|
|
88075
|
+
};
|
|
88076
|
+
};
|
|
88077
|
+
/** @description Internal Server Error */
|
|
88078
|
+
500: {
|
|
88079
|
+
headers: {
|
|
88080
|
+
[name: string]: unknown;
|
|
88081
|
+
};
|
|
88082
|
+
content: {
|
|
88083
|
+
"application/json": components["schemas"]["ServerError"];
|
|
88084
|
+
};
|
|
88085
|
+
};
|
|
88086
|
+
};
|
|
88087
|
+
};
|
|
87704
88088
|
deprecated_get_anva_parties_v1_api_integrations_anva_parties_get: {
|
|
87705
88089
|
parameters: {
|
|
87706
88090
|
query: {
|
|
@@ -119331,52 +119715,52 @@ type Middleware = Middleware$1;
|
|
|
119331
119715
|
type ClientType = ReturnType<typeof createClient<paths>>;
|
|
119332
119716
|
declare const wgApiClient: (options: ClientOptions) => ClientType;
|
|
119333
119717
|
|
|
119334
|
-
declare const routeName$
|
|
119335
|
-
type GetWeatherInfoQueryParams = paths[typeof routeName$
|
|
119336
|
-
type GetWeatherInfoResponse = paths[typeof routeName$
|
|
119337
|
-
type GetWeatherInfoProps = paths[typeof routeName$
|
|
119718
|
+
declare const routeName$7Y = "/v1/api/weather/info";
|
|
119719
|
+
type GetWeatherInfoQueryParams = paths[typeof routeName$7Y]['get']['parameters']['query'];
|
|
119720
|
+
type GetWeatherInfoResponse = paths[typeof routeName$7Y]['get']['responses'][200]['content']['application/json'];
|
|
119721
|
+
type GetWeatherInfoProps = paths[typeof routeName$7Y]['get']['parameters'];
|
|
119338
119722
|
declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
|
|
119339
119723
|
|
|
119340
|
-
declare const routeName$
|
|
119341
|
-
type SearchCitiesByCountryQueryParams = paths[typeof routeName$
|
|
119342
|
-
type SearchCitiesByCountryResponse = paths[typeof routeName$
|
|
119343
|
-
type SearchCitiesByCountryProps = paths[typeof routeName$
|
|
119724
|
+
declare const routeName$7X = "/v1/api/address/cities";
|
|
119725
|
+
type SearchCitiesByCountryQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
|
|
119726
|
+
type SearchCitiesByCountryResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
|
|
119727
|
+
type SearchCitiesByCountryProps = paths[typeof routeName$7X]['get']['parameters'];
|
|
119344
119728
|
declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
|
|
119345
119729
|
|
|
119346
|
-
declare const routeName$
|
|
119347
|
-
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$
|
|
119348
|
-
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$
|
|
119349
|
-
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$
|
|
119730
|
+
declare const routeName$7W = "/v1/api/address/streets";
|
|
119731
|
+
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
|
|
119732
|
+
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
|
|
119733
|
+
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7W]['get']['parameters'];
|
|
119350
119734
|
declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
|
|
119351
119735
|
|
|
119352
|
-
declare const routeName$
|
|
119353
|
-
type SearchAddressesByCountryQueryParams = paths[typeof routeName$
|
|
119354
|
-
type SearchAddressesByCountryResponse = paths[typeof routeName$
|
|
119355
|
-
type SearchAddressesByCountryProps = paths[typeof routeName$
|
|
119736
|
+
declare const routeName$7V = "/v1/api/address/search";
|
|
119737
|
+
type SearchAddressesByCountryQueryParams = paths[typeof routeName$7V]['get']['parameters']['query'];
|
|
119738
|
+
type SearchAddressesByCountryResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
|
|
119739
|
+
type SearchAddressesByCountryProps = paths[typeof routeName$7V]['get']['parameters'];
|
|
119356
119740
|
declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
|
|
119357
119741
|
|
|
119358
|
-
declare const routeName$
|
|
119359
|
-
type GetAddressInfoQueryParams = paths[typeof routeName$
|
|
119360
|
-
type GetAddressInfoResponse = paths[typeof routeName$
|
|
119361
|
-
type GetAddressInfoProps = paths[typeof routeName$
|
|
119742
|
+
declare const routeName$7U = "/v1/api/address/info/premium";
|
|
119743
|
+
type GetAddressInfoQueryParams = paths[typeof routeName$7U]['get']['parameters']['query'];
|
|
119744
|
+
type GetAddressInfoResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
|
|
119745
|
+
type GetAddressInfoProps = paths[typeof routeName$7U]['get']['parameters'];
|
|
119362
119746
|
declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
|
|
119363
119747
|
|
|
119364
|
-
declare const routeName$
|
|
119365
|
-
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$
|
|
119366
|
-
type GetAddressInfoFreemiumResponse = paths[typeof routeName$
|
|
119367
|
-
type GetAddressInfoFreemiumProps = paths[typeof routeName$
|
|
119748
|
+
declare const routeName$7T = "/v1/api/address/info/freemium";
|
|
119749
|
+
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7T]['get']['parameters']['query'];
|
|
119750
|
+
type GetAddressInfoFreemiumResponse = paths[typeof routeName$7T]['get']['responses'][200]['content']['application/json'];
|
|
119751
|
+
type GetAddressInfoFreemiumProps = paths[typeof routeName$7T]['get']['parameters'];
|
|
119368
119752
|
declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
|
|
119369
119753
|
|
|
119370
|
-
declare const routeName$
|
|
119371
|
-
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$
|
|
119372
|
-
type GetAllAdvisoryReportsResponse = paths[typeof routeName$
|
|
119373
|
-
type GetAllAdvisoryReportsProps = paths[typeof routeName$
|
|
119754
|
+
declare const routeName$7S = "/v1/api/advisory-reports";
|
|
119755
|
+
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7S]['get']['parameters']['query'];
|
|
119756
|
+
type GetAllAdvisoryReportsResponse = paths[typeof routeName$7S]['get']['responses'][200]['content']['application/json'];
|
|
119757
|
+
type GetAllAdvisoryReportsProps = paths[typeof routeName$7S]['get']['parameters'];
|
|
119374
119758
|
declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
|
|
119375
119759
|
|
|
119376
|
-
declare const routeName$
|
|
119377
|
-
type CreateAdvisoryReportBody = paths[typeof routeName$
|
|
119378
|
-
type CreateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119379
|
-
type CreateAdvisoryReportResponse = paths[typeof routeName$
|
|
119760
|
+
declare const routeName$7R = "/v1/api/advisory-reports";
|
|
119761
|
+
type CreateAdvisoryReportBody = paths[typeof routeName$7R]['post']['requestBody']['content']['application/json'];
|
|
119762
|
+
type CreateAdvisoryReportQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
|
|
119763
|
+
type CreateAdvisoryReportResponse = paths[typeof routeName$7R]['post']['responses'][201]['content']['application/json'];
|
|
119380
119764
|
interface CreateAdvisoryReportProps {
|
|
119381
119765
|
body: CreateAdvisoryReportBody;
|
|
119382
119766
|
params: {
|
|
@@ -119385,17 +119769,17 @@ interface CreateAdvisoryReportProps {
|
|
|
119385
119769
|
}
|
|
119386
119770
|
declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
|
|
119387
119771
|
|
|
119388
|
-
declare const routeName$
|
|
119389
|
-
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119390
|
-
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119391
|
-
type GetAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119392
|
-
type GetAdvisoryReportByIdProps = paths[typeof routeName$
|
|
119772
|
+
declare const routeName$7Q = "/v1/api/advisory-reports/{report_id}";
|
|
119773
|
+
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7Q]['get']['parameters']['path'];
|
|
119774
|
+
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
|
|
119775
|
+
type GetAdvisoryReportByIdResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
|
|
119776
|
+
type GetAdvisoryReportByIdProps = paths[typeof routeName$7Q]['get']['parameters'];
|
|
119393
119777
|
declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
|
|
119394
119778
|
|
|
119395
|
-
declare const routeName$
|
|
119396
|
-
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
119397
|
-
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
119398
|
-
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
119779
|
+
declare const routeName$7P = "/v1/api/advisory-reports/{report_id}";
|
|
119780
|
+
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7P]['delete']['parameters']['path'];
|
|
119781
|
+
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7P]['delete']['parameters']['query'];
|
|
119782
|
+
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7P]['delete']['responses'][200]['content']['application/json'];
|
|
119399
119783
|
interface DeleteAdvisoryReportRevisionProps {
|
|
119400
119784
|
params: {
|
|
119401
119785
|
query: DeleteAdvisoryReportRevisionQueryParams;
|
|
@@ -119404,11 +119788,11 @@ interface DeleteAdvisoryReportRevisionProps {
|
|
|
119404
119788
|
}
|
|
119405
119789
|
declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
|
|
119406
119790
|
|
|
119407
|
-
declare const routeName$
|
|
119408
|
-
type UpdateAdvisoryReportBody = paths[typeof routeName$
|
|
119409
|
-
type UpdateAdvisoryReportPathParams = paths[typeof routeName$
|
|
119410
|
-
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119411
|
-
type UpdateAdvisoryReportResponse = paths[typeof routeName$
|
|
119791
|
+
declare const routeName$7O = "/v1/api/advisory-reports/{report_id}";
|
|
119792
|
+
type UpdateAdvisoryReportBody = paths[typeof routeName$7O]['patch']['requestBody']['content']['application/json'];
|
|
119793
|
+
type UpdateAdvisoryReportPathParams = paths[typeof routeName$7O]['patch']['parameters']['path'];
|
|
119794
|
+
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7O]['patch']['parameters']['query'];
|
|
119795
|
+
type UpdateAdvisoryReportResponse = paths[typeof routeName$7O]['patch']['responses'][200]['content']['application/json'];
|
|
119412
119796
|
interface UpdateAdvisoryReportProps {
|
|
119413
119797
|
body: UpdateAdvisoryReportBody;
|
|
119414
119798
|
params: {
|
|
@@ -119418,18 +119802,18 @@ interface UpdateAdvisoryReportProps {
|
|
|
119418
119802
|
}
|
|
119419
119803
|
declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
|
|
119420
119804
|
|
|
119421
|
-
declare const routeName$
|
|
119422
|
-
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
119423
|
-
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
119424
|
-
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
119425
|
-
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
119805
|
+
declare const routeName$7N = "/v1/api/advisory-reports/{report_id}/events";
|
|
119806
|
+
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7N]['get']['parameters']['path'];
|
|
119807
|
+
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
|
|
119808
|
+
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
|
|
119809
|
+
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7N]['get']['parameters'];
|
|
119426
119810
|
declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
|
|
119427
119811
|
|
|
119428
|
-
declare const routeName$
|
|
119429
|
-
type SendAdvisoryReportAsMailBody = paths[typeof routeName$
|
|
119430
|
-
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$
|
|
119431
|
-
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$
|
|
119432
|
-
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$
|
|
119812
|
+
declare const routeName$7M = "/v1/api/advisory-reports/{report_id}/email-inquiries";
|
|
119813
|
+
type SendAdvisoryReportAsMailBody = paths[typeof routeName$7M]['post']['requestBody']['content']['application/json'];
|
|
119814
|
+
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7M]['post']['parameters']['path'];
|
|
119815
|
+
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7M]['post']['parameters']['query'];
|
|
119816
|
+
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7M]['post']['responses'][201]['content']['application/json'];
|
|
119433
119817
|
interface SendAdvisoryReportAsMailProps {
|
|
119434
119818
|
body: SendAdvisoryReportAsMailBody;
|
|
119435
119819
|
params: {
|
|
@@ -119439,10 +119823,10 @@ interface SendAdvisoryReportAsMailProps {
|
|
|
119439
119823
|
}
|
|
119440
119824
|
declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
|
|
119441
119825
|
|
|
119442
|
-
declare const routeName$
|
|
119443
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119444
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119445
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119826
|
+
declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/docx";
|
|
119827
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7L]['post']['parameters']['path'];
|
|
119828
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7L]['post']['parameters']['query'];
|
|
119829
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7L]['post']['responses'][200]['content']['application/json'];
|
|
119446
119830
|
interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
119447
119831
|
params: {
|
|
119448
119832
|
query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
|
|
@@ -119451,17 +119835,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
|
119451
119835
|
}
|
|
119452
119836
|
declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
|
|
119453
119837
|
|
|
119454
|
-
declare const routeName$
|
|
119455
|
-
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119456
|
-
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119457
|
-
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119458
|
-
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$
|
|
119838
|
+
declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
119839
|
+
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7K]['get']['parameters']['path'];
|
|
119840
|
+
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
|
|
119841
|
+
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7K]['get']['responses'][307]['content']['application/json'];
|
|
119842
|
+
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7K]['get']['parameters'];
|
|
119459
119843
|
declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
|
|
119460
119844
|
|
|
119461
|
-
declare const routeName$
|
|
119462
|
-
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119463
|
-
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119464
|
-
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119845
|
+
declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
119846
|
+
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7J]['post']['parameters']['path'];
|
|
119847
|
+
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7J]['post']['parameters']['query'];
|
|
119848
|
+
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7J]['post']['responses'][200]['content']['application/json'];
|
|
119465
119849
|
interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
119466
119850
|
params: {
|
|
119467
119851
|
query: GeneratePdfOfAdvisoryReportByIdQueryParams;
|
|
@@ -119470,10 +119854,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
|
119470
119854
|
}
|
|
119471
119855
|
declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
|
|
119472
119856
|
|
|
119473
|
-
declare const routeName$
|
|
119474
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$
|
|
119475
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$
|
|
119476
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$
|
|
119857
|
+
declare const routeName$7I = "/v1/api/advisory-report-front-page-pdf";
|
|
119858
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7I]['post']['requestBody']['content']['application/json'];
|
|
119859
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7I]['post']['parameters']['query'];
|
|
119860
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7I]['post']['responses'][201]['content']['application/json'];
|
|
119477
119861
|
interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
119478
119862
|
body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
|
|
119479
119863
|
params: {
|
|
@@ -119482,11 +119866,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
|
119482
119866
|
}
|
|
119483
119867
|
declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
|
|
119484
119868
|
|
|
119485
|
-
declare const routeName$
|
|
119486
|
-
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$
|
|
119487
|
-
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$
|
|
119488
|
-
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119489
|
-
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$
|
|
119869
|
+
declare const routeName$7H = "/v1/api/advisory-reports/{report_id}/acceptances";
|
|
119870
|
+
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
|
|
119871
|
+
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7H]['post']['parameters']['path'];
|
|
119872
|
+
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
|
|
119873
|
+
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7H]['post']['responses'][200]['content']['application/json'];
|
|
119490
119874
|
interface AcceptOrRejectAnAdvisoryReportProps {
|
|
119491
119875
|
body: AcceptOrRejectAnAdvisoryReportBody;
|
|
119492
119876
|
params: {
|
|
@@ -119496,11 +119880,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
|
|
|
119496
119880
|
}
|
|
119497
119881
|
declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
|
|
119498
119882
|
|
|
119499
|
-
declare const routeName$
|
|
119500
|
-
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$
|
|
119501
|
-
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$
|
|
119502
|
-
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119503
|
-
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$
|
|
119883
|
+
declare const routeName$7G = "/v1/api/advisory-reports/{report_id}/conversations";
|
|
119884
|
+
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
|
|
119885
|
+
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7G]['post']['parameters']['path'];
|
|
119886
|
+
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
|
|
119887
|
+
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7G]['post']['responses'][201]['content']['application/json'];
|
|
119504
119888
|
interface LinkConversationToAdvisoryReportProps {
|
|
119505
119889
|
body: LinkConversationToAdvisoryReportBody;
|
|
119506
119890
|
params: {
|
|
@@ -119510,11 +119894,11 @@ interface LinkConversationToAdvisoryReportProps {
|
|
|
119510
119894
|
}
|
|
119511
119895
|
declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
|
|
119512
119896
|
|
|
119513
|
-
declare const routeName$
|
|
119514
|
-
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$
|
|
119515
|
-
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$
|
|
119516
|
-
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$
|
|
119517
|
-
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$
|
|
119897
|
+
declare const routeName$7F = "/v2/api/advisory-reports/{report_id}/revisions";
|
|
119898
|
+
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
|
|
119899
|
+
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
|
|
119900
|
+
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
|
|
119901
|
+
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
|
|
119518
119902
|
interface CreateAdvisoryReportRevisionV2Props {
|
|
119519
119903
|
body: CreateAdvisoryReportRevisionV2Body;
|
|
119520
119904
|
params: {
|
|
@@ -119524,11 +119908,11 @@ interface CreateAdvisoryReportRevisionV2Props {
|
|
|
119524
119908
|
}
|
|
119525
119909
|
declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
|
|
119526
119910
|
|
|
119527
|
-
declare const routeName$
|
|
119528
|
-
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$
|
|
119529
|
-
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
119530
|
-
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
119531
|
-
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
119911
|
+
declare const routeName$7E = "/v1/api/advisory-reports/{report_id}/revisions";
|
|
119912
|
+
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7E]['post']['requestBody']['content']['application/json'];
|
|
119913
|
+
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
|
|
119914
|
+
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
|
|
119915
|
+
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7E]['post']['responses'][201]['content']['application/json'];
|
|
119532
119916
|
interface CreateAdvisoryReportRevisionProps {
|
|
119533
119917
|
body: CreateAdvisoryReportRevisionBody;
|
|
119534
119918
|
params: {
|
|
@@ -119538,10 +119922,10 @@ interface CreateAdvisoryReportRevisionProps {
|
|
|
119538
119922
|
}
|
|
119539
119923
|
declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
|
|
119540
119924
|
|
|
119541
|
-
declare const routeName$
|
|
119542
|
-
type DeleteAdvisoryReportPathParams = paths[typeof routeName$
|
|
119543
|
-
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119544
|
-
type DeleteAdvisoryReportResponse = paths[typeof routeName$
|
|
119925
|
+
declare const routeName$7D = "/v2/api/advisory-reports/{report_id}";
|
|
119926
|
+
type DeleteAdvisoryReportPathParams = paths[typeof routeName$7D]['delete']['parameters']['path'];
|
|
119927
|
+
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7D]['delete']['parameters']['query'];
|
|
119928
|
+
type DeleteAdvisoryReportResponse = paths[typeof routeName$7D]['delete']['responses'][200]['content']['application/json'];
|
|
119545
119929
|
interface DeleteAdvisoryReportProps {
|
|
119546
119930
|
params: {
|
|
119547
119931
|
query: DeleteAdvisoryReportQueryParams;
|
|
@@ -119550,11 +119934,11 @@ interface DeleteAdvisoryReportProps {
|
|
|
119550
119934
|
}
|
|
119551
119935
|
declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
|
|
119552
119936
|
|
|
119553
|
-
declare const routeName$
|
|
119554
|
-
type PutClausesForReportBody = paths[typeof routeName$
|
|
119555
|
-
type PutClausesForReportPathParams = paths[typeof routeName$
|
|
119556
|
-
type PutClausesForReportQueryParams = paths[typeof routeName$
|
|
119557
|
-
type PutClausesForReportResponse = paths[typeof routeName$
|
|
119937
|
+
declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/clauses";
|
|
119938
|
+
type PutClausesForReportBody = paths[typeof routeName$7C]['put']['requestBody']['content']['application/json'];
|
|
119939
|
+
type PutClausesForReportPathParams = paths[typeof routeName$7C]['put']['parameters']['path'];
|
|
119940
|
+
type PutClausesForReportQueryParams = paths[typeof routeName$7C]['put']['parameters']['query'];
|
|
119941
|
+
type PutClausesForReportResponse = paths[typeof routeName$7C]['put']['responses'][200]['content']['application/json'];
|
|
119558
119942
|
interface PutClausesForReportProps {
|
|
119559
119943
|
body: PutClausesForReportBody;
|
|
119560
119944
|
params: {
|
|
@@ -119564,9 +119948,9 @@ interface PutClausesForReportProps {
|
|
|
119564
119948
|
}
|
|
119565
119949
|
declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
|
|
119566
119950
|
|
|
119567
|
-
declare const routeName$
|
|
119568
|
-
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$
|
|
119569
|
-
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$
|
|
119951
|
+
declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/personalise-advices";
|
|
119952
|
+
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7B]['post']['parameters']['path'];
|
|
119953
|
+
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7B]['post']['responses'][200]['content']['application/json'];
|
|
119570
119954
|
interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
119571
119955
|
params: {
|
|
119572
119956
|
path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
|
|
@@ -119574,18 +119958,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
|
119574
119958
|
}
|
|
119575
119959
|
declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
|
|
119576
119960
|
|
|
119577
|
-
declare const routeName$
|
|
119578
|
-
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
119579
|
-
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
119580
|
-
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
119581
|
-
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
119961
|
+
declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
119962
|
+
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7A]['get']['parameters']['path'];
|
|
119963
|
+
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7A]['get']['parameters']['query'];
|
|
119964
|
+
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7A]['get']['responses'][200]['content']['application/json'];
|
|
119965
|
+
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7A]['get']['parameters'];
|
|
119582
119966
|
declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
|
|
119583
119967
|
|
|
119584
|
-
declare const routeName$
|
|
119585
|
-
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$
|
|
119586
|
-
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$
|
|
119587
|
-
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$
|
|
119588
|
-
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$
|
|
119968
|
+
declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
119969
|
+
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7z]['put']['requestBody']['content']['application/json'];
|
|
119970
|
+
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7z]['put']['parameters']['path'];
|
|
119971
|
+
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7z]['put']['parameters']['query'];
|
|
119972
|
+
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7z]['put']['responses'][200]['content']['application/json'];
|
|
119589
119973
|
interface CreateAdvisoryReportStepSettingsProps {
|
|
119590
119974
|
body: CreateAdvisoryReportStepSettingsBody;
|
|
119591
119975
|
params: {
|
|
@@ -119595,11 +119979,11 @@ interface CreateAdvisoryReportStepSettingsProps {
|
|
|
119595
119979
|
}
|
|
119596
119980
|
declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
|
|
119597
119981
|
|
|
119598
|
-
declare const routeName$
|
|
119599
|
-
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119600
|
-
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119601
|
-
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119602
|
-
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119982
|
+
declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/risk-domains";
|
|
119983
|
+
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
|
|
119984
|
+
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
|
|
119985
|
+
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
|
|
119986
|
+
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
|
|
119603
119987
|
interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
119604
119988
|
body: CreateRiskDomainForAdvisoryReportByIdBody;
|
|
119605
119989
|
params: {
|
|
@@ -119609,10 +119993,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
|
119609
119993
|
}
|
|
119610
119994
|
declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
|
|
119611
119995
|
|
|
119612
|
-
declare const routeName$
|
|
119613
|
-
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119614
|
-
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119615
|
-
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
119996
|
+
declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
|
|
119997
|
+
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7x]['delete']['parameters']['path'];
|
|
119998
|
+
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7x]['delete']['parameters']['query'];
|
|
119999
|
+
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7x]['delete']['responses'][200]['content']['application/json'];
|
|
119616
120000
|
interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
119617
120001
|
params: {
|
|
119618
120002
|
query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
|
|
@@ -119621,11 +120005,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
|
119621
120005
|
}
|
|
119622
120006
|
declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
|
|
119623
120007
|
|
|
119624
|
-
declare const routeName$
|
|
119625
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119626
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119627
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119628
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120008
|
+
declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
|
|
120009
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
|
|
120010
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
|
|
120011
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
|
|
120012
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
|
|
119629
120013
|
interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119630
120014
|
body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
119631
120015
|
params: {
|
|
@@ -119635,10 +120019,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119635
120019
|
}
|
|
119636
120020
|
declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119637
120021
|
|
|
119638
|
-
declare const routeName$
|
|
119639
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119640
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119641
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120022
|
+
declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
120023
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7v]['delete']['parameters']['path'];
|
|
120024
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7v]['delete']['parameters']['query'];
|
|
120025
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7v]['delete']['responses'][200]['content']['application/json'];
|
|
119642
120026
|
interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119643
120027
|
params: {
|
|
119644
120028
|
query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
|
|
@@ -119647,11 +120031,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119647
120031
|
}
|
|
119648
120032
|
declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119649
120033
|
|
|
119650
|
-
declare const routeName$
|
|
119651
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119652
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119653
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119654
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120034
|
+
declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
120035
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7u]['patch']['requestBody']['content']['application/json'];
|
|
120036
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7u]['patch']['parameters']['path'];
|
|
120037
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7u]['patch']['parameters']['query'];
|
|
120038
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7u]['patch']['responses'][201]['content']['application/json'];
|
|
119655
120039
|
interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
119656
120040
|
body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
119657
120041
|
params: {
|
|
@@ -119661,11 +120045,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
119661
120045
|
}
|
|
119662
120046
|
declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
119663
120047
|
|
|
119664
|
-
declare const routeName$
|
|
119665
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119666
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119667
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119668
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120048
|
+
declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
|
|
120049
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7t]['put']['requestBody']['content']['application/json'];
|
|
120050
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7t]['put']['parameters']['path'];
|
|
120051
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7t]['put']['parameters']['query'];
|
|
120052
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7t]['put']['responses'][201]['content']['application/json'];
|
|
119669
120053
|
interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
119670
120054
|
body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
|
|
119671
120055
|
params: {
|
|
@@ -119675,11 +120059,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
|
119675
120059
|
}
|
|
119676
120060
|
declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
|
|
119677
120061
|
|
|
119678
|
-
declare const routeName$
|
|
119679
|
-
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119680
|
-
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119681
|
-
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119682
|
-
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120062
|
+
declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
|
|
120063
|
+
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7s]['post']['requestBody']['content']['application/json'];
|
|
120064
|
+
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7s]['post']['parameters']['path'];
|
|
120065
|
+
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7s]['post']['parameters']['query'];
|
|
120066
|
+
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7s]['post']['responses'][201]['content']['application/json'];
|
|
119683
120067
|
interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
119684
120068
|
body: CreateRiskDomainActionForAdvisoryReportByIdBody;
|
|
119685
120069
|
params: {
|
|
@@ -119689,10 +120073,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119689
120073
|
}
|
|
119690
120074
|
declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119691
120075
|
|
|
119692
|
-
declare const routeName$
|
|
119693
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119694
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119695
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120076
|
+
declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
120077
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7r]['delete']['parameters']['path'];
|
|
120078
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7r]['delete']['parameters']['query'];
|
|
120079
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7r]['delete']['responses'][200]['content']['application/json'];
|
|
119696
120080
|
interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
119697
120081
|
params: {
|
|
119698
120082
|
query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
|
|
@@ -119701,11 +120085,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119701
120085
|
}
|
|
119702
120086
|
declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119703
120087
|
|
|
119704
|
-
declare const routeName$
|
|
119705
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119706
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119707
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119708
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120088
|
+
declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
120089
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7q]['patch']['requestBody']['content']['application/json'];
|
|
120090
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7q]['patch']['parameters']['path'];
|
|
120091
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7q]['patch']['parameters']['query'];
|
|
120092
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7q]['patch']['responses'][200]['content']['application/json'];
|
|
119709
120093
|
interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
119710
120094
|
body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
|
|
119711
120095
|
params: {
|
|
@@ -119715,11 +120099,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
119715
120099
|
}
|
|
119716
120100
|
declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
119717
120101
|
|
|
119718
|
-
declare const routeName$
|
|
119719
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119720
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119721
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119722
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120102
|
+
declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/insurance-policies";
|
|
120103
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7p]['put']['requestBody']['content']['application/json'];
|
|
120104
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7p]['put']['parameters']['path'];
|
|
120105
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7p]['put']['parameters']['query'];
|
|
120106
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7p]['put']['responses'][200]['content']['application/json'];
|
|
119723
120107
|
interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
119724
120108
|
body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
|
|
119725
120109
|
params: {
|
|
@@ -119729,10 +120113,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
119729
120113
|
}
|
|
119730
120114
|
declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
119731
120115
|
|
|
119732
|
-
declare const routeName$
|
|
119733
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119734
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119735
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120116
|
+
declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
|
|
120117
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['delete']['parameters']['path'];
|
|
120118
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['delete']['parameters']['query'];
|
|
120119
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['delete']['responses'][200]['content']['application/json'];
|
|
119736
120120
|
interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
119737
120121
|
params: {
|
|
119738
120122
|
query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
|
|
@@ -119741,11 +120125,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
119741
120125
|
}
|
|
119742
120126
|
declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
119743
120127
|
|
|
119744
|
-
declare const routeName$
|
|
119745
|
-
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$
|
|
119746
|
-
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$
|
|
119747
|
-
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$
|
|
119748
|
-
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$
|
|
120128
|
+
declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
|
|
120129
|
+
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7n]['put']['requestBody']['content']['application/json'];
|
|
120130
|
+
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7n]['put']['parameters']['path'];
|
|
120131
|
+
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7n]['put']['parameters']['query'];
|
|
120132
|
+
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7n]['put']['responses'][200]['content']['application/json'];
|
|
119749
120133
|
interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
119750
120134
|
body: OrderInsurancePolciesOfAdvisoryReportBody;
|
|
119751
120135
|
params: {
|
|
@@ -119755,11 +120139,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
|
119755
120139
|
}
|
|
119756
120140
|
declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
|
|
119757
120141
|
|
|
119758
|
-
declare const routeName$
|
|
119759
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
119760
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
119761
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
119762
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
120142
|
+
declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/policy-packages";
|
|
120143
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7m]['put']['requestBody']['content']['application/json'];
|
|
120144
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['put']['parameters']['path'];
|
|
120145
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['put']['parameters']['query'];
|
|
120146
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['put']['responses'][200]['content']['application/json'];
|
|
119763
120147
|
interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
119764
120148
|
body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
|
|
119765
120149
|
params: {
|
|
@@ -119769,39 +120153,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
|
119769
120153
|
}
|
|
119770
120154
|
declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
|
|
119771
120155
|
|
|
119772
|
-
declare const routeName$
|
|
119773
|
-
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$
|
|
119774
|
-
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$
|
|
119775
|
-
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$
|
|
119776
|
-
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$
|
|
120156
|
+
declare const routeName$7l = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
|
|
120157
|
+
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
|
|
120158
|
+
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
|
|
120159
|
+
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
|
|
120160
|
+
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7l]['get']['parameters'];
|
|
119777
120161
|
declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
|
|
119778
120162
|
|
|
119779
|
-
declare const routeName$
|
|
119780
|
-
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$
|
|
120163
|
+
declare const routeName$7k = "/v1/api/affiliations";
|
|
120164
|
+
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
|
|
119781
120165
|
declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
|
|
119782
120166
|
|
|
119783
|
-
declare const routeName$
|
|
119784
|
-
type GetAnvaLabelsQueryParams = paths[typeof routeName$
|
|
119785
|
-
type GetAnvaLabelsResponse = paths[typeof routeName$
|
|
119786
|
-
type GetAnvaLabelsProps = paths[typeof routeName$
|
|
120167
|
+
declare const routeName$7j = "/v1/api/anvaflows/labels";
|
|
120168
|
+
type GetAnvaLabelsQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
|
|
120169
|
+
type GetAnvaLabelsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
|
|
120170
|
+
type GetAnvaLabelsProps = paths[typeof routeName$7j]['get']['parameters'];
|
|
119787
120171
|
declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
|
|
119788
120172
|
|
|
119789
|
-
declare const routeName$
|
|
119790
|
-
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$
|
|
119791
|
-
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$
|
|
119792
|
-
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$
|
|
120173
|
+
declare const routeName$7i = "/v1/api/anvaflows/supported-insurances";
|
|
120174
|
+
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
|
|
120175
|
+
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
|
|
120176
|
+
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7i]['get']['parameters'];
|
|
119793
120177
|
declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
|
|
119794
120178
|
|
|
119795
|
-
declare const routeName$
|
|
119796
|
-
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
119797
|
-
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$
|
|
119798
|
-
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$
|
|
120179
|
+
declare const routeName$7h = "/v1/api/anvaflows/supported-tags";
|
|
120180
|
+
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
|
|
120181
|
+
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
|
|
120182
|
+
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7h]['get']['parameters'];
|
|
119799
120183
|
declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
|
|
119800
120184
|
|
|
119801
|
-
declare const routeName$
|
|
119802
|
-
type CreateAnvaflowTagsBody = paths[typeof routeName$
|
|
119803
|
-
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
119804
|
-
type CreateAnvaflowTagsResponse = paths[typeof routeName$
|
|
120185
|
+
declare const routeName$7g = "/v1/api/anvaflows/supported-tags";
|
|
120186
|
+
type CreateAnvaflowTagsBody = paths[typeof routeName$7g]['put']['requestBody']['content']['application/json'];
|
|
120187
|
+
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7g]['put']['parameters']['query'];
|
|
120188
|
+
type CreateAnvaflowTagsResponse = paths[typeof routeName$7g]['put']['responses'][200]['content']['application/json'];
|
|
119805
120189
|
interface CreateAnvaflowTagsProps {
|
|
119806
120190
|
body: CreateAnvaflowTagsBody;
|
|
119807
120191
|
params: {
|
|
@@ -119810,35 +120194,35 @@ interface CreateAnvaflowTagsProps {
|
|
|
119810
120194
|
}
|
|
119811
120195
|
declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
|
|
119812
120196
|
|
|
119813
|
-
declare const routeName$
|
|
119814
|
-
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$
|
|
119815
|
-
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$
|
|
119816
|
-
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$
|
|
120197
|
+
declare const routeName$7f = "/v1/api/anvaflows/supported-coverages";
|
|
120198
|
+
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7f]['get']['parameters']['query'];
|
|
120199
|
+
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7f]['get']['responses'][200]['content']['application/json'];
|
|
120200
|
+
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7f]['get']['parameters'];
|
|
119817
120201
|
declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
|
|
119818
120202
|
|
|
119819
|
-
declare const routeName$
|
|
119820
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$
|
|
119821
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$
|
|
119822
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$
|
|
120203
|
+
declare const routeName$7e = "/v1/api/anvaflows/supported-adn-coverages";
|
|
120204
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
|
|
120205
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
|
|
120206
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7e]['get']['parameters'];
|
|
119823
120207
|
declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
|
|
119824
120208
|
|
|
119825
|
-
declare const routeName$
|
|
119826
|
-
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
119827
|
-
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$
|
|
119828
|
-
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$
|
|
120209
|
+
declare const routeName$7d = "/v1/api/anvaflows/supported-insurance-companies";
|
|
120210
|
+
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
|
|
120211
|
+
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
|
|
120212
|
+
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7d]['get']['parameters'];
|
|
119829
120213
|
declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
|
|
119830
120214
|
|
|
119831
|
-
declare const routeName$
|
|
119832
|
-
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$
|
|
119833
|
-
type GetAnvaMutationReasonsResponse = paths[typeof routeName$
|
|
119834
|
-
type GetAnvaMutationReasonsProps = paths[typeof routeName$
|
|
120215
|
+
declare const routeName$7c = "/v1/api/anvaflows/mutation-reasons";
|
|
120216
|
+
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
|
|
120217
|
+
type GetAnvaMutationReasonsResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
|
|
120218
|
+
type GetAnvaMutationReasonsProps = paths[typeof routeName$7c]['get']['parameters'];
|
|
119835
120219
|
declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
|
|
119836
120220
|
|
|
119837
|
-
declare const routeName$
|
|
119838
|
-
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
119839
|
-
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
119840
|
-
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
119841
|
-
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
120221
|
+
declare const routeName$7b = "/v1/api/anvaflows/{session_id}/calculate";
|
|
120222
|
+
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7b]['post']['requestBody']['content']['application/json'];
|
|
120223
|
+
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7b]['post']['parameters']['path'];
|
|
120224
|
+
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7b]['post']['parameters']['query'];
|
|
120225
|
+
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7b]['post']['responses'][200]['content']['application/json'];
|
|
119842
120226
|
interface CalculateAnvaquotesBySessionIdProps {
|
|
119843
120227
|
body: CalculateAnvaquotesBySessionIdBody;
|
|
119844
120228
|
params: {
|
|
@@ -119848,11 +120232,11 @@ interface CalculateAnvaquotesBySessionIdProps {
|
|
|
119848
120232
|
}
|
|
119849
120233
|
declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
|
|
119850
120234
|
|
|
119851
|
-
declare const routeName$
|
|
119852
|
-
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
119853
|
-
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
119854
|
-
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
119855
|
-
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
120235
|
+
declare const routeName$7a = "/v2/api/anvaflows/{session_id}/calculate";
|
|
120236
|
+
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$7a]['post']['requestBody']['content']['application/json'];
|
|
120237
|
+
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$7a]['post']['parameters']['path'];
|
|
120238
|
+
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7a]['post']['parameters']['query'];
|
|
120239
|
+
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$7a]['post']['responses'][202]['content']['application/json'];
|
|
119856
120240
|
interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
119857
120241
|
body: EnqueueCalculationAnvaquotesBySessionIdBody;
|
|
119858
120242
|
params: {
|
|
@@ -119862,11 +120246,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
|
119862
120246
|
}
|
|
119863
120247
|
declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
|
|
119864
120248
|
|
|
119865
|
-
declare const routeName$
|
|
119866
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$
|
|
119867
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$
|
|
119868
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$
|
|
119869
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$
|
|
120249
|
+
declare const routeName$79 = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
|
|
120250
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$79]['post']['requestBody']['content']['application/json'];
|
|
120251
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$79]['post']['parameters']['path'];
|
|
120252
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$79]['post']['parameters']['query'];
|
|
120253
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$79]['post']['responses'][200]['content']['application/json'];
|
|
119870
120254
|
interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
119871
120255
|
body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
|
|
119872
120256
|
params: {
|
|
@@ -119876,10 +120260,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
|
119876
120260
|
}
|
|
119877
120261
|
declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
|
|
119878
120262
|
|
|
119879
|
-
declare const routeName$
|
|
119880
|
-
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
119881
|
-
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
119882
|
-
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120263
|
+
declare const routeName$78 = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
120264
|
+
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
|
|
120265
|
+
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$78]['post']['parameters']['query'];
|
|
120266
|
+
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$78]['post']['responses'][201]['content']['application/json'];
|
|
119883
120267
|
interface SendOfferToAnvaBySessionIdProps {
|
|
119884
120268
|
params: {
|
|
119885
120269
|
query: SendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -119888,10 +120272,10 @@ interface SendOfferToAnvaBySessionIdProps {
|
|
|
119888
120272
|
}
|
|
119889
120273
|
declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
|
|
119890
120274
|
|
|
119891
|
-
declare const routeName$
|
|
119892
|
-
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
119893
|
-
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
119894
|
-
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120275
|
+
declare const routeName$77 = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
120276
|
+
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
|
|
120277
|
+
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
|
|
120278
|
+
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$77]['post']['responses'][202]['content']['application/json'];
|
|
119895
120279
|
interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
119896
120280
|
params: {
|
|
119897
120281
|
query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -119900,11 +120284,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
|
119900
120284
|
}
|
|
119901
120285
|
declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
|
|
119902
120286
|
|
|
119903
|
-
declare const routeName$
|
|
119904
|
-
type SendOfferMailBySessionIdBody = paths[typeof routeName$
|
|
119905
|
-
type SendOfferMailBySessionIdPathParams = paths[typeof routeName$
|
|
119906
|
-
type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$
|
|
119907
|
-
type SendOfferMailBySessionIdResponse = paths[typeof routeName$
|
|
120287
|
+
declare const routeName$76 = "/v1/api/anvaflows/{session_id}/send-offer-mail";
|
|
120288
|
+
type SendOfferMailBySessionIdBody = paths[typeof routeName$76]['post']['requestBody']['content']['application/json'];
|
|
120289
|
+
type SendOfferMailBySessionIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
|
|
120290
|
+
type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
|
|
120291
|
+
type SendOfferMailBySessionIdResponse = paths[typeof routeName$76]['post']['responses'][201]['content']['application/json'];
|
|
119908
120292
|
interface SendOfferMailBySessionIdProps {
|
|
119909
120293
|
body: SendOfferMailBySessionIdBody;
|
|
119910
120294
|
params: {
|
|
@@ -119914,11 +120298,11 @@ interface SendOfferMailBySessionIdProps {
|
|
|
119914
120298
|
}
|
|
119915
120299
|
declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
|
|
119916
120300
|
|
|
119917
|
-
declare const routeName$
|
|
119918
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$
|
|
119919
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
119920
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
119921
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
120301
|
+
declare const routeName$75 = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
|
|
120302
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
|
|
120303
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
|
|
120304
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
|
|
120305
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$75]['post']['responses'][202]['content']['application/json'];
|
|
119922
120306
|
interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
119923
120307
|
body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
|
|
119924
120308
|
params: {
|
|
@@ -119928,11 +120312,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
|
119928
120312
|
}
|
|
119929
120313
|
declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
|
|
119930
120314
|
|
|
119931
|
-
declare const routeName$
|
|
119932
|
-
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$
|
|
119933
|
-
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$
|
|
119934
|
-
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$
|
|
119935
|
-
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$
|
|
120315
|
+
declare const routeName$74 = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
|
|
120316
|
+
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
|
|
120317
|
+
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
|
|
120318
|
+
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
|
|
120319
|
+
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$74]['post']['responses'][200]['content']['application/json'];
|
|
119936
120320
|
interface RecalculateSimulationBySessionIdProps {
|
|
119937
120321
|
body: RecalculateSimulationBySessionIdBody;
|
|
119938
120322
|
params: {
|
|
@@ -119942,23 +120326,23 @@ interface RecalculateSimulationBySessionIdProps {
|
|
|
119942
120326
|
}
|
|
119943
120327
|
declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
|
|
119944
120328
|
|
|
119945
|
-
declare const routeName$
|
|
119946
|
-
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$
|
|
119947
|
-
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$
|
|
119948
|
-
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$
|
|
119949
|
-
type GetAnvaCollectionMethodsProps = paths[typeof routeName$
|
|
120329
|
+
declare const routeName$73 = "/v1/api/anvaflows/{session_id}/collection-methods";
|
|
120330
|
+
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$73]['get']['parameters']['path'];
|
|
120331
|
+
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
|
|
120332
|
+
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
|
|
120333
|
+
type GetAnvaCollectionMethodsProps = paths[typeof routeName$73]['get']['parameters'];
|
|
119950
120334
|
declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
|
|
119951
120335
|
|
|
119952
|
-
declare const routeName$
|
|
119953
|
-
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
119954
|
-
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
119955
|
-
type GetAnvaClosingQuestionsProps = paths[typeof routeName$
|
|
120336
|
+
declare const routeName$72 = "/v1/api/anvaflows/closing-questions";
|
|
120337
|
+
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
|
|
120338
|
+
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
|
|
120339
|
+
type GetAnvaClosingQuestionsProps = paths[typeof routeName$72]['get']['parameters'];
|
|
119956
120340
|
declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
|
|
119957
120341
|
|
|
119958
|
-
declare const routeName$
|
|
119959
|
-
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$
|
|
119960
|
-
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
119961
|
-
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
120342
|
+
declare const routeName$71 = "/v1/api/anvaflows/closing-questions";
|
|
120343
|
+
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$71]['put']['requestBody']['content']['application/json'];
|
|
120344
|
+
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$71]['put']['parameters']['query'];
|
|
120345
|
+
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$71]['put']['responses'][200]['content']['application/json'];
|
|
119962
120346
|
interface UpsertAnvaClosingQuestionsProps {
|
|
119963
120347
|
body: UpsertAnvaClosingQuestionsBody;
|
|
119964
120348
|
params: {
|
|
@@ -119967,10 +120351,10 @@ interface UpsertAnvaClosingQuestionsProps {
|
|
|
119967
120351
|
}
|
|
119968
120352
|
declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
|
|
119969
120353
|
|
|
119970
|
-
declare const routeName$
|
|
119971
|
-
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$
|
|
119972
|
-
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
119973
|
-
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
120354
|
+
declare const routeName$70 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
|
|
120355
|
+
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$70]['delete']['parameters']['path'];
|
|
120356
|
+
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$70]['delete']['parameters']['query'];
|
|
120357
|
+
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$70]['delete']['responses'][200]['content']['application/json'];
|
|
119974
120358
|
interface DeleteAnvaClosingQuestionsProps {
|
|
119975
120359
|
params: {
|
|
119976
120360
|
query: DeleteAnvaClosingQuestionsQueryParams;
|
|
@@ -119979,11 +120363,11 @@ interface DeleteAnvaClosingQuestionsProps {
|
|
|
119979
120363
|
}
|
|
119980
120364
|
declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
|
|
119981
120365
|
|
|
119982
|
-
declare const routeName$
|
|
119983
|
-
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
119984
|
-
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
119985
|
-
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
119986
|
-
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
120366
|
+
declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
120367
|
+
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
|
|
120368
|
+
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
|
|
120369
|
+
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
|
|
120370
|
+
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
|
|
119987
120371
|
interface CreateAnvaPartyViaConversationProps {
|
|
119988
120372
|
body: CreateAnvaPartyViaConversationBody;
|
|
119989
120373
|
params: {
|
|
@@ -119993,11 +120377,11 @@ interface CreateAnvaPartyViaConversationProps {
|
|
|
119993
120377
|
}
|
|
119994
120378
|
declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
|
|
119995
120379
|
|
|
119996
|
-
declare const routeName$
|
|
119997
|
-
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
119998
|
-
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
119999
|
-
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
120000
|
-
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
120380
|
+
declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
120381
|
+
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$6_]['patch']['requestBody']['content']['application/json'];
|
|
120382
|
+
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$6_]['patch']['parameters']['path'];
|
|
120383
|
+
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6_]['patch']['parameters']['query'];
|
|
120384
|
+
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$6_]['patch']['responses'][200]['content']['application/json'];
|
|
120001
120385
|
interface UpdateAnvaPartyViaConversationProps {
|
|
120002
120386
|
body: UpdateAnvaPartyViaConversationBody;
|
|
120003
120387
|
params: {
|
|
@@ -120007,16 +120391,16 @@ interface UpdateAnvaPartyViaConversationProps {
|
|
|
120007
120391
|
}
|
|
120008
120392
|
declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
|
|
120009
120393
|
|
|
120010
|
-
declare const routeName$
|
|
120011
|
-
type GetAnvaproductsQueryParams = paths[typeof routeName$
|
|
120012
|
-
type GetAnvaproductsResponse = paths[typeof routeName$
|
|
120013
|
-
type GetAnvaproductsProps = paths[typeof routeName$
|
|
120394
|
+
declare const routeName$6Z = "/v1/api/anvaproducts";
|
|
120395
|
+
type GetAnvaproductsQueryParams = paths[typeof routeName$6Z]['get']['parameters']['query'];
|
|
120396
|
+
type GetAnvaproductsResponse = paths[typeof routeName$6Z]['get']['responses'][200]['content']['application/json'];
|
|
120397
|
+
type GetAnvaproductsProps = paths[typeof routeName$6Z]['get']['parameters'];
|
|
120014
120398
|
declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
|
|
120015
120399
|
|
|
120016
|
-
declare const routeName$
|
|
120017
|
-
type ImportAnvaproductBody = paths[typeof routeName$
|
|
120018
|
-
type ImportAnvaproductQueryParams = paths[typeof routeName$
|
|
120019
|
-
type ImportAnvaproductResponse = paths[typeof routeName$
|
|
120400
|
+
declare const routeName$6Y = "/v1/api/anvaproducts/import";
|
|
120401
|
+
type ImportAnvaproductBody = paths[typeof routeName$6Y]['post']['requestBody']['content']['application/json'];
|
|
120402
|
+
type ImportAnvaproductQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
|
|
120403
|
+
type ImportAnvaproductResponse = paths[typeof routeName$6Y]['post']['responses'][200]['content']['application/json'];
|
|
120020
120404
|
interface ImportAnvaproductProps {
|
|
120021
120405
|
body: ImportAnvaproductBody;
|
|
120022
120406
|
params: {
|
|
@@ -120025,18 +120409,18 @@ interface ImportAnvaproductProps {
|
|
|
120025
120409
|
}
|
|
120026
120410
|
declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
|
|
120027
120411
|
|
|
120028
|
-
declare const routeName$
|
|
120029
|
-
type GetAnvaproductByIdPathParams = paths[typeof routeName$
|
|
120030
|
-
type GetAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
120031
|
-
type GetAnvaproductByIdResponse = paths[typeof routeName$
|
|
120032
|
-
type GetAnvaproductByIdProps = paths[typeof routeName$
|
|
120412
|
+
declare const routeName$6X = "/v1/api/anvaproducts/{anva_product_id}";
|
|
120413
|
+
type GetAnvaproductByIdPathParams = paths[typeof routeName$6X]['get']['parameters']['path'];
|
|
120414
|
+
type GetAnvaproductByIdQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
|
|
120415
|
+
type GetAnvaproductByIdResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
|
|
120416
|
+
type GetAnvaproductByIdProps = paths[typeof routeName$6X]['get']['parameters'];
|
|
120033
120417
|
declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
|
|
120034
120418
|
|
|
120035
|
-
declare const routeName$
|
|
120036
|
-
type PatchAnvaproductByIdBody = paths[typeof routeName$
|
|
120037
|
-
type PatchAnvaproductByIdPathParams = paths[typeof routeName$
|
|
120038
|
-
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
120039
|
-
type PatchAnvaproductByIdResponse = paths[typeof routeName$
|
|
120419
|
+
declare const routeName$6W = "/v1/api/anvaproducts/{anva_product_id}";
|
|
120420
|
+
type PatchAnvaproductByIdBody = paths[typeof routeName$6W]['patch']['requestBody']['content']['application/json'];
|
|
120421
|
+
type PatchAnvaproductByIdPathParams = paths[typeof routeName$6W]['patch']['parameters']['path'];
|
|
120422
|
+
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6W]['patch']['parameters']['query'];
|
|
120423
|
+
type PatchAnvaproductByIdResponse = paths[typeof routeName$6W]['patch']['responses'][200]['content']['application/json'];
|
|
120040
120424
|
interface PatchAnvaproductByIdProps {
|
|
120041
120425
|
body: PatchAnvaproductByIdBody;
|
|
120042
120426
|
params: {
|
|
@@ -120046,11 +120430,11 @@ interface PatchAnvaproductByIdProps {
|
|
|
120046
120430
|
}
|
|
120047
120431
|
declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
|
|
120048
120432
|
|
|
120049
|
-
declare const routeName$
|
|
120050
|
-
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$
|
|
120051
|
-
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$
|
|
120052
|
-
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$
|
|
120053
|
-
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$
|
|
120433
|
+
declare const routeName$6V = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
|
|
120434
|
+
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6V]['patch']['requestBody']['content']['application/json'];
|
|
120435
|
+
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6V]['patch']['parameters']['path'];
|
|
120436
|
+
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6V]['patch']['parameters']['query'];
|
|
120437
|
+
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6V]['patch']['responses'][200]['content']['application/json'];
|
|
120054
120438
|
interface PatchAnvaproductCoverageByIdProps {
|
|
120055
120439
|
body: PatchAnvaproductCoverageByIdBody;
|
|
120056
120440
|
params: {
|
|
@@ -120060,18 +120444,18 @@ interface PatchAnvaproductCoverageByIdProps {
|
|
|
120060
120444
|
}
|
|
120061
120445
|
declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
|
|
120062
120446
|
|
|
120063
|
-
declare const routeName$
|
|
120064
|
-
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$
|
|
120065
|
-
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$
|
|
120066
|
-
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$
|
|
120067
|
-
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$
|
|
120447
|
+
declare const routeName$6U = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
120448
|
+
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
|
|
120449
|
+
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
|
|
120450
|
+
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
|
|
120451
|
+
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6U]['get']['parameters'];
|
|
120068
120452
|
declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
|
|
120069
120453
|
|
|
120070
|
-
declare const routeName$
|
|
120071
|
-
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
120072
|
-
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
120073
|
-
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
120074
|
-
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
120454
|
+
declare const routeName$6T = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
120455
|
+
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6T]['put']['requestBody']['content']['application/json'];
|
|
120456
|
+
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6T]['put']['parameters']['path'];
|
|
120457
|
+
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6T]['put']['parameters']['query'];
|
|
120458
|
+
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6T]['put']['responses'][200]['content']['application/json'];
|
|
120075
120459
|
interface UpdateAnvaflowsQuestionnaireProps {
|
|
120076
120460
|
body: UpdateAnvaflowsQuestionnaireBody;
|
|
120077
120461
|
params: {
|
|
@@ -120081,11 +120465,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
|
|
|
120081
120465
|
}
|
|
120082
120466
|
declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
|
|
120083
120467
|
|
|
120084
|
-
declare const routeName$
|
|
120085
|
-
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
120086
|
-
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
120087
|
-
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
120088
|
-
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
120468
|
+
declare const routeName$6S = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
|
|
120469
|
+
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6S]['post']['requestBody']['content']['application/json'];
|
|
120470
|
+
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6S]['post']['parameters']['path'];
|
|
120471
|
+
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6S]['post']['parameters']['query'];
|
|
120472
|
+
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6S]['post']['responses'][200]['content']['application/json'];
|
|
120089
120473
|
interface ValidateAnvaflowsQuestionnaireProps {
|
|
120090
120474
|
body: ValidateAnvaflowsQuestionnaireBody;
|
|
120091
120475
|
params: {
|
|
@@ -120095,10 +120479,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
|
|
|
120095
120479
|
}
|
|
120096
120480
|
declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
|
|
120097
120481
|
|
|
120098
|
-
declare const routeName$
|
|
120099
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$
|
|
120100
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$
|
|
120101
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$
|
|
120482
|
+
declare const routeName$6R = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
|
|
120483
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
|
|
120484
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
|
|
120485
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6R]['post']['responses'][200]['content']['application/json'];
|
|
120102
120486
|
interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
120103
120487
|
body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
|
|
120104
120488
|
params: {
|
|
@@ -120107,20 +120491,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
|
120107
120491
|
}
|
|
120108
120492
|
declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
|
|
120109
120493
|
|
|
120110
|
-
declare const routeName$
|
|
120111
|
-
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$
|
|
120494
|
+
declare const routeName$6Q = "/v1/api/brokers/me";
|
|
120495
|
+
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
|
|
120112
120496
|
declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
|
|
120113
120497
|
|
|
120114
|
-
declare const routeName$
|
|
120115
|
-
type GetTheBrokerByIdPathParams = paths[typeof routeName$
|
|
120116
|
-
type GetTheBrokerByIdResponse = paths[typeof routeName$
|
|
120117
|
-
type GetTheBrokerByIdProps = paths[typeof routeName$
|
|
120498
|
+
declare const routeName$6P = "/v1/api/brokers/{broker_id}";
|
|
120499
|
+
type GetTheBrokerByIdPathParams = paths[typeof routeName$6P]['get']['parameters']['path'];
|
|
120500
|
+
type GetTheBrokerByIdResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
|
|
120501
|
+
type GetTheBrokerByIdProps = paths[typeof routeName$6P]['get']['parameters'];
|
|
120118
120502
|
declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
|
|
120119
120503
|
|
|
120120
|
-
declare const routeName$
|
|
120121
|
-
type UpdateBrokerByBrokerBody = paths[typeof routeName$
|
|
120122
|
-
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$
|
|
120123
|
-
type UpdateBrokerByBrokerResponse = paths[typeof routeName$
|
|
120504
|
+
declare const routeName$6O = "/v1/api/brokers/{broker_id}";
|
|
120505
|
+
type UpdateBrokerByBrokerBody = paths[typeof routeName$6O]['patch']['requestBody']['content']['application/json'];
|
|
120506
|
+
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6O]['patch']['parameters']['path'];
|
|
120507
|
+
type UpdateBrokerByBrokerResponse = paths[typeof routeName$6O]['patch']['responses'][200]['content']['application/json'];
|
|
120124
120508
|
interface UpdateBrokerByBrokerProps {
|
|
120125
120509
|
body: UpdateBrokerByBrokerBody;
|
|
120126
120510
|
params: {
|
|
@@ -120129,16 +120513,16 @@ interface UpdateBrokerByBrokerProps {
|
|
|
120129
120513
|
}
|
|
120130
120514
|
declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
|
|
120131
120515
|
|
|
120132
|
-
declare const routeName$
|
|
120133
|
-
type GetBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
120134
|
-
type GetBrokerIntegrationsResponse = paths[typeof routeName$
|
|
120135
|
-
type GetBrokerIntegrationsProps = paths[typeof routeName$
|
|
120516
|
+
declare const routeName$6N = "/v1/api/brokers/{broker_id}/integrations";
|
|
120517
|
+
type GetBrokerIntegrationsPathParams = paths[typeof routeName$6N]['get']['parameters']['path'];
|
|
120518
|
+
type GetBrokerIntegrationsResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
|
|
120519
|
+
type GetBrokerIntegrationsProps = paths[typeof routeName$6N]['get']['parameters'];
|
|
120136
120520
|
declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
|
|
120137
120521
|
|
|
120138
|
-
declare const routeName$
|
|
120139
|
-
type UpdateBrokerIntegrationsBody = paths[typeof routeName$
|
|
120140
|
-
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
120141
|
-
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$
|
|
120522
|
+
declare const routeName$6M = "/v1/api/brokers/{broker_id}/integrations";
|
|
120523
|
+
type UpdateBrokerIntegrationsBody = paths[typeof routeName$6M]['patch']['requestBody']['content']['application/json'];
|
|
120524
|
+
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6M]['patch']['parameters']['path'];
|
|
120525
|
+
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6M]['patch']['responses'][200]['content']['application/json'];
|
|
120142
120526
|
interface UpdateBrokerIntegrationsProps {
|
|
120143
120527
|
body: UpdateBrokerIntegrationsBody;
|
|
120144
120528
|
params: {
|
|
@@ -120147,37 +120531,37 @@ interface UpdateBrokerIntegrationsProps {
|
|
|
120147
120531
|
}
|
|
120148
120532
|
declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
|
|
120149
120533
|
|
|
120150
|
-
declare const routeName$
|
|
120151
|
-
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$
|
|
120152
|
-
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$
|
|
120153
|
-
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$
|
|
120534
|
+
declare const routeName$6L = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
|
|
120535
|
+
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
|
|
120536
|
+
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
|
|
120537
|
+
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6L]['get']['parameters'];
|
|
120154
120538
|
declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
|
|
120155
120539
|
|
|
120156
|
-
declare const routeName$
|
|
120157
|
-
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$
|
|
120158
|
-
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$
|
|
120159
|
-
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$
|
|
120540
|
+
declare const routeName$6K = "/v1/api/anva-producers/{anva_producer_id}";
|
|
120541
|
+
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
|
|
120542
|
+
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
|
|
120543
|
+
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6K]['get']['parameters'];
|
|
120160
120544
|
declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
|
|
120161
120545
|
|
|
120162
|
-
declare const routeName$
|
|
120163
|
-
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$
|
|
120164
|
-
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$
|
|
120165
|
-
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$
|
|
120166
|
-
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$
|
|
120546
|
+
declare const routeName$6J = "/v1/api/brokers/{broker_id}/checklists/onboarding";
|
|
120547
|
+
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
|
|
120548
|
+
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6J]['get']['parameters']['query'];
|
|
120549
|
+
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
|
|
120550
|
+
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6J]['get']['parameters'];
|
|
120167
120551
|
declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
|
|
120168
120552
|
|
|
120169
|
-
declare const routeName$
|
|
120170
|
-
type GetCampaignByIdPathParams = paths[typeof routeName$
|
|
120171
|
-
type GetCampaignByIdQueryParams = paths[typeof routeName$
|
|
120172
|
-
type GetCampaignByIdResponse = paths[typeof routeName$
|
|
120173
|
-
type GetCampaignByIdProps = paths[typeof routeName$
|
|
120553
|
+
declare const routeName$6I = "/v1/api/campaigns/{campaign_id}";
|
|
120554
|
+
type GetCampaignByIdPathParams = paths[typeof routeName$6I]['get']['parameters']['path'];
|
|
120555
|
+
type GetCampaignByIdQueryParams = paths[typeof routeName$6I]['get']['parameters']['query'];
|
|
120556
|
+
type GetCampaignByIdResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
|
|
120557
|
+
type GetCampaignByIdProps = paths[typeof routeName$6I]['get']['parameters'];
|
|
120174
120558
|
declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
|
|
120175
120559
|
|
|
120176
|
-
declare const routeName$
|
|
120177
|
-
type UpdateCampaignBody = paths[typeof routeName$
|
|
120178
|
-
type UpdateCampaignPathParams = paths[typeof routeName$
|
|
120179
|
-
type UpdateCampaignQueryParams = paths[typeof routeName$
|
|
120180
|
-
type UpdateCampaignResponse = paths[typeof routeName$
|
|
120560
|
+
declare const routeName$6H = "/v1/api/campaigns/{campaign_id}";
|
|
120561
|
+
type UpdateCampaignBody = paths[typeof routeName$6H]['patch']['requestBody']['content']['application/json'];
|
|
120562
|
+
type UpdateCampaignPathParams = paths[typeof routeName$6H]['patch']['parameters']['path'];
|
|
120563
|
+
type UpdateCampaignQueryParams = paths[typeof routeName$6H]['patch']['parameters']['query'];
|
|
120564
|
+
type UpdateCampaignResponse = paths[typeof routeName$6H]['patch']['responses'][200]['content']['application/json'];
|
|
120181
120565
|
interface UpdateCampaignProps {
|
|
120182
120566
|
body: UpdateCampaignBody;
|
|
120183
120567
|
params: {
|
|
@@ -120187,16 +120571,16 @@ interface UpdateCampaignProps {
|
|
|
120187
120571
|
}
|
|
120188
120572
|
declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
|
|
120189
120573
|
|
|
120190
|
-
declare const routeName$
|
|
120191
|
-
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$
|
|
120192
|
-
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$
|
|
120193
|
-
type GetAllCampaignsByDistributionProps = paths[typeof routeName$
|
|
120574
|
+
declare const routeName$6G = "/v1/api/campaigns";
|
|
120575
|
+
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
|
|
120576
|
+
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
|
|
120577
|
+
type GetAllCampaignsByDistributionProps = paths[typeof routeName$6G]['get']['parameters'];
|
|
120194
120578
|
declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
|
|
120195
120579
|
|
|
120196
|
-
declare const routeName$
|
|
120197
|
-
type CreateCampaignBody = paths[typeof routeName$
|
|
120198
|
-
type CreateCampaignQueryParams = paths[typeof routeName$
|
|
120199
|
-
type CreateCampaignResponse = paths[typeof routeName$
|
|
120580
|
+
declare const routeName$6F = "/v1/api/campaigns";
|
|
120581
|
+
type CreateCampaignBody = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
|
|
120582
|
+
type CreateCampaignQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
|
|
120583
|
+
type CreateCampaignResponse = paths[typeof routeName$6F]['post']['responses'][201]['content']['application/json'];
|
|
120200
120584
|
interface CreateCampaignProps {
|
|
120201
120585
|
body: CreateCampaignBody;
|
|
120202
120586
|
params: {
|
|
@@ -120205,17 +120589,17 @@ interface CreateCampaignProps {
|
|
|
120205
120589
|
}
|
|
120206
120590
|
declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
|
|
120207
120591
|
|
|
120208
|
-
declare const routeName$
|
|
120209
|
-
type GetMetricsByCampaignPathParams = paths[typeof routeName$
|
|
120210
|
-
type GetMetricsByCampaignQueryParams = paths[typeof routeName$
|
|
120211
|
-
type GetMetricsByCampaignResponse = paths[typeof routeName$
|
|
120212
|
-
type GetMetricsByCampaignProps = paths[typeof routeName$
|
|
120592
|
+
declare const routeName$6E = "/v1/api/campaigns/{campaign_id}/metrics";
|
|
120593
|
+
type GetMetricsByCampaignPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
|
|
120594
|
+
type GetMetricsByCampaignQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
|
|
120595
|
+
type GetMetricsByCampaignResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
|
|
120596
|
+
type GetMetricsByCampaignProps = paths[typeof routeName$6E]['get']['parameters'];
|
|
120213
120597
|
declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
|
|
120214
120598
|
|
|
120215
|
-
declare const routeName$
|
|
120216
|
-
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$
|
|
120217
|
-
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$
|
|
120218
|
-
type UpdateTargetsByCampaignResponse = paths[typeof routeName$
|
|
120599
|
+
declare const routeName$6D = "/v1/api/campaigns/{campaign_id}/targets";
|
|
120600
|
+
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6D]['patch']['parameters']['path'];
|
|
120601
|
+
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6D]['patch']['parameters']['query'];
|
|
120602
|
+
type UpdateTargetsByCampaignResponse = paths[typeof routeName$6D]['patch']['responses'][200]['content']['application/json'];
|
|
120219
120603
|
interface UpdateTargetsByCampaignProps {
|
|
120220
120604
|
params: {
|
|
120221
120605
|
query: UpdateTargetsByCampaignQueryParams;
|
|
@@ -120224,15 +120608,15 @@ interface UpdateTargetsByCampaignProps {
|
|
|
120224
120608
|
}
|
|
120225
120609
|
declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
|
|
120226
120610
|
|
|
120227
|
-
declare const routeName$
|
|
120228
|
-
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$
|
|
120229
|
-
type GetAllCampaignTemplatesResponse = paths[typeof routeName$
|
|
120230
|
-
type GetAllCampaignTemplatesProps = paths[typeof routeName$
|
|
120611
|
+
declare const routeName$6C = "/v1/api/campaign-templates";
|
|
120612
|
+
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
|
|
120613
|
+
type GetAllCampaignTemplatesResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
|
|
120614
|
+
type GetAllCampaignTemplatesProps = paths[typeof routeName$6C]['get']['parameters'];
|
|
120231
120615
|
declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
|
|
120232
120616
|
|
|
120233
|
-
declare const routeName$
|
|
120234
|
-
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$
|
|
120235
|
-
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$
|
|
120617
|
+
declare const routeName$6B = "/v1/api/campaigns/example-mails";
|
|
120618
|
+
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
|
|
120619
|
+
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6B]['post']['responses'][201]['content']['application/json'];
|
|
120236
120620
|
interface SendExampleCampaignTargetMailProps {
|
|
120237
120621
|
params: {
|
|
120238
120622
|
query: SendExampleCampaignTargetMailQueryParams;
|
|
@@ -120240,16 +120624,16 @@ interface SendExampleCampaignTargetMailProps {
|
|
|
120240
120624
|
}
|
|
120241
120625
|
declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
|
|
120242
120626
|
|
|
120243
|
-
declare const routeName$
|
|
120244
|
-
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$
|
|
120245
|
-
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$
|
|
120246
|
-
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$
|
|
120627
|
+
declare const routeName$6A = "/v1/api/distributions/campaign-settings";
|
|
120628
|
+
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
|
|
120629
|
+
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
|
|
120630
|
+
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6A]['get']['parameters'];
|
|
120247
120631
|
declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
|
|
120248
120632
|
|
|
120249
|
-
declare const routeName$
|
|
120250
|
-
type GenerateDnsPrefixBody = paths[typeof routeName$
|
|
120251
|
-
type GenerateDnsPrefixQueryParams = paths[typeof routeName$
|
|
120252
|
-
type GenerateDnsPrefixResponse = paths[typeof routeName$
|
|
120633
|
+
declare const routeName$6z = "/v1/api/campaigns/dns-prefixes/generate";
|
|
120634
|
+
type GenerateDnsPrefixBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
|
|
120635
|
+
type GenerateDnsPrefixQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
|
|
120636
|
+
type GenerateDnsPrefixResponse = paths[typeof routeName$6z]['post']['responses'][200]['content']['application/json'];
|
|
120253
120637
|
interface GenerateDnsPrefixProps {
|
|
120254
120638
|
body: GenerateDnsPrefixBody;
|
|
120255
120639
|
params: {
|
|
@@ -120258,16 +120642,16 @@ interface GenerateDnsPrefixProps {
|
|
|
120258
120642
|
}
|
|
120259
120643
|
declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
|
|
120260
120644
|
|
|
120261
|
-
declare const routeName$
|
|
120262
|
-
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$
|
|
120263
|
-
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$
|
|
120264
|
-
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$
|
|
120645
|
+
declare const routeName$6y = "/v1/api/mail-templates/campaign-target";
|
|
120646
|
+
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
|
|
120647
|
+
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
|
|
120648
|
+
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6y]['get']['parameters'];
|
|
120265
120649
|
declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
|
|
120266
120650
|
|
|
120267
|
-
declare const routeName$
|
|
120268
|
-
type CreateClaimAsCustomerPathParams = paths[typeof routeName$
|
|
120269
|
-
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
120270
|
-
type CreateClaimAsCustomerResponse = paths[typeof routeName$
|
|
120651
|
+
declare const routeName$6x = "/v1/api/distributions/{distribution_id}/claims";
|
|
120652
|
+
type CreateClaimAsCustomerPathParams = paths[typeof routeName$6x]['post']['parameters']['path'];
|
|
120653
|
+
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
|
|
120654
|
+
type CreateClaimAsCustomerResponse = paths[typeof routeName$6x]['post']['responses'][201]['content']['application/json'];
|
|
120271
120655
|
interface CreateClaimAsCustomerProps {
|
|
120272
120656
|
params: {
|
|
120273
120657
|
query: CreateClaimAsCustomerQueryParams;
|
|
@@ -120276,15 +120660,15 @@ interface CreateClaimAsCustomerProps {
|
|
|
120276
120660
|
}
|
|
120277
120661
|
declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
|
|
120278
120662
|
|
|
120279
|
-
declare const routeName$
|
|
120280
|
-
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$
|
|
120281
|
-
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$
|
|
120282
|
-
type GetAllClaimsAsBrokerProps = paths[typeof routeName$
|
|
120663
|
+
declare const routeName$6w = "/v1/api/claims";
|
|
120664
|
+
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
|
|
120665
|
+
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
|
|
120666
|
+
type GetAllClaimsAsBrokerProps = paths[typeof routeName$6w]['get']['parameters'];
|
|
120283
120667
|
declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
|
|
120284
120668
|
|
|
120285
|
-
declare const routeName$
|
|
120286
|
-
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$
|
|
120287
|
-
type CreateClaimAsBrokerResponse = paths[typeof routeName$
|
|
120669
|
+
declare const routeName$6v = "/v1/api/claims";
|
|
120670
|
+
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
|
|
120671
|
+
type CreateClaimAsBrokerResponse = paths[typeof routeName$6v]['post']['responses'][201]['content']['application/json'];
|
|
120288
120672
|
interface CreateClaimAsBrokerProps {
|
|
120289
120673
|
params: {
|
|
120290
120674
|
query: CreateClaimAsBrokerQueryParams;
|
|
@@ -120292,17 +120676,17 @@ interface CreateClaimAsBrokerProps {
|
|
|
120292
120676
|
}
|
|
120293
120677
|
declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
|
|
120294
120678
|
|
|
120295
|
-
declare const routeName$
|
|
120296
|
-
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120297
|
-
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120298
|
-
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120299
|
-
type GetClaimAsBrokerByIdProps = paths[typeof routeName$
|
|
120679
|
+
declare const routeName$6u = "/v1/api/claims/{claim_id}";
|
|
120680
|
+
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6u]['get']['parameters']['path'];
|
|
120681
|
+
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
|
|
120682
|
+
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
|
|
120683
|
+
type GetClaimAsBrokerByIdProps = paths[typeof routeName$6u]['get']['parameters'];
|
|
120300
120684
|
declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
|
|
120301
120685
|
|
|
120302
|
-
declare const routeName$
|
|
120303
|
-
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120304
|
-
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120305
|
-
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120686
|
+
declare const routeName$6t = "/v1/api/claims/{claim_id}";
|
|
120687
|
+
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6t]['delete']['parameters']['path'];
|
|
120688
|
+
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6t]['delete']['parameters']['query'];
|
|
120689
|
+
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6t]['delete']['responses'][200]['content']['application/json'];
|
|
120306
120690
|
interface DeleteClaimAsBrokerByIdProps {
|
|
120307
120691
|
params: {
|
|
120308
120692
|
query: DeleteClaimAsBrokerByIdQueryParams;
|
|
@@ -120311,10 +120695,10 @@ interface DeleteClaimAsBrokerByIdProps {
|
|
|
120311
120695
|
}
|
|
120312
120696
|
declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
|
|
120313
120697
|
|
|
120314
|
-
declare const routeName$
|
|
120315
|
-
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120316
|
-
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120317
|
-
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
120698
|
+
declare const routeName$6s = "/v1/api/claims/{claim_id}";
|
|
120699
|
+
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6s]['patch']['parameters']['path'];
|
|
120700
|
+
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6s]['patch']['parameters']['query'];
|
|
120701
|
+
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6s]['patch']['responses'][200]['content']['application/json'];
|
|
120318
120702
|
interface UpdateClaimAsBrokerByIdProps {
|
|
120319
120703
|
params: {
|
|
120320
120704
|
query: UpdateClaimAsBrokerByIdQueryParams;
|
|
@@ -120323,10 +120707,10 @@ interface UpdateClaimAsBrokerByIdProps {
|
|
|
120323
120707
|
}
|
|
120324
120708
|
declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
|
|
120325
120709
|
|
|
120326
|
-
declare const routeName$
|
|
120327
|
-
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$
|
|
120328
|
-
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$
|
|
120329
|
-
type UpdateDeclarationRemarkResponse = paths[typeof routeName$
|
|
120710
|
+
declare const routeName$6r = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
|
|
120711
|
+
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6r]['put']['parameters']['path'];
|
|
120712
|
+
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6r]['put']['parameters']['query'];
|
|
120713
|
+
type UpdateDeclarationRemarkResponse = paths[typeof routeName$6r]['put']['responses'][200]['content']['application/json'];
|
|
120330
120714
|
interface UpdateDeclarationRemarkProps {
|
|
120331
120715
|
params: {
|
|
120332
120716
|
query: UpdateDeclarationRemarkQueryParams;
|
|
@@ -120335,10 +120719,10 @@ interface UpdateDeclarationRemarkProps {
|
|
|
120335
120719
|
}
|
|
120336
120720
|
declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
|
|
120337
120721
|
|
|
120338
|
-
declare const routeName$
|
|
120339
|
-
type CreateLockForClaimPathParams = paths[typeof routeName$
|
|
120340
|
-
type CreateLockForClaimQueryParams = paths[typeof routeName$
|
|
120341
|
-
type CreateLockForClaimResponse = paths[typeof routeName$
|
|
120722
|
+
declare const routeName$6q = "/v1/api/claims/{claim_id}/lock";
|
|
120723
|
+
type CreateLockForClaimPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
|
|
120724
|
+
type CreateLockForClaimQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
|
|
120725
|
+
type CreateLockForClaimResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
|
|
120342
120726
|
interface CreateLockForClaimProps {
|
|
120343
120727
|
params: {
|
|
120344
120728
|
query: CreateLockForClaimQueryParams;
|
|
@@ -120347,10 +120731,10 @@ interface CreateLockForClaimProps {
|
|
|
120347
120731
|
}
|
|
120348
120732
|
declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
|
|
120349
120733
|
|
|
120350
|
-
declare const routeName$
|
|
120351
|
-
type UnlockClaimPathParams = paths[typeof routeName$
|
|
120352
|
-
type UnlockClaimQueryParams = paths[typeof routeName$
|
|
120353
|
-
type UnlockClaimResponse = paths[typeof routeName$
|
|
120734
|
+
declare const routeName$6p = "/v1/api/claims/{claim_id}/unlock";
|
|
120735
|
+
type UnlockClaimPathParams = paths[typeof routeName$6p]['post']['parameters']['path'];
|
|
120736
|
+
type UnlockClaimQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
|
|
120737
|
+
type UnlockClaimResponse = paths[typeof routeName$6p]['post']['responses'][200]['content']['application/json'];
|
|
120354
120738
|
interface UnlockClaimProps {
|
|
120355
120739
|
params: {
|
|
120356
120740
|
query: UnlockClaimQueryParams;
|
|
@@ -120359,10 +120743,10 @@ interface UnlockClaimProps {
|
|
|
120359
120743
|
}
|
|
120360
120744
|
declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
|
|
120361
120745
|
|
|
120362
|
-
declare const routeName$
|
|
120363
|
-
type ClaimRequestUpdatePathParams = paths[typeof routeName$
|
|
120364
|
-
type ClaimRequestUpdateQueryParams = paths[typeof routeName$
|
|
120365
|
-
type ClaimRequestUpdateResponse = paths[typeof routeName$
|
|
120746
|
+
declare const routeName$6o = "/v1/api/claims/{claim_id}/request_update";
|
|
120747
|
+
type ClaimRequestUpdatePathParams = paths[typeof routeName$6o]['post']['parameters']['path'];
|
|
120748
|
+
type ClaimRequestUpdateQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
|
|
120749
|
+
type ClaimRequestUpdateResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
|
|
120366
120750
|
interface ClaimRequestUpdateProps {
|
|
120367
120751
|
params: {
|
|
120368
120752
|
query: ClaimRequestUpdateQueryParams;
|
|
@@ -120371,10 +120755,10 @@ interface ClaimRequestUpdateProps {
|
|
|
120371
120755
|
}
|
|
120372
120756
|
declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
|
|
120373
120757
|
|
|
120374
|
-
declare const routeName$
|
|
120375
|
-
type ValidateClaimPathParams = paths[typeof routeName$
|
|
120376
|
-
type ValidateClaimQueryParams = paths[typeof routeName$
|
|
120377
|
-
type ValidateClaimResponse = paths[typeof routeName$
|
|
120758
|
+
declare const routeName$6n = "/v1/api/claims/{claim_id}/validate";
|
|
120759
|
+
type ValidateClaimPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
|
|
120760
|
+
type ValidateClaimQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
|
|
120761
|
+
type ValidateClaimResponse = paths[typeof routeName$6n]['post']['responses'][200]['content']['application/json'];
|
|
120378
120762
|
interface ValidateClaimProps {
|
|
120379
120763
|
params: {
|
|
120380
120764
|
query: ValidateClaimQueryParams;
|
|
@@ -120383,10 +120767,10 @@ interface ValidateClaimProps {
|
|
|
120383
120767
|
}
|
|
120384
120768
|
declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
|
|
120385
120769
|
|
|
120386
|
-
declare const routeName$
|
|
120387
|
-
type CreateDocumentForClaimPathParams = paths[typeof routeName$
|
|
120388
|
-
type CreateDocumentForClaimQueryParams = paths[typeof routeName$
|
|
120389
|
-
type CreateDocumentForClaimResponse = paths[typeof routeName$
|
|
120770
|
+
declare const routeName$6m = "/v1/api/claims/{claim_id}/documents";
|
|
120771
|
+
type CreateDocumentForClaimPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
|
|
120772
|
+
type CreateDocumentForClaimQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
|
|
120773
|
+
type CreateDocumentForClaimResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
|
|
120390
120774
|
interface CreateDocumentForClaimProps {
|
|
120391
120775
|
params: {
|
|
120392
120776
|
query: CreateDocumentForClaimQueryParams;
|
|
@@ -120395,17 +120779,17 @@ interface CreateDocumentForClaimProps {
|
|
|
120395
120779
|
}
|
|
120396
120780
|
declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
|
|
120397
120781
|
|
|
120398
|
-
declare const routeName$
|
|
120399
|
-
type DownloadDocumentByIdPathParams = paths[typeof routeName$
|
|
120400
|
-
type DownloadDocumentByIdQueryParams = paths[typeof routeName$
|
|
120401
|
-
type DownloadDocumentByIdResponse = paths[typeof routeName$
|
|
120402
|
-
type DownloadDocumentByIdProps = paths[typeof routeName$
|
|
120782
|
+
declare const routeName$6l = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120783
|
+
type DownloadDocumentByIdPathParams = paths[typeof routeName$6l]['get']['parameters']['path'];
|
|
120784
|
+
type DownloadDocumentByIdQueryParams = paths[typeof routeName$6l]['get']['parameters']['query'];
|
|
120785
|
+
type DownloadDocumentByIdResponse = paths[typeof routeName$6l]['get']['responses'][307]['content']['application/json'];
|
|
120786
|
+
type DownloadDocumentByIdProps = paths[typeof routeName$6l]['get']['parameters'];
|
|
120403
120787
|
declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
|
|
120404
120788
|
|
|
120405
|
-
declare const routeName$
|
|
120406
|
-
type DeleteDocumentByIdPathParams = paths[typeof routeName$
|
|
120407
|
-
type DeleteDocumentByIdQueryParams = paths[typeof routeName$
|
|
120408
|
-
type DeleteDocumentByIdResponse = paths[typeof routeName$
|
|
120789
|
+
declare const routeName$6k = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120790
|
+
type DeleteDocumentByIdPathParams = paths[typeof routeName$6k]['delete']['parameters']['path'];
|
|
120791
|
+
type DeleteDocumentByIdQueryParams = paths[typeof routeName$6k]['delete']['parameters']['query'];
|
|
120792
|
+
type DeleteDocumentByIdResponse = paths[typeof routeName$6k]['delete']['responses'][200]['content']['application/json'];
|
|
120409
120793
|
interface DeleteDocumentByIdProps {
|
|
120410
120794
|
params: {
|
|
120411
120795
|
query: DeleteDocumentByIdQueryParams;
|
|
@@ -120414,10 +120798,10 @@ interface DeleteDocumentByIdProps {
|
|
|
120414
120798
|
}
|
|
120415
120799
|
declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
|
|
120416
120800
|
|
|
120417
|
-
declare const routeName$
|
|
120418
|
-
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$
|
|
120419
|
-
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$
|
|
120420
|
-
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$
|
|
120801
|
+
declare const routeName$6j = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
120802
|
+
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6j]['patch']['parameters']['path'];
|
|
120803
|
+
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6j]['patch']['parameters']['query'];
|
|
120804
|
+
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6j]['patch']['responses'][200]['content']['application/json'];
|
|
120421
120805
|
interface UpdateDocumentMetadataByIdProps {
|
|
120422
120806
|
params: {
|
|
120423
120807
|
query: UpdateDocumentMetadataByIdQueryParams;
|
|
@@ -120426,17 +120810,17 @@ interface UpdateDocumentMetadataByIdProps {
|
|
|
120426
120810
|
}
|
|
120427
120811
|
declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
|
|
120428
120812
|
|
|
120429
|
-
declare const routeName$
|
|
120430
|
-
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120431
|
-
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120432
|
-
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120433
|
-
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$
|
|
120813
|
+
declare const routeName$6i = "/v1/api/claims/customer/token/{token}";
|
|
120814
|
+
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6i]['get']['parameters']['path'];
|
|
120815
|
+
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6i]['get']['parameters']['query'];
|
|
120816
|
+
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
|
|
120817
|
+
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6i]['get']['parameters'];
|
|
120434
120818
|
declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
|
|
120435
120819
|
|
|
120436
|
-
declare const routeName$
|
|
120437
|
-
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120438
|
-
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120439
|
-
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120820
|
+
declare const routeName$6h = "/v1/api/claims/customer/token/{token}";
|
|
120821
|
+
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6h]['patch']['parameters']['path'];
|
|
120822
|
+
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6h]['patch']['parameters']['query'];
|
|
120823
|
+
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6h]['patch']['responses'][200]['content']['application/json'];
|
|
120440
120824
|
interface UpdateClaimAsCustomerWithTokenProps {
|
|
120441
120825
|
params: {
|
|
120442
120826
|
query: UpdateClaimAsCustomerWithTokenQueryParams;
|
|
@@ -120445,10 +120829,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
|
|
|
120445
120829
|
}
|
|
120446
120830
|
declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
|
|
120447
120831
|
|
|
120448
|
-
declare const routeName$
|
|
120449
|
-
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120450
|
-
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120451
|
-
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120832
|
+
declare const routeName$6g = "/v1/api/claims/customer/token/{token}/entities";
|
|
120833
|
+
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
|
|
120834
|
+
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
|
|
120835
|
+
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
|
|
120452
120836
|
interface CreateEntityAsCustomerWithTokenProps {
|
|
120453
120837
|
params: {
|
|
120454
120838
|
query: CreateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -120457,10 +120841,10 @@ interface CreateEntityAsCustomerWithTokenProps {
|
|
|
120457
120841
|
}
|
|
120458
120842
|
declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
|
|
120459
120843
|
|
|
120460
|
-
declare const routeName$
|
|
120461
|
-
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120462
|
-
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120463
|
-
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120844
|
+
declare const routeName$6f = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
120845
|
+
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6f]['delete']['parameters']['path'];
|
|
120846
|
+
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6f]['delete']['parameters']['query'];
|
|
120847
|
+
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6f]['delete']['responses'][200]['content']['application/json'];
|
|
120464
120848
|
interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
120465
120849
|
params: {
|
|
120466
120850
|
query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120469,10 +120853,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
|
120469
120853
|
}
|
|
120470
120854
|
declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
|
|
120471
120855
|
|
|
120472
|
-
declare const routeName$
|
|
120473
|
-
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120474
|
-
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120475
|
-
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120856
|
+
declare const routeName$6e = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
120857
|
+
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6e]['patch']['parameters']['path'];
|
|
120858
|
+
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6e]['patch']['parameters']['query'];
|
|
120859
|
+
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6e]['patch']['responses'][200]['content']['application/json'];
|
|
120476
120860
|
interface UpdateEntityAsCustomerWithTokenProps {
|
|
120477
120861
|
params: {
|
|
120478
120862
|
query: UpdateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -120481,10 +120865,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
|
|
|
120481
120865
|
}
|
|
120482
120866
|
declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
|
|
120483
120867
|
|
|
120484
|
-
declare const routeName$
|
|
120485
|
-
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$
|
|
120486
|
-
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$
|
|
120487
|
-
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$
|
|
120868
|
+
declare const routeName$6d = "/v1/api/claims/upload/{claim_doc_category}";
|
|
120869
|
+
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
|
|
120870
|
+
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
|
|
120871
|
+
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6d]['post']['responses'][200]['content']['application/json'];
|
|
120488
120872
|
interface UploadClaimDocumentAsBrokerProps {
|
|
120489
120873
|
params: {
|
|
120490
120874
|
query: UploadClaimDocumentAsBrokerQueryParams;
|
|
@@ -120493,10 +120877,10 @@ interface UploadClaimDocumentAsBrokerProps {
|
|
|
120493
120877
|
}
|
|
120494
120878
|
declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
|
|
120495
120879
|
|
|
120496
|
-
declare const routeName$
|
|
120497
|
-
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$
|
|
120498
|
-
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$
|
|
120499
|
-
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$
|
|
120880
|
+
declare const routeName$6c = "/v1/api/claims/customer/upload/{claim_doc_category}";
|
|
120881
|
+
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
|
|
120882
|
+
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
|
|
120883
|
+
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
|
|
120500
120884
|
interface CreateUploadLinkAsCustomerProps {
|
|
120501
120885
|
params: {
|
|
120502
120886
|
query: CreateUploadLinkAsCustomerQueryParams;
|
|
@@ -120505,9 +120889,9 @@ interface CreateUploadLinkAsCustomerProps {
|
|
|
120505
120889
|
}
|
|
120506
120890
|
declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
|
|
120507
120891
|
|
|
120508
|
-
declare const routeName$
|
|
120509
|
-
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$
|
|
120510
|
-
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$
|
|
120892
|
+
declare const routeName$6b = "/v1/api/claims/generate/token";
|
|
120893
|
+
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
|
|
120894
|
+
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
|
|
120511
120895
|
interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
120512
120896
|
params: {
|
|
120513
120897
|
query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
|
|
@@ -120515,17 +120899,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
|
120515
120899
|
}
|
|
120516
120900
|
declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
|
|
120517
120901
|
|
|
120518
|
-
declare const routeName$
|
|
120519
|
-
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$
|
|
120520
|
-
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$
|
|
120521
|
-
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$
|
|
120522
|
-
type GetClaimEventsAsCustomerProps = paths[typeof routeName$
|
|
120902
|
+
declare const routeName$6a = "/v1/api/claims/customer/token/{token}/events";
|
|
120903
|
+
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
|
|
120904
|
+
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$6a]['get']['parameters']['query'];
|
|
120905
|
+
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
|
|
120906
|
+
type GetClaimEventsAsCustomerProps = paths[typeof routeName$6a]['get']['parameters'];
|
|
120523
120907
|
declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
|
|
120524
120908
|
|
|
120525
|
-
declare const routeName$
|
|
120526
|
-
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$
|
|
120527
|
-
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
120528
|
-
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$
|
|
120909
|
+
declare const routeName$69 = "/v1/api/claims/customer/token/{token}/documents";
|
|
120910
|
+
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$69]['post']['parameters']['path'];
|
|
120911
|
+
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
|
|
120912
|
+
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$69]['post']['responses'][200]['content']['application/json'];
|
|
120529
120913
|
interface CreateDocumentForClaimAsCustomerProps {
|
|
120530
120914
|
params: {
|
|
120531
120915
|
query: CreateDocumentForClaimAsCustomerQueryParams;
|
|
@@ -120534,10 +120918,10 @@ interface CreateDocumentForClaimAsCustomerProps {
|
|
|
120534
120918
|
}
|
|
120535
120919
|
declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
|
|
120536
120920
|
|
|
120537
|
-
declare const routeName$
|
|
120538
|
-
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120539
|
-
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120540
|
-
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120921
|
+
declare const routeName$68 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
120922
|
+
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$68]['delete']['parameters']['path'];
|
|
120923
|
+
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['delete']['parameters']['query'];
|
|
120924
|
+
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$68]['delete']['responses'][200]['content']['application/json'];
|
|
120541
120925
|
interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
120542
120926
|
params: {
|
|
120543
120927
|
query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120546,10 +120930,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
|
120546
120930
|
}
|
|
120547
120931
|
declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
|
|
120548
120932
|
|
|
120549
|
-
declare const routeName$
|
|
120550
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
120551
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
120552
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
120933
|
+
declare const routeName$67 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
120934
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
|
|
120935
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['patch']['parameters']['query'];
|
|
120936
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
|
|
120553
120937
|
interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
120554
120938
|
params: {
|
|
120555
120939
|
query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
|
|
@@ -120558,10 +120942,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
|
120558
120942
|
}
|
|
120559
120943
|
declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
|
|
120560
120944
|
|
|
120561
|
-
declare const routeName$
|
|
120562
|
-
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$
|
|
120563
|
-
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$
|
|
120564
|
-
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$
|
|
120945
|
+
declare const routeName$66 = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
|
|
120946
|
+
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
|
|
120947
|
+
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
|
|
120948
|
+
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$66]['post']['responses'][200]['content']['application/json'];
|
|
120565
120949
|
interface CreateNoteOnEventAsCustomerProps {
|
|
120566
120950
|
params: {
|
|
120567
120951
|
query: CreateNoteOnEventAsCustomerQueryParams;
|
|
@@ -120570,10 +120954,10 @@ interface CreateNoteOnEventAsCustomerProps {
|
|
|
120570
120954
|
}
|
|
120571
120955
|
declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
|
|
120572
120956
|
|
|
120573
|
-
declare const routeName$
|
|
120574
|
-
type CreateEntityAsBrokerPathParams = paths[typeof routeName$
|
|
120575
|
-
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$
|
|
120576
|
-
type CreateEntityAsBrokerResponse = paths[typeof routeName$
|
|
120957
|
+
declare const routeName$65 = "/v1/api/claims/{claim_id}/entities";
|
|
120958
|
+
type CreateEntityAsBrokerPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
|
|
120959
|
+
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
|
|
120960
|
+
type CreateEntityAsBrokerResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
|
|
120577
120961
|
interface CreateEntityAsBrokerProps {
|
|
120578
120962
|
params: {
|
|
120579
120963
|
query: CreateEntityAsBrokerQueryParams;
|
|
@@ -120582,10 +120966,10 @@ interface CreateEntityAsBrokerProps {
|
|
|
120582
120966
|
}
|
|
120583
120967
|
declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
|
|
120584
120968
|
|
|
120585
|
-
declare const routeName$
|
|
120586
|
-
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120587
|
-
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120588
|
-
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
120969
|
+
declare const routeName$64 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
120970
|
+
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
|
|
120971
|
+
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
|
|
120972
|
+
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
|
|
120589
120973
|
interface DeleteEntityAsBrokerByIdProps {
|
|
120590
120974
|
params: {
|
|
120591
120975
|
query: DeleteEntityAsBrokerByIdQueryParams;
|
|
@@ -120594,10 +120978,10 @@ interface DeleteEntityAsBrokerByIdProps {
|
|
|
120594
120978
|
}
|
|
120595
120979
|
declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
|
|
120596
120980
|
|
|
120597
|
-
declare const routeName$
|
|
120598
|
-
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120599
|
-
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120600
|
-
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
120981
|
+
declare const routeName$63 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
120982
|
+
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$63]['patch']['parameters']['path'];
|
|
120983
|
+
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$63]['patch']['parameters']['query'];
|
|
120984
|
+
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$63]['patch']['responses'][200]['content']['application/json'];
|
|
120601
120985
|
interface UpdateEntityAsBrokerByIdProps {
|
|
120602
120986
|
params: {
|
|
120603
120987
|
query: UpdateEntityAsBrokerByIdQueryParams;
|
|
@@ -120606,17 +120990,17 @@ interface UpdateEntityAsBrokerByIdProps {
|
|
|
120606
120990
|
}
|
|
120607
120991
|
declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
|
|
120608
120992
|
|
|
120609
|
-
declare const routeName$
|
|
120610
|
-
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$
|
|
120611
|
-
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
120612
|
-
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$
|
|
120613
|
-
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$
|
|
120993
|
+
declare const routeName$62 = "/v1/api/claims/{claim_id}/events";
|
|
120994
|
+
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$62]['get']['parameters']['path'];
|
|
120995
|
+
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
|
|
120996
|
+
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
|
|
120997
|
+
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$62]['get']['parameters'];
|
|
120614
120998
|
declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
|
|
120615
120999
|
|
|
120616
|
-
declare const routeName$
|
|
120617
|
-
type SendClaimToKeypointPathParams = paths[typeof routeName$
|
|
120618
|
-
type SendClaimToKeypointQueryParams = paths[typeof routeName$
|
|
120619
|
-
type SendClaimToKeypointResponse = paths[typeof routeName$
|
|
121000
|
+
declare const routeName$61 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
|
|
121001
|
+
type SendClaimToKeypointPathParams = paths[typeof routeName$61]['post']['parameters']['path'];
|
|
121002
|
+
type SendClaimToKeypointQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
|
|
121003
|
+
type SendClaimToKeypointResponse = paths[typeof routeName$61]['post']['responses'][201]['content']['application/json'];
|
|
120620
121004
|
interface SendClaimToKeypointProps {
|
|
120621
121005
|
params: {
|
|
120622
121006
|
query: SendClaimToKeypointQueryParams;
|
|
@@ -120625,10 +121009,10 @@ interface SendClaimToKeypointProps {
|
|
|
120625
121009
|
}
|
|
120626
121010
|
declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
|
|
120627
121011
|
|
|
120628
|
-
declare const routeName$
|
|
120629
|
-
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$
|
|
120630
|
-
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$
|
|
120631
|
-
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$
|
|
121012
|
+
declare const routeName$60 = "/v1/api/claims/{claim_id}/customer/followup-page/email";
|
|
121013
|
+
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
|
|
121014
|
+
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
|
|
121015
|
+
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$60]['post']['responses'][200]['content']['application/json'];
|
|
120632
121016
|
interface SendMailFollowupPageToCustomerProps {
|
|
120633
121017
|
params: {
|
|
120634
121018
|
query: SendMailFollowupPageToCustomerQueryParams;
|
|
@@ -120637,21 +121021,21 @@ interface SendMailFollowupPageToCustomerProps {
|
|
|
120637
121021
|
}
|
|
120638
121022
|
declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
|
|
120639
121023
|
|
|
120640
|
-
declare const routeName$
|
|
120641
|
-
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$
|
|
121024
|
+
declare const routeName$5$ = "/v1/api/claims/categories/CAR";
|
|
121025
|
+
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
|
|
120642
121026
|
declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
|
|
120643
121027
|
|
|
120644
|
-
declare const routeName$
|
|
120645
|
-
type GetInfoForClaimPathParams = paths[typeof routeName$
|
|
120646
|
-
type GetInfoForClaimQueryParams = paths[typeof routeName$
|
|
120647
|
-
type GetInfoForClaimResponse = paths[typeof routeName$
|
|
120648
|
-
type GetInfoForClaimProps = paths[typeof routeName$
|
|
121028
|
+
declare const routeName$5_ = "/v1/api/claims/info/{claim_type}/{claim_category}";
|
|
121029
|
+
type GetInfoForClaimPathParams = paths[typeof routeName$5_]['get']['parameters']['path'];
|
|
121030
|
+
type GetInfoForClaimQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
|
|
121031
|
+
type GetInfoForClaimResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
|
|
121032
|
+
type GetInfoForClaimProps = paths[typeof routeName$5_]['get']['parameters'];
|
|
120649
121033
|
declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
|
|
120650
121034
|
|
|
120651
|
-
declare const routeName$
|
|
120652
|
-
type CreateNoteOnEventPathParams = paths[typeof routeName$
|
|
120653
|
-
type CreateNoteOnEventQueryParams = paths[typeof routeName$
|
|
120654
|
-
type CreateNoteOnEventResponse = paths[typeof routeName$
|
|
121035
|
+
declare const routeName$5Z = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
|
|
121036
|
+
type CreateNoteOnEventPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
|
|
121037
|
+
type CreateNoteOnEventQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
|
|
121038
|
+
type CreateNoteOnEventResponse = paths[typeof routeName$5Z]['post']['responses'][201]['content']['application/json'];
|
|
120655
121039
|
interface CreateNoteOnEventProps {
|
|
120656
121040
|
params: {
|
|
120657
121041
|
query: CreateNoteOnEventQueryParams;
|
|
@@ -120660,10 +121044,10 @@ interface CreateNoteOnEventProps {
|
|
|
120660
121044
|
}
|
|
120661
121045
|
declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
|
|
120662
121046
|
|
|
120663
|
-
declare const routeName$
|
|
120664
|
-
type DeleteNotePathParams = paths[typeof routeName$
|
|
120665
|
-
type DeleteNoteQueryParams = paths[typeof routeName$
|
|
120666
|
-
type DeleteNoteResponse = paths[typeof routeName$
|
|
121047
|
+
declare const routeName$5Y = "/v1/api/claims/notes/{note_id}";
|
|
121048
|
+
type DeleteNotePathParams = paths[typeof routeName$5Y]['delete']['parameters']['path'];
|
|
121049
|
+
type DeleteNoteQueryParams = paths[typeof routeName$5Y]['delete']['parameters']['query'];
|
|
121050
|
+
type DeleteNoteResponse = paths[typeof routeName$5Y]['delete']['responses'][200]['content']['application/json'];
|
|
120667
121051
|
interface DeleteNoteProps {
|
|
120668
121052
|
params: {
|
|
120669
121053
|
query: DeleteNoteQueryParams;
|
|
@@ -120672,10 +121056,10 @@ interface DeleteNoteProps {
|
|
|
120672
121056
|
}
|
|
120673
121057
|
declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
|
|
120674
121058
|
|
|
120675
|
-
declare const routeName$
|
|
120676
|
-
type UpdateNotePathParams = paths[typeof routeName$
|
|
120677
|
-
type UpdateNoteQueryParams = paths[typeof routeName$
|
|
120678
|
-
type UpdateNoteResponse = paths[typeof routeName$
|
|
121059
|
+
declare const routeName$5X = "/v1/api/claims/notes/{note_id}";
|
|
121060
|
+
type UpdateNotePathParams = paths[typeof routeName$5X]['patch']['parameters']['path'];
|
|
121061
|
+
type UpdateNoteQueryParams = paths[typeof routeName$5X]['patch']['parameters']['query'];
|
|
121062
|
+
type UpdateNoteResponse = paths[typeof routeName$5X]['patch']['responses'][200]['content']['application/json'];
|
|
120679
121063
|
interface UpdateNoteProps {
|
|
120680
121064
|
params: {
|
|
120681
121065
|
query: UpdateNoteQueryParams;
|
|
@@ -120684,17 +121068,17 @@ interface UpdateNoteProps {
|
|
|
120684
121068
|
}
|
|
120685
121069
|
declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
|
|
120686
121070
|
|
|
120687
|
-
declare const routeName$
|
|
120688
|
-
type ClaimReportByIdPathParams = paths[typeof routeName$
|
|
120689
|
-
type ClaimReportByIdQueryParams = paths[typeof routeName$
|
|
120690
|
-
type ClaimReportByIdResponse = paths[typeof routeName$
|
|
120691
|
-
type ClaimReportByIdProps = paths[typeof routeName$
|
|
121071
|
+
declare const routeName$5W = "/v1/api/claims/{claim_id}/report";
|
|
121072
|
+
type ClaimReportByIdPathParams = paths[typeof routeName$5W]['get']['parameters']['path'];
|
|
121073
|
+
type ClaimReportByIdQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
|
|
121074
|
+
type ClaimReportByIdResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
|
|
121075
|
+
type ClaimReportByIdProps = paths[typeof routeName$5W]['get']['parameters'];
|
|
120692
121076
|
declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
|
|
120693
121077
|
|
|
120694
|
-
declare const routeName$
|
|
120695
|
-
type SendMailClaimReportByIdPathParams = paths[typeof routeName$
|
|
120696
|
-
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$
|
|
120697
|
-
type SendMailClaimReportByIdResponse = paths[typeof routeName$
|
|
121078
|
+
declare const routeName$5V = "/v1/api/claims/{claim_id}/report/email";
|
|
121079
|
+
type SendMailClaimReportByIdPathParams = paths[typeof routeName$5V]['post']['parameters']['path'];
|
|
121080
|
+
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5V]['post']['parameters']['query'];
|
|
121081
|
+
type SendMailClaimReportByIdResponse = paths[typeof routeName$5V]['post']['responses'][200]['content']['application/json'];
|
|
120698
121082
|
interface SendMailClaimReportByIdProps {
|
|
120699
121083
|
params: {
|
|
120700
121084
|
query: SendMailClaimReportByIdQueryParams;
|
|
@@ -120703,16 +121087,16 @@ interface SendMailClaimReportByIdProps {
|
|
|
120703
121087
|
}
|
|
120704
121088
|
declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
|
|
120705
121089
|
|
|
120706
|
-
declare const routeName$
|
|
120707
|
-
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
120708
|
-
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
120709
|
-
type GetBrokerConnectionsByIdProps = paths[typeof routeName$
|
|
121090
|
+
declare const routeName$5U = "/v1/api/brokers/{broker_id}/connections";
|
|
121091
|
+
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5U]['get']['parameters']['path'];
|
|
121092
|
+
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
|
|
121093
|
+
type GetBrokerConnectionsByIdProps = paths[typeof routeName$5U]['get']['parameters'];
|
|
120710
121094
|
declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
|
|
120711
121095
|
|
|
120712
|
-
declare const routeName$
|
|
120713
|
-
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$
|
|
120714
|
-
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
120715
|
-
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
121096
|
+
declare const routeName$5T = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121097
|
+
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5T]['post']['requestBody']['content']['application/json'];
|
|
121098
|
+
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
|
|
121099
|
+
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5T]['post']['responses'][201]['content']['application/json'];
|
|
120716
121100
|
interface CreateBrokerConnectionsByIdProps {
|
|
120717
121101
|
body: CreateBrokerConnectionsByIdBody;
|
|
120718
121102
|
params: {
|
|
@@ -120721,9 +121105,9 @@ interface CreateBrokerConnectionsByIdProps {
|
|
|
120721
121105
|
}
|
|
120722
121106
|
declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
|
|
120723
121107
|
|
|
120724
|
-
declare const routeName$
|
|
120725
|
-
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
120726
|
-
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
121108
|
+
declare const routeName$5S = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121109
|
+
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5S]['delete']['parameters']['path'];
|
|
121110
|
+
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5S]['delete']['responses'][200]['content']['application/json'];
|
|
120727
121111
|
interface DeleteBrokerConnectionByKeyProps {
|
|
120728
121112
|
params: {
|
|
120729
121113
|
path: DeleteBrokerConnectionByKeyPathParams;
|
|
@@ -120731,10 +121115,10 @@ interface DeleteBrokerConnectionByKeyProps {
|
|
|
120731
121115
|
}
|
|
120732
121116
|
declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
|
|
120733
121117
|
|
|
120734
|
-
declare const routeName$
|
|
120735
|
-
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$
|
|
120736
|
-
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
120737
|
-
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
121118
|
+
declare const routeName$5R = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
121119
|
+
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5R]['patch']['requestBody']['content']['application/json'];
|
|
121120
|
+
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5R]['patch']['parameters']['path'];
|
|
121121
|
+
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5R]['patch']['responses'][200]['content']['application/json'];
|
|
120738
121122
|
interface UpdateBrokerConnectionByKeyProps {
|
|
120739
121123
|
body: UpdateBrokerConnectionByKeyBody;
|
|
120740
121124
|
params: {
|
|
@@ -120743,10 +121127,10 @@ interface UpdateBrokerConnectionByKeyProps {
|
|
|
120743
121127
|
}
|
|
120744
121128
|
declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
|
|
120745
121129
|
|
|
120746
|
-
declare const routeName$
|
|
120747
|
-
type CreateDistributionConnectionByIdBody = paths[typeof routeName$
|
|
120748
|
-
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$
|
|
120749
|
-
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$
|
|
121130
|
+
declare const routeName$5Q = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121131
|
+
type CreateDistributionConnectionByIdBody = paths[typeof routeName$5Q]['post']['requestBody']['content']['application/json'];
|
|
121132
|
+
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
|
|
121133
|
+
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5Q]['post']['responses'][201]['content']['application/json'];
|
|
120750
121134
|
interface CreateDistributionConnectionByIdProps {
|
|
120751
121135
|
body: CreateDistributionConnectionByIdBody;
|
|
120752
121136
|
params: {
|
|
@@ -120755,9 +121139,9 @@ interface CreateDistributionConnectionByIdProps {
|
|
|
120755
121139
|
}
|
|
120756
121140
|
declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
|
|
120757
121141
|
|
|
120758
|
-
declare const routeName$
|
|
120759
|
-
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
120760
|
-
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
121142
|
+
declare const routeName$5P = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121143
|
+
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5P]['delete']['parameters']['path'];
|
|
121144
|
+
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5P]['delete']['responses'][200]['content']['application/json'];
|
|
120761
121145
|
interface DeleteDistributionConnectionByKeyProps {
|
|
120762
121146
|
params: {
|
|
120763
121147
|
path: DeleteDistributionConnectionByKeyPathParams;
|
|
@@ -120765,10 +121149,10 @@ interface DeleteDistributionConnectionByKeyProps {
|
|
|
120765
121149
|
}
|
|
120766
121150
|
declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
|
|
120767
121151
|
|
|
120768
|
-
declare const routeName$
|
|
120769
|
-
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$
|
|
120770
|
-
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
120771
|
-
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
121152
|
+
declare const routeName$5O = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
121153
|
+
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5O]['patch']['requestBody']['content']['application/json'];
|
|
121154
|
+
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5O]['patch']['parameters']['path'];
|
|
121155
|
+
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5O]['patch']['responses'][200]['content']['application/json'];
|
|
120772
121156
|
interface UpdateDistributionConnectionByKeyProps {
|
|
120773
121157
|
body: UpdateDistributionConnectionByKeyBody;
|
|
120774
121158
|
params: {
|
|
@@ -120777,41 +121161,41 @@ interface UpdateDistributionConnectionByKeyProps {
|
|
|
120777
121161
|
}
|
|
120778
121162
|
declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
|
|
120779
121163
|
|
|
120780
|
-
declare const routeName$
|
|
120781
|
-
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$
|
|
120782
|
-
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$
|
|
120783
|
-
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$
|
|
120784
|
-
type GetDistributionConnectionsByIdProps = paths[typeof routeName$
|
|
121164
|
+
declare const routeName$5N = "/v1/api/distributions/{distribution_id}/connections";
|
|
121165
|
+
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
|
|
121166
|
+
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
|
|
121167
|
+
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
|
|
121168
|
+
type GetDistributionConnectionsByIdProps = paths[typeof routeName$5N]['get']['parameters'];
|
|
120785
121169
|
declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
|
|
120786
121170
|
|
|
120787
|
-
declare const routeName$
|
|
120788
|
-
type GetAnvaPartiesQueryParams = paths[typeof routeName$
|
|
120789
|
-
type GetAnvaPartiesResponse = paths[typeof routeName$
|
|
120790
|
-
type GetAnvaPartiesProps = paths[typeof routeName$
|
|
121171
|
+
declare const routeName$5M = "/v1/api/connections/anva/parties";
|
|
121172
|
+
type GetAnvaPartiesQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
|
|
121173
|
+
type GetAnvaPartiesResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
|
|
121174
|
+
type GetAnvaPartiesProps = paths[typeof routeName$5M]['get']['parameters'];
|
|
120791
121175
|
declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
|
|
120792
121176
|
|
|
120793
|
-
declare const routeName$
|
|
120794
|
-
type GetAnvaEmployeesQueryParams = paths[typeof routeName$
|
|
120795
|
-
type GetAnvaEmployeesResponse = paths[typeof routeName$
|
|
120796
|
-
type GetAnvaEmployeesProps = paths[typeof routeName$
|
|
121177
|
+
declare const routeName$5L = "/v1/api/connections/anva/employees";
|
|
121178
|
+
type GetAnvaEmployeesQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
|
|
121179
|
+
type GetAnvaEmployeesResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
|
|
121180
|
+
type GetAnvaEmployeesProps = paths[typeof routeName$5L]['get']['parameters'];
|
|
120797
121181
|
declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
|
|
120798
121182
|
|
|
120799
|
-
declare const routeName$
|
|
120800
|
-
type GetAnvaAgentsQueryParams = paths[typeof routeName$
|
|
120801
|
-
type GetAnvaAgentsResponse = paths[typeof routeName$
|
|
120802
|
-
type GetAnvaAgentsProps = paths[typeof routeName$
|
|
121183
|
+
declare const routeName$5K = "/v1/api/connections/anva/agents";
|
|
121184
|
+
type GetAnvaAgentsQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
|
|
121185
|
+
type GetAnvaAgentsResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
|
|
121186
|
+
type GetAnvaAgentsProps = paths[typeof routeName$5K]['get']['parameters'];
|
|
120803
121187
|
declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
|
|
120804
121188
|
|
|
120805
|
-
declare const routeName$
|
|
120806
|
-
type GetAnvaProductsQueryParams = paths[typeof routeName$
|
|
120807
|
-
type GetAnvaProductsResponse = paths[typeof routeName$
|
|
120808
|
-
type GetAnvaProductsProps = paths[typeof routeName$
|
|
121189
|
+
declare const routeName$5J = "/v1/api/connections/anva/products";
|
|
121190
|
+
type GetAnvaProductsQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
|
|
121191
|
+
type GetAnvaProductsResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
|
|
121192
|
+
type GetAnvaProductsProps = paths[typeof routeName$5J]['get']['parameters'];
|
|
120809
121193
|
declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
|
|
120810
121194
|
|
|
120811
|
-
declare const routeName$
|
|
120812
|
-
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$
|
|
120813
|
-
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$
|
|
120814
|
-
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$
|
|
121195
|
+
declare const routeName$5I = "/v1/api/connections/anva/parties/{anva_id}/imports";
|
|
121196
|
+
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5I]['post']['parameters']['path'];
|
|
121197
|
+
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5I]['post']['parameters']['query'];
|
|
121198
|
+
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5I]['post']['responses'][201]['content']['application/json'];
|
|
120815
121199
|
interface ImportAnvaPartyInWegroupProps {
|
|
120816
121200
|
params: {
|
|
120817
121201
|
query: ImportAnvaPartyInWegroupQueryParams;
|
|
@@ -120820,31 +121204,31 @@ interface ImportAnvaPartyInWegroupProps {
|
|
|
120820
121204
|
}
|
|
120821
121205
|
declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
|
|
120822
121206
|
|
|
120823
|
-
declare const routeName$
|
|
120824
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$
|
|
120825
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120826
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$
|
|
120827
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$
|
|
121207
|
+
declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
|
|
121208
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
|
|
121209
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
|
|
121210
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5H]['get']['responses'][307]['content']['application/json'];
|
|
121211
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5H]['get']['parameters'];
|
|
120828
121212
|
declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
|
|
120829
121213
|
|
|
120830
|
-
declare const routeName$
|
|
120831
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$
|
|
120832
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120833
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$
|
|
120834
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$
|
|
121214
|
+
declare const routeName$5G = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
|
|
121215
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
|
|
121216
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
|
|
121217
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][307]['content']['application/json'];
|
|
121218
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
|
|
120835
121219
|
declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
|
|
120836
121220
|
|
|
120837
|
-
declare const routeName$
|
|
120838
|
-
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
120839
|
-
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$
|
|
120840
|
-
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$
|
|
121221
|
+
declare const routeName$5F = "/v1/api/connections/anva/documents/import";
|
|
121222
|
+
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
|
|
121223
|
+
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][307]['content']['application/json'];
|
|
121224
|
+
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
|
|
120841
121225
|
declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
|
|
120842
121226
|
|
|
120843
|
-
declare const routeName$
|
|
120844
|
-
type CreateAnvaTaskBody = paths[typeof routeName$
|
|
120845
|
-
type CreateAnvaTaskPathParams = paths[typeof routeName$
|
|
120846
|
-
type CreateAnvaTaskQueryParams = paths[typeof routeName$
|
|
120847
|
-
type CreateAnvaTaskResponse = paths[typeof routeName$
|
|
121227
|
+
declare const routeName$5E = "/v1/api/connections/anva/parties/{anva_party_id}/task";
|
|
121228
|
+
type CreateAnvaTaskBody = paths[typeof routeName$5E]['post']['requestBody']['content']['application/json'];
|
|
121229
|
+
type CreateAnvaTaskPathParams = paths[typeof routeName$5E]['post']['parameters']['path'];
|
|
121230
|
+
type CreateAnvaTaskQueryParams = paths[typeof routeName$5E]['post']['parameters']['query'];
|
|
121231
|
+
type CreateAnvaTaskResponse = paths[typeof routeName$5E]['post']['responses'][201]['content']['application/json'];
|
|
120848
121232
|
interface CreateAnvaTaskProps {
|
|
120849
121233
|
body: CreateAnvaTaskBody;
|
|
120850
121234
|
params: {
|
|
@@ -120854,9 +121238,9 @@ interface CreateAnvaTaskProps {
|
|
|
120854
121238
|
}
|
|
120855
121239
|
declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
|
|
120856
121240
|
|
|
120857
|
-
declare const routeName$
|
|
120858
|
-
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$
|
|
120859
|
-
type ValidateAnvaConnectionResponse = paths[typeof routeName$
|
|
121241
|
+
declare const routeName$5D = "/v1/api/connections/anva/validate";
|
|
121242
|
+
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
|
|
121243
|
+
type ValidateAnvaConnectionResponse = paths[typeof routeName$5D]['post']['responses'][200]['content']['application/json'];
|
|
120860
121244
|
interface ValidateAnvaConnectionProps {
|
|
120861
121245
|
params: {
|
|
120862
121246
|
query: ValidateAnvaConnectionQueryParams;
|
|
@@ -120864,9 +121248,9 @@ interface ValidateAnvaConnectionProps {
|
|
|
120864
121248
|
}
|
|
120865
121249
|
declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
|
|
120866
121250
|
|
|
120867
|
-
declare const routeName$
|
|
120868
|
-
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$
|
|
120869
|
-
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$
|
|
121251
|
+
declare const routeName$5C = "/v1/api/connections/anva_dwh/validate";
|
|
121252
|
+
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
|
|
121253
|
+
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5C]['post']['responses'][200]['content']['application/json'];
|
|
120870
121254
|
interface ValidateAnvaDwhConnectionProps {
|
|
120871
121255
|
params: {
|
|
120872
121256
|
query: ValidateAnvaDwhConnectionQueryParams;
|
|
@@ -120874,22 +121258,22 @@ interface ValidateAnvaDwhConnectionProps {
|
|
|
120874
121258
|
}
|
|
120875
121259
|
declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
|
|
120876
121260
|
|
|
120877
|
-
declare const routeName$
|
|
120878
|
-
type GetDiasPartiesQueryParams = paths[typeof routeName$
|
|
120879
|
-
type GetDiasPartiesResponse = paths[typeof routeName$
|
|
120880
|
-
type GetDiasPartiesProps = paths[typeof routeName$
|
|
121261
|
+
declare const routeName$5B = "/v1/api/connections/dias/parties";
|
|
121262
|
+
type GetDiasPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
|
|
121263
|
+
type GetDiasPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
|
|
121264
|
+
type GetDiasPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
|
|
120881
121265
|
declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
|
|
120882
121266
|
|
|
120883
|
-
declare const routeName$
|
|
120884
|
-
type GetDiasEmployeesQueryParams = paths[typeof routeName$
|
|
120885
|
-
type GetDiasEmployeesResponse = paths[typeof routeName$
|
|
120886
|
-
type GetDiasEmployeesProps = paths[typeof routeName$
|
|
121267
|
+
declare const routeName$5A = "/v1/api/connections/dias/employees";
|
|
121268
|
+
type GetDiasEmployeesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
|
|
121269
|
+
type GetDiasEmployeesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
|
|
121270
|
+
type GetDiasEmployeesProps = paths[typeof routeName$5A]['get']['parameters'];
|
|
120887
121271
|
declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
|
|
120888
121272
|
|
|
120889
|
-
declare const routeName$
|
|
120890
|
-
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$
|
|
120891
|
-
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$
|
|
120892
|
-
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$
|
|
121273
|
+
declare const routeName$5z = "/v1/api/connections/dias/parties/{dias_id}/imports";
|
|
121274
|
+
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
|
|
121275
|
+
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
|
|
121276
|
+
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
|
|
120893
121277
|
interface ImportDiasPartyInWegroupProps {
|
|
120894
121278
|
params: {
|
|
120895
121279
|
query: ImportDiasPartyInWegroupQueryParams;
|
|
@@ -120898,37 +121282,37 @@ interface ImportDiasPartyInWegroupProps {
|
|
|
120898
121282
|
}
|
|
120899
121283
|
declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
|
|
120900
121284
|
|
|
120901
|
-
declare const routeName$
|
|
120902
|
-
type GetDiasProductsQueryParams = paths[typeof routeName$
|
|
120903
|
-
type GetDiasProductsResponse = paths[typeof routeName$
|
|
120904
|
-
type GetDiasProductsProps = paths[typeof routeName$
|
|
121285
|
+
declare const routeName$5y = "/v1/api/connections/dias/products";
|
|
121286
|
+
type GetDiasProductsQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
|
|
121287
|
+
type GetDiasProductsResponse = paths[typeof routeName$5y]['get']['responses'][200]['content']['application/json'];
|
|
121288
|
+
type GetDiasProductsProps = paths[typeof routeName$5y]['get']['parameters'];
|
|
120905
121289
|
declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
|
|
120906
121290
|
|
|
120907
|
-
declare const routeName$
|
|
120908
|
-
type GetDiasAfdbranchesResponse = paths[typeof routeName$
|
|
121291
|
+
declare const routeName$5x = "/v1/api/connections/dias/afdbranches";
|
|
121292
|
+
type GetDiasAfdbranchesResponse = paths[typeof routeName$5x]['get']['responses'][200]['content']['application/json'];
|
|
120909
121293
|
declare const getDiasAfdbranches: (wgApiClient: ClientType) => Promise<GetDiasAfdbranchesResponse>;
|
|
120910
121294
|
|
|
120911
|
-
declare const routeName$
|
|
120912
|
-
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$
|
|
120913
|
-
type GetFasterforwardEmployeesResponse = paths[typeof routeName$
|
|
120914
|
-
type GetFasterforwardEmployeesProps = paths[typeof routeName$
|
|
121295
|
+
declare const routeName$5w = "/v1/api/connections/fasterforward/employees";
|
|
121296
|
+
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
|
|
121297
|
+
type GetFasterforwardEmployeesResponse = paths[typeof routeName$5w]['get']['responses'][200]['content']['application/json'];
|
|
121298
|
+
type GetFasterforwardEmployeesProps = paths[typeof routeName$5w]['get']['parameters'];
|
|
120915
121299
|
declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
|
|
120916
121300
|
|
|
120917
|
-
declare const routeName$
|
|
120918
|
-
type GetAssuEmployeesQueryParams = paths[typeof routeName$
|
|
120919
|
-
type GetAssuEmployeesResponse = paths[typeof routeName$
|
|
120920
|
-
type GetAssuEmployeesProps = paths[typeof routeName$
|
|
121301
|
+
declare const routeName$5v = "/v1/api/connections/assu/employees";
|
|
121302
|
+
type GetAssuEmployeesQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
|
|
121303
|
+
type GetAssuEmployeesResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
|
|
121304
|
+
type GetAssuEmployeesProps = paths[typeof routeName$5v]['get']['parameters'];
|
|
120921
121305
|
declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
|
|
120922
121306
|
|
|
120923
|
-
declare const routeName$
|
|
120924
|
-
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$
|
|
120925
|
-
type GetFasterforwardTeamsResponse = paths[typeof routeName$
|
|
120926
|
-
type GetFasterforwardTeamsProps = paths[typeof routeName$
|
|
121307
|
+
declare const routeName$5u = "/v1/api/connections/fasterforward/teams";
|
|
121308
|
+
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
|
|
121309
|
+
type GetFasterforwardTeamsResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
|
|
121310
|
+
type GetFasterforwardTeamsProps = paths[typeof routeName$5u]['get']['parameters'];
|
|
120927
121311
|
declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
|
|
120928
121312
|
|
|
120929
|
-
declare const routeName$
|
|
120930
|
-
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$
|
|
120931
|
-
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$
|
|
121313
|
+
declare const routeName$5t = "/v1/api/connections/fasterforward/validate";
|
|
121314
|
+
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
|
|
121315
|
+
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
|
|
120932
121316
|
interface ValidateFasterforwardConnectionProps {
|
|
120933
121317
|
params: {
|
|
120934
121318
|
query: ValidateFasterforwardConnectionQueryParams;
|
|
@@ -120936,38 +121320,72 @@ interface ValidateFasterforwardConnectionProps {
|
|
|
120936
121320
|
}
|
|
120937
121321
|
declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
|
|
120938
121322
|
|
|
120939
|
-
declare const routeName$
|
|
120940
|
-
type GetOutlookMailsQueryParams = paths[typeof routeName$
|
|
120941
|
-
type GetOutlookMailsResponse = paths[typeof routeName$
|
|
120942
|
-
type GetOutlookMailsProps = paths[typeof routeName$
|
|
121323
|
+
declare const routeName$5s = "/v1/api/connections/outlook/mails";
|
|
121324
|
+
type GetOutlookMailsQueryParams = paths[typeof routeName$5s]['get']['parameters']['query'];
|
|
121325
|
+
type GetOutlookMailsResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
|
|
121326
|
+
type GetOutlookMailsProps = paths[typeof routeName$5s]['get']['parameters'];
|
|
120943
121327
|
declare const getOutlookMails: (props: GetOutlookMailsProps, wgApiClient: ClientType) => Promise<GetOutlookMailsResponse>;
|
|
120944
121328
|
|
|
120945
|
-
declare const routeName$
|
|
120946
|
-
type GetOutlookMailByIdPathParams = paths[typeof routeName$
|
|
120947
|
-
type GetOutlookMailByIdQueryParams = paths[typeof routeName$
|
|
120948
|
-
type GetOutlookMailByIdResponse = paths[typeof routeName$
|
|
120949
|
-
type GetOutlookMailByIdProps = paths[typeof routeName$
|
|
121329
|
+
declare const routeName$5r = "/v1/api/connections/outlook/mails/{id}";
|
|
121330
|
+
type GetOutlookMailByIdPathParams = paths[typeof routeName$5r]['get']['parameters']['path'];
|
|
121331
|
+
type GetOutlookMailByIdQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
|
|
121332
|
+
type GetOutlookMailByIdResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
|
|
121333
|
+
type GetOutlookMailByIdProps = paths[typeof routeName$5r]['get']['parameters'];
|
|
120950
121334
|
declare const getOutlookMailById: (props: GetOutlookMailByIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByIdResponse>;
|
|
120951
121335
|
|
|
120952
|
-
declare const routeName$
|
|
120953
|
-
type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$
|
|
120954
|
-
type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$
|
|
120955
|
-
type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$
|
|
120956
|
-
type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$
|
|
121336
|
+
declare const routeName$5q = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
|
|
121337
|
+
type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5q]['get']['parameters']['path'];
|
|
121338
|
+
type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
|
|
121339
|
+
type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
|
|
121340
|
+
type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5q]['get']['parameters'];
|
|
120957
121341
|
declare const getOutlookMailByOutlookMessageId: (props: GetOutlookMailByOutlookMessageIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByOutlookMessageIdResponse>;
|
|
120958
121342
|
|
|
120959
|
-
declare const routeName$
|
|
120960
|
-
type GetOutlookMailfoldersQueryParams = paths[typeof routeName$
|
|
120961
|
-
type GetOutlookMailfoldersResponse = paths[typeof routeName$
|
|
120962
|
-
type GetOutlookMailfoldersProps = paths[typeof routeName$
|
|
121343
|
+
declare const routeName$5p = "/v1/api/connections/outlook/mailfolders";
|
|
121344
|
+
type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
|
|
121345
|
+
type GetOutlookMailfoldersResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
|
|
121346
|
+
type GetOutlookMailfoldersProps = paths[typeof routeName$5p]['get']['parameters'];
|
|
120963
121347
|
declare const getOutlookMailfolders: (props: GetOutlookMailfoldersProps, wgApiClient: ClientType) => Promise<GetOutlookMailfoldersResponse>;
|
|
120964
121348
|
|
|
120965
|
-
declare const routeName$
|
|
120966
|
-
type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$
|
|
120967
|
-
type GetOutlookConnectionDetailsResponse = paths[typeof routeName$
|
|
120968
|
-
type GetOutlookConnectionDetailsProps = paths[typeof routeName$
|
|
121349
|
+
declare const routeName$5o = "/v1/api/connections/outlook";
|
|
121350
|
+
type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
|
|
121351
|
+
type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
|
|
121352
|
+
type GetOutlookConnectionDetailsProps = paths[typeof routeName$5o]['get']['parameters'];
|
|
120969
121353
|
declare const getOutlookConnectionDetails: (props: GetOutlookConnectionDetailsProps, wgApiClient: ClientType) => Promise<GetOutlookConnectionDetailsResponse>;
|
|
120970
121354
|
|
|
121355
|
+
declare const routeName$5n = "/v1/api/connections/outlook/sync/activate";
|
|
121356
|
+
type ActivateOutlookConnectionSyncBody = paths[typeof routeName$5n]['post']['requestBody']['content']['application/json'];
|
|
121357
|
+
type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5n]['post']['parameters']['query'];
|
|
121358
|
+
type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$5n]['post']['responses'][200]['content']['application/json'];
|
|
121359
|
+
interface ActivateOutlookConnectionSyncProps {
|
|
121360
|
+
body: ActivateOutlookConnectionSyncBody;
|
|
121361
|
+
params: {
|
|
121362
|
+
query: ActivateOutlookConnectionSyncQueryParams;
|
|
121363
|
+
};
|
|
121364
|
+
}
|
|
121365
|
+
declare const activateOutlookConnectionSync: (props: ActivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<ActivateOutlookConnectionSyncResponse>;
|
|
121366
|
+
|
|
121367
|
+
declare const routeName$5m = "/v1/api/connections/outlook/sync/deactivate";
|
|
121368
|
+
type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$5m]['post']['requestBody']['content']['application/json'];
|
|
121369
|
+
type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5m]['post']['parameters']['query'];
|
|
121370
|
+
type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$5m]['post']['responses'][200]['content']['application/json'];
|
|
121371
|
+
interface DeactivateOutlookConnectionSyncProps {
|
|
121372
|
+
body: DeactivateOutlookConnectionSyncBody;
|
|
121373
|
+
params: {
|
|
121374
|
+
query: DeactivateOutlookConnectionSyncQueryParams;
|
|
121375
|
+
};
|
|
121376
|
+
}
|
|
121377
|
+
declare const deactivateOutlookConnectionSync: (props: DeactivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<DeactivateOutlookConnectionSyncResponse>;
|
|
121378
|
+
|
|
121379
|
+
declare const routeName$5l = "/v1/api/connections/outlook/sync";
|
|
121380
|
+
type OutlookConnectionSyncQueryParams = paths[typeof routeName$5l]['post']['parameters']['query'];
|
|
121381
|
+
type OutlookConnectionSyncResponse = paths[typeof routeName$5l]['post']['responses'][200]['content']['application/json'];
|
|
121382
|
+
interface OutlookConnectionSyncProps {
|
|
121383
|
+
params: {
|
|
121384
|
+
query: OutlookConnectionSyncQueryParams;
|
|
121385
|
+
};
|
|
121386
|
+
}
|
|
121387
|
+
declare const outlookConnectionSync: (props: OutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<OutlookConnectionSyncResponse>;
|
|
121388
|
+
|
|
120971
121389
|
declare const routeName$5k = "/v1/api/integrations/anva/parties";
|
|
120972
121390
|
type DeprecatedGetAnvaPartiesQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
|
|
120973
121391
|
type DeprecatedGetAnvaPartiesResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
|
|
@@ -124085,4 +124503,4 @@ interface ValidateYellowhiveQuestionnaireProps {
|
|
|
124085
124503
|
}
|
|
124086
124504
|
declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
|
|
124087
124505
|
|
|
124088
|
-
export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, 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 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, 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 };
|
|
124506
|
+
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 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, 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 };
|