wg-api-sdk 4.31.67 → 4.31.69
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 +874 -699
- package/dist/esm/index.mjs +1 -1
- package/dist/index.d.ts +874 -699
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -1178,6 +1178,27 @@ interface paths {
|
|
|
1178
1178
|
patch?: never;
|
|
1179
1179
|
trace?: never;
|
|
1180
1180
|
};
|
|
1181
|
+
"/v1/api/anvaflows/{session_id}/regenerate": {
|
|
1182
|
+
parameters: {
|
|
1183
|
+
query?: never;
|
|
1184
|
+
header?: never;
|
|
1185
|
+
path?: never;
|
|
1186
|
+
cookie?: never;
|
|
1187
|
+
};
|
|
1188
|
+
get?: never;
|
|
1189
|
+
put?: never;
|
|
1190
|
+
/**
|
|
1191
|
+
* Regenerate Anvaquestionnaire By Session Id
|
|
1192
|
+
* @description Regenerate the ANVA questionnaire for a conversation after a coverage-selection change,
|
|
1193
|
+
* returning the questions that still need to be asked.
|
|
1194
|
+
*/
|
|
1195
|
+
post: operations["regenerate_anvaquestionnaire_by_session_id_v1_api_anvaflows__session_id__regenerate_post"];
|
|
1196
|
+
delete?: never;
|
|
1197
|
+
options?: never;
|
|
1198
|
+
head?: never;
|
|
1199
|
+
patch?: never;
|
|
1200
|
+
trace?: never;
|
|
1201
|
+
};
|
|
1181
1202
|
"/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva": {
|
|
1182
1203
|
parameters: {
|
|
1183
1204
|
query?: never;
|
|
@@ -9781,7 +9802,7 @@ interface components {
|
|
|
9781
9802
|
* Timestamp
|
|
9782
9803
|
* Format: date-time
|
|
9783
9804
|
* @description Timestamp of when the error occured
|
|
9784
|
-
* @default 2026-07-
|
|
9805
|
+
* @default 2026-07-02T15:02:17.858204
|
|
9785
9806
|
*/
|
|
9786
9807
|
timestamp: string;
|
|
9787
9808
|
/**
|
|
@@ -67330,6 +67351,11 @@ interface components {
|
|
|
67330
67351
|
system_labels: Record<string, unknown>;
|
|
67331
67352
|
/** Adn Code */
|
|
67332
67353
|
adn_code: string;
|
|
67354
|
+
/**
|
|
67355
|
+
* Is Main
|
|
67356
|
+
* @default false
|
|
67357
|
+
*/
|
|
67358
|
+
is_main: boolean;
|
|
67333
67359
|
};
|
|
67334
67360
|
/** MultiAnvaAdnCoverageQueryModel */
|
|
67335
67361
|
MultiAnvaAdnCoverageQueryModel: {
|
|
@@ -67346,6 +67372,11 @@ interface components {
|
|
|
67346
67372
|
name: string;
|
|
67347
67373
|
/** Mandatory */
|
|
67348
67374
|
mandatory: boolean;
|
|
67375
|
+
/**
|
|
67376
|
+
* Is Main
|
|
67377
|
+
* @default false
|
|
67378
|
+
*/
|
|
67379
|
+
is_main: boolean;
|
|
67349
67380
|
/** Coverage Codes */
|
|
67350
67381
|
coverage_codes: string[];
|
|
67351
67382
|
};
|
|
@@ -67522,6 +67553,35 @@ interface components {
|
|
|
67522
67553
|
/** Coverages */
|
|
67523
67554
|
coverages: number[];
|
|
67524
67555
|
};
|
|
67556
|
+
/** handle_regenerate_anva_questionnaire_params */
|
|
67557
|
+
handle_regenerate_anva_questionnaire_params: {
|
|
67558
|
+
auth: components["schemas"]["Auth"];
|
|
67559
|
+
/**
|
|
67560
|
+
* Session Id
|
|
67561
|
+
* Format: uuid
|
|
67562
|
+
*/
|
|
67563
|
+
session_id: string;
|
|
67564
|
+
data: components["schemas"]["AnvaRegenerateQuestionnaireRequest"];
|
|
67565
|
+
};
|
|
67566
|
+
/** AnvaRegenerateQuestionnaireResponse */
|
|
67567
|
+
AnvaRegenerateQuestionnaireResponse: {
|
|
67568
|
+
questionnaire: components["schemas"]["Questionnaire"];
|
|
67569
|
+
};
|
|
67570
|
+
/** AnvaRegenerateQuestionnaireRequest */
|
|
67571
|
+
AnvaRegenerateQuestionnaireRequest: {
|
|
67572
|
+
/** Anva Products */
|
|
67573
|
+
anva_products: components["schemas"]["AnvaProductCoverageSelection"][];
|
|
67574
|
+
};
|
|
67575
|
+
/** AnvaProductCoverageSelection */
|
|
67576
|
+
AnvaProductCoverageSelection: {
|
|
67577
|
+
/**
|
|
67578
|
+
* Id
|
|
67579
|
+
* Format: uuid
|
|
67580
|
+
*/
|
|
67581
|
+
id: string;
|
|
67582
|
+
/** Coverages */
|
|
67583
|
+
coverages: number[];
|
|
67584
|
+
};
|
|
67525
67585
|
/** handle_send_offer_mail_params */
|
|
67526
67586
|
handle_send_offer_mail_params: {
|
|
67527
67587
|
auth: components["schemas"]["Auth"];
|
|
@@ -68045,7 +68105,9 @@ interface components {
|
|
|
68045
68105
|
/** CoverageUpdateCmd */
|
|
68046
68106
|
CoverageUpdateCmd: {
|
|
68047
68107
|
/** Enabled */
|
|
68048
|
-
enabled
|
|
68108
|
+
enabled?: boolean;
|
|
68109
|
+
/** Is Main */
|
|
68110
|
+
is_main?: boolean;
|
|
68049
68111
|
};
|
|
68050
68112
|
/** AnvaProductQuestionnairesQueryModel */
|
|
68051
68113
|
AnvaProductQuestionnairesQueryModel: {
|
|
@@ -73118,6 +73180,10 @@ type SchemaAnvaQuoteCalculationJob = components['schemas']['AnvaQuoteCalculation
|
|
|
73118
73180
|
type SchemaAnvaPolicyPackageCalculationJob = components['schemas']['AnvaPolicyPackageCalculationJob'];
|
|
73119
73181
|
type SchemaHandleCalculateOneAnvaQuoteForConversationParams = components['schemas']['handle_calculate_one_anva_quote_for_conversation_params'];
|
|
73120
73182
|
type SchemaRecalculateAnvaQuoteRequest = components['schemas']['RecalculateAnvaQuoteRequest'];
|
|
73183
|
+
type SchemaHandleRegenerateAnvaQuestionnaireParams = components['schemas']['handle_regenerate_anva_questionnaire_params'];
|
|
73184
|
+
type SchemaAnvaRegenerateQuestionnaireResponse = components['schemas']['AnvaRegenerateQuestionnaireResponse'];
|
|
73185
|
+
type SchemaAnvaRegenerateQuestionnaireRequest = components['schemas']['AnvaRegenerateQuestionnaireRequest'];
|
|
73186
|
+
type SchemaAnvaProductCoverageSelection = components['schemas']['AnvaProductCoverageSelection'];
|
|
73121
73187
|
type SchemaHandleSendOfferMailParams = components['schemas']['handle_send_offer_mail_params'];
|
|
73122
73188
|
type SchemaSendOfferMailResponse = components['schemas']['SendOfferMailResponse'];
|
|
73123
73189
|
type SchemaSendOfferMailCmd = components['schemas']['SendOfferMailCmd'];
|
|
@@ -78354,6 +78420,7 @@ interface operations {
|
|
|
78354
78420
|
query?: {
|
|
78355
78421
|
insurance_ids?: number[];
|
|
78356
78422
|
party_type?: "CUSTOMER" | "COMPANY";
|
|
78423
|
+
coverage_category?: "MAIN" | "SUPPLEMENTARY";
|
|
78357
78424
|
/**
|
|
78358
78425
|
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
78359
78426
|
* @example EN
|
|
@@ -79451,6 +79518,100 @@ interface operations {
|
|
|
79451
79518
|
};
|
|
79452
79519
|
};
|
|
79453
79520
|
};
|
|
79521
|
+
regenerate_anvaquestionnaire_by_session_id_v1_api_anvaflows__session_id__regenerate_post: {
|
|
79522
|
+
parameters: {
|
|
79523
|
+
query?: {
|
|
79524
|
+
/**
|
|
79525
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
79526
|
+
* @example EN
|
|
79527
|
+
*/
|
|
79528
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
79529
|
+
/**
|
|
79530
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
79531
|
+
* @example EN
|
|
79532
|
+
*/
|
|
79533
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
79534
|
+
};
|
|
79535
|
+
header?: {
|
|
79536
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
79537
|
+
"x-release"?: string;
|
|
79538
|
+
};
|
|
79539
|
+
path: {
|
|
79540
|
+
session_id: string;
|
|
79541
|
+
};
|
|
79542
|
+
cookie?: never;
|
|
79543
|
+
};
|
|
79544
|
+
requestBody: {
|
|
79545
|
+
content: {
|
|
79546
|
+
"application/json": components["schemas"]["handle_regenerate_anva_questionnaire_params"]["data"];
|
|
79547
|
+
};
|
|
79548
|
+
};
|
|
79549
|
+
responses: {
|
|
79550
|
+
/** @description Successful Response */
|
|
79551
|
+
200: {
|
|
79552
|
+
headers: {
|
|
79553
|
+
[name: string]: unknown;
|
|
79554
|
+
};
|
|
79555
|
+
content: {
|
|
79556
|
+
"application/json": components["schemas"]["AnvaRegenerateQuestionnaireResponse"];
|
|
79557
|
+
};
|
|
79558
|
+
};
|
|
79559
|
+
/** @description Bad Request */
|
|
79560
|
+
400: {
|
|
79561
|
+
headers: {
|
|
79562
|
+
[name: string]: unknown;
|
|
79563
|
+
};
|
|
79564
|
+
content: {
|
|
79565
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
79566
|
+
};
|
|
79567
|
+
};
|
|
79568
|
+
/** @description Unauthorized */
|
|
79569
|
+
401: {
|
|
79570
|
+
headers: {
|
|
79571
|
+
[name: string]: unknown;
|
|
79572
|
+
};
|
|
79573
|
+
content: {
|
|
79574
|
+
"application/json": components["schemas"]["Error_401"];
|
|
79575
|
+
};
|
|
79576
|
+
};
|
|
79577
|
+
/** @description Forbidden */
|
|
79578
|
+
403: {
|
|
79579
|
+
headers: {
|
|
79580
|
+
[name: string]: unknown;
|
|
79581
|
+
};
|
|
79582
|
+
content: {
|
|
79583
|
+
"application/json": components["schemas"]["Error_403"];
|
|
79584
|
+
};
|
|
79585
|
+
};
|
|
79586
|
+
/** @description Unprocessable Content */
|
|
79587
|
+
422: {
|
|
79588
|
+
headers: {
|
|
79589
|
+
[name: string]: unknown;
|
|
79590
|
+
};
|
|
79591
|
+
content: {
|
|
79592
|
+
"application/json": components["schemas"]["Error_422"];
|
|
79593
|
+
};
|
|
79594
|
+
};
|
|
79595
|
+
/** @description Too Many Requests */
|
|
79596
|
+
429: {
|
|
79597
|
+
headers: {
|
|
79598
|
+
[name: string]: unknown;
|
|
79599
|
+
};
|
|
79600
|
+
content: {
|
|
79601
|
+
"application/json": components["schemas"]["Error_429"];
|
|
79602
|
+
};
|
|
79603
|
+
};
|
|
79604
|
+
/** @description Internal Server Error */
|
|
79605
|
+
500: {
|
|
79606
|
+
headers: {
|
|
79607
|
+
[name: string]: unknown;
|
|
79608
|
+
};
|
|
79609
|
+
content: {
|
|
79610
|
+
"application/json": components["schemas"]["ServerError"];
|
|
79611
|
+
};
|
|
79612
|
+
};
|
|
79613
|
+
};
|
|
79614
|
+
};
|
|
79454
79615
|
enqueue_send_custom_quotes_to_anva_by_session_id_v1_api_anvaflows__session_id__send_custom_quotes_to_anva_post: {
|
|
79455
79616
|
parameters: {
|
|
79456
79617
|
query?: {
|
|
@@ -122603,20 +122764,20 @@ type Middleware = Middleware$1;
|
|
|
122603
122764
|
type ClientType = ReturnType<typeof createClient<paths>>;
|
|
122604
122765
|
declare const wgApiClient: (options: ClientOptions) => ClientType;
|
|
122605
122766
|
|
|
122606
|
-
declare const routeName$
|
|
122607
|
-
type GetAllEnumsResponse = paths[typeof routeName$
|
|
122767
|
+
declare const routeName$8o = "/enums";
|
|
122768
|
+
type GetAllEnumsResponse = paths[typeof routeName$8o]['get']['responses'][200]['content']['application/json'];
|
|
122608
122769
|
declare const getAllEnums: (wgApiClient: ClientType) => Promise<GetAllEnumsResponse>;
|
|
122609
122770
|
|
|
122610
|
-
declare const routeName$
|
|
122611
|
-
type GetValuesOfEnumPathParams = paths[typeof routeName$
|
|
122612
|
-
type GetValuesOfEnumResponse = paths[typeof routeName$
|
|
122613
|
-
type GetValuesOfEnumProps = paths[typeof routeName$
|
|
122771
|
+
declare const routeName$8n = "/enums/{enum}";
|
|
122772
|
+
type GetValuesOfEnumPathParams = paths[typeof routeName$8n]['get']['parameters']['path'];
|
|
122773
|
+
type GetValuesOfEnumResponse = paths[typeof routeName$8n]['get']['responses'][200]['content']['application/json'];
|
|
122774
|
+
type GetValuesOfEnumProps = paths[typeof routeName$8n]['get']['parameters'];
|
|
122614
122775
|
declare const getValuesOfEnum: (props: GetValuesOfEnumProps, wgApiClient: ClientType) => Promise<GetValuesOfEnumResponse>;
|
|
122615
122776
|
|
|
122616
|
-
declare const routeName$
|
|
122617
|
-
type CreateAccountBody = paths[typeof routeName$
|
|
122618
|
-
type CreateAccountQueryParams = paths[typeof routeName$
|
|
122619
|
-
type CreateAccountResponse = paths[typeof routeName$
|
|
122777
|
+
declare const routeName$8m = "/v1/api/accounts";
|
|
122778
|
+
type CreateAccountBody = paths[typeof routeName$8m]['post']['requestBody']['content']['application/json'];
|
|
122779
|
+
type CreateAccountQueryParams = paths[typeof routeName$8m]['post']['parameters']['query'];
|
|
122780
|
+
type CreateAccountResponse = paths[typeof routeName$8m]['post']['responses'][201]['content']['application/json'];
|
|
122620
122781
|
interface CreateAccountProps {
|
|
122621
122782
|
body: CreateAccountBody;
|
|
122622
122783
|
params: {
|
|
@@ -122625,119 +122786,119 @@ interface CreateAccountProps {
|
|
|
122625
122786
|
}
|
|
122626
122787
|
declare const createAccount: (props: CreateAccountProps, wgApiClient: ClientType) => Promise<CreateAccountResponse>;
|
|
122627
122788
|
|
|
122628
|
-
declare const routeName$
|
|
122629
|
-
type GetAllActivityTypesQueryParams = paths[typeof routeName$
|
|
122630
|
-
type GetAllActivityTypesResponse = paths[typeof routeName$
|
|
122631
|
-
type GetAllActivityTypesProps = paths[typeof routeName$
|
|
122789
|
+
declare const routeName$8l = "/v1/api/activity-types";
|
|
122790
|
+
type GetAllActivityTypesQueryParams = paths[typeof routeName$8l]['get']['parameters']['query'];
|
|
122791
|
+
type GetAllActivityTypesResponse = paths[typeof routeName$8l]['get']['responses'][200]['content']['application/json'];
|
|
122792
|
+
type GetAllActivityTypesProps = paths[typeof routeName$8l]['get']['parameters'];
|
|
122632
122793
|
declare const getAllActivityTypes: (props: GetAllActivityTypesProps, wgApiClient: ClientType) => Promise<GetAllActivityTypesResponse>;
|
|
122633
122794
|
|
|
122634
|
-
declare const routeName$
|
|
122635
|
-
type GetEnumByAnvaLabelPathParams = paths[typeof routeName$
|
|
122636
|
-
type GetEnumByAnvaLabelQueryParams = paths[typeof routeName$
|
|
122637
|
-
type GetEnumByAnvaLabelResponse = paths[typeof routeName$
|
|
122638
|
-
type GetEnumByAnvaLabelProps = paths[typeof routeName$
|
|
122795
|
+
declare const routeName$8k = "/v1/api/anvaflows/labels/{label}/enum";
|
|
122796
|
+
type GetEnumByAnvaLabelPathParams = paths[typeof routeName$8k]['get']['parameters']['path'];
|
|
122797
|
+
type GetEnumByAnvaLabelQueryParams = paths[typeof routeName$8k]['get']['parameters']['query'];
|
|
122798
|
+
type GetEnumByAnvaLabelResponse = paths[typeof routeName$8k]['get']['responses'][200]['content']['application/json'];
|
|
122799
|
+
type GetEnumByAnvaLabelProps = paths[typeof routeName$8k]['get']['parameters'];
|
|
122639
122800
|
declare const getEnumByAnvaLabel: (props: GetEnumByAnvaLabelProps, wgApiClient: ClientType) => Promise<GetEnumByAnvaLabelResponse>;
|
|
122640
122801
|
|
|
122641
|
-
declare const routeName$
|
|
122642
|
-
type GetEnumByDiasLabelPathParams = paths[typeof routeName$
|
|
122643
|
-
type GetEnumByDiasLabelQueryParams = paths[typeof routeName$
|
|
122644
|
-
type GetEnumByDiasLabelResponse = paths[typeof routeName$
|
|
122645
|
-
type GetEnumByDiasLabelProps = paths[typeof routeName$
|
|
122802
|
+
declare const routeName$8j = "/v1/api/diasflows/labels/{label}/enum";
|
|
122803
|
+
type GetEnumByDiasLabelPathParams = paths[typeof routeName$8j]['get']['parameters']['path'];
|
|
122804
|
+
type GetEnumByDiasLabelQueryParams = paths[typeof routeName$8j]['get']['parameters']['query'];
|
|
122805
|
+
type GetEnumByDiasLabelResponse = paths[typeof routeName$8j]['get']['responses'][200]['content']['application/json'];
|
|
122806
|
+
type GetEnumByDiasLabelProps = paths[typeof routeName$8j]['get']['parameters'];
|
|
122646
122807
|
declare const getEnumByDiasLabel: (props: GetEnumByDiasLabelProps, wgApiClient: ClientType) => Promise<GetEnumByDiasLabelResponse>;
|
|
122647
122808
|
|
|
122648
|
-
declare const routeName$
|
|
122649
|
-
type GetArtifactFromEventByIdPathParams = paths[typeof routeName$
|
|
122650
|
-
type GetArtifactFromEventByIdQueryParams = paths[typeof routeName$
|
|
122651
|
-
type GetArtifactFromEventByIdResponse = paths[typeof routeName$
|
|
122652
|
-
type GetArtifactFromEventByIdProps = paths[typeof routeName$
|
|
122809
|
+
declare const routeName$8i = "/v1/api/events/{activity_id}/artifact";
|
|
122810
|
+
type GetArtifactFromEventByIdPathParams = paths[typeof routeName$8i]['get']['parameters']['path'];
|
|
122811
|
+
type GetArtifactFromEventByIdQueryParams = paths[typeof routeName$8i]['get']['parameters']['query'];
|
|
122812
|
+
type GetArtifactFromEventByIdResponse = paths[typeof routeName$8i]['get']['responses'][200]['content']['application/json'];
|
|
122813
|
+
type GetArtifactFromEventByIdProps = paths[typeof routeName$8i]['get']['parameters'];
|
|
122653
122814
|
declare const getArtifactFromEventById: (props: GetArtifactFromEventByIdProps, wgApiClient: ClientType) => Promise<GetArtifactFromEventByIdResponse>;
|
|
122654
122815
|
|
|
122655
|
-
declare const routeName$
|
|
122656
|
-
type GetJobResultByIdPathParams = paths[typeof routeName$
|
|
122657
|
-
type GetJobResultByIdQueryParams = paths[typeof routeName$
|
|
122658
|
-
type GetJobResultByIdResponse = paths[typeof routeName$
|
|
122659
|
-
type GetJobResultByIdProps = paths[typeof routeName$
|
|
122816
|
+
declare const routeName$8h = "/v1/api/flows/jobs/{job_id}";
|
|
122817
|
+
type GetJobResultByIdPathParams = paths[typeof routeName$8h]['get']['parameters']['path'];
|
|
122818
|
+
type GetJobResultByIdQueryParams = paths[typeof routeName$8h]['get']['parameters']['query'];
|
|
122819
|
+
type GetJobResultByIdResponse = paths[typeof routeName$8h]['get']['responses'][200]['content']['application/json'];
|
|
122820
|
+
type GetJobResultByIdProps = paths[typeof routeName$8h]['get']['parameters'];
|
|
122660
122821
|
declare const getJobResultById: (props: GetJobResultByIdProps, wgApiClient: ClientType) => Promise<GetJobResultByIdResponse>;
|
|
122661
122822
|
|
|
122662
|
-
declare const routeName$
|
|
122663
|
-
type GetGbiQueryParams = paths[typeof routeName$
|
|
122664
|
-
type GetGbiResponse = paths[typeof routeName$
|
|
122665
|
-
type GetGbiProps = paths[typeof routeName$
|
|
122823
|
+
declare const routeName$8g = "/v1/api/gbi-codes";
|
|
122824
|
+
type GetGbiQueryParams = paths[typeof routeName$8g]['get']['parameters']['query'];
|
|
122825
|
+
type GetGbiResponse = paths[typeof routeName$8g]['get']['responses'][200]['content']['application/json'];
|
|
122826
|
+
type GetGbiProps = paths[typeof routeName$8g]['get']['parameters'];
|
|
122666
122827
|
declare const getGbi: (props: GetGbiProps, wgApiClient: ClientType) => Promise<GetGbiResponse>;
|
|
122667
122828
|
|
|
122668
|
-
declare const routeName$
|
|
122669
|
-
type GetInsightsIfCarIsInsuredBody = paths[typeof routeName$
|
|
122670
|
-
type GetInsightsIfCarIsInsuredResponse = paths[typeof routeName$
|
|
122829
|
+
declare const routeName$8f = "/v1/api/insights/cars/check-insurance";
|
|
122830
|
+
type GetInsightsIfCarIsInsuredBody = paths[typeof routeName$8f]['post']['requestBody']['content']['application/json'];
|
|
122831
|
+
type GetInsightsIfCarIsInsuredResponse = paths[typeof routeName$8f]['post']['responses'][200]['content']['application/json'];
|
|
122671
122832
|
interface GetInsightsIfCarIsInsuredProps {
|
|
122672
122833
|
body: GetInsightsIfCarIsInsuredBody;
|
|
122673
122834
|
}
|
|
122674
122835
|
declare const getInsightsIfCarIsInsured: (props: GetInsightsIfCarIsInsuredProps, wgApiClient: ClientType) => Promise<GetInsightsIfCarIsInsuredResponse>;
|
|
122675
122836
|
|
|
122676
|
-
declare const routeName$
|
|
122677
|
-
type GetInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
122678
|
-
type GetInsuranceCompaniesResponse = paths[typeof routeName$
|
|
122679
|
-
type GetInsuranceCompaniesProps = paths[typeof routeName$
|
|
122837
|
+
declare const routeName$8e = "/v1/api/insurance_companies";
|
|
122838
|
+
type GetInsuranceCompaniesQueryParams = paths[typeof routeName$8e]['get']['parameters']['query'];
|
|
122839
|
+
type GetInsuranceCompaniesResponse = paths[typeof routeName$8e]['get']['responses'][200]['content']['application/json'];
|
|
122840
|
+
type GetInsuranceCompaniesProps = paths[typeof routeName$8e]['get']['parameters'];
|
|
122680
122841
|
declare const getInsuranceCompanies: (props: GetInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetInsuranceCompaniesResponse>;
|
|
122681
122842
|
|
|
122682
|
-
declare const routeName$
|
|
122683
|
-
type GetEncryptionKeysQueryParams = paths[typeof routeName$
|
|
122684
|
-
type GetEncryptionKeysResponse = paths[typeof routeName$
|
|
122685
|
-
type GetEncryptionKeysProps = paths[typeof routeName$
|
|
122843
|
+
declare const routeName$8d = "/v1/api/keys";
|
|
122844
|
+
type GetEncryptionKeysQueryParams = paths[typeof routeName$8d]['get']['parameters']['query'];
|
|
122845
|
+
type GetEncryptionKeysResponse = paths[typeof routeName$8d]['get']['responses'][200]['content']['application/json'];
|
|
122846
|
+
type GetEncryptionKeysProps = paths[typeof routeName$8d]['get']['parameters'];
|
|
122686
122847
|
declare const getEncryptionKeys: (props: GetEncryptionKeysProps, wgApiClient: ClientType) => Promise<GetEncryptionKeysResponse>;
|
|
122687
122848
|
|
|
122688
|
-
declare const routeName$
|
|
122689
|
-
type GetLeadProvidersByAffinityQueryParams = paths[typeof routeName$
|
|
122690
|
-
type GetLeadProvidersByAffinityResponse = paths[typeof routeName$
|
|
122691
|
-
type GetLeadProvidersByAffinityProps = paths[typeof routeName$
|
|
122849
|
+
declare const routeName$8c = "/v1/api/lead-providers";
|
|
122850
|
+
type GetLeadProvidersByAffinityQueryParams = paths[typeof routeName$8c]['get']['parameters']['query'];
|
|
122851
|
+
type GetLeadProvidersByAffinityResponse = paths[typeof routeName$8c]['get']['responses'][200]['content']['application/json'];
|
|
122852
|
+
type GetLeadProvidersByAffinityProps = paths[typeof routeName$8c]['get']['parameters'];
|
|
122692
122853
|
declare const getLeadProvidersByAffinity: (props: GetLeadProvidersByAffinityProps, wgApiClient: ClientType) => Promise<GetLeadProvidersByAffinityResponse>;
|
|
122693
122854
|
|
|
122694
|
-
declare const routeName$
|
|
122695
|
-
type GetLeadProviderByIdPathParams = paths[typeof routeName$
|
|
122696
|
-
type GetLeadProviderByIdResponse = paths[typeof routeName$
|
|
122697
|
-
type GetLeadProviderByIdProps = paths[typeof routeName$
|
|
122855
|
+
declare const routeName$8b = "/v1/api/lead-providers/{lead_provider_id}";
|
|
122856
|
+
type GetLeadProviderByIdPathParams = paths[typeof routeName$8b]['get']['parameters']['path'];
|
|
122857
|
+
type GetLeadProviderByIdResponse = paths[typeof routeName$8b]['get']['responses'][200]['content']['application/json'];
|
|
122858
|
+
type GetLeadProviderByIdProps = paths[typeof routeName$8b]['get']['parameters'];
|
|
122698
122859
|
declare const getLeadProviderById: (props: GetLeadProviderByIdProps, wgApiClient: ClientType) => Promise<GetLeadProviderByIdResponse>;
|
|
122699
122860
|
|
|
122700
|
-
declare const routeName$
|
|
122701
|
-
type GetNaceQueryParams = paths[typeof routeName$
|
|
122702
|
-
type GetNaceResponse = paths[typeof routeName$
|
|
122703
|
-
type GetNaceProps = paths[typeof routeName$
|
|
122861
|
+
declare const routeName$8a = "/v1/api/nace-codes";
|
|
122862
|
+
type GetNaceQueryParams = paths[typeof routeName$8a]['get']['parameters']['query'];
|
|
122863
|
+
type GetNaceResponse = paths[typeof routeName$8a]['get']['responses'][200]['content']['application/json'];
|
|
122864
|
+
type GetNaceProps = paths[typeof routeName$8a]['get']['parameters'];
|
|
122704
122865
|
declare const getNace: (props: GetNaceProps, wgApiClient: ClientType) => Promise<GetNaceResponse>;
|
|
122705
122866
|
|
|
122706
|
-
declare const routeName$
|
|
122707
|
-
type PostEventAsCarglassPartnerBody = paths[typeof routeName$
|
|
122708
|
-
type PostEventAsCarglassPartnerResponse = paths[typeof routeName$
|
|
122867
|
+
declare const routeName$89 = "/v1/api/partners/carglass/events";
|
|
122868
|
+
type PostEventAsCarglassPartnerBody = paths[typeof routeName$89]['post']['requestBody']['content']['application/json'];
|
|
122869
|
+
type PostEventAsCarglassPartnerResponse = paths[typeof routeName$89]['post']['responses'][201]['content']['application/json'];
|
|
122709
122870
|
interface PostEventAsCarglassPartnerProps {
|
|
122710
122871
|
body: PostEventAsCarglassPartnerBody;
|
|
122711
122872
|
}
|
|
122712
122873
|
declare const postEventAsCarglassPartner: (props: PostEventAsCarglassPartnerProps, wgApiClient: ClientType) => Promise<PostEventAsCarglassPartnerResponse>;
|
|
122713
122874
|
|
|
122714
|
-
declare const routeName$
|
|
122715
|
-
type GetAllAvailablePlansResponse = paths[typeof routeName$
|
|
122875
|
+
declare const routeName$88 = "/v1/api/plans";
|
|
122876
|
+
type GetAllAvailablePlansResponse = paths[typeof routeName$88]['get']['responses'][200]['content']['application/json'];
|
|
122716
122877
|
declare const getAllAvailablePlans: (wgApiClient: ClientType) => Promise<GetAllAvailablePlansResponse>;
|
|
122717
122878
|
|
|
122718
|
-
declare const routeName$
|
|
122719
|
-
type GetSbiQueryParams = paths[typeof routeName$
|
|
122720
|
-
type GetSbiResponse = paths[typeof routeName$
|
|
122721
|
-
type GetSbiProps = paths[typeof routeName$
|
|
122879
|
+
declare const routeName$87 = "/v1/api/sbi-codes";
|
|
122880
|
+
type GetSbiQueryParams = paths[typeof routeName$87]['get']['parameters']['query'];
|
|
122881
|
+
type GetSbiResponse = paths[typeof routeName$87]['get']['responses'][200]['content']['application/json'];
|
|
122882
|
+
type GetSbiProps = paths[typeof routeName$87]['get']['parameters'];
|
|
122722
122883
|
declare const getSbi: (props: GetSbiProps, wgApiClient: ClientType) => Promise<GetSbiResponse>;
|
|
122723
122884
|
|
|
122724
|
-
declare const routeName$
|
|
122725
|
-
type GetSingularityJobResultByIdPathParams = paths[typeof routeName$
|
|
122726
|
-
type GetSingularityJobResultByIdQueryParams = paths[typeof routeName$
|
|
122727
|
-
type GetSingularityJobResultByIdResponse = paths[typeof routeName$
|
|
122728
|
-
type GetSingularityJobResultByIdProps = paths[typeof routeName$
|
|
122885
|
+
declare const routeName$86 = "/v1/api/singularity/jobs/{job_id}";
|
|
122886
|
+
type GetSingularityJobResultByIdPathParams = paths[typeof routeName$86]['get']['parameters']['path'];
|
|
122887
|
+
type GetSingularityJobResultByIdQueryParams = paths[typeof routeName$86]['get']['parameters']['query'];
|
|
122888
|
+
type GetSingularityJobResultByIdResponse = paths[typeof routeName$86]['get']['responses'][200]['content']['application/json'];
|
|
122889
|
+
type GetSingularityJobResultByIdProps = paths[typeof routeName$86]['get']['parameters'];
|
|
122729
122890
|
declare const getSingularityJobResultById: (props: GetSingularityJobResultByIdProps, wgApiClient: ClientType) => Promise<GetSingularityJobResultByIdResponse>;
|
|
122730
122891
|
|
|
122731
|
-
declare const routeName$
|
|
122732
|
-
type GetAllAvailableThemesInWegroupQueryParams = paths[typeof routeName$
|
|
122733
|
-
type GetAllAvailableThemesInWegroupResponse = paths[typeof routeName$
|
|
122734
|
-
type GetAllAvailableThemesInWegroupProps = paths[typeof routeName$
|
|
122892
|
+
declare const routeName$85 = "/v1/api/themes";
|
|
122893
|
+
type GetAllAvailableThemesInWegroupQueryParams = paths[typeof routeName$85]['get']['parameters']['query'];
|
|
122894
|
+
type GetAllAvailableThemesInWegroupResponse = paths[typeof routeName$85]['get']['responses'][200]['content']['application/json'];
|
|
122895
|
+
type GetAllAvailableThemesInWegroupProps = paths[typeof routeName$85]['get']['parameters'];
|
|
122735
122896
|
declare const getAllAvailableThemesInWegroup: (props: GetAllAvailableThemesInWegroupProps, wgApiClient: ClientType) => Promise<GetAllAvailableThemesInWegroupResponse>;
|
|
122736
122897
|
|
|
122737
|
-
declare const routeName$
|
|
122738
|
-
type CreateToolkitAccountBody = paths[typeof routeName$
|
|
122739
|
-
type CreateToolkitAccountQueryParams = paths[typeof routeName$
|
|
122740
|
-
type CreateToolkitAccountResponse = paths[typeof routeName$
|
|
122898
|
+
declare const routeName$84 = "/v1/api/toolkit-accounts";
|
|
122899
|
+
type CreateToolkitAccountBody = paths[typeof routeName$84]['post']['requestBody']['content']['application/json'];
|
|
122900
|
+
type CreateToolkitAccountQueryParams = paths[typeof routeName$84]['post']['parameters']['query'];
|
|
122901
|
+
type CreateToolkitAccountResponse = paths[typeof routeName$84]['post']['responses'][201]['content']['application/json'];
|
|
122741
122902
|
interface CreateToolkitAccountProps {
|
|
122742
122903
|
body: CreateToolkitAccountBody;
|
|
122743
122904
|
params: {
|
|
@@ -122746,10 +122907,10 @@ interface CreateToolkitAccountProps {
|
|
|
122746
122907
|
}
|
|
122747
122908
|
declare const createToolkitAccount: (props: CreateToolkitAccountProps, wgApiClient: ClientType) => Promise<CreateToolkitAccountResponse>;
|
|
122748
122909
|
|
|
122749
|
-
declare const routeName$
|
|
122750
|
-
type CreateToolkitBrokerBody = paths[typeof routeName$
|
|
122751
|
-
type CreateToolkitBrokerQueryParams = paths[typeof routeName$
|
|
122752
|
-
type CreateToolkitBrokerResponse = paths[typeof routeName$
|
|
122910
|
+
declare const routeName$83 = "/v1/api/toolkit-brokers";
|
|
122911
|
+
type CreateToolkitBrokerBody = paths[typeof routeName$83]['post']['requestBody']['content']['application/json'];
|
|
122912
|
+
type CreateToolkitBrokerQueryParams = paths[typeof routeName$83]['post']['parameters']['query'];
|
|
122913
|
+
type CreateToolkitBrokerResponse = paths[typeof routeName$83]['post']['responses'][201]['content']['application/json'];
|
|
122753
122914
|
interface CreateToolkitBrokerProps {
|
|
122754
122915
|
body: CreateToolkitBrokerBody;
|
|
122755
122916
|
params: {
|
|
@@ -122758,10 +122919,10 @@ interface CreateToolkitBrokerProps {
|
|
|
122758
122919
|
}
|
|
122759
122920
|
declare const createToolkitBroker: (props: CreateToolkitBrokerProps, wgApiClient: ClientType) => Promise<CreateToolkitBrokerResponse>;
|
|
122760
122921
|
|
|
122761
|
-
declare const routeName$
|
|
122762
|
-
type CreateTrialBrokerBody = paths[typeof routeName$
|
|
122763
|
-
type CreateTrialBrokerQueryParams = paths[typeof routeName$
|
|
122764
|
-
type CreateTrialBrokerResponse = paths[typeof routeName$
|
|
122922
|
+
declare const routeName$82 = "/v1/api/trials";
|
|
122923
|
+
type CreateTrialBrokerBody = paths[typeof routeName$82]['post']['requestBody']['content']['application/json'];
|
|
122924
|
+
type CreateTrialBrokerQueryParams = paths[typeof routeName$82]['post']['parameters']['query'];
|
|
122925
|
+
type CreateTrialBrokerResponse = paths[typeof routeName$82]['post']['responses'][201]['content']['application/json'];
|
|
122765
122926
|
interface CreateTrialBrokerProps {
|
|
122766
122927
|
body: CreateTrialBrokerBody;
|
|
122767
122928
|
params: {
|
|
@@ -122770,10 +122931,10 @@ interface CreateTrialBrokerProps {
|
|
|
122770
122931
|
}
|
|
122771
122932
|
declare const createTrialBroker: (props: CreateTrialBrokerProps, wgApiClient: ClientType) => Promise<CreateTrialBrokerResponse>;
|
|
122772
122933
|
|
|
122773
|
-
declare const routeName$
|
|
122774
|
-
type VerifyIfADistributionExistsByNameBody = paths[typeof routeName$
|
|
122775
|
-
type VerifyIfADistributionExistsByNameQueryParams = paths[typeof routeName$
|
|
122776
|
-
type VerifyIfADistributionExistsByNameResponse = paths[typeof routeName$
|
|
122934
|
+
declare const routeName$81 = "/v1/api/verify/exists/distribution/name";
|
|
122935
|
+
type VerifyIfADistributionExistsByNameBody = paths[typeof routeName$81]['post']['requestBody']['content']['application/json'];
|
|
122936
|
+
type VerifyIfADistributionExistsByNameQueryParams = paths[typeof routeName$81]['post']['parameters']['query'];
|
|
122937
|
+
type VerifyIfADistributionExistsByNameResponse = paths[typeof routeName$81]['post']['responses'][200]['content']['application/json'];
|
|
122777
122938
|
interface VerifyIfADistributionExistsByNameProps {
|
|
122778
122939
|
body: VerifyIfADistributionExistsByNameBody;
|
|
122779
122940
|
params: {
|
|
@@ -122782,10 +122943,10 @@ interface VerifyIfADistributionExistsByNameProps {
|
|
|
122782
122943
|
}
|
|
122783
122944
|
declare const verifyIfADistributionExistsByName: (props: VerifyIfADistributionExistsByNameProps, wgApiClient: ClientType) => Promise<VerifyIfADistributionExistsByNameResponse>;
|
|
122784
122945
|
|
|
122785
|
-
declare const routeName$
|
|
122786
|
-
type VerifyIfADistributionExistsByCompanyRegistrationBody = paths[typeof routeName$
|
|
122787
|
-
type VerifyIfADistributionExistsByCompanyRegistrationQueryParams = paths[typeof routeName$
|
|
122788
|
-
type VerifyIfADistributionExistsByCompanyRegistrationResponse = paths[typeof routeName$
|
|
122946
|
+
declare const routeName$80 = "/v1/api/verify/exists/distribution/registration";
|
|
122947
|
+
type VerifyIfADistributionExistsByCompanyRegistrationBody = paths[typeof routeName$80]['post']['requestBody']['content']['application/json'];
|
|
122948
|
+
type VerifyIfADistributionExistsByCompanyRegistrationQueryParams = paths[typeof routeName$80]['post']['parameters']['query'];
|
|
122949
|
+
type VerifyIfADistributionExistsByCompanyRegistrationResponse = paths[typeof routeName$80]['post']['responses'][200]['content']['application/json'];
|
|
122789
122950
|
interface VerifyIfADistributionExistsByCompanyRegistrationProps {
|
|
122790
122951
|
body: VerifyIfADistributionExistsByCompanyRegistrationBody;
|
|
122791
122952
|
params: {
|
|
@@ -122794,10 +122955,10 @@ interface VerifyIfADistributionExistsByCompanyRegistrationProps {
|
|
|
122794
122955
|
}
|
|
122795
122956
|
declare const verifyIfADistributionExistsByCompanyRegistration: (props: VerifyIfADistributionExistsByCompanyRegistrationProps, wgApiClient: ClientType) => Promise<VerifyIfADistributionExistsByCompanyRegistrationResponse>;
|
|
122796
122957
|
|
|
122797
|
-
declare const routeName$
|
|
122798
|
-
type VerifyIfAUserExistsByEmailBody = paths[typeof routeName$
|
|
122799
|
-
type VerifyIfAUserExistsByEmailQueryParams = paths[typeof routeName$
|
|
122800
|
-
type VerifyIfAUserExistsByEmailResponse = paths[typeof routeName$
|
|
122958
|
+
declare const routeName$7$ = "/v1/api/verify/exists/user/email";
|
|
122959
|
+
type VerifyIfAUserExistsByEmailBody = paths[typeof routeName$7$]['post']['requestBody']['content']['application/json'];
|
|
122960
|
+
type VerifyIfAUserExistsByEmailQueryParams = paths[typeof routeName$7$]['post']['parameters']['query'];
|
|
122961
|
+
type VerifyIfAUserExistsByEmailResponse = paths[typeof routeName$7$]['post']['responses'][200]['content']['application/json'];
|
|
122801
122962
|
interface VerifyIfAUserExistsByEmailProps {
|
|
122802
122963
|
body: VerifyIfAUserExistsByEmailBody;
|
|
122803
122964
|
params: {
|
|
@@ -122806,10 +122967,10 @@ interface VerifyIfAUserExistsByEmailProps {
|
|
|
122806
122967
|
}
|
|
122807
122968
|
declare const verifyIfAUserExistsByEmail: (props: VerifyIfAUserExistsByEmailProps, wgApiClient: ClientType) => Promise<VerifyIfAUserExistsByEmailResponse>;
|
|
122808
122969
|
|
|
122809
|
-
declare const routeName$
|
|
122810
|
-
type CommentOnActivityPathParams = paths[typeof routeName$
|
|
122811
|
-
type CommentOnActivityQueryParams = paths[typeof routeName$
|
|
122812
|
-
type CommentOnActivityResponse = paths[typeof routeName$
|
|
122970
|
+
declare const routeName$7_ = "/v1/api/activities/{activity_id}/comments";
|
|
122971
|
+
type CommentOnActivityPathParams = paths[typeof routeName$7_]['post']['parameters']['path'];
|
|
122972
|
+
type CommentOnActivityQueryParams = paths[typeof routeName$7_]['post']['parameters']['query'];
|
|
122973
|
+
type CommentOnActivityResponse = paths[typeof routeName$7_]['post']['responses'][201]['content']['application/json'];
|
|
122813
122974
|
interface CommentOnActivityProps {
|
|
122814
122975
|
params: {
|
|
122815
122976
|
query: CommentOnActivityQueryParams;
|
|
@@ -122818,10 +122979,10 @@ interface CommentOnActivityProps {
|
|
|
122818
122979
|
}
|
|
122819
122980
|
declare const commentOnActivity: (props: CommentOnActivityProps, wgApiClient: ClientType) => Promise<CommentOnActivityResponse>;
|
|
122820
122981
|
|
|
122821
|
-
declare const routeName$
|
|
122822
|
-
type DeleteCommentOnActivityPathParams = paths[typeof routeName$
|
|
122823
|
-
type DeleteCommentOnActivityQueryParams = paths[typeof routeName$
|
|
122824
|
-
type DeleteCommentOnActivityResponse = paths[typeof routeName$
|
|
122982
|
+
declare const routeName$7Z = "/v1/api/activities/{activity_id}/comments/{comment_id}";
|
|
122983
|
+
type DeleteCommentOnActivityPathParams = paths[typeof routeName$7Z]['delete']['parameters']['path'];
|
|
122984
|
+
type DeleteCommentOnActivityQueryParams = paths[typeof routeName$7Z]['delete']['parameters']['query'];
|
|
122985
|
+
type DeleteCommentOnActivityResponse = paths[typeof routeName$7Z]['delete']['responses'][200]['content']['application/json'];
|
|
122825
122986
|
interface DeleteCommentOnActivityProps {
|
|
122826
122987
|
params: {
|
|
122827
122988
|
query: DeleteCommentOnActivityQueryParams;
|
|
@@ -122830,10 +122991,10 @@ interface DeleteCommentOnActivityProps {
|
|
|
122830
122991
|
}
|
|
122831
122992
|
declare const deleteCommentOnActivity: (props: DeleteCommentOnActivityProps, wgApiClient: ClientType) => Promise<DeleteCommentOnActivityResponse>;
|
|
122832
122993
|
|
|
122833
|
-
declare const routeName$
|
|
122834
|
-
type UpdateCommentOnActivityPathParams = paths[typeof routeName$
|
|
122835
|
-
type UpdateCommentOnActivityQueryParams = paths[typeof routeName$
|
|
122836
|
-
type UpdateCommentOnActivityResponse = paths[typeof routeName$
|
|
122994
|
+
declare const routeName$7Y = "/v1/api/activities/{activity_id}/comments/{comment_id}";
|
|
122995
|
+
type UpdateCommentOnActivityPathParams = paths[typeof routeName$7Y]['patch']['parameters']['path'];
|
|
122996
|
+
type UpdateCommentOnActivityQueryParams = paths[typeof routeName$7Y]['patch']['parameters']['query'];
|
|
122997
|
+
type UpdateCommentOnActivityResponse = paths[typeof routeName$7Y]['patch']['responses'][200]['content']['application/json'];
|
|
122837
122998
|
interface UpdateCommentOnActivityProps {
|
|
122838
122999
|
params: {
|
|
122839
123000
|
query: UpdateCommentOnActivityQueryParams;
|
|
@@ -122842,36 +123003,36 @@ interface UpdateCommentOnActivityProps {
|
|
|
122842
123003
|
}
|
|
122843
123004
|
declare const updateCommentOnActivity: (props: UpdateCommentOnActivityProps, wgApiClient: ClientType) => Promise<UpdateCommentOnActivityResponse>;
|
|
122844
123005
|
|
|
122845
|
-
declare const routeName$
|
|
122846
|
-
type GetAllPartiesByDistributionPathParams = paths[typeof routeName$
|
|
122847
|
-
type GetAllPartiesByDistributionQueryParams = paths[typeof routeName$
|
|
122848
|
-
type GetAllPartiesByDistributionResponse = paths[typeof routeName$
|
|
122849
|
-
type GetAllPartiesByDistributionProps = paths[typeof routeName$
|
|
123006
|
+
declare const routeName$7X = "/v1/api/distributions/{distribution_id}/parties";
|
|
123007
|
+
type GetAllPartiesByDistributionPathParams = paths[typeof routeName$7X]['get']['parameters']['path'];
|
|
123008
|
+
type GetAllPartiesByDistributionQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
|
|
123009
|
+
type GetAllPartiesByDistributionResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
|
|
123010
|
+
type GetAllPartiesByDistributionProps = paths[typeof routeName$7X]['get']['parameters'];
|
|
122850
123011
|
declare const getAllPartiesByDistribution: (props: GetAllPartiesByDistributionProps, wgApiClient: ClientType) => Promise<GetAllPartiesByDistributionResponse>;
|
|
122851
123012
|
|
|
122852
|
-
declare const routeName$
|
|
122853
|
-
type RetrieveExportByIdPathParams = paths[typeof routeName$
|
|
122854
|
-
type RetrieveExportByIdQueryParams = paths[typeof routeName$
|
|
122855
|
-
type RetrieveExportByIdResponse = paths[typeof routeName$
|
|
122856
|
-
type RetrieveExportByIdProps = paths[typeof routeName$
|
|
123013
|
+
declare const routeName$7W = "/v1/api/exports/{export_id}";
|
|
123014
|
+
type RetrieveExportByIdPathParams = paths[typeof routeName$7W]['get']['parameters']['path'];
|
|
123015
|
+
type RetrieveExportByIdQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
|
|
123016
|
+
type RetrieveExportByIdResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
|
|
123017
|
+
type RetrieveExportByIdProps = paths[typeof routeName$7W]['get']['parameters'];
|
|
122857
123018
|
declare const retrieveExportById: (props: RetrieveExportByIdProps, wgApiClient: ClientType) => Promise<RetrieveExportByIdResponse>;
|
|
122858
123019
|
|
|
122859
|
-
declare const routeName$
|
|
122860
|
-
type GetInsurancePolicyByIdPathParams = paths[typeof routeName$
|
|
122861
|
-
type GetInsurancePolicyByIdResponse = paths[typeof routeName$
|
|
122862
|
-
type GetInsurancePolicyByIdProps = paths[typeof routeName$
|
|
123020
|
+
declare const routeName$7V = "/v1/api/insurance-policies/{insurance_policy_id}";
|
|
123021
|
+
type GetInsurancePolicyByIdPathParams = paths[typeof routeName$7V]['get']['parameters']['path'];
|
|
123022
|
+
type GetInsurancePolicyByIdResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
|
|
123023
|
+
type GetInsurancePolicyByIdProps = paths[typeof routeName$7V]['get']['parameters'];
|
|
122863
123024
|
declare const getInsurancePolicyById: (props: GetInsurancePolicyByIdProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdResponse>;
|
|
122864
123025
|
|
|
122865
|
-
declare const routeName$
|
|
122866
|
-
type GetInsurancePolicyComplianceByIdPathParams = paths[typeof routeName$
|
|
122867
|
-
type GetInsurancePolicyComplianceByIdResponse = paths[typeof routeName$
|
|
122868
|
-
type GetInsurancePolicyComplianceByIdProps = paths[typeof routeName$
|
|
123026
|
+
declare const routeName$7U = "/v1/api/insurance-policies/{insurance_policy_id}/compliance";
|
|
123027
|
+
type GetInsurancePolicyComplianceByIdPathParams = paths[typeof routeName$7U]['get']['parameters']['path'];
|
|
123028
|
+
type GetInsurancePolicyComplianceByIdResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
|
|
123029
|
+
type GetInsurancePolicyComplianceByIdProps = paths[typeof routeName$7U]['get']['parameters'];
|
|
122869
123030
|
declare const getInsurancePolicyComplianceById: (props: GetInsurancePolicyComplianceByIdProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyComplianceByIdResponse>;
|
|
122870
123031
|
|
|
122871
|
-
declare const routeName$
|
|
122872
|
-
type UpdateInsurancePolicyComplianceBody = paths[typeof routeName$
|
|
122873
|
-
type UpdateInsurancePolicyCompliancePathParams = paths[typeof routeName$
|
|
122874
|
-
type UpdateInsurancePolicyComplianceResponse = paths[typeof routeName$
|
|
123032
|
+
declare const routeName$7T = "/v1/api/insurance-policies/{insurance_policy_id}/compliance";
|
|
123033
|
+
type UpdateInsurancePolicyComplianceBody = paths[typeof routeName$7T]['patch']['requestBody']['content']['application/json'];
|
|
123034
|
+
type UpdateInsurancePolicyCompliancePathParams = paths[typeof routeName$7T]['patch']['parameters']['path'];
|
|
123035
|
+
type UpdateInsurancePolicyComplianceResponse = paths[typeof routeName$7T]['patch']['responses'][200]['content']['application/json'];
|
|
122875
123036
|
interface UpdateInsurancePolicyComplianceProps {
|
|
122876
123037
|
body: UpdateInsurancePolicyComplianceBody;
|
|
122877
123038
|
params: {
|
|
@@ -122880,10 +123041,10 @@ interface UpdateInsurancePolicyComplianceProps {
|
|
|
122880
123041
|
}
|
|
122881
123042
|
declare const updateInsurancePolicyCompliance: (props: UpdateInsurancePolicyComplianceProps, wgApiClient: ClientType) => Promise<UpdateInsurancePolicyComplianceResponse>;
|
|
122882
123043
|
|
|
122883
|
-
declare const routeName$
|
|
122884
|
-
type UpdateInsurancePolicyCoverageComplianceBody = paths[typeof routeName$
|
|
122885
|
-
type UpdateInsurancePolicyCoverageCompliancePathParams = paths[typeof routeName$
|
|
122886
|
-
type UpdateInsurancePolicyCoverageComplianceResponse = paths[typeof routeName$
|
|
123044
|
+
declare const routeName$7S = "/v1/api/insurance-policies/{insurance_policy_id}/coverages/{coverage_id}/compliance";
|
|
123045
|
+
type UpdateInsurancePolicyCoverageComplianceBody = paths[typeof routeName$7S]['patch']['requestBody']['content']['application/json'];
|
|
123046
|
+
type UpdateInsurancePolicyCoverageCompliancePathParams = paths[typeof routeName$7S]['patch']['parameters']['path'];
|
|
123047
|
+
type UpdateInsurancePolicyCoverageComplianceResponse = paths[typeof routeName$7S]['patch']['responses'][200]['content']['application/json'];
|
|
122887
123048
|
interface UpdateInsurancePolicyCoverageComplianceProps {
|
|
122888
123049
|
body: UpdateInsurancePolicyCoverageComplianceBody;
|
|
122889
123050
|
params: {
|
|
@@ -122892,10 +123053,10 @@ interface UpdateInsurancePolicyCoverageComplianceProps {
|
|
|
122892
123053
|
}
|
|
122893
123054
|
declare const updateInsurancePolicyCoverageCompliance: (props: UpdateInsurancePolicyCoverageComplianceProps, wgApiClient: ClientType) => Promise<UpdateInsurancePolicyCoverageComplianceResponse>;
|
|
122894
123055
|
|
|
122895
|
-
declare const routeName$
|
|
122896
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody = paths[typeof routeName$
|
|
122897
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams = paths[typeof routeName$
|
|
122898
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse = paths[typeof routeName$
|
|
123056
|
+
declare const routeName$7R = "/v1/api/parties-by-company-registration";
|
|
123057
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody = paths[typeof routeName$7R]['post']['requestBody']['content']['application/json'];
|
|
123058
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
|
|
123059
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse = paths[typeof routeName$7R]['post']['responses'][201]['content']['application/json'];
|
|
122899
123060
|
interface CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps {
|
|
122900
123061
|
body: CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody;
|
|
122901
123062
|
params: {
|
|
@@ -122904,32 +123065,32 @@ interface CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps {
|
|
|
122904
123065
|
}
|
|
122905
123066
|
declare const createPartyByEnrichingWithEnrichingWithCompanyRegistration: (props: CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps, wgApiClient: ClientType) => Promise<CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse>;
|
|
122906
123067
|
|
|
122907
|
-
declare const routeName$
|
|
122908
|
-
type GetPartiesOriginFilterQueryParams = paths[typeof routeName$
|
|
122909
|
-
type GetPartiesOriginFilterResponse = paths[typeof routeName$
|
|
122910
|
-
type GetPartiesOriginFilterProps = paths[typeof routeName$
|
|
123068
|
+
declare const routeName$7Q = "/v1/api/parties-filters/origin";
|
|
123069
|
+
type GetPartiesOriginFilterQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
|
|
123070
|
+
type GetPartiesOriginFilterResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
|
|
123071
|
+
type GetPartiesOriginFilterProps = paths[typeof routeName$7Q]['get']['parameters'];
|
|
122911
123072
|
declare const getPartiesOriginFilter: (props: GetPartiesOriginFilterProps, wgApiClient: ClientType) => Promise<GetPartiesOriginFilterResponse>;
|
|
122912
123073
|
|
|
122913
|
-
declare const routeName$
|
|
122914
|
-
type CreateLegalPartyBody = paths[typeof routeName$
|
|
122915
|
-
type CreateLegalPartyResponse = paths[typeof routeName$
|
|
123074
|
+
declare const routeName$7P = "/v1/api/parties/companies";
|
|
123075
|
+
type CreateLegalPartyBody = paths[typeof routeName$7P]['post']['requestBody']['content']['application/json'];
|
|
123076
|
+
type CreateLegalPartyResponse = paths[typeof routeName$7P]['post']['responses'][201]['content']['application/json'];
|
|
122916
123077
|
interface CreateLegalPartyProps {
|
|
122917
123078
|
body: CreateLegalPartyBody;
|
|
122918
123079
|
}
|
|
122919
123080
|
declare const createLegalParty: (props: CreateLegalPartyProps, wgApiClient: ClientType) => Promise<CreateLegalPartyResponse>;
|
|
122920
123081
|
|
|
122921
|
-
declare const routeName$
|
|
122922
|
-
type CreateNaturalPartyBody = paths[typeof routeName$
|
|
122923
|
-
type CreateNaturalPartyResponse = paths[typeof routeName$
|
|
123082
|
+
declare const routeName$7O = "/v1/api/parties/customers";
|
|
123083
|
+
type CreateNaturalPartyBody = paths[typeof routeName$7O]['post']['requestBody']['content']['application/json'];
|
|
123084
|
+
type CreateNaturalPartyResponse = paths[typeof routeName$7O]['post']['responses'][201]['content']['application/json'];
|
|
122924
123085
|
interface CreateNaturalPartyProps {
|
|
122925
123086
|
body: CreateNaturalPartyBody;
|
|
122926
123087
|
}
|
|
122927
123088
|
declare const createNaturalParty: (props: CreateNaturalPartyProps, wgApiClient: ClientType) => Promise<CreateNaturalPartyResponse>;
|
|
122928
123089
|
|
|
122929
|
-
declare const routeName$
|
|
122930
|
-
type SearchPartiesBody = paths[typeof routeName$
|
|
122931
|
-
type SearchPartiesQueryParams = paths[typeof routeName$
|
|
122932
|
-
type SearchPartiesResponse = paths[typeof routeName$
|
|
123090
|
+
declare const routeName$7N = "/v1/api/parties/search";
|
|
123091
|
+
type SearchPartiesBody = paths[typeof routeName$7N]['post']['requestBody']['content']['application/json'];
|
|
123092
|
+
type SearchPartiesQueryParams = paths[typeof routeName$7N]['post']['parameters']['query'];
|
|
123093
|
+
type SearchPartiesResponse = paths[typeof routeName$7N]['post']['responses'][200]['content']['application/json'];
|
|
122933
123094
|
interface SearchPartiesProps {
|
|
122934
123095
|
body: SearchPartiesBody;
|
|
122935
123096
|
params: {
|
|
@@ -122938,16 +123099,16 @@ interface SearchPartiesProps {
|
|
|
122938
123099
|
}
|
|
122939
123100
|
declare const searchParties: (props: SearchPartiesProps, wgApiClient: ClientType) => Promise<SearchPartiesResponse>;
|
|
122940
123101
|
|
|
122941
|
-
declare const routeName$
|
|
122942
|
-
type GetPartyByIdPathParams = paths[typeof routeName$
|
|
122943
|
-
type GetPartyByIdResponse = paths[typeof routeName$
|
|
122944
|
-
type GetPartyByIdProps = paths[typeof routeName$
|
|
123102
|
+
declare const routeName$7M = "/v1/api/parties/{party_id}";
|
|
123103
|
+
type GetPartyByIdPathParams = paths[typeof routeName$7M]['get']['parameters']['path'];
|
|
123104
|
+
type GetPartyByIdResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
|
|
123105
|
+
type GetPartyByIdProps = paths[typeof routeName$7M]['get']['parameters'];
|
|
122945
123106
|
declare const getPartyById: (props: GetPartyByIdProps, wgApiClient: ClientType) => Promise<GetPartyByIdResponse>;
|
|
122946
123107
|
|
|
122947
|
-
declare const routeName$
|
|
122948
|
-
type UpdatePartyByIdBody = paths[typeof routeName$
|
|
122949
|
-
type UpdatePartyByIdPathParams = paths[typeof routeName$
|
|
122950
|
-
type UpdatePartyByIdResponse = paths[typeof routeName$
|
|
123108
|
+
declare const routeName$7L = "/v1/api/parties/{party_id}";
|
|
123109
|
+
type UpdatePartyByIdBody = paths[typeof routeName$7L]['patch']['requestBody']['content']['application/json'];
|
|
123110
|
+
type UpdatePartyByIdPathParams = paths[typeof routeName$7L]['patch']['parameters']['path'];
|
|
123111
|
+
type UpdatePartyByIdResponse = paths[typeof routeName$7L]['patch']['responses'][200]['content']['application/json'];
|
|
122951
123112
|
interface UpdatePartyByIdProps {
|
|
122952
123113
|
body: UpdatePartyByIdBody;
|
|
122953
123114
|
params: {
|
|
@@ -122956,24 +123117,24 @@ interface UpdatePartyByIdProps {
|
|
|
122956
123117
|
}
|
|
122957
123118
|
declare const updatePartyById: (props: UpdatePartyByIdProps, wgApiClient: ClientType) => Promise<UpdatePartyByIdResponse>;
|
|
122958
123119
|
|
|
122959
|
-
declare const routeName$
|
|
122960
|
-
type GetActivityByPartyPathParams = paths[typeof routeName$
|
|
122961
|
-
type GetActivityByPartyQueryParams = paths[typeof routeName$
|
|
122962
|
-
type GetActivityByPartyResponse = paths[typeof routeName$
|
|
122963
|
-
type GetActivityByPartyProps = paths[typeof routeName$
|
|
123120
|
+
declare const routeName$7K = "/v1/api/parties/{party_id}/activity";
|
|
123121
|
+
type GetActivityByPartyPathParams = paths[typeof routeName$7K]['get']['parameters']['path'];
|
|
123122
|
+
type GetActivityByPartyQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
|
|
123123
|
+
type GetActivityByPartyResponse = paths[typeof routeName$7K]['get']['responses'][200]['content']['application/json'];
|
|
123124
|
+
type GetActivityByPartyProps = paths[typeof routeName$7K]['get']['parameters'];
|
|
122964
123125
|
declare const getActivityByParty: (props: GetActivityByPartyProps, wgApiClient: ClientType) => Promise<GetActivityByPartyResponse>;
|
|
122965
123126
|
|
|
122966
|
-
declare const routeName$
|
|
122967
|
-
type GetPartyAddressesPathParams = paths[typeof routeName$
|
|
122968
|
-
type GetPartyAddressesResponse = paths[typeof routeName$
|
|
122969
|
-
type GetPartyAddressesProps = paths[typeof routeName$
|
|
123127
|
+
declare const routeName$7J = "/v1/api/parties/{party_id}/addresses";
|
|
123128
|
+
type GetPartyAddressesPathParams = paths[typeof routeName$7J]['get']['parameters']['path'];
|
|
123129
|
+
type GetPartyAddressesResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
|
|
123130
|
+
type GetPartyAddressesProps = paths[typeof routeName$7J]['get']['parameters'];
|
|
122970
123131
|
declare const getPartyAddresses: (props: GetPartyAddressesProps, wgApiClient: ClientType) => Promise<GetPartyAddressesResponse>;
|
|
122971
123132
|
|
|
122972
|
-
declare const routeName$
|
|
122973
|
-
type UpdatePartyAssigneesBody = paths[typeof routeName$
|
|
122974
|
-
type UpdatePartyAssigneesPathParams = paths[typeof routeName$
|
|
122975
|
-
type UpdatePartyAssigneesQueryParams = paths[typeof routeName$
|
|
122976
|
-
type UpdatePartyAssigneesResponse = paths[typeof routeName$
|
|
123133
|
+
declare const routeName$7I = "/v1/api/parties/{party_id}/assignees";
|
|
123134
|
+
type UpdatePartyAssigneesBody = paths[typeof routeName$7I]['put']['requestBody']['content']['application/json'];
|
|
123135
|
+
type UpdatePartyAssigneesPathParams = paths[typeof routeName$7I]['put']['parameters']['path'];
|
|
123136
|
+
type UpdatePartyAssigneesQueryParams = paths[typeof routeName$7I]['put']['parameters']['query'];
|
|
123137
|
+
type UpdatePartyAssigneesResponse = paths[typeof routeName$7I]['put']['responses'][200]['content']['application/json'];
|
|
122977
123138
|
interface UpdatePartyAssigneesProps {
|
|
122978
123139
|
body: UpdatePartyAssigneesBody;
|
|
122979
123140
|
params: {
|
|
@@ -122983,45 +123144,45 @@ interface UpdatePartyAssigneesProps {
|
|
|
122983
123144
|
}
|
|
122984
123145
|
declare const updatePartyAssignees: (props: UpdatePartyAssigneesProps, wgApiClient: ClientType) => Promise<UpdatePartyAssigneesResponse>;
|
|
122985
123146
|
|
|
122986
|
-
declare const routeName$
|
|
122987
|
-
type GetClaimsAsPartyPathParams = paths[typeof routeName$
|
|
122988
|
-
type GetClaimsAsPartyQueryParams = paths[typeof routeName$
|
|
122989
|
-
type GetClaimsAsPartyResponse = paths[typeof routeName$
|
|
122990
|
-
type GetClaimsAsPartyProps = paths[typeof routeName$
|
|
123147
|
+
declare const routeName$7H = "/v1/api/parties/{party_id}/claims";
|
|
123148
|
+
type GetClaimsAsPartyPathParams = paths[typeof routeName$7H]['get']['parameters']['path'];
|
|
123149
|
+
type GetClaimsAsPartyQueryParams = paths[typeof routeName$7H]['get']['parameters']['query'];
|
|
123150
|
+
type GetClaimsAsPartyResponse = paths[typeof routeName$7H]['get']['responses'][200]['content']['application/json'];
|
|
123151
|
+
type GetClaimsAsPartyProps = paths[typeof routeName$7H]['get']['parameters'];
|
|
122991
123152
|
declare const getClaimsAsParty: (props: GetClaimsAsPartyProps, wgApiClient: ClientType) => Promise<GetClaimsAsPartyResponse>;
|
|
122992
123153
|
|
|
122993
|
-
declare const routeName$
|
|
122994
|
-
type GetClaimsAsPartyByIdPathParams = paths[typeof routeName$
|
|
122995
|
-
type GetClaimsAsPartyByIdResponse = paths[typeof routeName$
|
|
122996
|
-
type GetClaimsAsPartyByIdProps = paths[typeof routeName$
|
|
123154
|
+
declare const routeName$7G = "/v1/api/parties/{party_id}/claims/{claim_id}";
|
|
123155
|
+
type GetClaimsAsPartyByIdPathParams = paths[typeof routeName$7G]['get']['parameters']['path'];
|
|
123156
|
+
type GetClaimsAsPartyByIdResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
|
|
123157
|
+
type GetClaimsAsPartyByIdProps = paths[typeof routeName$7G]['get']['parameters'];
|
|
122997
123158
|
declare const getClaimsAsPartyById: (props: GetClaimsAsPartyByIdProps, wgApiClient: ClientType) => Promise<GetClaimsAsPartyByIdResponse>;
|
|
122998
123159
|
|
|
122999
|
-
declare const routeName$
|
|
123000
|
-
type GetConversationNotesPathParams = paths[typeof routeName$
|
|
123001
|
-
type GetConversationNotesQueryParams = paths[typeof routeName$
|
|
123002
|
-
type GetConversationNotesResponse = paths[typeof routeName$
|
|
123003
|
-
type GetConversationNotesProps = paths[typeof routeName$
|
|
123160
|
+
declare const routeName$7F = "/v1/api/parties/{party_id}/conversation_notes";
|
|
123161
|
+
type GetConversationNotesPathParams = paths[typeof routeName$7F]['get']['parameters']['path'];
|
|
123162
|
+
type GetConversationNotesQueryParams = paths[typeof routeName$7F]['get']['parameters']['query'];
|
|
123163
|
+
type GetConversationNotesResponse = paths[typeof routeName$7F]['get']['responses'][200]['content']['application/json'];
|
|
123164
|
+
type GetConversationNotesProps = paths[typeof routeName$7F]['get']['parameters'];
|
|
123004
123165
|
declare const getConversationNotes: (props: GetConversationNotesProps, wgApiClient: ClientType) => Promise<GetConversationNotesResponse>;
|
|
123005
123166
|
|
|
123006
|
-
declare const routeName$
|
|
123007
|
-
type GetCurrentAccountInsightsAsPartyPathParams = paths[typeof routeName$
|
|
123008
|
-
type GetCurrentAccountInsightsAsPartyQueryParams = paths[typeof routeName$
|
|
123009
|
-
type GetCurrentAccountInsightsAsPartyResponse = paths[typeof routeName$
|
|
123010
|
-
type GetCurrentAccountInsightsAsPartyProps = paths[typeof routeName$
|
|
123167
|
+
declare const routeName$7E = "/v1/api/parties/{party_id}/current-account-insights";
|
|
123168
|
+
type GetCurrentAccountInsightsAsPartyPathParams = paths[typeof routeName$7E]['get']['parameters']['path'];
|
|
123169
|
+
type GetCurrentAccountInsightsAsPartyQueryParams = paths[typeof routeName$7E]['get']['parameters']['query'];
|
|
123170
|
+
type GetCurrentAccountInsightsAsPartyResponse = paths[typeof routeName$7E]['get']['responses'][200]['content']['application/json'];
|
|
123171
|
+
type GetCurrentAccountInsightsAsPartyProps = paths[typeof routeName$7E]['get']['parameters'];
|
|
123011
123172
|
declare const getCurrentAccountInsightsAsParty: (props: GetCurrentAccountInsightsAsPartyProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsPartyResponse>;
|
|
123012
123173
|
|
|
123013
|
-
declare const routeName$
|
|
123014
|
-
type GetDocumentsForPartyPathParams = paths[typeof routeName$
|
|
123015
|
-
type GetDocumentsForPartyQueryParams = paths[typeof routeName$
|
|
123016
|
-
type GetDocumentsForPartyResponse = paths[typeof routeName$
|
|
123017
|
-
type GetDocumentsForPartyProps = paths[typeof routeName$
|
|
123174
|
+
declare const routeName$7D = "/v1/api/parties/{party_id}/documents";
|
|
123175
|
+
type GetDocumentsForPartyPathParams = paths[typeof routeName$7D]['get']['parameters']['path'];
|
|
123176
|
+
type GetDocumentsForPartyQueryParams = paths[typeof routeName$7D]['get']['parameters']['query'];
|
|
123177
|
+
type GetDocumentsForPartyResponse = paths[typeof routeName$7D]['get']['responses'][200]['content']['application/json'];
|
|
123178
|
+
type GetDocumentsForPartyProps = paths[typeof routeName$7D]['get']['parameters'];
|
|
123018
123179
|
declare const getDocumentsForParty: (props: GetDocumentsForPartyProps, wgApiClient: ClientType) => Promise<GetDocumentsForPartyResponse>;
|
|
123019
123180
|
|
|
123020
|
-
declare const routeName$
|
|
123021
|
-
type CreateDocumentForPartyBody = paths[typeof routeName$
|
|
123022
|
-
type CreateDocumentForPartyPathParams = paths[typeof routeName$
|
|
123023
|
-
type CreateDocumentForPartyQueryParams = paths[typeof routeName$
|
|
123024
|
-
type CreateDocumentForPartyResponse = paths[typeof routeName$
|
|
123181
|
+
declare const routeName$7C = "/v1/api/parties/{party_id}/documents";
|
|
123182
|
+
type CreateDocumentForPartyBody = paths[typeof routeName$7C]['post']['requestBody']['content']['application/json'];
|
|
123183
|
+
type CreateDocumentForPartyPathParams = paths[typeof routeName$7C]['post']['parameters']['path'];
|
|
123184
|
+
type CreateDocumentForPartyQueryParams = paths[typeof routeName$7C]['post']['parameters']['query'];
|
|
123185
|
+
type CreateDocumentForPartyResponse = paths[typeof routeName$7C]['post']['responses'][201]['content']['application/json'];
|
|
123025
123186
|
interface CreateDocumentForPartyProps {
|
|
123026
123187
|
body: CreateDocumentForPartyBody;
|
|
123027
123188
|
params: {
|
|
@@ -123031,9 +123192,9 @@ interface CreateDocumentForPartyProps {
|
|
|
123031
123192
|
}
|
|
123032
123193
|
declare const createDocumentForParty: (props: CreateDocumentForPartyProps, wgApiClient: ClientType) => Promise<CreateDocumentForPartyResponse>;
|
|
123033
123194
|
|
|
123034
|
-
declare const routeName$
|
|
123035
|
-
type DeleteDocumentForPartyPathParams = paths[typeof routeName$
|
|
123036
|
-
type DeleteDocumentForPartyResponse = paths[typeof routeName$
|
|
123195
|
+
declare const routeName$7B = "/v1/api/parties/{party_id}/documents/{document_id}";
|
|
123196
|
+
type DeleteDocumentForPartyPathParams = paths[typeof routeName$7B]['delete']['parameters']['path'];
|
|
123197
|
+
type DeleteDocumentForPartyResponse = paths[typeof routeName$7B]['delete']['responses'][200]['content']['application/json'];
|
|
123037
123198
|
interface DeleteDocumentForPartyProps {
|
|
123038
123199
|
params: {
|
|
123039
123200
|
path: DeleteDocumentForPartyPathParams;
|
|
@@ -123041,10 +123202,10 @@ interface DeleteDocumentForPartyProps {
|
|
|
123041
123202
|
}
|
|
123042
123203
|
declare const deleteDocumentForParty: (props: DeleteDocumentForPartyProps, wgApiClient: ClientType) => Promise<DeleteDocumentForPartyResponse>;
|
|
123043
123204
|
|
|
123044
|
-
declare const routeName$
|
|
123045
|
-
type UpdateDocumentForPartyBody = paths[typeof routeName$
|
|
123046
|
-
type UpdateDocumentForPartyPathParams = paths[typeof routeName$
|
|
123047
|
-
type UpdateDocumentForPartyResponse = paths[typeof routeName$
|
|
123205
|
+
declare const routeName$7A = "/v1/api/parties/{party_id}/documents/{document_id}";
|
|
123206
|
+
type UpdateDocumentForPartyBody = paths[typeof routeName$7A]['patch']['requestBody']['content']['application/json'];
|
|
123207
|
+
type UpdateDocumentForPartyPathParams = paths[typeof routeName$7A]['patch']['parameters']['path'];
|
|
123208
|
+
type UpdateDocumentForPartyResponse = paths[typeof routeName$7A]['patch']['responses'][200]['content']['application/json'];
|
|
123048
123209
|
interface UpdateDocumentForPartyProps {
|
|
123049
123210
|
body: UpdateDocumentForPartyBody;
|
|
123050
123211
|
params: {
|
|
@@ -123053,10 +123214,10 @@ interface UpdateDocumentForPartyProps {
|
|
|
123053
123214
|
}
|
|
123054
123215
|
declare const updateDocumentForParty: (props: UpdateDocumentForPartyProps, wgApiClient: ClientType) => Promise<UpdateDocumentForPartyResponse>;
|
|
123055
123216
|
|
|
123056
|
-
declare const routeName$
|
|
123057
|
-
type EnrichPartyByIdWithExternalCompanyDataPathParams = paths[typeof routeName$
|
|
123058
|
-
type EnrichPartyByIdWithExternalCompanyDataQueryParams = paths[typeof routeName$
|
|
123059
|
-
type EnrichPartyByIdWithExternalCompanyDataResponse = paths[typeof routeName$
|
|
123217
|
+
declare const routeName$7z = "/v1/api/parties/{party_id}/enrichments";
|
|
123218
|
+
type EnrichPartyByIdWithExternalCompanyDataPathParams = paths[typeof routeName$7z]['put']['parameters']['path'];
|
|
123219
|
+
type EnrichPartyByIdWithExternalCompanyDataQueryParams = paths[typeof routeName$7z]['put']['parameters']['query'];
|
|
123220
|
+
type EnrichPartyByIdWithExternalCompanyDataResponse = paths[typeof routeName$7z]['put']['responses'][200]['content']['application/json'];
|
|
123060
123221
|
interface EnrichPartyByIdWithExternalCompanyDataProps {
|
|
123061
123222
|
params: {
|
|
123062
123223
|
query: EnrichPartyByIdWithExternalCompanyDataQueryParams;
|
|
@@ -123065,10 +123226,10 @@ interface EnrichPartyByIdWithExternalCompanyDataProps {
|
|
|
123065
123226
|
}
|
|
123066
123227
|
declare const enrichPartyByIdWithExternalCompanyData: (props: EnrichPartyByIdWithExternalCompanyDataProps, wgApiClient: ClientType) => Promise<EnrichPartyByIdWithExternalCompanyDataResponse>;
|
|
123067
123228
|
|
|
123068
|
-
declare const routeName$
|
|
123069
|
-
type ExportPartyToAnvaPathParams = paths[typeof routeName$
|
|
123070
|
-
type ExportPartyToAnvaQueryParams = paths[typeof routeName$
|
|
123071
|
-
type ExportPartyToAnvaResponse = paths[typeof routeName$
|
|
123229
|
+
declare const routeName$7y = "/v1/api/parties/{party_id}/export-to-anva";
|
|
123230
|
+
type ExportPartyToAnvaPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
|
|
123231
|
+
type ExportPartyToAnvaQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
|
|
123232
|
+
type ExportPartyToAnvaResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
|
|
123072
123233
|
interface ExportPartyToAnvaProps {
|
|
123073
123234
|
params: {
|
|
123074
123235
|
query: ExportPartyToAnvaQueryParams;
|
|
@@ -123077,10 +123238,10 @@ interface ExportPartyToAnvaProps {
|
|
|
123077
123238
|
}
|
|
123078
123239
|
declare const exportPartyToAnva: (props: ExportPartyToAnvaProps, wgApiClient: ClientType) => Promise<ExportPartyToAnvaResponse>;
|
|
123079
123240
|
|
|
123080
|
-
declare const routeName$
|
|
123081
|
-
type ExportPartyToAssuPathParams = paths[typeof routeName$
|
|
123082
|
-
type ExportPartyToAssuQueryParams = paths[typeof routeName$
|
|
123083
|
-
type ExportPartyToAssuResponse = paths[typeof routeName$
|
|
123241
|
+
declare const routeName$7x = "/v1/api/parties/{party_id}/export-to-assu";
|
|
123242
|
+
type ExportPartyToAssuPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
|
|
123243
|
+
type ExportPartyToAssuQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
|
|
123244
|
+
type ExportPartyToAssuResponse = paths[typeof routeName$7x]['post']['responses'][201]['content']['application/json'];
|
|
123084
123245
|
interface ExportPartyToAssuProps {
|
|
123085
123246
|
params: {
|
|
123086
123247
|
query: ExportPartyToAssuQueryParams;
|
|
@@ -123089,10 +123250,10 @@ interface ExportPartyToAssuProps {
|
|
|
123089
123250
|
}
|
|
123090
123251
|
declare const exportPartyToAssu: (props: ExportPartyToAssuProps, wgApiClient: ClientType) => Promise<ExportPartyToAssuResponse>;
|
|
123091
123252
|
|
|
123092
|
-
declare const routeName$
|
|
123093
|
-
type ExportPartyToDiasPathParams = paths[typeof routeName$
|
|
123094
|
-
type ExportPartyToDiasQueryParams = paths[typeof routeName$
|
|
123095
|
-
type ExportPartyToDiasResponse = paths[typeof routeName$
|
|
123253
|
+
declare const routeName$7w = "/v1/api/parties/{party_id}/export-to-dias";
|
|
123254
|
+
type ExportPartyToDiasPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
|
|
123255
|
+
type ExportPartyToDiasQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
|
|
123256
|
+
type ExportPartyToDiasResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
|
|
123096
123257
|
interface ExportPartyToDiasProps {
|
|
123097
123258
|
params: {
|
|
123098
123259
|
query: ExportPartyToDiasQueryParams;
|
|
@@ -123101,10 +123262,10 @@ interface ExportPartyToDiasProps {
|
|
|
123101
123262
|
}
|
|
123102
123263
|
declare const exportPartyToDias: (props: ExportPartyToDiasProps, wgApiClient: ClientType) => Promise<ExportPartyToDiasResponse>;
|
|
123103
123264
|
|
|
123104
|
-
declare const routeName$
|
|
123105
|
-
type ExportPartyToFasterforwardPathParams = paths[typeof routeName$
|
|
123106
|
-
type ExportPartyToFasterforwardQueryParams = paths[typeof routeName$
|
|
123107
|
-
type ExportPartyToFasterforwardResponse = paths[typeof routeName$
|
|
123265
|
+
declare const routeName$7v = "/v1/api/parties/{party_id}/export-to-fasterforward";
|
|
123266
|
+
type ExportPartyToFasterforwardPathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
|
|
123267
|
+
type ExportPartyToFasterforwardQueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
|
|
123268
|
+
type ExportPartyToFasterforwardResponse = paths[typeof routeName$7v]['post']['responses'][201]['content']['application/json'];
|
|
123108
123269
|
interface ExportPartyToFasterforwardProps {
|
|
123109
123270
|
params: {
|
|
123110
123271
|
query: ExportPartyToFasterforwardQueryParams;
|
|
@@ -123113,16 +123274,16 @@ interface ExportPartyToFasterforwardProps {
|
|
|
123113
123274
|
}
|
|
123114
123275
|
declare const exportPartyToFasterforward: (props: ExportPartyToFasterforwardProps, wgApiClient: ClientType) => Promise<ExportPartyToFasterforwardResponse>;
|
|
123115
123276
|
|
|
123116
|
-
declare const routeName$
|
|
123117
|
-
type RetrieveAllExportsByPartyPathParams = paths[typeof routeName$
|
|
123118
|
-
type RetrieveAllExportsByPartyQueryParams = paths[typeof routeName$
|
|
123119
|
-
type RetrieveAllExportsByPartyResponse = paths[typeof routeName$
|
|
123120
|
-
type RetrieveAllExportsByPartyProps = paths[typeof routeName$
|
|
123277
|
+
declare const routeName$7u = "/v1/api/parties/{party_id}/exports";
|
|
123278
|
+
type RetrieveAllExportsByPartyPathParams = paths[typeof routeName$7u]['get']['parameters']['path'];
|
|
123279
|
+
type RetrieveAllExportsByPartyQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
|
|
123280
|
+
type RetrieveAllExportsByPartyResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
|
|
123281
|
+
type RetrieveAllExportsByPartyProps = paths[typeof routeName$7u]['get']['parameters'];
|
|
123121
123282
|
declare const retrieveAllExportsByParty: (props: RetrieveAllExportsByPartyProps, wgApiClient: ClientType) => Promise<RetrieveAllExportsByPartyResponse>;
|
|
123122
123283
|
|
|
123123
|
-
declare const routeName$
|
|
123124
|
-
type ExportPartyByIdPathParams = paths[typeof routeName$
|
|
123125
|
-
type ExportPartyByIdResponse = paths[typeof routeName$
|
|
123284
|
+
declare const routeName$7t = "/v1/api/parties/{party_id}/exports/crm";
|
|
123285
|
+
type ExportPartyByIdPathParams = paths[typeof routeName$7t]['post']['parameters']['path'];
|
|
123286
|
+
type ExportPartyByIdResponse = paths[typeof routeName$7t]['post']['responses'][201]['content']['application/json'];
|
|
123126
123287
|
interface ExportPartyByIdProps {
|
|
123127
123288
|
params: {
|
|
123128
123289
|
path: ExportPartyByIdPathParams;
|
|
@@ -123130,17 +123291,17 @@ interface ExportPartyByIdProps {
|
|
|
123130
123291
|
}
|
|
123131
123292
|
declare const exportPartyById: (props: ExportPartyByIdProps, wgApiClient: ClientType) => Promise<ExportPartyByIdResponse>;
|
|
123132
123293
|
|
|
123133
|
-
declare const routeName$
|
|
123134
|
-
type GetInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123135
|
-
type GetInsurancePoliciesForPartyQueryParams = paths[typeof routeName$
|
|
123136
|
-
type GetInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123137
|
-
type GetInsurancePoliciesForPartyProps = paths[typeof routeName$
|
|
123294
|
+
declare const routeName$7s = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123295
|
+
type GetInsurancePoliciesForPartyPathParams = paths[typeof routeName$7s]['get']['parameters']['path'];
|
|
123296
|
+
type GetInsurancePoliciesForPartyQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
|
|
123297
|
+
type GetInsurancePoliciesForPartyResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
|
|
123298
|
+
type GetInsurancePoliciesForPartyProps = paths[typeof routeName$7s]['get']['parameters'];
|
|
123138
123299
|
declare const getInsurancePoliciesForParty: (props: GetInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesForPartyResponse>;
|
|
123139
123300
|
|
|
123140
|
-
declare const routeName$
|
|
123141
|
-
type UpsertInsurancePoliciesForPartyBody = paths[typeof routeName$
|
|
123142
|
-
type UpsertInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123143
|
-
type UpsertInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123301
|
+
declare const routeName$7r = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123302
|
+
type UpsertInsurancePoliciesForPartyBody = paths[typeof routeName$7r]['put']['requestBody']['content']['application/json'];
|
|
123303
|
+
type UpsertInsurancePoliciesForPartyPathParams = paths[typeof routeName$7r]['put']['parameters']['path'];
|
|
123304
|
+
type UpsertInsurancePoliciesForPartyResponse = paths[typeof routeName$7r]['put']['responses'][201]['content']['application/json'];
|
|
123144
123305
|
interface UpsertInsurancePoliciesForPartyProps {
|
|
123145
123306
|
body: UpsertInsurancePoliciesForPartyBody;
|
|
123146
123307
|
params: {
|
|
@@ -123149,10 +123310,10 @@ interface UpsertInsurancePoliciesForPartyProps {
|
|
|
123149
123310
|
}
|
|
123150
123311
|
declare const upsertInsurancePoliciesForParty: (props: UpsertInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<UpsertInsurancePoliciesForPartyResponse>;
|
|
123151
123312
|
|
|
123152
|
-
declare const routeName$
|
|
123153
|
-
type CreateInsurancePoliciesForPartyBody = paths[typeof routeName$
|
|
123154
|
-
type CreateInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123155
|
-
type CreateInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123313
|
+
declare const routeName$7q = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123314
|
+
type CreateInsurancePoliciesForPartyBody = paths[typeof routeName$7q]['post']['requestBody']['content']['application/json'];
|
|
123315
|
+
type CreateInsurancePoliciesForPartyPathParams = paths[typeof routeName$7q]['post']['parameters']['path'];
|
|
123316
|
+
type CreateInsurancePoliciesForPartyResponse = paths[typeof routeName$7q]['post']['responses'][201]['content']['application/json'];
|
|
123156
123317
|
interface CreateInsurancePoliciesForPartyProps {
|
|
123157
123318
|
body: CreateInsurancePoliciesForPartyBody;
|
|
123158
123319
|
params: {
|
|
@@ -123161,9 +123322,9 @@ interface CreateInsurancePoliciesForPartyProps {
|
|
|
123161
123322
|
}
|
|
123162
123323
|
declare const createInsurancePoliciesForParty: (props: CreateInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<CreateInsurancePoliciesForPartyResponse>;
|
|
123163
123324
|
|
|
123164
|
-
declare const routeName$
|
|
123165
|
-
type DeleteInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123166
|
-
type DeleteInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123325
|
+
declare const routeName$7p = "/v1/api/parties/{party_id}/insurance-policies/{insurance_policy_id}";
|
|
123326
|
+
type DeleteInsurancePoliciesForPartyPathParams = paths[typeof routeName$7p]['delete']['parameters']['path'];
|
|
123327
|
+
type DeleteInsurancePoliciesForPartyResponse = paths[typeof routeName$7p]['delete']['responses'][200]['content']['application/json'];
|
|
123167
123328
|
interface DeleteInsurancePoliciesForPartyProps {
|
|
123168
123329
|
params: {
|
|
123169
123330
|
path: DeleteInsurancePoliciesForPartyPathParams;
|
|
@@ -123171,52 +123332,52 @@ interface DeleteInsurancePoliciesForPartyProps {
|
|
|
123171
123332
|
}
|
|
123172
123333
|
declare const deleteInsurancePoliciesForParty: (props: DeleteInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<DeleteInsurancePoliciesForPartyResponse>;
|
|
123173
123334
|
|
|
123174
|
-
declare const routeName$
|
|
123175
|
-
type GetFinconnectLinkForInsurancePolicyPathParams = paths[typeof routeName$
|
|
123176
|
-
type GetFinconnectLinkForInsurancePolicyQueryParams = paths[typeof routeName$
|
|
123177
|
-
type GetFinconnectLinkForInsurancePolicyResponse = paths[typeof routeName$
|
|
123178
|
-
type GetFinconnectLinkForInsurancePolicyProps = paths[typeof routeName$
|
|
123335
|
+
declare const routeName$7o = "/v1/api/parties/{party_id}/insurance-policies/{insurance_policy_id}/finconnect/link";
|
|
123336
|
+
type GetFinconnectLinkForInsurancePolicyPathParams = paths[typeof routeName$7o]['get']['parameters']['path'];
|
|
123337
|
+
type GetFinconnectLinkForInsurancePolicyQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
|
|
123338
|
+
type GetFinconnectLinkForInsurancePolicyResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
|
|
123339
|
+
type GetFinconnectLinkForInsurancePolicyProps = paths[typeof routeName$7o]['get']['parameters'];
|
|
123179
123340
|
declare const getFinconnectLinkForInsurancePolicy: (props: GetFinconnectLinkForInsurancePolicyProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkForInsurancePolicyResponse>;
|
|
123180
123341
|
|
|
123181
|
-
declare const routeName$
|
|
123182
|
-
type GetInvoicesAsPartyPathParams = paths[typeof routeName$
|
|
123183
|
-
type GetInvoicesAsPartyQueryParams = paths[typeof routeName$
|
|
123184
|
-
type GetInvoicesAsPartyResponse = paths[typeof routeName$
|
|
123185
|
-
type GetInvoicesAsPartyProps = paths[typeof routeName$
|
|
123342
|
+
declare const routeName$7n = "/v1/api/parties/{party_id}/invoices";
|
|
123343
|
+
type GetInvoicesAsPartyPathParams = paths[typeof routeName$7n]['get']['parameters']['path'];
|
|
123344
|
+
type GetInvoicesAsPartyQueryParams = paths[typeof routeName$7n]['get']['parameters']['query'];
|
|
123345
|
+
type GetInvoicesAsPartyResponse = paths[typeof routeName$7n]['get']['responses'][200]['content']['application/json'];
|
|
123346
|
+
type GetInvoicesAsPartyProps = paths[typeof routeName$7n]['get']['parameters'];
|
|
123186
123347
|
declare const getInvoicesAsParty: (props: GetInvoicesAsPartyProps, wgApiClient: ClientType) => Promise<GetInvoicesAsPartyResponse>;
|
|
123187
123348
|
|
|
123188
|
-
declare const routeName$
|
|
123189
|
-
type GetInvoicesAsPartyByIdPathParams = paths[typeof routeName$
|
|
123190
|
-
type GetInvoicesAsPartyByIdResponse = paths[typeof routeName$
|
|
123191
|
-
type GetInvoicesAsPartyByIdProps = paths[typeof routeName$
|
|
123349
|
+
declare const routeName$7m = "/v1/api/parties/{party_id}/invoices/{invoice_id}";
|
|
123350
|
+
type GetInvoicesAsPartyByIdPathParams = paths[typeof routeName$7m]['get']['parameters']['path'];
|
|
123351
|
+
type GetInvoicesAsPartyByIdResponse = paths[typeof routeName$7m]['get']['responses'][200]['content']['application/json'];
|
|
123352
|
+
type GetInvoicesAsPartyByIdProps = paths[typeof routeName$7m]['get']['parameters'];
|
|
123192
123353
|
declare const getInvoicesAsPartyById: (props: GetInvoicesAsPartyByIdProps, wgApiClient: ClientType) => Promise<GetInvoicesAsPartyByIdResponse>;
|
|
123193
123354
|
|
|
123194
|
-
declare const routeName$
|
|
123195
|
-
type GetKycByPartyPathParams = paths[typeof routeName$
|
|
123196
|
-
type GetKycByPartyQueryParams = paths[typeof routeName$
|
|
123197
|
-
type GetKycByPartyResponse = paths[typeof routeName$
|
|
123198
|
-
type GetKycByPartyProps = paths[typeof routeName$
|
|
123355
|
+
declare const routeName$7l = "/v1/api/parties/{party_id}/kyc";
|
|
123356
|
+
type GetKycByPartyPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
|
|
123357
|
+
type GetKycByPartyQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
|
|
123358
|
+
type GetKycByPartyResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
|
|
123359
|
+
type GetKycByPartyProps = paths[typeof routeName$7l]['get']['parameters'];
|
|
123199
123360
|
declare const getKycByParty: (props: GetKycByPartyProps, wgApiClient: ClientType) => Promise<GetKycByPartyResponse>;
|
|
123200
123361
|
|
|
123201
|
-
declare const routeName$
|
|
123202
|
-
type GetPossibleInsuranceProductsForManagementByPartyIdPathParams = paths[typeof routeName$
|
|
123203
|
-
type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams = paths[typeof routeName$
|
|
123204
|
-
type GetPossibleInsuranceProductsForManagementByPartyIdResponse = paths[typeof routeName$
|
|
123205
|
-
type GetPossibleInsuranceProductsForManagementByPartyIdProps = paths[typeof routeName$
|
|
123362
|
+
declare const routeName$7k = "/v1/api/parties/{party_id}/management/possible-insurance-products";
|
|
123363
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdPathParams = paths[typeof routeName$7k]['get']['parameters']['path'];
|
|
123364
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams = paths[typeof routeName$7k]['get']['parameters']['query'];
|
|
123365
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
|
|
123366
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdProps = paths[typeof routeName$7k]['get']['parameters'];
|
|
123206
123367
|
declare const getPossibleInsuranceProductsForManagementByPartyId: (props: GetPossibleInsuranceProductsForManagementByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsForManagementByPartyIdResponse>;
|
|
123207
123368
|
|
|
123208
|
-
declare const routeName$
|
|
123209
|
-
type GetPartyMergeSuggestionsPathParams = paths[typeof routeName$
|
|
123210
|
-
type GetPartyMergeSuggestionsQueryParams = paths[typeof routeName$
|
|
123211
|
-
type GetPartyMergeSuggestionsResponse = paths[typeof routeName$
|
|
123212
|
-
type GetPartyMergeSuggestionsProps = paths[typeof routeName$
|
|
123369
|
+
declare const routeName$7j = "/v1/api/parties/{party_id}/merge-suggestions";
|
|
123370
|
+
type GetPartyMergeSuggestionsPathParams = paths[typeof routeName$7j]['get']['parameters']['path'];
|
|
123371
|
+
type GetPartyMergeSuggestionsQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
|
|
123372
|
+
type GetPartyMergeSuggestionsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
|
|
123373
|
+
type GetPartyMergeSuggestionsProps = paths[typeof routeName$7j]['get']['parameters'];
|
|
123213
123374
|
declare const getPartyMergeSuggestions: (props: GetPartyMergeSuggestionsProps, wgApiClient: ClientType) => Promise<GetPartyMergeSuggestionsResponse>;
|
|
123214
123375
|
|
|
123215
|
-
declare const routeName$
|
|
123216
|
-
type MergePartiesTogetherBody = paths[typeof routeName$
|
|
123217
|
-
type MergePartiesTogetherPathParams = paths[typeof routeName$
|
|
123218
|
-
type MergePartiesTogetherQueryParams = paths[typeof routeName$
|
|
123219
|
-
type MergePartiesTogetherResponse = paths[typeof routeName$
|
|
123376
|
+
declare const routeName$7i = "/v1/api/parties/{party_id}/merges";
|
|
123377
|
+
type MergePartiesTogetherBody = paths[typeof routeName$7i]['post']['requestBody']['content']['application/json'];
|
|
123378
|
+
type MergePartiesTogetherPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
|
|
123379
|
+
type MergePartiesTogetherQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
|
|
123380
|
+
type MergePartiesTogetherResponse = paths[typeof routeName$7i]['post']['responses'][200]['content']['application/json'];
|
|
123220
123381
|
interface MergePartiesTogetherProps {
|
|
123221
123382
|
body: MergePartiesTogetherBody;
|
|
123222
123383
|
params: {
|
|
@@ -123226,10 +123387,10 @@ interface MergePartiesTogetherProps {
|
|
|
123226
123387
|
}
|
|
123227
123388
|
declare const mergePartiesTogether: (props: MergePartiesTogetherProps, wgApiClient: ClientType) => Promise<MergePartiesTogetherResponse>;
|
|
123228
123389
|
|
|
123229
|
-
declare const routeName$
|
|
123230
|
-
type CreatePartyNoteBody = paths[typeof routeName$
|
|
123231
|
-
type CreatePartyNotePathParams = paths[typeof routeName$
|
|
123232
|
-
type CreatePartyNoteResponse = paths[typeof routeName$
|
|
123390
|
+
declare const routeName$7h = "/v1/api/parties/{party_id}/notes";
|
|
123391
|
+
type CreatePartyNoteBody = paths[typeof routeName$7h]['post']['requestBody']['content']['application/json'];
|
|
123392
|
+
type CreatePartyNotePathParams = paths[typeof routeName$7h]['post']['parameters']['path'];
|
|
123393
|
+
type CreatePartyNoteResponse = paths[typeof routeName$7h]['post']['responses'][201]['content']['application/json'];
|
|
123233
123394
|
interface CreatePartyNoteProps {
|
|
123234
123395
|
body: CreatePartyNoteBody;
|
|
123235
123396
|
params: {
|
|
@@ -123238,9 +123399,9 @@ interface CreatePartyNoteProps {
|
|
|
123238
123399
|
}
|
|
123239
123400
|
declare const createPartyNote: (props: CreatePartyNoteProps, wgApiClient: ClientType) => Promise<CreatePartyNoteResponse>;
|
|
123240
123401
|
|
|
123241
|
-
declare const routeName$
|
|
123242
|
-
type DeletePartyNoteByIdPathParams = paths[typeof routeName$
|
|
123243
|
-
type DeletePartyNoteByIdResponse = paths[typeof routeName$
|
|
123402
|
+
declare const routeName$7g = "/v1/api/parties/{party_id}/notes/{note_id}";
|
|
123403
|
+
type DeletePartyNoteByIdPathParams = paths[typeof routeName$7g]['delete']['parameters']['path'];
|
|
123404
|
+
type DeletePartyNoteByIdResponse = paths[typeof routeName$7g]['delete']['responses'][200]['content']['application/json'];
|
|
123244
123405
|
interface DeletePartyNoteByIdProps {
|
|
123245
123406
|
params: {
|
|
123246
123407
|
path: DeletePartyNoteByIdPathParams;
|
|
@@ -123248,10 +123409,10 @@ interface DeletePartyNoteByIdProps {
|
|
|
123248
123409
|
}
|
|
123249
123410
|
declare const deletePartyNoteById: (props: DeletePartyNoteByIdProps, wgApiClient: ClientType) => Promise<DeletePartyNoteByIdResponse>;
|
|
123250
123411
|
|
|
123251
|
-
declare const routeName$
|
|
123252
|
-
type UpdatePartyNoteByIdBody = paths[typeof routeName$
|
|
123253
|
-
type UpdatePartyNoteByIdPathParams = paths[typeof routeName$
|
|
123254
|
-
type UpdatePartyNoteByIdResponse = paths[typeof routeName$
|
|
123412
|
+
declare const routeName$7f = "/v1/api/parties/{party_id}/notes/{note_id}";
|
|
123413
|
+
type UpdatePartyNoteByIdBody = paths[typeof routeName$7f]['patch']['requestBody']['content']['application/json'];
|
|
123414
|
+
type UpdatePartyNoteByIdPathParams = paths[typeof routeName$7f]['patch']['parameters']['path'];
|
|
123415
|
+
type UpdatePartyNoteByIdResponse = paths[typeof routeName$7f]['patch']['responses'][200]['content']['application/json'];
|
|
123255
123416
|
interface UpdatePartyNoteByIdProps {
|
|
123256
123417
|
body: UpdatePartyNoteByIdBody;
|
|
123257
123418
|
params: {
|
|
@@ -123260,11 +123421,11 @@ interface UpdatePartyNoteByIdProps {
|
|
|
123260
123421
|
}
|
|
123261
123422
|
declare const updatePartyNoteById: (props: UpdatePartyNoteByIdProps, wgApiClient: ClientType) => Promise<UpdatePartyNoteByIdResponse>;
|
|
123262
123423
|
|
|
123263
|
-
declare const routeName$
|
|
123264
|
-
type CreatePartyOffersBody = paths[typeof routeName$
|
|
123265
|
-
type CreatePartyOffersPathParams = paths[typeof routeName$
|
|
123266
|
-
type CreatePartyOffersQueryParams = paths[typeof routeName$
|
|
123267
|
-
type CreatePartyOffersResponse = paths[typeof routeName$
|
|
123424
|
+
declare const routeName$7e = "/v1/api/parties/{party_id}/offers";
|
|
123425
|
+
type CreatePartyOffersBody = paths[typeof routeName$7e]['post']['requestBody']['content']['application/json'];
|
|
123426
|
+
type CreatePartyOffersPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
|
|
123427
|
+
type CreatePartyOffersQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
|
|
123428
|
+
type CreatePartyOffersResponse = paths[typeof routeName$7e]['post']['responses'][201]['content']['application/json'];
|
|
123268
123429
|
interface CreatePartyOffersProps {
|
|
123269
123430
|
body: CreatePartyOffersBody;
|
|
123270
123431
|
params: {
|
|
@@ -123274,23 +123435,23 @@ interface CreatePartyOffersProps {
|
|
|
123274
123435
|
}
|
|
123275
123436
|
declare const createPartyOffers: (props: CreatePartyOffersProps, wgApiClient: ClientType) => Promise<CreatePartyOffersResponse>;
|
|
123276
123437
|
|
|
123277
|
-
declare const routeName$
|
|
123278
|
-
type GetOnesuranceDataByPartyIdPathParams = paths[typeof routeName$
|
|
123279
|
-
type GetOnesuranceDataByPartyIdQueryParams = paths[typeof routeName$
|
|
123280
|
-
type GetOnesuranceDataByPartyIdResponse = paths[typeof routeName$
|
|
123281
|
-
type GetOnesuranceDataByPartyIdProps = paths[typeof routeName$
|
|
123438
|
+
declare const routeName$7d = "/v1/api/parties/{party_id}/onesurance-data";
|
|
123439
|
+
type GetOnesuranceDataByPartyIdPathParams = paths[typeof routeName$7d]['get']['parameters']['path'];
|
|
123440
|
+
type GetOnesuranceDataByPartyIdQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
|
|
123441
|
+
type GetOnesuranceDataByPartyIdResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
|
|
123442
|
+
type GetOnesuranceDataByPartyIdProps = paths[typeof routeName$7d]['get']['parameters'];
|
|
123282
123443
|
declare const getOnesuranceDataByPartyId: (props: GetOnesuranceDataByPartyIdProps, wgApiClient: ClientType) => Promise<GetOnesuranceDataByPartyIdResponse>;
|
|
123283
123444
|
|
|
123284
|
-
declare const routeName$
|
|
123285
|
-
type GetPolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123286
|
-
type GetPolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123287
|
-
type GetPolicyPackagesForPartyProps = paths[typeof routeName$
|
|
123445
|
+
declare const routeName$7c = "/v1/api/parties/{party_id}/policy-packages";
|
|
123446
|
+
type GetPolicyPackagesForPartyPathParams = paths[typeof routeName$7c]['get']['parameters']['path'];
|
|
123447
|
+
type GetPolicyPackagesForPartyResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
|
|
123448
|
+
type GetPolicyPackagesForPartyProps = paths[typeof routeName$7c]['get']['parameters'];
|
|
123288
123449
|
declare const getPolicyPackagesForParty: (props: GetPolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesForPartyResponse>;
|
|
123289
123450
|
|
|
123290
|
-
declare const routeName$
|
|
123291
|
-
type UpsertPolicyPackagesForPartyBody = paths[typeof routeName$
|
|
123292
|
-
type UpsertPolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123293
|
-
type UpsertPolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123451
|
+
declare const routeName$7b = "/v1/api/parties/{party_id}/policy-packages";
|
|
123452
|
+
type UpsertPolicyPackagesForPartyBody = paths[typeof routeName$7b]['put']['requestBody']['content']['application/json'];
|
|
123453
|
+
type UpsertPolicyPackagesForPartyPathParams = paths[typeof routeName$7b]['put']['parameters']['path'];
|
|
123454
|
+
type UpsertPolicyPackagesForPartyResponse = paths[typeof routeName$7b]['put']['responses'][201]['content']['application/json'];
|
|
123294
123455
|
interface UpsertPolicyPackagesForPartyProps {
|
|
123295
123456
|
body: UpsertPolicyPackagesForPartyBody;
|
|
123296
123457
|
params: {
|
|
@@ -123299,16 +123460,16 @@ interface UpsertPolicyPackagesForPartyProps {
|
|
|
123299
123460
|
}
|
|
123300
123461
|
declare const upsertPolicyPackagesForParty: (props: UpsertPolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<UpsertPolicyPackagesForPartyResponse>;
|
|
123301
123462
|
|
|
123302
|
-
declare const routeName$
|
|
123303
|
-
type GetPolicyPackageByIdPathParams = paths[typeof routeName$
|
|
123304
|
-
type GetPolicyPackageByIdQueryParams = paths[typeof routeName$
|
|
123305
|
-
type GetPolicyPackageByIdResponse = paths[typeof routeName$
|
|
123306
|
-
type GetPolicyPackageByIdProps = paths[typeof routeName$
|
|
123463
|
+
declare const routeName$7a = "/v1/api/parties/{party_id}/policy-packages/{policy_package_id}";
|
|
123464
|
+
type GetPolicyPackageByIdPathParams = paths[typeof routeName$7a]['get']['parameters']['path'];
|
|
123465
|
+
type GetPolicyPackageByIdQueryParams = paths[typeof routeName$7a]['get']['parameters']['query'];
|
|
123466
|
+
type GetPolicyPackageByIdResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
|
|
123467
|
+
type GetPolicyPackageByIdProps = paths[typeof routeName$7a]['get']['parameters'];
|
|
123307
123468
|
declare const getPolicyPackageById: (props: GetPolicyPackageByIdProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdResponse>;
|
|
123308
123469
|
|
|
123309
|
-
declare const routeName$
|
|
123310
|
-
type DeletePolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123311
|
-
type DeletePolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123470
|
+
declare const routeName$79 = "/v1/api/parties/{party_id}/policy-packages/{policy_package_id}";
|
|
123471
|
+
type DeletePolicyPackagesForPartyPathParams = paths[typeof routeName$79]['delete']['parameters']['path'];
|
|
123472
|
+
type DeletePolicyPackagesForPartyResponse = paths[typeof routeName$79]['delete']['responses'][200]['content']['application/json'];
|
|
123312
123473
|
interface DeletePolicyPackagesForPartyProps {
|
|
123313
123474
|
params: {
|
|
123314
123475
|
path: DeletePolicyPackagesForPartyPathParams;
|
|
@@ -123316,17 +123477,17 @@ interface DeletePolicyPackagesForPartyProps {
|
|
|
123316
123477
|
}
|
|
123317
123478
|
declare const deletePolicyPackagesForParty: (props: DeletePolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<DeletePolicyPackagesForPartyResponse>;
|
|
123318
123479
|
|
|
123319
|
-
declare const routeName$
|
|
123320
|
-
type GetPossibleInsuranceProductsByPartyIdPathParams = paths[typeof routeName$
|
|
123321
|
-
type GetPossibleInsuranceProductsByPartyIdQueryParams = paths[typeof routeName$
|
|
123322
|
-
type GetPossibleInsuranceProductsByPartyIdResponse = paths[typeof routeName$
|
|
123323
|
-
type GetPossibleInsuranceProductsByPartyIdProps = paths[typeof routeName$
|
|
123480
|
+
declare const routeName$78 = "/v1/api/parties/{party_id}/possible-insurance-products";
|
|
123481
|
+
type GetPossibleInsuranceProductsByPartyIdPathParams = paths[typeof routeName$78]['get']['parameters']['path'];
|
|
123482
|
+
type GetPossibleInsuranceProductsByPartyIdQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
|
|
123483
|
+
type GetPossibleInsuranceProductsByPartyIdResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
|
|
123484
|
+
type GetPossibleInsuranceProductsByPartyIdProps = paths[typeof routeName$78]['get']['parameters'];
|
|
123324
123485
|
declare const getPossibleInsuranceProductsByPartyId: (props: GetPossibleInsuranceProductsByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsByPartyIdResponse>;
|
|
123325
123486
|
|
|
123326
|
-
declare const routeName$
|
|
123327
|
-
type CreateReferenceForPartyBody = paths[typeof routeName$
|
|
123328
|
-
type CreateReferenceForPartyPathParams = paths[typeof routeName$
|
|
123329
|
-
type CreateReferenceForPartyResponse = paths[typeof routeName$
|
|
123487
|
+
declare const routeName$77 = "/v1/api/parties/{party_id}/references";
|
|
123488
|
+
type CreateReferenceForPartyBody = paths[typeof routeName$77]['post']['requestBody']['content']['application/json'];
|
|
123489
|
+
type CreateReferenceForPartyPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
|
|
123490
|
+
type CreateReferenceForPartyResponse = paths[typeof routeName$77]['post']['responses'][200]['content']['application/json'];
|
|
123330
123491
|
interface CreateReferenceForPartyProps {
|
|
123331
123492
|
body: CreateReferenceForPartyBody;
|
|
123332
123493
|
params: {
|
|
@@ -123335,17 +123496,17 @@ interface CreateReferenceForPartyProps {
|
|
|
123335
123496
|
}
|
|
123336
123497
|
declare const createReferenceForParty: (props: CreateReferenceForPartyProps, wgApiClient: ClientType) => Promise<CreateReferenceForPartyResponse>;
|
|
123337
123498
|
|
|
123338
|
-
declare const routeName$
|
|
123339
|
-
type GetRiskAnalysisByPartyIdPathParams = paths[typeof routeName$
|
|
123340
|
-
type GetRiskAnalysisByPartyIdResponse = paths[typeof routeName$
|
|
123341
|
-
type GetRiskAnalysisByPartyIdProps = paths[typeof routeName$
|
|
123499
|
+
declare const routeName$76 = "/v1/api/parties/{party_id}/risk_analysis";
|
|
123500
|
+
type GetRiskAnalysisByPartyIdPathParams = paths[typeof routeName$76]['get']['parameters']['path'];
|
|
123501
|
+
type GetRiskAnalysisByPartyIdResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
|
|
123502
|
+
type GetRiskAnalysisByPartyIdProps = paths[typeof routeName$76]['get']['parameters'];
|
|
123342
123503
|
declare const getRiskAnalysisByPartyId: (props: GetRiskAnalysisByPartyIdProps, wgApiClient: ClientType) => Promise<GetRiskAnalysisByPartyIdResponse>;
|
|
123343
123504
|
|
|
123344
|
-
declare const routeName$
|
|
123345
|
-
type CreateRelationBetweenRiskObjectAndPartyBody = paths[typeof routeName$
|
|
123346
|
-
type CreateRelationBetweenRiskObjectAndPartyPathParams = paths[typeof routeName$
|
|
123347
|
-
type CreateRelationBetweenRiskObjectAndPartyQueryParams = paths[typeof routeName$
|
|
123348
|
-
type CreateRelationBetweenRiskObjectAndPartyResponse = paths[typeof routeName$
|
|
123505
|
+
declare const routeName$75 = "/v1/api/parties/{party_id}/risk_objects/{risk_object_id}/relations";
|
|
123506
|
+
type CreateRelationBetweenRiskObjectAndPartyBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
|
|
123507
|
+
type CreateRelationBetweenRiskObjectAndPartyPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
|
|
123508
|
+
type CreateRelationBetweenRiskObjectAndPartyQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
|
|
123509
|
+
type CreateRelationBetweenRiskObjectAndPartyResponse = paths[typeof routeName$75]['post']['responses'][201]['content']['application/json'];
|
|
123349
123510
|
interface CreateRelationBetweenRiskObjectAndPartyProps {
|
|
123350
123511
|
body: CreateRelationBetweenRiskObjectAndPartyBody;
|
|
123351
123512
|
params: {
|
|
@@ -123355,11 +123516,11 @@ interface CreateRelationBetweenRiskObjectAndPartyProps {
|
|
|
123355
123516
|
}
|
|
123356
123517
|
declare const createRelationBetweenRiskObjectAndParty: (props: CreateRelationBetweenRiskObjectAndPartyProps, wgApiClient: ClientType) => Promise<CreateRelationBetweenRiskObjectAndPartyResponse>;
|
|
123357
123518
|
|
|
123358
|
-
declare const routeName$
|
|
123359
|
-
type SendMailForSimulationToPartyBody = paths[typeof routeName$
|
|
123360
|
-
type SendMailForSimulationToPartyPathParams = paths[typeof routeName$
|
|
123361
|
-
type SendMailForSimulationToPartyQueryParams = paths[typeof routeName$
|
|
123362
|
-
type SendMailForSimulationToPartyResponse = paths[typeof routeName$
|
|
123519
|
+
declare const routeName$74 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/email-inquiries";
|
|
123520
|
+
type SendMailForSimulationToPartyBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
|
|
123521
|
+
type SendMailForSimulationToPartyPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
|
|
123522
|
+
type SendMailForSimulationToPartyQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
|
|
123523
|
+
type SendMailForSimulationToPartyResponse = paths[typeof routeName$74]['post']['responses'][201]['content']['application/json'];
|
|
123363
123524
|
interface SendMailForSimulationToPartyProps {
|
|
123364
123525
|
body: SendMailForSimulationToPartyBody;
|
|
123365
123526
|
params: {
|
|
@@ -123369,17 +123530,17 @@ interface SendMailForSimulationToPartyProps {
|
|
|
123369
123530
|
}
|
|
123370
123531
|
declare const sendMailForSimulationToParty: (props: SendMailForSimulationToPartyProps, wgApiClient: ClientType) => Promise<SendMailForSimulationToPartyResponse>;
|
|
123371
123532
|
|
|
123372
|
-
declare const routeName$
|
|
123373
|
-
type GetInsurancePolicySimulationsForPartyPathParams = paths[typeof routeName$
|
|
123374
|
-
type GetInsurancePolicySimulationsForPartyQueryParams = paths[typeof routeName$
|
|
123375
|
-
type GetInsurancePolicySimulationsForPartyResponse = paths[typeof routeName$
|
|
123376
|
-
type GetInsurancePolicySimulationsForPartyProps = paths[typeof routeName$
|
|
123533
|
+
declare const routeName$73 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/insurance-policies";
|
|
123534
|
+
type GetInsurancePolicySimulationsForPartyPathParams = paths[typeof routeName$73]['get']['parameters']['path'];
|
|
123535
|
+
type GetInsurancePolicySimulationsForPartyQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
|
|
123536
|
+
type GetInsurancePolicySimulationsForPartyResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
|
|
123537
|
+
type GetInsurancePolicySimulationsForPartyProps = paths[typeof routeName$73]['get']['parameters'];
|
|
123377
123538
|
declare const getInsurancePolicySimulationsForParty: (props: GetInsurancePolicySimulationsForPartyProps, wgApiClient: ClientType) => Promise<GetInsurancePolicySimulationsForPartyResponse>;
|
|
123378
123539
|
|
|
123379
|
-
declare const routeName$
|
|
123380
|
-
type UpsertInsurancePolicySimulationForPartyBody = paths[typeof routeName$
|
|
123381
|
-
type UpsertInsurancePolicySimulationForPartyPathParams = paths[typeof routeName$
|
|
123382
|
-
type UpsertInsurancePolicySimulationForPartyResponse = paths[typeof routeName$
|
|
123540
|
+
declare const routeName$72 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/insurance-policies";
|
|
123541
|
+
type UpsertInsurancePolicySimulationForPartyBody = paths[typeof routeName$72]['put']['requestBody']['content']['application/json'];
|
|
123542
|
+
type UpsertInsurancePolicySimulationForPartyPathParams = paths[typeof routeName$72]['put']['parameters']['path'];
|
|
123543
|
+
type UpsertInsurancePolicySimulationForPartyResponse = paths[typeof routeName$72]['put']['responses'][201]['content']['application/json'];
|
|
123383
123544
|
interface UpsertInsurancePolicySimulationForPartyProps {
|
|
123384
123545
|
body: UpsertInsurancePolicySimulationForPartyBody;
|
|
123385
123546
|
params: {
|
|
@@ -123388,31 +123549,31 @@ interface UpsertInsurancePolicySimulationForPartyProps {
|
|
|
123388
123549
|
}
|
|
123389
123550
|
declare const upsertInsurancePolicySimulationForParty: (props: UpsertInsurancePolicySimulationForPartyProps, wgApiClient: ClientType) => Promise<UpsertInsurancePolicySimulationForPartyResponse>;
|
|
123390
123551
|
|
|
123391
|
-
declare const routeName$
|
|
123392
|
-
type GetPolicyPackageSimulationsForPartyPathParams = paths[typeof routeName$
|
|
123393
|
-
type GetPolicyPackageSimulationsForPartyResponse = paths[typeof routeName$
|
|
123394
|
-
type GetPolicyPackageSimulationsForPartyProps = paths[typeof routeName$
|
|
123552
|
+
declare const routeName$71 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/policy-packages";
|
|
123553
|
+
type GetPolicyPackageSimulationsForPartyPathParams = paths[typeof routeName$71]['get']['parameters']['path'];
|
|
123554
|
+
type GetPolicyPackageSimulationsForPartyResponse = paths[typeof routeName$71]['get']['responses'][200]['content']['application/json'];
|
|
123555
|
+
type GetPolicyPackageSimulationsForPartyProps = paths[typeof routeName$71]['get']['parameters'];
|
|
123395
123556
|
declare const getPolicyPackageSimulationsForParty: (props: GetPolicyPackageSimulationsForPartyProps, wgApiClient: ClientType) => Promise<GetPolicyPackageSimulationsForPartyResponse>;
|
|
123396
123557
|
|
|
123397
|
-
declare const routeName$
|
|
123398
|
-
type GetPossibleInsuranceProductsForStaffByPartyIdPathParams = paths[typeof routeName$
|
|
123399
|
-
type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams = paths[typeof routeName$
|
|
123400
|
-
type GetPossibleInsuranceProductsForStaffByPartyIdResponse = paths[typeof routeName$
|
|
123401
|
-
type GetPossibleInsuranceProductsForStaffByPartyIdProps = paths[typeof routeName$
|
|
123558
|
+
declare const routeName$70 = "/v1/api/parties/{party_id}/staff/possible-insurance-products";
|
|
123559
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdPathParams = paths[typeof routeName$70]['get']['parameters']['path'];
|
|
123560
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams = paths[typeof routeName$70]['get']['parameters']['query'];
|
|
123561
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdResponse = paths[typeof routeName$70]['get']['responses'][200]['content']['application/json'];
|
|
123562
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdProps = paths[typeof routeName$70]['get']['parameters'];
|
|
123402
123563
|
declare const getPossibleInsuranceProductsForStaffByPartyId: (props: GetPossibleInsuranceProductsForStaffByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsForStaffByPartyIdResponse>;
|
|
123403
123564
|
|
|
123404
|
-
declare const routeName$
|
|
123405
|
-
type GetSystemCampaignsByPartyPathParams = paths[typeof routeName$
|
|
123406
|
-
type GetSystemCampaignsByPartyQueryParams = paths[typeof routeName$
|
|
123407
|
-
type GetSystemCampaignsByPartyResponse = paths[typeof routeName$
|
|
123408
|
-
type GetSystemCampaignsByPartyProps = paths[typeof routeName$
|
|
123565
|
+
declare const routeName$6$ = "/v1/api/parties/{party_id}/system-campaigns";
|
|
123566
|
+
type GetSystemCampaignsByPartyPathParams = paths[typeof routeName$6$]['get']['parameters']['path'];
|
|
123567
|
+
type GetSystemCampaignsByPartyQueryParams = paths[typeof routeName$6$]['get']['parameters']['query'];
|
|
123568
|
+
type GetSystemCampaignsByPartyResponse = paths[typeof routeName$6$]['get']['responses'][200]['content']['application/json'];
|
|
123569
|
+
type GetSystemCampaignsByPartyProps = paths[typeof routeName$6$]['get']['parameters'];
|
|
123409
123570
|
declare const getSystemCampaignsByParty: (props: GetSystemCampaignsByPartyProps, wgApiClient: ClientType) => Promise<GetSystemCampaignsByPartyResponse>;
|
|
123410
123571
|
|
|
123411
|
-
declare const routeName$
|
|
123412
|
-
type TransferPartyToOtherDistributionBody = paths[typeof routeName$
|
|
123413
|
-
type TransferPartyToOtherDistributionPathParams = paths[typeof routeName$
|
|
123414
|
-
type TransferPartyToOtherDistributionQueryParams = paths[typeof routeName$
|
|
123415
|
-
type TransferPartyToOtherDistributionResponse = paths[typeof routeName$
|
|
123572
|
+
declare const routeName$6_ = "/v1/api/parties/{party_id}/transfers";
|
|
123573
|
+
type TransferPartyToOtherDistributionBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
|
|
123574
|
+
type TransferPartyToOtherDistributionPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
|
|
123575
|
+
type TransferPartyToOtherDistributionQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
|
|
123576
|
+
type TransferPartyToOtherDistributionResponse = paths[typeof routeName$6_]['post']['responses'][200]['content']['application/json'];
|
|
123416
123577
|
interface TransferPartyToOtherDistributionProps {
|
|
123417
123578
|
body: TransferPartyToOtherDistributionBody;
|
|
123418
123579
|
params: {
|
|
@@ -123422,10 +123583,10 @@ interface TransferPartyToOtherDistributionProps {
|
|
|
123422
123583
|
}
|
|
123423
123584
|
declare const transferPartyToOtherDistribution: (props: TransferPartyToOtherDistributionProps, wgApiClient: ClientType) => Promise<TransferPartyToOtherDistributionResponse>;
|
|
123424
123585
|
|
|
123425
|
-
declare const routeName$
|
|
123426
|
-
type CreatePartyRelationsBody = paths[typeof routeName$
|
|
123427
|
-
type CreatePartyRelationsQueryParams = paths[typeof routeName$
|
|
123428
|
-
type CreatePartyRelationsResponse = paths[typeof routeName$
|
|
123586
|
+
declare const routeName$6Z = "/v1/api/relations";
|
|
123587
|
+
type CreatePartyRelationsBody = paths[typeof routeName$6Z]['post']['requestBody']['content']['application/json'];
|
|
123588
|
+
type CreatePartyRelationsQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
|
|
123589
|
+
type CreatePartyRelationsResponse = paths[typeof routeName$6Z]['post']['responses'][201]['content']['application/json'];
|
|
123429
123590
|
interface CreatePartyRelationsProps {
|
|
123430
123591
|
body: CreatePartyRelationsBody;
|
|
123431
123592
|
params: {
|
|
@@ -123434,9 +123595,9 @@ interface CreatePartyRelationsProps {
|
|
|
123434
123595
|
}
|
|
123435
123596
|
declare const createPartyRelations: (props: CreatePartyRelationsProps, wgApiClient: ClientType) => Promise<CreatePartyRelationsResponse>;
|
|
123436
123597
|
|
|
123437
|
-
declare const routeName$
|
|
123438
|
-
type DeletePartyRelationsPathParams = paths[typeof routeName$
|
|
123439
|
-
type DeletePartyRelationsResponse = paths[typeof routeName$
|
|
123598
|
+
declare const routeName$6Y = "/v1/api/relations/{relation_id}";
|
|
123599
|
+
type DeletePartyRelationsPathParams = paths[typeof routeName$6Y]['delete']['parameters']['path'];
|
|
123600
|
+
type DeletePartyRelationsResponse = paths[typeof routeName$6Y]['delete']['responses'][200]['content']['application/json'];
|
|
123440
123601
|
interface DeletePartyRelationsProps {
|
|
123441
123602
|
params: {
|
|
123442
123603
|
path: DeletePartyRelationsPathParams;
|
|
@@ -123444,10 +123605,10 @@ interface DeletePartyRelationsProps {
|
|
|
123444
123605
|
}
|
|
123445
123606
|
declare const deletePartyRelations: (props: DeletePartyRelationsProps, wgApiClient: ClientType) => Promise<DeletePartyRelationsResponse>;
|
|
123446
123607
|
|
|
123447
|
-
declare const routeName$
|
|
123448
|
-
type UpdatePartyRelationsBody = paths[typeof routeName$
|
|
123449
|
-
type UpdatePartyRelationsPathParams = paths[typeof routeName$
|
|
123450
|
-
type UpdatePartyRelationsResponse = paths[typeof routeName$
|
|
123608
|
+
declare const routeName$6X = "/v1/api/relations/{relation_id}";
|
|
123609
|
+
type UpdatePartyRelationsBody = paths[typeof routeName$6X]['patch']['requestBody']['content']['application/json'];
|
|
123610
|
+
type UpdatePartyRelationsPathParams = paths[typeof routeName$6X]['patch']['parameters']['path'];
|
|
123611
|
+
type UpdatePartyRelationsResponse = paths[typeof routeName$6X]['patch']['responses'][200]['content']['application/json'];
|
|
123451
123612
|
interface UpdatePartyRelationsProps {
|
|
123452
123613
|
body: UpdatePartyRelationsBody;
|
|
123453
123614
|
params: {
|
|
@@ -123456,53 +123617,53 @@ interface UpdatePartyRelationsProps {
|
|
|
123456
123617
|
}
|
|
123457
123618
|
declare const updatePartyRelations: (props: UpdatePartyRelationsProps, wgApiClient: ClientType) => Promise<UpdatePartyRelationsResponse>;
|
|
123458
123619
|
|
|
123459
|
-
declare const routeName$
|
|
123460
|
-
type GetAllPartiesByDistributionV2PathParams = paths[typeof routeName$
|
|
123461
|
-
type GetAllPartiesByDistributionV2QueryParams = paths[typeof routeName$
|
|
123462
|
-
type GetAllPartiesByDistributionV2Response = paths[typeof routeName$
|
|
123463
|
-
type GetAllPartiesByDistributionV2Props = paths[typeof routeName$
|
|
123620
|
+
declare const routeName$6W = "/v2/api/distributions/{distribution_id}/parties";
|
|
123621
|
+
type GetAllPartiesByDistributionV2PathParams = paths[typeof routeName$6W]['get']['parameters']['path'];
|
|
123622
|
+
type GetAllPartiesByDistributionV2QueryParams = paths[typeof routeName$6W]['get']['parameters']['query'];
|
|
123623
|
+
type GetAllPartiesByDistributionV2Response = paths[typeof routeName$6W]['get']['responses'][200]['content']['application/json'];
|
|
123624
|
+
type GetAllPartiesByDistributionV2Props = paths[typeof routeName$6W]['get']['parameters'];
|
|
123464
123625
|
declare const getAllPartiesByDistributionV2: (props: GetAllPartiesByDistributionV2Props, wgApiClient: ClientType) => Promise<GetAllPartiesByDistributionV2Response>;
|
|
123465
123626
|
|
|
123466
|
-
declare const routeName$
|
|
123467
|
-
type SearchCitiesByCountryQueryParams = paths[typeof routeName$
|
|
123468
|
-
type SearchCitiesByCountryResponse = paths[typeof routeName$
|
|
123469
|
-
type SearchCitiesByCountryProps = paths[typeof routeName$
|
|
123627
|
+
declare const routeName$6V = "/v1/api/address/cities";
|
|
123628
|
+
type SearchCitiesByCountryQueryParams = paths[typeof routeName$6V]['get']['parameters']['query'];
|
|
123629
|
+
type SearchCitiesByCountryResponse = paths[typeof routeName$6V]['get']['responses'][200]['content']['application/json'];
|
|
123630
|
+
type SearchCitiesByCountryProps = paths[typeof routeName$6V]['get']['parameters'];
|
|
123470
123631
|
declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
|
|
123471
123632
|
|
|
123472
|
-
declare const routeName$
|
|
123473
|
-
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$
|
|
123474
|
-
type GetAddressInfoFreemiumResponse = paths[typeof routeName$
|
|
123475
|
-
type GetAddressInfoFreemiumProps = paths[typeof routeName$
|
|
123633
|
+
declare const routeName$6U = "/v1/api/address/info/freemium";
|
|
123634
|
+
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
|
|
123635
|
+
type GetAddressInfoFreemiumResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
|
|
123636
|
+
type GetAddressInfoFreemiumProps = paths[typeof routeName$6U]['get']['parameters'];
|
|
123476
123637
|
declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
|
|
123477
123638
|
|
|
123478
|
-
declare const routeName$
|
|
123479
|
-
type GetAddressInfoQueryParams = paths[typeof routeName$
|
|
123480
|
-
type GetAddressInfoResponse = paths[typeof routeName$
|
|
123481
|
-
type GetAddressInfoProps = paths[typeof routeName$
|
|
123639
|
+
declare const routeName$6T = "/v1/api/address/info/premium";
|
|
123640
|
+
type GetAddressInfoQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
|
|
123641
|
+
type GetAddressInfoResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
|
|
123642
|
+
type GetAddressInfoProps = paths[typeof routeName$6T]['get']['parameters'];
|
|
123482
123643
|
declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
|
|
123483
123644
|
|
|
123484
|
-
declare const routeName$
|
|
123485
|
-
type SearchAddressesByCountryQueryParams = paths[typeof routeName$
|
|
123486
|
-
type SearchAddressesByCountryResponse = paths[typeof routeName$
|
|
123487
|
-
type SearchAddressesByCountryProps = paths[typeof routeName$
|
|
123645
|
+
declare const routeName$6S = "/v1/api/address/search";
|
|
123646
|
+
type SearchAddressesByCountryQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
|
|
123647
|
+
type SearchAddressesByCountryResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
|
|
123648
|
+
type SearchAddressesByCountryProps = paths[typeof routeName$6S]['get']['parameters'];
|
|
123488
123649
|
declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
|
|
123489
123650
|
|
|
123490
|
-
declare const routeName$
|
|
123491
|
-
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$
|
|
123492
|
-
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$
|
|
123493
|
-
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$
|
|
123651
|
+
declare const routeName$6R = "/v1/api/address/streets";
|
|
123652
|
+
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
|
|
123653
|
+
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
|
|
123654
|
+
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$6R]['get']['parameters'];
|
|
123494
123655
|
declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
|
|
123495
123656
|
|
|
123496
|
-
declare const routeName$
|
|
123497
|
-
type GetWeatherInfoQueryParams = paths[typeof routeName$
|
|
123498
|
-
type GetWeatherInfoResponse = paths[typeof routeName$
|
|
123499
|
-
type GetWeatherInfoProps = paths[typeof routeName$
|
|
123657
|
+
declare const routeName$6Q = "/v1/api/weather/info";
|
|
123658
|
+
type GetWeatherInfoQueryParams = paths[typeof routeName$6Q]['get']['parameters']['query'];
|
|
123659
|
+
type GetWeatherInfoResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
|
|
123660
|
+
type GetWeatherInfoProps = paths[typeof routeName$6Q]['get']['parameters'];
|
|
123500
123661
|
declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
|
|
123501
123662
|
|
|
123502
|
-
declare const routeName$
|
|
123503
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$
|
|
123504
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$
|
|
123505
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$
|
|
123663
|
+
declare const routeName$6P = "/v1/api/advisory-report-front-page-pdf";
|
|
123664
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$6P]['post']['requestBody']['content']['application/json'];
|
|
123665
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
|
|
123666
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
|
|
123506
123667
|
interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
123507
123668
|
body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
|
|
123508
123669
|
params: {
|
|
@@ -123511,16 +123672,16 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
|
123511
123672
|
}
|
|
123512
123673
|
declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
|
|
123513
123674
|
|
|
123514
|
-
declare const routeName$
|
|
123515
|
-
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$
|
|
123516
|
-
type GetAllAdvisoryReportsResponse = paths[typeof routeName$
|
|
123517
|
-
type GetAllAdvisoryReportsProps = paths[typeof routeName$
|
|
123675
|
+
declare const routeName$6O = "/v1/api/advisory-reports";
|
|
123676
|
+
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
|
|
123677
|
+
type GetAllAdvisoryReportsResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
|
|
123678
|
+
type GetAllAdvisoryReportsProps = paths[typeof routeName$6O]['get']['parameters'];
|
|
123518
123679
|
declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
|
|
123519
123680
|
|
|
123520
|
-
declare const routeName$
|
|
123521
|
-
type CreateAdvisoryReportBody = paths[typeof routeName$
|
|
123522
|
-
type CreateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123523
|
-
type CreateAdvisoryReportResponse = paths[typeof routeName$
|
|
123681
|
+
declare const routeName$6N = "/v1/api/advisory-reports";
|
|
123682
|
+
type CreateAdvisoryReportBody = paths[typeof routeName$6N]['post']['requestBody']['content']['application/json'];
|
|
123683
|
+
type CreateAdvisoryReportQueryParams = paths[typeof routeName$6N]['post']['parameters']['query'];
|
|
123684
|
+
type CreateAdvisoryReportResponse = paths[typeof routeName$6N]['post']['responses'][201]['content']['application/json'];
|
|
123524
123685
|
interface CreateAdvisoryReportProps {
|
|
123525
123686
|
body: CreateAdvisoryReportBody;
|
|
123526
123687
|
params: {
|
|
@@ -123529,24 +123690,24 @@ interface CreateAdvisoryReportProps {
|
|
|
123529
123690
|
}
|
|
123530
123691
|
declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
|
|
123531
123692
|
|
|
123532
|
-
declare const routeName$
|
|
123533
|
-
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$
|
|
123534
|
-
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$
|
|
123535
|
-
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$
|
|
123536
|
-
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$
|
|
123693
|
+
declare const routeName$6M = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
|
|
123694
|
+
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6M]['get']['parameters']['path'];
|
|
123695
|
+
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6M]['get']['parameters']['query'];
|
|
123696
|
+
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
|
|
123697
|
+
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6M]['get']['parameters'];
|
|
123537
123698
|
declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
|
|
123538
123699
|
|
|
123539
|
-
declare const routeName$
|
|
123540
|
-
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123541
|
-
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123542
|
-
type GetAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123543
|
-
type GetAdvisoryReportByIdProps = paths[typeof routeName$
|
|
123700
|
+
declare const routeName$6L = "/v1/api/advisory-reports/{report_id}";
|
|
123701
|
+
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
|
|
123702
|
+
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$6L]['get']['parameters']['query'];
|
|
123703
|
+
type GetAdvisoryReportByIdResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
|
|
123704
|
+
type GetAdvisoryReportByIdProps = paths[typeof routeName$6L]['get']['parameters'];
|
|
123544
123705
|
declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
|
|
123545
123706
|
|
|
123546
|
-
declare const routeName$
|
|
123547
|
-
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
123548
|
-
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
123549
|
-
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
123707
|
+
declare const routeName$6K = "/v1/api/advisory-reports/{report_id}";
|
|
123708
|
+
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$6K]['delete']['parameters']['path'];
|
|
123709
|
+
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$6K]['delete']['parameters']['query'];
|
|
123710
|
+
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$6K]['delete']['responses'][200]['content']['application/json'];
|
|
123550
123711
|
interface DeleteAdvisoryReportRevisionProps {
|
|
123551
123712
|
params: {
|
|
123552
123713
|
query: DeleteAdvisoryReportRevisionQueryParams;
|
|
@@ -123555,11 +123716,11 @@ interface DeleteAdvisoryReportRevisionProps {
|
|
|
123555
123716
|
}
|
|
123556
123717
|
declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
|
|
123557
123718
|
|
|
123558
|
-
declare const routeName$
|
|
123559
|
-
type UpdateAdvisoryReportBody = paths[typeof routeName$
|
|
123560
|
-
type UpdateAdvisoryReportPathParams = paths[typeof routeName$
|
|
123561
|
-
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123562
|
-
type UpdateAdvisoryReportResponse = paths[typeof routeName$
|
|
123719
|
+
declare const routeName$6J = "/v1/api/advisory-reports/{report_id}";
|
|
123720
|
+
type UpdateAdvisoryReportBody = paths[typeof routeName$6J]['patch']['requestBody']['content']['application/json'];
|
|
123721
|
+
type UpdateAdvisoryReportPathParams = paths[typeof routeName$6J]['patch']['parameters']['path'];
|
|
123722
|
+
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$6J]['patch']['parameters']['query'];
|
|
123723
|
+
type UpdateAdvisoryReportResponse = paths[typeof routeName$6J]['patch']['responses'][200]['content']['application/json'];
|
|
123563
123724
|
interface UpdateAdvisoryReportProps {
|
|
123564
123725
|
body: UpdateAdvisoryReportBody;
|
|
123565
123726
|
params: {
|
|
@@ -123569,11 +123730,11 @@ interface UpdateAdvisoryReportProps {
|
|
|
123569
123730
|
}
|
|
123570
123731
|
declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
|
|
123571
123732
|
|
|
123572
|
-
declare const routeName$
|
|
123573
|
-
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$
|
|
123574
|
-
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$
|
|
123575
|
-
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123576
|
-
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$
|
|
123733
|
+
declare const routeName$6I = "/v1/api/advisory-reports/{report_id}/acceptances";
|
|
123734
|
+
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
|
|
123735
|
+
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
|
|
123736
|
+
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
|
|
123737
|
+
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
|
|
123577
123738
|
interface AcceptOrRejectAnAdvisoryReportProps {
|
|
123578
123739
|
body: AcceptOrRejectAnAdvisoryReportBody;
|
|
123579
123740
|
params: {
|
|
@@ -123583,11 +123744,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
|
|
|
123583
123744
|
}
|
|
123584
123745
|
declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
|
|
123585
123746
|
|
|
123586
|
-
declare const routeName$
|
|
123587
|
-
type PutClausesForReportBody = paths[typeof routeName$
|
|
123588
|
-
type PutClausesForReportPathParams = paths[typeof routeName$
|
|
123589
|
-
type PutClausesForReportQueryParams = paths[typeof routeName$
|
|
123590
|
-
type PutClausesForReportResponse = paths[typeof routeName$
|
|
123747
|
+
declare const routeName$6H = "/v1/api/advisory-reports/{report_id}/clauses";
|
|
123748
|
+
type PutClausesForReportBody = paths[typeof routeName$6H]['put']['requestBody']['content']['application/json'];
|
|
123749
|
+
type PutClausesForReportPathParams = paths[typeof routeName$6H]['put']['parameters']['path'];
|
|
123750
|
+
type PutClausesForReportQueryParams = paths[typeof routeName$6H]['put']['parameters']['query'];
|
|
123751
|
+
type PutClausesForReportResponse = paths[typeof routeName$6H]['put']['responses'][200]['content']['application/json'];
|
|
123591
123752
|
interface PutClausesForReportProps {
|
|
123592
123753
|
body: PutClausesForReportBody;
|
|
123593
123754
|
params: {
|
|
@@ -123597,11 +123758,11 @@ interface PutClausesForReportProps {
|
|
|
123597
123758
|
}
|
|
123598
123759
|
declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
|
|
123599
123760
|
|
|
123600
|
-
declare const routeName$
|
|
123601
|
-
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$
|
|
123602
|
-
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$
|
|
123603
|
-
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123604
|
-
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$
|
|
123761
|
+
declare const routeName$6G = "/v1/api/advisory-reports/{report_id}/conversations";
|
|
123762
|
+
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$6G]['post']['requestBody']['content']['application/json'];
|
|
123763
|
+
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$6G]['post']['parameters']['path'];
|
|
123764
|
+
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
|
|
123765
|
+
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$6G]['post']['responses'][201]['content']['application/json'];
|
|
123605
123766
|
interface LinkConversationToAdvisoryReportProps {
|
|
123606
123767
|
body: LinkConversationToAdvisoryReportBody;
|
|
123607
123768
|
params: {
|
|
@@ -123611,10 +123772,10 @@ interface LinkConversationToAdvisoryReportProps {
|
|
|
123611
123772
|
}
|
|
123612
123773
|
declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
|
|
123613
123774
|
|
|
123614
|
-
declare const routeName$
|
|
123615
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123616
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123617
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123775
|
+
declare const routeName$6F = "/v1/api/advisory-reports/{report_id}/docx";
|
|
123776
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$6F]['post']['parameters']['path'];
|
|
123777
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
|
|
123778
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$6F]['post']['responses'][200]['content']['application/json'];
|
|
123618
123779
|
interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
123619
123780
|
params: {
|
|
123620
123781
|
query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
|
|
@@ -123623,11 +123784,11 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
|
123623
123784
|
}
|
|
123624
123785
|
declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
|
|
123625
123786
|
|
|
123626
|
-
declare const routeName$
|
|
123627
|
-
type SendAdvisoryReportAsMailBody = paths[typeof routeName$
|
|
123628
|
-
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$
|
|
123629
|
-
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$
|
|
123630
|
-
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$
|
|
123787
|
+
declare const routeName$6E = "/v1/api/advisory-reports/{report_id}/email-inquiries";
|
|
123788
|
+
type SendAdvisoryReportAsMailBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
|
|
123789
|
+
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$6E]['post']['parameters']['path'];
|
|
123790
|
+
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
|
|
123791
|
+
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$6E]['post']['responses'][201]['content']['application/json'];
|
|
123631
123792
|
interface SendAdvisoryReportAsMailProps {
|
|
123632
123793
|
body: SendAdvisoryReportAsMailBody;
|
|
123633
123794
|
params: {
|
|
@@ -123637,24 +123798,24 @@ interface SendAdvisoryReportAsMailProps {
|
|
|
123637
123798
|
}
|
|
123638
123799
|
declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
|
|
123639
123800
|
|
|
123640
|
-
declare const routeName$
|
|
123641
|
-
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
123642
|
-
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
123643
|
-
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
123644
|
-
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
123801
|
+
declare const routeName$6D = "/v1/api/advisory-reports/{report_id}/events";
|
|
123802
|
+
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
|
|
123803
|
+
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
|
|
123804
|
+
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
|
|
123805
|
+
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$6D]['get']['parameters'];
|
|
123645
123806
|
declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
|
|
123646
123807
|
|
|
123647
|
-
declare const routeName$
|
|
123648
|
-
type GetAdvisoryReportExportOptionsPathParams = paths[typeof routeName$
|
|
123649
|
-
type GetAdvisoryReportExportOptionsResponse = paths[typeof routeName$
|
|
123650
|
-
type GetAdvisoryReportExportOptionsProps = paths[typeof routeName$
|
|
123808
|
+
declare const routeName$6C = "/v1/api/advisory-reports/{report_id}/export-options";
|
|
123809
|
+
type GetAdvisoryReportExportOptionsPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
|
|
123810
|
+
type GetAdvisoryReportExportOptionsResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
|
|
123811
|
+
type GetAdvisoryReportExportOptionsProps = paths[typeof routeName$6C]['get']['parameters'];
|
|
123651
123812
|
declare const getAdvisoryReportExportOptions: (props: GetAdvisoryReportExportOptionsProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportExportOptionsResponse>;
|
|
123652
123813
|
|
|
123653
|
-
declare const routeName$
|
|
123654
|
-
type ExportAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123655
|
-
type ExportAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123656
|
-
type ExportAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123657
|
-
type ExportAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123814
|
+
declare const routeName$6B = "/v1/api/advisory-reports/{report_id}/exports";
|
|
123815
|
+
type ExportAdvisoryReportByIdBody = paths[typeof routeName$6B]['post']['requestBody']['content']['application/json'];
|
|
123816
|
+
type ExportAdvisoryReportByIdPathParams = paths[typeof routeName$6B]['post']['parameters']['path'];
|
|
123817
|
+
type ExportAdvisoryReportByIdQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
|
|
123818
|
+
type ExportAdvisoryReportByIdResponse = paths[typeof routeName$6B]['post']['responses'][201]['content']['application/json'];
|
|
123658
123819
|
interface ExportAdvisoryReportByIdProps {
|
|
123659
123820
|
body: ExportAdvisoryReportByIdBody;
|
|
123660
123821
|
params: {
|
|
@@ -123664,11 +123825,11 @@ interface ExportAdvisoryReportByIdProps {
|
|
|
123664
123825
|
}
|
|
123665
123826
|
declare const exportAdvisoryReportById: (props: ExportAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<ExportAdvisoryReportByIdResponse>;
|
|
123666
123827
|
|
|
123667
|
-
declare const routeName$
|
|
123668
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123669
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123670
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123671
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123828
|
+
declare const routeName$6A = "/v1/api/advisory-reports/{report_id}/insurance-policies";
|
|
123829
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6A]['put']['requestBody']['content']['application/json'];
|
|
123830
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6A]['put']['parameters']['path'];
|
|
123831
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6A]['put']['parameters']['query'];
|
|
123832
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6A]['put']['responses'][200]['content']['application/json'];
|
|
123672
123833
|
interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
123673
123834
|
body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
|
|
123674
123835
|
params: {
|
|
@@ -123678,11 +123839,11 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
123678
123839
|
}
|
|
123679
123840
|
declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
123680
123841
|
|
|
123681
|
-
declare const routeName$
|
|
123682
|
-
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$
|
|
123683
|
-
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$
|
|
123684
|
-
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123685
|
-
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$
|
|
123842
|
+
declare const routeName$6z = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
|
|
123843
|
+
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6z]['put']['requestBody']['content']['application/json'];
|
|
123844
|
+
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6z]['put']['parameters']['path'];
|
|
123845
|
+
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6z]['put']['parameters']['query'];
|
|
123846
|
+
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6z]['put']['responses'][200]['content']['application/json'];
|
|
123686
123847
|
interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
123687
123848
|
body: OrderInsurancePolciesOfAdvisoryReportBody;
|
|
123688
123849
|
params: {
|
|
@@ -123692,10 +123853,10 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
|
123692
123853
|
}
|
|
123693
123854
|
declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
|
|
123694
123855
|
|
|
123695
|
-
declare const routeName$
|
|
123696
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123697
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123698
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123856
|
+
declare const routeName$6y = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
|
|
123857
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6y]['delete']['parameters']['path'];
|
|
123858
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6y]['delete']['parameters']['query'];
|
|
123859
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6y]['delete']['responses'][200]['content']['application/json'];
|
|
123699
123860
|
interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
123700
123861
|
params: {
|
|
123701
123862
|
query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
|
|
@@ -123704,17 +123865,17 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
123704
123865
|
}
|
|
123705
123866
|
declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
123706
123867
|
|
|
123707
|
-
declare const routeName$
|
|
123708
|
-
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123709
|
-
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123710
|
-
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123711
|
-
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$
|
|
123868
|
+
declare const routeName$6x = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
123869
|
+
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6x]['get']['parameters']['path'];
|
|
123870
|
+
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
|
|
123871
|
+
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6x]['get']['responses'][307]['content']['application/json'];
|
|
123872
|
+
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$6x]['get']['parameters'];
|
|
123712
123873
|
declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
|
|
123713
123874
|
|
|
123714
|
-
declare const routeName$
|
|
123715
|
-
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123716
|
-
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123717
|
-
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123875
|
+
declare const routeName$6w = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
123876
|
+
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
|
|
123877
|
+
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
|
|
123878
|
+
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6w]['post']['responses'][200]['content']['application/json'];
|
|
123718
123879
|
interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
123719
123880
|
params: {
|
|
123720
123881
|
query: GeneratePdfOfAdvisoryReportByIdQueryParams;
|
|
@@ -123723,9 +123884,9 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
|
123723
123884
|
}
|
|
123724
123885
|
declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
|
|
123725
123886
|
|
|
123726
|
-
declare const routeName$
|
|
123727
|
-
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$
|
|
123728
|
-
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$
|
|
123887
|
+
declare const routeName$6v = "/v1/api/advisory-reports/{report_id}/personalise-advices";
|
|
123888
|
+
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$6v]['post']['parameters']['path'];
|
|
123889
|
+
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$6v]['post']['responses'][200]['content']['application/json'];
|
|
123729
123890
|
interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
123730
123891
|
params: {
|
|
123731
123892
|
path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
|
|
@@ -123733,11 +123894,11 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
|
123733
123894
|
}
|
|
123734
123895
|
declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
|
|
123735
123896
|
|
|
123736
|
-
declare const routeName$
|
|
123737
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123738
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123739
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123740
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123897
|
+
declare const routeName$6u = "/v1/api/advisory-reports/{report_id}/policy-packages";
|
|
123898
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6u]['put']['requestBody']['content']['application/json'];
|
|
123899
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6u]['put']['parameters']['path'];
|
|
123900
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6u]['put']['parameters']['query'];
|
|
123901
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6u]['put']['responses'][200]['content']['application/json'];
|
|
123741
123902
|
interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
123742
123903
|
body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
|
|
123743
123904
|
params: {
|
|
@@ -123747,11 +123908,11 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
|
123747
123908
|
}
|
|
123748
123909
|
declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
|
|
123749
123910
|
|
|
123750
|
-
declare const routeName$
|
|
123751
|
-
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$
|
|
123752
|
-
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
123753
|
-
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
123754
|
-
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
123911
|
+
declare const routeName$6t = "/v1/api/advisory-reports/{report_id}/revisions";
|
|
123912
|
+
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$6t]['post']['requestBody']['content']['application/json'];
|
|
123913
|
+
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$6t]['post']['parameters']['path'];
|
|
123914
|
+
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$6t]['post']['parameters']['query'];
|
|
123915
|
+
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$6t]['post']['responses'][201]['content']['application/json'];
|
|
123755
123916
|
interface CreateAdvisoryReportRevisionProps {
|
|
123756
123917
|
body: CreateAdvisoryReportRevisionBody;
|
|
123757
123918
|
params: {
|
|
@@ -123761,11 +123922,11 @@ interface CreateAdvisoryReportRevisionProps {
|
|
|
123761
123922
|
}
|
|
123762
123923
|
declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
|
|
123763
123924
|
|
|
123764
|
-
declare const routeName$
|
|
123765
|
-
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123766
|
-
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123767
|
-
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123768
|
-
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123925
|
+
declare const routeName$6s = "/v1/api/advisory-reports/{report_id}/risk-domains";
|
|
123926
|
+
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$6s]['post']['requestBody']['content']['application/json'];
|
|
123927
|
+
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6s]['post']['parameters']['path'];
|
|
123928
|
+
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6s]['post']['parameters']['query'];
|
|
123929
|
+
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6s]['post']['responses'][201]['content']['application/json'];
|
|
123769
123930
|
interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
123770
123931
|
body: CreateRiskDomainForAdvisoryReportByIdBody;
|
|
123771
123932
|
params: {
|
|
@@ -123775,10 +123936,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
|
123775
123936
|
}
|
|
123776
123937
|
declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
|
|
123777
123938
|
|
|
123778
|
-
declare const routeName$
|
|
123779
|
-
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123780
|
-
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123781
|
-
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123939
|
+
declare const routeName$6r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
|
|
123940
|
+
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6r]['delete']['parameters']['path'];
|
|
123941
|
+
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6r]['delete']['parameters']['query'];
|
|
123942
|
+
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6r]['delete']['responses'][200]['content']['application/json'];
|
|
123782
123943
|
interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
123783
123944
|
params: {
|
|
123784
123945
|
query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
|
|
@@ -123787,11 +123948,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
|
123787
123948
|
}
|
|
123788
123949
|
declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
|
|
123789
123950
|
|
|
123790
|
-
declare const routeName$
|
|
123791
|
-
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123792
|
-
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123793
|
-
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123794
|
-
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123951
|
+
declare const routeName$6q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
|
|
123952
|
+
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
|
|
123953
|
+
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
|
|
123954
|
+
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
|
|
123955
|
+
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
|
|
123795
123956
|
interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
123796
123957
|
body: CreateRiskDomainActionForAdvisoryReportByIdBody;
|
|
123797
123958
|
params: {
|
|
@@ -123801,10 +123962,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123801
123962
|
}
|
|
123802
123963
|
declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123803
123964
|
|
|
123804
|
-
declare const routeName$
|
|
123805
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123806
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123807
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123965
|
+
declare const routeName$6p = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
123966
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6p]['delete']['parameters']['path'];
|
|
123967
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6p]['delete']['parameters']['query'];
|
|
123968
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6p]['delete']['responses'][200]['content']['application/json'];
|
|
123808
123969
|
interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
123809
123970
|
params: {
|
|
123810
123971
|
query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
|
|
@@ -123813,11 +123974,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123813
123974
|
}
|
|
123814
123975
|
declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123815
123976
|
|
|
123816
|
-
declare const routeName$
|
|
123817
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123818
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123819
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123820
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123977
|
+
declare const routeName$6o = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
123978
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6o]['patch']['requestBody']['content']['application/json'];
|
|
123979
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6o]['patch']['parameters']['path'];
|
|
123980
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6o]['patch']['parameters']['query'];
|
|
123981
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6o]['patch']['responses'][200]['content']['application/json'];
|
|
123821
123982
|
interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
123822
123983
|
body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
|
|
123823
123984
|
params: {
|
|
@@ -123827,11 +123988,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123827
123988
|
}
|
|
123828
123989
|
declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123829
123990
|
|
|
123830
|
-
declare const routeName$
|
|
123831
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123832
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123833
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123834
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123991
|
+
declare const routeName$6n = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
|
|
123992
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6n]['post']['requestBody']['content']['application/json'];
|
|
123993
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
|
|
123994
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
|
|
123995
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6n]['post']['responses'][201]['content']['application/json'];
|
|
123835
123996
|
interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123836
123997
|
body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
123837
123998
|
params: {
|
|
@@ -123841,10 +124002,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123841
124002
|
}
|
|
123842
124003
|
declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123843
124004
|
|
|
123844
|
-
declare const routeName$
|
|
123845
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123846
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123847
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
124005
|
+
declare const routeName$6m = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
124006
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6m]['delete']['parameters']['path'];
|
|
124007
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6m]['delete']['parameters']['query'];
|
|
124008
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6m]['delete']['responses'][200]['content']['application/json'];
|
|
123848
124009
|
interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123849
124010
|
params: {
|
|
123850
124011
|
query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
|
|
@@ -123853,11 +124014,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123853
124014
|
}
|
|
123854
124015
|
declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123855
124016
|
|
|
123856
|
-
declare const routeName$
|
|
123857
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123858
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123859
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123860
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
124017
|
+
declare const routeName$6l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
124018
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6l]['patch']['requestBody']['content']['application/json'];
|
|
124019
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6l]['patch']['parameters']['path'];
|
|
124020
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6l]['patch']['parameters']['query'];
|
|
124021
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6l]['patch']['responses'][201]['content']['application/json'];
|
|
123861
124022
|
interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123862
124023
|
body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
123863
124024
|
params: {
|
|
@@ -123867,11 +124028,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123867
124028
|
}
|
|
123868
124029
|
declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123869
124030
|
|
|
123870
|
-
declare const routeName$
|
|
123871
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
123872
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123873
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123874
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
124031
|
+
declare const routeName$6k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
|
|
124032
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6k]['put']['requestBody']['content']['application/json'];
|
|
124033
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6k]['put']['parameters']['path'];
|
|
124034
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6k]['put']['parameters']['query'];
|
|
124035
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6k]['put']['responses'][201]['content']['application/json'];
|
|
123875
124036
|
interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
123876
124037
|
body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
|
|
123877
124038
|
params: {
|
|
@@ -123881,18 +124042,18 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
|
123881
124042
|
}
|
|
123882
124043
|
declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
|
|
123883
124044
|
|
|
123884
|
-
declare const routeName$
|
|
123885
|
-
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
123886
|
-
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
123887
|
-
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
123888
|
-
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
124045
|
+
declare const routeName$6j = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
124046
|
+
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
|
|
124047
|
+
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$6j]['get']['parameters']['query'];
|
|
124048
|
+
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
|
|
124049
|
+
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$6j]['get']['parameters'];
|
|
123889
124050
|
declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
|
|
123890
124051
|
|
|
123891
|
-
declare const routeName$
|
|
123892
|
-
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$
|
|
123893
|
-
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$
|
|
123894
|
-
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$
|
|
123895
|
-
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$
|
|
124052
|
+
declare const routeName$6i = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
124053
|
+
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$6i]['put']['requestBody']['content']['application/json'];
|
|
124054
|
+
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$6i]['put']['parameters']['path'];
|
|
124055
|
+
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$6i]['put']['parameters']['query'];
|
|
124056
|
+
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$6i]['put']['responses'][200]['content']['application/json'];
|
|
123896
124057
|
interface CreateAdvisoryReportStepSettingsProps {
|
|
123897
124058
|
body: CreateAdvisoryReportStepSettingsBody;
|
|
123898
124059
|
params: {
|
|
@@ -123902,10 +124063,10 @@ interface CreateAdvisoryReportStepSettingsProps {
|
|
|
123902
124063
|
}
|
|
123903
124064
|
declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
|
|
123904
124065
|
|
|
123905
|
-
declare const routeName$
|
|
123906
|
-
type DeleteAdvisoryReportPathParams = paths[typeof routeName$
|
|
123907
|
-
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123908
|
-
type DeleteAdvisoryReportResponse = paths[typeof routeName$
|
|
124066
|
+
declare const routeName$6h = "/v2/api/advisory-reports/{report_id}";
|
|
124067
|
+
type DeleteAdvisoryReportPathParams = paths[typeof routeName$6h]['delete']['parameters']['path'];
|
|
124068
|
+
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$6h]['delete']['parameters']['query'];
|
|
124069
|
+
type DeleteAdvisoryReportResponse = paths[typeof routeName$6h]['delete']['responses'][200]['content']['application/json'];
|
|
123909
124070
|
interface DeleteAdvisoryReportProps {
|
|
123910
124071
|
params: {
|
|
123911
124072
|
query: DeleteAdvisoryReportQueryParams;
|
|
@@ -123914,11 +124075,11 @@ interface DeleteAdvisoryReportProps {
|
|
|
123914
124075
|
}
|
|
123915
124076
|
declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
|
|
123916
124077
|
|
|
123917
|
-
declare const routeName$
|
|
123918
|
-
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$
|
|
123919
|
-
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$
|
|
123920
|
-
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$
|
|
123921
|
-
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$
|
|
124078
|
+
declare const routeName$6g = "/v2/api/advisory-reports/{report_id}/revisions";
|
|
124079
|
+
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$6g]['post']['requestBody']['content']['application/json'];
|
|
124080
|
+
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
|
|
124081
|
+
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
|
|
124082
|
+
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
|
|
123922
124083
|
interface CreateAdvisoryReportRevisionV2Props {
|
|
123923
124084
|
body: CreateAdvisoryReportRevisionV2Body;
|
|
123924
124085
|
params: {
|
|
@@ -123928,36 +124089,36 @@ interface CreateAdvisoryReportRevisionV2Props {
|
|
|
123928
124089
|
}
|
|
123929
124090
|
declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
|
|
123930
124091
|
|
|
123931
|
-
declare const routeName$
|
|
123932
|
-
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$
|
|
124092
|
+
declare const routeName$6f = "/v1/api/affiliations";
|
|
124093
|
+
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
|
|
123933
124094
|
declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
|
|
123934
124095
|
|
|
123935
|
-
declare const routeName$
|
|
123936
|
-
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$
|
|
123937
|
-
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$
|
|
123938
|
-
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$
|
|
124096
|
+
declare const routeName$6e = "/v1/api/anva-producers/{anva_producer_id}";
|
|
124097
|
+
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6e]['get']['parameters']['path'];
|
|
124098
|
+
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6e]['get']['responses'][200]['content']['application/json'];
|
|
124099
|
+
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6e]['get']['parameters'];
|
|
123939
124100
|
declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
|
|
123940
124101
|
|
|
123941
|
-
declare const routeName$
|
|
123942
|
-
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$
|
|
123943
|
-
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$
|
|
123944
|
-
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$
|
|
124102
|
+
declare const routeName$6d = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
|
|
124103
|
+
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6d]['get']['parameters']['path'];
|
|
124104
|
+
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6d]['get']['responses'][200]['content']['application/json'];
|
|
124105
|
+
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6d]['get']['parameters'];
|
|
123945
124106
|
declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
|
|
123946
124107
|
|
|
123947
|
-
declare const routeName$
|
|
123948
|
-
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$
|
|
124108
|
+
declare const routeName$6c = "/v1/api/brokers/me";
|
|
124109
|
+
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6c]['get']['responses'][200]['content']['application/json'];
|
|
123949
124110
|
declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
|
|
123950
124111
|
|
|
123951
|
-
declare const routeName$
|
|
123952
|
-
type GetTheBrokerByIdPathParams = paths[typeof routeName$
|
|
123953
|
-
type GetTheBrokerByIdResponse = paths[typeof routeName$
|
|
123954
|
-
type GetTheBrokerByIdProps = paths[typeof routeName$
|
|
124112
|
+
declare const routeName$6b = "/v1/api/brokers/{broker_id}";
|
|
124113
|
+
type GetTheBrokerByIdPathParams = paths[typeof routeName$6b]['get']['parameters']['path'];
|
|
124114
|
+
type GetTheBrokerByIdResponse = paths[typeof routeName$6b]['get']['responses'][200]['content']['application/json'];
|
|
124115
|
+
type GetTheBrokerByIdProps = paths[typeof routeName$6b]['get']['parameters'];
|
|
123955
124116
|
declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
|
|
123956
124117
|
|
|
123957
|
-
declare const routeName$
|
|
123958
|
-
type UpdateBrokerByBrokerBody = paths[typeof routeName$
|
|
123959
|
-
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$
|
|
123960
|
-
type UpdateBrokerByBrokerResponse = paths[typeof routeName$
|
|
124118
|
+
declare const routeName$6a = "/v1/api/brokers/{broker_id}";
|
|
124119
|
+
type UpdateBrokerByBrokerBody = paths[typeof routeName$6a]['patch']['requestBody']['content']['application/json'];
|
|
124120
|
+
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6a]['patch']['parameters']['path'];
|
|
124121
|
+
type UpdateBrokerByBrokerResponse = paths[typeof routeName$6a]['patch']['responses'][200]['content']['application/json'];
|
|
123961
124122
|
interface UpdateBrokerByBrokerProps {
|
|
123962
124123
|
body: UpdateBrokerByBrokerBody;
|
|
123963
124124
|
params: {
|
|
@@ -123966,23 +124127,23 @@ interface UpdateBrokerByBrokerProps {
|
|
|
123966
124127
|
}
|
|
123967
124128
|
declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
|
|
123968
124129
|
|
|
123969
|
-
declare const routeName$
|
|
123970
|
-
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$
|
|
123971
|
-
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$
|
|
123972
|
-
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$
|
|
123973
|
-
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$
|
|
124130
|
+
declare const routeName$69 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
|
|
124131
|
+
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
|
|
124132
|
+
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
|
|
124133
|
+
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
|
|
124134
|
+
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$69]['get']['parameters'];
|
|
123974
124135
|
declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
|
|
123975
124136
|
|
|
123976
|
-
declare const routeName$
|
|
123977
|
-
type GetBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
123978
|
-
type GetBrokerIntegrationsResponse = paths[typeof routeName$
|
|
123979
|
-
type GetBrokerIntegrationsProps = paths[typeof routeName$
|
|
124137
|
+
declare const routeName$68 = "/v1/api/brokers/{broker_id}/integrations";
|
|
124138
|
+
type GetBrokerIntegrationsPathParams = paths[typeof routeName$68]['get']['parameters']['path'];
|
|
124139
|
+
type GetBrokerIntegrationsResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
|
|
124140
|
+
type GetBrokerIntegrationsProps = paths[typeof routeName$68]['get']['parameters'];
|
|
123980
124141
|
declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
|
|
123981
124142
|
|
|
123982
|
-
declare const routeName$
|
|
123983
|
-
type UpdateBrokerIntegrationsBody = paths[typeof routeName$
|
|
123984
|
-
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
123985
|
-
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$
|
|
124143
|
+
declare const routeName$67 = "/v1/api/brokers/{broker_id}/integrations";
|
|
124144
|
+
type UpdateBrokerIntegrationsBody = paths[typeof routeName$67]['patch']['requestBody']['content']['application/json'];
|
|
124145
|
+
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
|
|
124146
|
+
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
|
|
123986
124147
|
interface UpdateBrokerIntegrationsProps {
|
|
123987
124148
|
body: UpdateBrokerIntegrationsBody;
|
|
123988
124149
|
params: {
|
|
@@ -123991,16 +124152,16 @@ interface UpdateBrokerIntegrationsProps {
|
|
|
123991
124152
|
}
|
|
123992
124153
|
declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
|
|
123993
124154
|
|
|
123994
|
-
declare const routeName$
|
|
123995
|
-
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
123996
|
-
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
123997
|
-
type GetAnvaClosingQuestionsProps = paths[typeof routeName$
|
|
124155
|
+
declare const routeName$66 = "/v1/api/anvaflows/closing-questions";
|
|
124156
|
+
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$66]['get']['parameters']['query'];
|
|
124157
|
+
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$66]['get']['responses'][200]['content']['application/json'];
|
|
124158
|
+
type GetAnvaClosingQuestionsProps = paths[typeof routeName$66]['get']['parameters'];
|
|
123998
124159
|
declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
|
|
123999
124160
|
|
|
124000
|
-
declare const routeName$
|
|
124001
|
-
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$
|
|
124002
|
-
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
124003
|
-
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
124161
|
+
declare const routeName$65 = "/v1/api/anvaflows/closing-questions";
|
|
124162
|
+
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$65]['put']['requestBody']['content']['application/json'];
|
|
124163
|
+
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$65]['put']['parameters']['query'];
|
|
124164
|
+
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$65]['put']['responses'][200]['content']['application/json'];
|
|
124004
124165
|
interface UpsertAnvaClosingQuestionsProps {
|
|
124005
124166
|
body: UpsertAnvaClosingQuestionsBody;
|
|
124006
124167
|
params: {
|
|
@@ -124009,10 +124170,10 @@ interface UpsertAnvaClosingQuestionsProps {
|
|
|
124009
124170
|
}
|
|
124010
124171
|
declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
|
|
124011
124172
|
|
|
124012
|
-
declare const routeName$
|
|
124013
|
-
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$
|
|
124014
|
-
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
124015
|
-
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
124173
|
+
declare const routeName$64 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
|
|
124174
|
+
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
|
|
124175
|
+
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
|
|
124176
|
+
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
|
|
124016
124177
|
interface DeleteAnvaClosingQuestionsProps {
|
|
124017
124178
|
params: {
|
|
124018
124179
|
query: DeleteAnvaClosingQuestionsQueryParams;
|
|
@@ -124021,52 +124182,52 @@ interface DeleteAnvaClosingQuestionsProps {
|
|
|
124021
124182
|
}
|
|
124022
124183
|
declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
|
|
124023
124184
|
|
|
124024
|
-
declare const routeName$
|
|
124025
|
-
type GetAnvaLabelsQueryParams = paths[typeof routeName$
|
|
124026
|
-
type GetAnvaLabelsResponse = paths[typeof routeName$
|
|
124027
|
-
type GetAnvaLabelsProps = paths[typeof routeName$
|
|
124185
|
+
declare const routeName$63 = "/v1/api/anvaflows/labels";
|
|
124186
|
+
type GetAnvaLabelsQueryParams = paths[typeof routeName$63]['get']['parameters']['query'];
|
|
124187
|
+
type GetAnvaLabelsResponse = paths[typeof routeName$63]['get']['responses'][200]['content']['application/json'];
|
|
124188
|
+
type GetAnvaLabelsProps = paths[typeof routeName$63]['get']['parameters'];
|
|
124028
124189
|
declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
|
|
124029
124190
|
|
|
124030
|
-
declare const routeName$
|
|
124031
|
-
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$
|
|
124032
|
-
type GetAnvaMutationReasonsResponse = paths[typeof routeName$
|
|
124033
|
-
type GetAnvaMutationReasonsProps = paths[typeof routeName$
|
|
124191
|
+
declare const routeName$62 = "/v1/api/anvaflows/mutation-reasons";
|
|
124192
|
+
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
|
|
124193
|
+
type GetAnvaMutationReasonsResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
|
|
124194
|
+
type GetAnvaMutationReasonsProps = paths[typeof routeName$62]['get']['parameters'];
|
|
124034
124195
|
declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
|
|
124035
124196
|
|
|
124036
|
-
declare const routeName$
|
|
124037
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$
|
|
124038
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$
|
|
124039
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$
|
|
124197
|
+
declare const routeName$61 = "/v1/api/anvaflows/supported-adn-coverages";
|
|
124198
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
|
|
124199
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
|
|
124200
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$61]['get']['parameters'];
|
|
124040
124201
|
declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
|
|
124041
124202
|
|
|
124042
|
-
declare const routeName$
|
|
124043
|
-
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$
|
|
124044
|
-
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$
|
|
124045
|
-
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$
|
|
124203
|
+
declare const routeName$60 = "/v1/api/anvaflows/supported-coverages";
|
|
124204
|
+
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
|
|
124205
|
+
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
|
|
124206
|
+
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$60]['get']['parameters'];
|
|
124046
124207
|
declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
|
|
124047
124208
|
|
|
124048
|
-
declare const routeName$
|
|
124049
|
-
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
124050
|
-
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$
|
|
124051
|
-
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$
|
|
124209
|
+
declare const routeName$5$ = "/v1/api/anvaflows/supported-insurance-companies";
|
|
124210
|
+
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
|
|
124211
|
+
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
|
|
124212
|
+
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$5$]['get']['parameters'];
|
|
124052
124213
|
declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
|
|
124053
124214
|
|
|
124054
|
-
declare const routeName$
|
|
124055
|
-
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$
|
|
124056
|
-
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$
|
|
124057
|
-
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$
|
|
124215
|
+
declare const routeName$5_ = "/v1/api/anvaflows/supported-insurances";
|
|
124216
|
+
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
|
|
124217
|
+
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
|
|
124218
|
+
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$5_]['get']['parameters'];
|
|
124058
124219
|
declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
|
|
124059
124220
|
|
|
124060
|
-
declare const routeName$
|
|
124061
|
-
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
124062
|
-
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$
|
|
124063
|
-
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$
|
|
124221
|
+
declare const routeName$5Z = "/v1/api/anvaflows/supported-tags";
|
|
124222
|
+
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
|
|
124223
|
+
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
|
|
124224
|
+
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$5Z]['get']['parameters'];
|
|
124064
124225
|
declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
|
|
124065
124226
|
|
|
124066
|
-
declare const routeName$
|
|
124067
|
-
type CreateAnvaflowTagsBody = paths[typeof routeName$
|
|
124068
|
-
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
124069
|
-
type CreateAnvaflowTagsResponse = paths[typeof routeName$
|
|
124227
|
+
declare const routeName$5Y = "/v1/api/anvaflows/supported-tags";
|
|
124228
|
+
type CreateAnvaflowTagsBody = paths[typeof routeName$5Y]['put']['requestBody']['content']['application/json'];
|
|
124229
|
+
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$5Y]['put']['parameters']['query'];
|
|
124230
|
+
type CreateAnvaflowTagsResponse = paths[typeof routeName$5Y]['put']['responses'][200]['content']['application/json'];
|
|
124070
124231
|
interface CreateAnvaflowTagsProps {
|
|
124071
124232
|
body: CreateAnvaflowTagsBody;
|
|
124072
124233
|
params: {
|
|
@@ -124075,11 +124236,11 @@ interface CreateAnvaflowTagsProps {
|
|
|
124075
124236
|
}
|
|
124076
124237
|
declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
|
|
124077
124238
|
|
|
124078
|
-
declare const routeName$
|
|
124079
|
-
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
124080
|
-
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
124081
|
-
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
124082
|
-
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
124239
|
+
declare const routeName$5X = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
124240
|
+
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$5X]['post']['requestBody']['content']['application/json'];
|
|
124241
|
+
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
|
|
124242
|
+
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
|
|
124243
|
+
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
|
|
124083
124244
|
interface CreateAnvaPartyViaConversationProps {
|
|
124084
124245
|
body: CreateAnvaPartyViaConversationBody;
|
|
124085
124246
|
params: {
|
|
@@ -124089,11 +124250,11 @@ interface CreateAnvaPartyViaConversationProps {
|
|
|
124089
124250
|
}
|
|
124090
124251
|
declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
|
|
124091
124252
|
|
|
124092
|
-
declare const routeName$
|
|
124093
|
-
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$
|
|
124094
|
-
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$
|
|
124095
|
-
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$
|
|
124096
|
-
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$
|
|
124253
|
+
declare const routeName$5W = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
124254
|
+
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$5W]['patch']['requestBody']['content']['application/json'];
|
|
124255
|
+
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$5W]['patch']['parameters']['path'];
|
|
124256
|
+
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$5W]['patch']['parameters']['query'];
|
|
124257
|
+
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$5W]['patch']['responses'][200]['content']['application/json'];
|
|
124097
124258
|
interface UpdateAnvaPartyViaConversationProps {
|
|
124098
124259
|
body: UpdateAnvaPartyViaConversationBody;
|
|
124099
124260
|
params: {
|
|
@@ -124103,11 +124264,11 @@ interface UpdateAnvaPartyViaConversationProps {
|
|
|
124103
124264
|
}
|
|
124104
124265
|
declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
|
|
124105
124266
|
|
|
124106
|
-
declare const routeName$
|
|
124107
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$
|
|
124108
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$
|
|
124109
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$
|
|
124110
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$
|
|
124267
|
+
declare const routeName$5V = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
|
|
124268
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$5V]['post']['requestBody']['content']['application/json'];
|
|
124269
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$5V]['post']['parameters']['path'];
|
|
124270
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$5V]['post']['parameters']['query'];
|
|
124271
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$5V]['post']['responses'][200]['content']['application/json'];
|
|
124111
124272
|
interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
124112
124273
|
body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
|
|
124113
124274
|
params: {
|
|
@@ -124117,11 +124278,11 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
|
124117
124278
|
}
|
|
124118
124279
|
declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
|
|
124119
124280
|
|
|
124120
|
-
declare const routeName$
|
|
124121
|
-
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
124122
|
-
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
124123
|
-
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
124124
|
-
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
124281
|
+
declare const routeName$5U = "/v1/api/anvaflows/{session_id}/calculate";
|
|
124282
|
+
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$5U]['post']['requestBody']['content']['application/json'];
|
|
124283
|
+
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$5U]['post']['parameters']['path'];
|
|
124284
|
+
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$5U]['post']['parameters']['query'];
|
|
124285
|
+
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$5U]['post']['responses'][200]['content']['application/json'];
|
|
124125
124286
|
interface CalculateAnvaquotesBySessionIdProps {
|
|
124126
124287
|
body: CalculateAnvaquotesBySessionIdBody;
|
|
124127
124288
|
params: {
|
|
@@ -124131,18 +124292,18 @@ interface CalculateAnvaquotesBySessionIdProps {
|
|
|
124131
124292
|
}
|
|
124132
124293
|
declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
|
|
124133
124294
|
|
|
124134
|
-
declare const routeName$
|
|
124135
|
-
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$
|
|
124136
|
-
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$
|
|
124137
|
-
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$
|
|
124138
|
-
type GetAnvaCollectionMethodsProps = paths[typeof routeName$
|
|
124295
|
+
declare const routeName$5T = "/v1/api/anvaflows/{session_id}/collection-methods";
|
|
124296
|
+
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
|
|
124297
|
+
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$5T]['get']['parameters']['query'];
|
|
124298
|
+
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
|
|
124299
|
+
type GetAnvaCollectionMethodsProps = paths[typeof routeName$5T]['get']['parameters'];
|
|
124139
124300
|
declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
|
|
124140
124301
|
|
|
124141
|
-
declare const routeName$
|
|
124142
|
-
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$
|
|
124143
|
-
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$
|
|
124144
|
-
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$
|
|
124145
|
-
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$
|
|
124302
|
+
declare const routeName$5S = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
|
|
124303
|
+
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$5S]['post']['requestBody']['content']['application/json'];
|
|
124304
|
+
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
|
|
124305
|
+
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$5S]['post']['parameters']['query'];
|
|
124306
|
+
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$5S]['post']['responses'][200]['content']['application/json'];
|
|
124146
124307
|
interface RecalculateSimulationBySessionIdProps {
|
|
124147
124308
|
body: RecalculateSimulationBySessionIdBody;
|
|
124148
124309
|
params: {
|
|
@@ -124152,6 +124313,20 @@ interface RecalculateSimulationBySessionIdProps {
|
|
|
124152
124313
|
}
|
|
124153
124314
|
declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
|
|
124154
124315
|
|
|
124316
|
+
declare const routeName$5R = "/v1/api/anvaflows/{session_id}/regenerate";
|
|
124317
|
+
type RegenerateAnvaquestionnaireBySessionIdBody = paths[typeof routeName$5R]['post']['requestBody']['content']['application/json'];
|
|
124318
|
+
type RegenerateAnvaquestionnaireBySessionIdPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
|
|
124319
|
+
type RegenerateAnvaquestionnaireBySessionIdQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
|
|
124320
|
+
type RegenerateAnvaquestionnaireBySessionIdResponse = paths[typeof routeName$5R]['post']['responses'][200]['content']['application/json'];
|
|
124321
|
+
interface RegenerateAnvaquestionnaireBySessionIdProps {
|
|
124322
|
+
body: RegenerateAnvaquestionnaireBySessionIdBody;
|
|
124323
|
+
params: {
|
|
124324
|
+
query: RegenerateAnvaquestionnaireBySessionIdQueryParams;
|
|
124325
|
+
path: RegenerateAnvaquestionnaireBySessionIdPathParams;
|
|
124326
|
+
};
|
|
124327
|
+
}
|
|
124328
|
+
declare const regenerateAnvaquestionnaireBySessionId: (props: RegenerateAnvaquestionnaireBySessionIdProps, wgApiClient: ClientType) => Promise<RegenerateAnvaquestionnaireBySessionIdResponse>;
|
|
124329
|
+
|
|
124155
124330
|
declare const routeName$5Q = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
|
|
124156
124331
|
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$5Q]['post']['requestBody']['content']['application/json'];
|
|
124157
124332
|
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
|
|
@@ -127660,4 +127835,4 @@ type GetSupportedYellowhiveflowInsurancesResponse = paths[typeof routeName]['get
|
|
|
127660
127835
|
type GetSupportedYellowhiveflowInsurancesProps = paths[typeof routeName]['get']['parameters'];
|
|
127661
127836
|
declare const getSupportedYellowhiveflowInsurances: (props: GetSupportedYellowhiveflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedYellowhiveflowInsurancesResponse>;
|
|
127662
127837
|
|
|
127663
|
-
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 CreateAssuTaskBody, type CreateAssuTaskPathParams, type CreateAssuTaskQueryParams, type CreateAssuTaskResponse, 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 CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDiasTaskBody, type CreateDiasTaskPathParams, type CreateDiasTaskQueryParams, type CreateDiasTaskResponse, 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 CreateFasterforwardTaskBody, type CreateFasterforwardTaskPathParams, type CreateFasterforwardTaskQueryParams, type CreateFasterforwardTaskResponse, 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 DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaAsUserForUserPathParams, type Disable2FaAsUserForUserResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, 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 ExportPartyToAnvaPathParams, type ExportPartyToAnvaQueryParams, type ExportPartyToAnvaResponse, type ExportPartyToAssuPathParams, type ExportPartyToAssuQueryParams, type ExportPartyToAssuResponse, type ExportPartyToDiasPathParams, type ExportPartyToDiasQueryParams, type ExportPartyToDiasResponse, type ExportPartyToFasterforwardPathParams, type ExportPartyToFasterforwardQueryParams, type ExportPartyToFasterforwardResponse, 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 GenerateConceptReplyBody, type GenerateConceptReplyPathParams, type GenerateConceptReplyQueryParams, type GenerateConceptReplyResponse, type GenerateDiasOfferDocumentBySessionIdPathParams, type GenerateDiasOfferDocumentBySessionIdQueryParams, type GenerateDiasOfferDocumentBySessionIdResponse, 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 GetBrokerConnectionsByIdQueryParams, 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 GetDiasPartySalutationsResponse, type GetDiasPartyTitlesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowInsurancesQueryParams, type GetDiasflowInsurancesResponse, 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 GetFinconnectLinkForInsurancePolicyPathParams, type GetFinconnectLinkForInsurancePolicyQueryParams, type GetFinconnectLinkForInsurancePolicyResponse, 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 GetInsurancePolicyComplianceByIdPathParams, type GetInsurancePolicyComplianceByIdResponse, 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 GetOnesuranceDataByPartyIdPathParams, type GetOnesuranceDataByPartyIdQueryParams, type GetOnesuranceDataByPartyIdResponse, type GetOnesuranceRecommendationsByEmailIdPathParams, type GetOnesuranceRecommendationsByEmailIdQueryParams, type GetOnesuranceRecommendationsByEmailIdResponse, 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 GetSystemCampaignsByPartyPathParams, type GetSystemCampaignsByPartyQueryParams, type GetSystemCampaignsByPartyResponse, 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 ImportAssuPartyInWegroupPathParams, type ImportAssuPartyInWegroupQueryParams, type ImportAssuPartyInWegroupResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type ImportFasterforwardPartyInWegroupPathParams, type ImportFasterforwardPartyInWegroupQueryParams, type ImportFasterforwardPartyInWegroupResponse, 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 SchemaAnvaDocumentTaskCmd, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaDocumentUploadCmd, type SchemaAnvaExportReply, 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 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 SchemaAppViewsModelsAdvisoryReportInsurancePolicyClauseComplianceQueryModelItem, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyComplianceQueryModelItem, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyCoverageComplianceQueryModelItem, 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 SchemaAssuDocumentUploadCmd, type SchemaAssuTaskCmd, type SchemaAssuTaskDocument, type SchemaAssuTaskPriority, 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 SchemaCampaigns, 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 SchemaCheckupStatus, 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 SchemaCompliance, type SchemaComplianceRole, type SchemaConceptReplyGeneratedResponse, 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 SchemaCreateAnvaPartyChildCmd, 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 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 SchemaCreateReply, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateTaskInAssuParams, type SchemaCreateTaskInDiasParams, type SchemaCreateTaskInFasterforwardParams, 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 SchemaDiasCoverageCombination, type SchemaDiasCoverageUpdateCmd, type SchemaDiasDocumentUploadCmd, type SchemaDiasDocumentUploadItem, type SchemaDiasEntity, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasExistingInsurancePackage, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasOfferDocumentResponse, type SchemaDiasOfferMailCmd, type SchemaDiasOfferMailResponse, 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 SchemaDiasSaluation, type SchemaDiasSendOfferInsurancePolicy, type SchemaDiasSendOfferPolicyPackage, type SchemaDiasTaskDocument, type SchemaDiasTitle, 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 SchemaEmailUpdateByEmailIdCmd, 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 SchemaFasterForwardDocumentUploadCmd, 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 SchemaFishCheck, 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 SchemaFlowsModelsAnvaAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasBaseDiasInsurancePackageInsurancePolicy, type SchemaFlowsModelsDiasDiasOfferDocument, type SchemaFlowsModelsDiasDiasOfferMailCmdDiasOfferDocument, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateConceptReplyCmd, type SchemaGenerateConceptReplyParams, 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 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 SchemaHandleSendDiasOfferMailParams, 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 SchemaInsurancePolicyClauseComplianceQueryModel, type SchemaInsurancePolicyClauseComplianceUpdateItemCmd, type SchemaInsurancePolicyComplianceItemCmd, type SchemaInsurancePolicyComplianceQueryModel, type SchemaInsurancePolicyComplianceType, type SchemaInsurancePolicyComplianceUpdateCmd, type SchemaInsurancePolicyCoverageComplianceItemCmd, type SchemaInsurancePolicyCoverageComplianceQueryModel, type SchemaInsurancePolicyCoverageComplianceType, type SchemaInsurancePolicyCoverageComplianceUpdateCmd, 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 SchemaMercuryModelsAssuDocumentUploadCmd, type SchemaMercuryModelsFasterforwardDocumentUploadCmd, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelationsFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardListItem, type SchemaMercuryModelsFasterforwardTaskCmd, type SchemaMercuryModelsFasterforwardTaskPriority, type SchemaMercuryModelsMDiasTaskCmd, type SchemaMercuryModelsMDiasTaskPriority, 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 SchemaMultiDiasInsuranceQueryModel, type SchemaMultiDiasPartySaluationQueryModel, type SchemaMultiDiasPartyTitleQueryModel, 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 SchemaOnesuranceAction, type SchemaOnesuranceActionType, type SchemaOnesuranceAdvice, type SchemaOnesuranceAdviceLevel, type SchemaOnesuranceAdviceType, type SchemaOnesuranceExplanationData, type SchemaOnesuranceIntent, type SchemaOnesurancePartyData, type SchemaOnesuranceProduct, type SchemaOnesuranceQuickFeedback, type SchemaOnesuranceRecommendation, type SchemaOnesuranceRecommendationType, type SchemaOnesuranceRecommendations, type SchemaOnesuranceRelationDetails, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookAttachment, type SchemaOutlookConnectionDetails, type SchemaOutlookEmailDetailWithAnalysis, type SchemaOutlookEmailItemWithAnalysis, type SchemaOutlookEmailsWithAnalysis, 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 SchemaPartiesSearchCmd, type SchemaPartiesSearchItem, type SchemaPartiesSearchResponse, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSearchPartiesParams, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeriesSortContext, type SchemaSeriesWithoutModel, 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 SchemaSystemCampaignType, 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 SchemaTelephonenrCategory, type SchemaTelephonenrCategory_2, 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 SchemaUpdateEmailByIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsurancePolicyComplianceParams, type SchemaUpdateInsurancePolicyCoverageComplianceParams, 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 SchemaUploadDocumentsInAnvaParams, type SchemaUploadDocumentsInAssuParams, type SchemaUploadDocumentsInDiasParams, type SchemaUploadDocumentsInFasterforwardParams, 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 SearchAssuPartiesQueryParams, type SearchAssuPartiesResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchFasterforwardPartiesQueryParams, type SearchFasterforwardPartiesResponse, type SearchPartiesBody, type SearchPartiesQueryParams, type SearchPartiesResponse, 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 SendDiasOfferMailBySessionIdBody, type SendDiasOfferMailBySessionIdPathParams, type SendDiasOfferMailBySessionIdQueryParams, type SendDiasOfferMailBySessionIdResponse, 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 UpdateAnalyzedEmailIdBody, type UpdateAnalyzedEmailIdPathParams, type UpdateAnalyzedEmailIdQueryParams, type UpdateAnalyzedEmailIdResponse, 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 UpdateInsurancePolicyComplianceBody, type UpdateInsurancePolicyCompliancePathParams, type UpdateInsurancePolicyComplianceResponse, type UpdateInsurancePolicyCoverageComplianceBody, type UpdateInsurancePolicyCoverageCompliancePathParams, type UpdateInsurancePolicyCoverageComplianceResponse, 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 UploadDocumentsInAnvaBody, type UploadDocumentsInAnvaPathParams, type UploadDocumentsInAnvaQueryParams, type UploadDocumentsInAnvaResponse, type UploadDocumentsInAssuBody, type UploadDocumentsInAssuPathParams, type UploadDocumentsInAssuQueryParams, type UploadDocumentsInAssuResponse, type UploadDocumentsInDiasBody, type UploadDocumentsInDiasPathParams, type UploadDocumentsInDiasQueryParams, type UploadDocumentsInDiasResponse, type UploadDocumentsInFasterforwardBody, type UploadDocumentsInFasterforwardPathParams, type UploadDocumentsInFasterforwardQueryParams, type UploadDocumentsInFasterforwardResponse, 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, createAssuTask, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDiasTask, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createFasterforwardTask, 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, deprecatedValidateAnvaConnection, disable2FaAsUserForUser, disable2FaByUser, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportPartyToAnva, exportPartyToAssu, exportPartyToDias, exportPartyToFasterforward, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateConceptReply, generateDiasOfferDocumentBySessionId, 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, getDiasPartySalutations, getDiasPartyTitles, getDiasProducts, getDiasflowInsurances, 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, getFinconnectLinkForInsurancePolicy, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicyComplianceById, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOnesuranceDataByPartyId, getOnesuranceRecommendationsByEmailId, 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, getSystemCampaignsByParty, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importAssuPartyInWegroup, importDiasPartyInWegroup, importDiasflowProduct, importFasterforwardPartyInWegroup, 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, searchAssuParties, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchFasterforwardParties, searchParties, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendDiasOfferMailBySessionId, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnalyzedEmailId, 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, updateInsurancePolicyCompliance, updateInsurancePolicyCoverageCompliance, 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, uploadDocumentsInAnva, uploadDocumentsInAssu, uploadDocumentsInDias, uploadDocumentsInFasterforward, 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 };
|
|
127838
|
+
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 CreateAssuTaskBody, type CreateAssuTaskPathParams, type CreateAssuTaskQueryParams, type CreateAssuTaskResponse, 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 CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDiasTaskBody, type CreateDiasTaskPathParams, type CreateDiasTaskQueryParams, type CreateDiasTaskResponse, 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 CreateFasterforwardTaskBody, type CreateFasterforwardTaskPathParams, type CreateFasterforwardTaskQueryParams, type CreateFasterforwardTaskResponse, 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 DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaAsUserForUserPathParams, type Disable2FaAsUserForUserResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, 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 ExportPartyToAnvaPathParams, type ExportPartyToAnvaQueryParams, type ExportPartyToAnvaResponse, type ExportPartyToAssuPathParams, type ExportPartyToAssuQueryParams, type ExportPartyToAssuResponse, type ExportPartyToDiasPathParams, type ExportPartyToDiasQueryParams, type ExportPartyToDiasResponse, type ExportPartyToFasterforwardPathParams, type ExportPartyToFasterforwardQueryParams, type ExportPartyToFasterforwardResponse, 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 GenerateConceptReplyBody, type GenerateConceptReplyPathParams, type GenerateConceptReplyQueryParams, type GenerateConceptReplyResponse, type GenerateDiasOfferDocumentBySessionIdPathParams, type GenerateDiasOfferDocumentBySessionIdQueryParams, type GenerateDiasOfferDocumentBySessionIdResponse, 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 GetBrokerConnectionsByIdQueryParams, 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 GetDiasPartySalutationsResponse, type GetDiasPartyTitlesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowInsurancesQueryParams, type GetDiasflowInsurancesResponse, 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 GetFinconnectLinkForInsurancePolicyPathParams, type GetFinconnectLinkForInsurancePolicyQueryParams, type GetFinconnectLinkForInsurancePolicyResponse, 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 GetInsurancePolicyComplianceByIdPathParams, type GetInsurancePolicyComplianceByIdResponse, 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 GetOnesuranceDataByPartyIdPathParams, type GetOnesuranceDataByPartyIdQueryParams, type GetOnesuranceDataByPartyIdResponse, type GetOnesuranceRecommendationsByEmailIdPathParams, type GetOnesuranceRecommendationsByEmailIdQueryParams, type GetOnesuranceRecommendationsByEmailIdResponse, 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 GetSystemCampaignsByPartyPathParams, type GetSystemCampaignsByPartyQueryParams, type GetSystemCampaignsByPartyResponse, 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 ImportAssuPartyInWegroupPathParams, type ImportAssuPartyInWegroupQueryParams, type ImportAssuPartyInWegroupResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type ImportFasterforwardPartyInWegroupPathParams, type ImportFasterforwardPartyInWegroupQueryParams, type ImportFasterforwardPartyInWegroupResponse, 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 RegenerateAnvaquestionnaireBySessionIdBody, type RegenerateAnvaquestionnaireBySessionIdPathParams, type RegenerateAnvaquestionnaireBySessionIdQueryParams, type RegenerateAnvaquestionnaireBySessionIdResponse, 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 SchemaAnvaDocumentTaskCmd, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaDocumentUploadCmd, type SchemaAnvaExportReply, 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 SchemaAnvaProductCoverageSelection, 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 SchemaAnvaRegenerateQuestionnaireRequest, type SchemaAnvaRegenerateQuestionnaireResponse, 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 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 SchemaAppViewsModelsAdvisoryReportInsurancePolicyClauseComplianceQueryModelItem, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyComplianceQueryModelItem, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyCoverageComplianceQueryModelItem, 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 SchemaAssuDocumentUploadCmd, type SchemaAssuTaskCmd, type SchemaAssuTaskDocument, type SchemaAssuTaskPriority, 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 SchemaCampaigns, 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 SchemaCheckupStatus, 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 SchemaCompliance, type SchemaComplianceRole, type SchemaConceptReplyGeneratedResponse, 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 SchemaCreateAnvaPartyChildCmd, 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 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 SchemaCreateReply, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateTaskInAssuParams, type SchemaCreateTaskInDiasParams, type SchemaCreateTaskInFasterforwardParams, 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 SchemaDiasCoverageCombination, type SchemaDiasCoverageUpdateCmd, type SchemaDiasDocumentUploadCmd, type SchemaDiasDocumentUploadItem, type SchemaDiasEntity, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasExistingInsurancePackage, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasOfferDocumentResponse, type SchemaDiasOfferMailCmd, type SchemaDiasOfferMailResponse, 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 SchemaDiasSaluation, type SchemaDiasSendOfferInsurancePolicy, type SchemaDiasSendOfferPolicyPackage, type SchemaDiasTaskDocument, type SchemaDiasTitle, 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 SchemaEmailUpdateByEmailIdCmd, 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 SchemaFasterForwardDocumentUploadCmd, 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 SchemaFishCheck, 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 SchemaFlowsModelsAnvaAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasBaseDiasInsurancePackageInsurancePolicy, type SchemaFlowsModelsDiasDiasOfferDocument, type SchemaFlowsModelsDiasDiasOfferMailCmdDiasOfferDocument, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateConceptReplyCmd, type SchemaGenerateConceptReplyParams, 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 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 SchemaHandleRegenerateAnvaQuestionnaireParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendDiasOfferMailParams, 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 SchemaInsurancePolicyClauseComplianceQueryModel, type SchemaInsurancePolicyClauseComplianceUpdateItemCmd, type SchemaInsurancePolicyComplianceItemCmd, type SchemaInsurancePolicyComplianceQueryModel, type SchemaInsurancePolicyComplianceType, type SchemaInsurancePolicyComplianceUpdateCmd, type SchemaInsurancePolicyCoverageComplianceItemCmd, type SchemaInsurancePolicyCoverageComplianceQueryModel, type SchemaInsurancePolicyCoverageComplianceType, type SchemaInsurancePolicyCoverageComplianceUpdateCmd, 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 SchemaMercuryModelsAssuDocumentUploadCmd, type SchemaMercuryModelsFasterforwardDocumentUploadCmd, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelationsFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardListItem, type SchemaMercuryModelsFasterforwardTaskCmd, type SchemaMercuryModelsFasterforwardTaskPriority, type SchemaMercuryModelsMDiasTaskCmd, type SchemaMercuryModelsMDiasTaskPriority, 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 SchemaMultiDiasInsuranceQueryModel, type SchemaMultiDiasPartySaluationQueryModel, type SchemaMultiDiasPartyTitleQueryModel, 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 SchemaOnesuranceAction, type SchemaOnesuranceActionType, type SchemaOnesuranceAdvice, type SchemaOnesuranceAdviceLevel, type SchemaOnesuranceAdviceType, type SchemaOnesuranceExplanationData, type SchemaOnesuranceIntent, type SchemaOnesurancePartyData, type SchemaOnesuranceProduct, type SchemaOnesuranceQuickFeedback, type SchemaOnesuranceRecommendation, type SchemaOnesuranceRecommendationType, type SchemaOnesuranceRecommendations, type SchemaOnesuranceRelationDetails, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookAttachment, type SchemaOutlookConnectionDetails, type SchemaOutlookEmailDetailWithAnalysis, type SchemaOutlookEmailItemWithAnalysis, type SchemaOutlookEmailsWithAnalysis, 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 SchemaPartiesSearchCmd, type SchemaPartiesSearchItem, type SchemaPartiesSearchResponse, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSearchPartiesParams, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeriesSortContext, type SchemaSeriesWithoutModel, 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 SchemaSystemCampaignType, 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 SchemaTelephonenrCategory, type SchemaTelephonenrCategory_2, 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 SchemaUpdateEmailByIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsurancePolicyComplianceParams, type SchemaUpdateInsurancePolicyCoverageComplianceParams, 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 SchemaUploadDocumentsInAnvaParams, type SchemaUploadDocumentsInAssuParams, type SchemaUploadDocumentsInDiasParams, type SchemaUploadDocumentsInFasterforwardParams, 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 SearchAssuPartiesQueryParams, type SearchAssuPartiesResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchFasterforwardPartiesQueryParams, type SearchFasterforwardPartiesResponse, type SearchPartiesBody, type SearchPartiesQueryParams, type SearchPartiesResponse, 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 SendDiasOfferMailBySessionIdBody, type SendDiasOfferMailBySessionIdPathParams, type SendDiasOfferMailBySessionIdQueryParams, type SendDiasOfferMailBySessionIdResponse, 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 UpdateAnalyzedEmailIdBody, type UpdateAnalyzedEmailIdPathParams, type UpdateAnalyzedEmailIdQueryParams, type UpdateAnalyzedEmailIdResponse, 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 UpdateInsurancePolicyComplianceBody, type UpdateInsurancePolicyCompliancePathParams, type UpdateInsurancePolicyComplianceResponse, type UpdateInsurancePolicyCoverageComplianceBody, type UpdateInsurancePolicyCoverageCompliancePathParams, type UpdateInsurancePolicyCoverageComplianceResponse, 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 UploadDocumentsInAnvaBody, type UploadDocumentsInAnvaPathParams, type UploadDocumentsInAnvaQueryParams, type UploadDocumentsInAnvaResponse, type UploadDocumentsInAssuBody, type UploadDocumentsInAssuPathParams, type UploadDocumentsInAssuQueryParams, type UploadDocumentsInAssuResponse, type UploadDocumentsInDiasBody, type UploadDocumentsInDiasPathParams, type UploadDocumentsInDiasQueryParams, type UploadDocumentsInDiasResponse, type UploadDocumentsInFasterforwardBody, type UploadDocumentsInFasterforwardPathParams, type UploadDocumentsInFasterforwardQueryParams, type UploadDocumentsInFasterforwardResponse, 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, createAssuTask, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDiasTask, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createFasterforwardTask, 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, deprecatedValidateAnvaConnection, disable2FaAsUserForUser, disable2FaByUser, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportPartyToAnva, exportPartyToAssu, exportPartyToDias, exportPartyToFasterforward, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateConceptReply, generateDiasOfferDocumentBySessionId, 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, getDiasPartySalutations, getDiasPartyTitles, getDiasProducts, getDiasflowInsurances, 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, getFinconnectLinkForInsurancePolicy, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicyComplianceById, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOnesuranceDataByPartyId, getOnesuranceRecommendationsByEmailId, 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, getSystemCampaignsByParty, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importAssuPartyInWegroup, importDiasPartyInWegroup, importDiasflowProduct, importFasterforwardPartyInWegroup, 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, regenerateAnvaquestionnaireBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchAssuParties, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchFasterforwardParties, searchParties, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendDiasOfferMailBySessionId, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnalyzedEmailId, 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, updateInsurancePolicyCompliance, updateInsurancePolicyCoverageCompliance, 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, uploadDocumentsInAnva, uploadDocumentsInAssu, uploadDocumentsInDias, uploadDocumentsInFasterforward, 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 };
|