wg-api-sdk 4.31.67 → 4.31.68
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 +875 -699
- package/dist/esm/index.mjs +1 -1
- package/dist/index.d.ts +875 -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-02T12:47:29.698172
|
|
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,36 @@ 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
|
+
/** Questions */
|
|
67569
|
+
questions: components["schemas"]["Question"][];
|
|
67570
|
+
};
|
|
67571
|
+
/** AnvaRegenerateQuestionnaireRequest */
|
|
67572
|
+
AnvaRegenerateQuestionnaireRequest: {
|
|
67573
|
+
/** Anva Products */
|
|
67574
|
+
anva_products: components["schemas"]["AnvaProductCoverageSelection"][];
|
|
67575
|
+
};
|
|
67576
|
+
/** AnvaProductCoverageSelection */
|
|
67577
|
+
AnvaProductCoverageSelection: {
|
|
67578
|
+
/**
|
|
67579
|
+
* Id
|
|
67580
|
+
* Format: uuid
|
|
67581
|
+
*/
|
|
67582
|
+
id: string;
|
|
67583
|
+
/** Coverages */
|
|
67584
|
+
coverages: number[];
|
|
67585
|
+
};
|
|
67525
67586
|
/** handle_send_offer_mail_params */
|
|
67526
67587
|
handle_send_offer_mail_params: {
|
|
67527
67588
|
auth: components["schemas"]["Auth"];
|
|
@@ -68045,7 +68106,9 @@ interface components {
|
|
|
68045
68106
|
/** CoverageUpdateCmd */
|
|
68046
68107
|
CoverageUpdateCmd: {
|
|
68047
68108
|
/** Enabled */
|
|
68048
|
-
enabled
|
|
68109
|
+
enabled?: boolean;
|
|
68110
|
+
/** Is Main */
|
|
68111
|
+
is_main?: boolean;
|
|
68049
68112
|
};
|
|
68050
68113
|
/** AnvaProductQuestionnairesQueryModel */
|
|
68051
68114
|
AnvaProductQuestionnairesQueryModel: {
|
|
@@ -73118,6 +73181,10 @@ type SchemaAnvaQuoteCalculationJob = components['schemas']['AnvaQuoteCalculation
|
|
|
73118
73181
|
type SchemaAnvaPolicyPackageCalculationJob = components['schemas']['AnvaPolicyPackageCalculationJob'];
|
|
73119
73182
|
type SchemaHandleCalculateOneAnvaQuoteForConversationParams = components['schemas']['handle_calculate_one_anva_quote_for_conversation_params'];
|
|
73120
73183
|
type SchemaRecalculateAnvaQuoteRequest = components['schemas']['RecalculateAnvaQuoteRequest'];
|
|
73184
|
+
type SchemaHandleRegenerateAnvaQuestionnaireParams = components['schemas']['handle_regenerate_anva_questionnaire_params'];
|
|
73185
|
+
type SchemaAnvaRegenerateQuestionnaireResponse = components['schemas']['AnvaRegenerateQuestionnaireResponse'];
|
|
73186
|
+
type SchemaAnvaRegenerateQuestionnaireRequest = components['schemas']['AnvaRegenerateQuestionnaireRequest'];
|
|
73187
|
+
type SchemaAnvaProductCoverageSelection = components['schemas']['AnvaProductCoverageSelection'];
|
|
73121
73188
|
type SchemaHandleSendOfferMailParams = components['schemas']['handle_send_offer_mail_params'];
|
|
73122
73189
|
type SchemaSendOfferMailResponse = components['schemas']['SendOfferMailResponse'];
|
|
73123
73190
|
type SchemaSendOfferMailCmd = components['schemas']['SendOfferMailCmd'];
|
|
@@ -78354,6 +78421,7 @@ interface operations {
|
|
|
78354
78421
|
query?: {
|
|
78355
78422
|
insurance_ids?: number[];
|
|
78356
78423
|
party_type?: "CUSTOMER" | "COMPANY";
|
|
78424
|
+
coverage_category?: "MAIN" | "SUPPLEMENTARY";
|
|
78357
78425
|
/**
|
|
78358
78426
|
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
78359
78427
|
* @example EN
|
|
@@ -79451,6 +79519,100 @@ interface operations {
|
|
|
79451
79519
|
};
|
|
79452
79520
|
};
|
|
79453
79521
|
};
|
|
79522
|
+
regenerate_anvaquestionnaire_by_session_id_v1_api_anvaflows__session_id__regenerate_post: {
|
|
79523
|
+
parameters: {
|
|
79524
|
+
query?: {
|
|
79525
|
+
/**
|
|
79526
|
+
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
79527
|
+
* @example EN
|
|
79528
|
+
*/
|
|
79529
|
+
lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
79530
|
+
/**
|
|
79531
|
+
* @description Same as lang, but adds support to pass ?language as well
|
|
79532
|
+
* @example EN
|
|
79533
|
+
*/
|
|
79534
|
+
language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
|
|
79535
|
+
};
|
|
79536
|
+
header?: {
|
|
79537
|
+
/** @description Which release to target running in 'STAGING' environment. */
|
|
79538
|
+
"x-release"?: string;
|
|
79539
|
+
};
|
|
79540
|
+
path: {
|
|
79541
|
+
session_id: string;
|
|
79542
|
+
};
|
|
79543
|
+
cookie?: never;
|
|
79544
|
+
};
|
|
79545
|
+
requestBody: {
|
|
79546
|
+
content: {
|
|
79547
|
+
"application/json": components["schemas"]["handle_regenerate_anva_questionnaire_params"]["data"];
|
|
79548
|
+
};
|
|
79549
|
+
};
|
|
79550
|
+
responses: {
|
|
79551
|
+
/** @description Successful Response */
|
|
79552
|
+
200: {
|
|
79553
|
+
headers: {
|
|
79554
|
+
[name: string]: unknown;
|
|
79555
|
+
};
|
|
79556
|
+
content: {
|
|
79557
|
+
"application/json": components["schemas"]["AnvaRegenerateQuestionnaireResponse"];
|
|
79558
|
+
};
|
|
79559
|
+
};
|
|
79560
|
+
/** @description Bad Request */
|
|
79561
|
+
400: {
|
|
79562
|
+
headers: {
|
|
79563
|
+
[name: string]: unknown;
|
|
79564
|
+
};
|
|
79565
|
+
content: {
|
|
79566
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
79567
|
+
};
|
|
79568
|
+
};
|
|
79569
|
+
/** @description Unauthorized */
|
|
79570
|
+
401: {
|
|
79571
|
+
headers: {
|
|
79572
|
+
[name: string]: unknown;
|
|
79573
|
+
};
|
|
79574
|
+
content: {
|
|
79575
|
+
"application/json": components["schemas"]["Error_401"];
|
|
79576
|
+
};
|
|
79577
|
+
};
|
|
79578
|
+
/** @description Forbidden */
|
|
79579
|
+
403: {
|
|
79580
|
+
headers: {
|
|
79581
|
+
[name: string]: unknown;
|
|
79582
|
+
};
|
|
79583
|
+
content: {
|
|
79584
|
+
"application/json": components["schemas"]["Error_403"];
|
|
79585
|
+
};
|
|
79586
|
+
};
|
|
79587
|
+
/** @description Unprocessable Content */
|
|
79588
|
+
422: {
|
|
79589
|
+
headers: {
|
|
79590
|
+
[name: string]: unknown;
|
|
79591
|
+
};
|
|
79592
|
+
content: {
|
|
79593
|
+
"application/json": components["schemas"]["Error_422"];
|
|
79594
|
+
};
|
|
79595
|
+
};
|
|
79596
|
+
/** @description Too Many Requests */
|
|
79597
|
+
429: {
|
|
79598
|
+
headers: {
|
|
79599
|
+
[name: string]: unknown;
|
|
79600
|
+
};
|
|
79601
|
+
content: {
|
|
79602
|
+
"application/json": components["schemas"]["Error_429"];
|
|
79603
|
+
};
|
|
79604
|
+
};
|
|
79605
|
+
/** @description Internal Server Error */
|
|
79606
|
+
500: {
|
|
79607
|
+
headers: {
|
|
79608
|
+
[name: string]: unknown;
|
|
79609
|
+
};
|
|
79610
|
+
content: {
|
|
79611
|
+
"application/json": components["schemas"]["ServerError"];
|
|
79612
|
+
};
|
|
79613
|
+
};
|
|
79614
|
+
};
|
|
79615
|
+
};
|
|
79454
79616
|
enqueue_send_custom_quotes_to_anva_by_session_id_v1_api_anvaflows__session_id__send_custom_quotes_to_anva_post: {
|
|
79455
79617
|
parameters: {
|
|
79456
79618
|
query?: {
|
|
@@ -122603,20 +122765,20 @@ type Middleware = Middleware$1;
|
|
|
122603
122765
|
type ClientType = ReturnType<typeof createClient<paths>>;
|
|
122604
122766
|
declare const wgApiClient: (options: ClientOptions) => ClientType;
|
|
122605
122767
|
|
|
122606
|
-
declare const routeName$
|
|
122607
|
-
type GetAllEnumsResponse = paths[typeof routeName$
|
|
122768
|
+
declare const routeName$8o = "/enums";
|
|
122769
|
+
type GetAllEnumsResponse = paths[typeof routeName$8o]['get']['responses'][200]['content']['application/json'];
|
|
122608
122770
|
declare const getAllEnums: (wgApiClient: ClientType) => Promise<GetAllEnumsResponse>;
|
|
122609
122771
|
|
|
122610
|
-
declare const routeName$
|
|
122611
|
-
type GetValuesOfEnumPathParams = paths[typeof routeName$
|
|
122612
|
-
type GetValuesOfEnumResponse = paths[typeof routeName$
|
|
122613
|
-
type GetValuesOfEnumProps = paths[typeof routeName$
|
|
122772
|
+
declare const routeName$8n = "/enums/{enum}";
|
|
122773
|
+
type GetValuesOfEnumPathParams = paths[typeof routeName$8n]['get']['parameters']['path'];
|
|
122774
|
+
type GetValuesOfEnumResponse = paths[typeof routeName$8n]['get']['responses'][200]['content']['application/json'];
|
|
122775
|
+
type GetValuesOfEnumProps = paths[typeof routeName$8n]['get']['parameters'];
|
|
122614
122776
|
declare const getValuesOfEnum: (props: GetValuesOfEnumProps, wgApiClient: ClientType) => Promise<GetValuesOfEnumResponse>;
|
|
122615
122777
|
|
|
122616
|
-
declare const routeName$
|
|
122617
|
-
type CreateAccountBody = paths[typeof routeName$
|
|
122618
|
-
type CreateAccountQueryParams = paths[typeof routeName$
|
|
122619
|
-
type CreateAccountResponse = paths[typeof routeName$
|
|
122778
|
+
declare const routeName$8m = "/v1/api/accounts";
|
|
122779
|
+
type CreateAccountBody = paths[typeof routeName$8m]['post']['requestBody']['content']['application/json'];
|
|
122780
|
+
type CreateAccountQueryParams = paths[typeof routeName$8m]['post']['parameters']['query'];
|
|
122781
|
+
type CreateAccountResponse = paths[typeof routeName$8m]['post']['responses'][201]['content']['application/json'];
|
|
122620
122782
|
interface CreateAccountProps {
|
|
122621
122783
|
body: CreateAccountBody;
|
|
122622
122784
|
params: {
|
|
@@ -122625,119 +122787,119 @@ interface CreateAccountProps {
|
|
|
122625
122787
|
}
|
|
122626
122788
|
declare const createAccount: (props: CreateAccountProps, wgApiClient: ClientType) => Promise<CreateAccountResponse>;
|
|
122627
122789
|
|
|
122628
|
-
declare const routeName$
|
|
122629
|
-
type GetAllActivityTypesQueryParams = paths[typeof routeName$
|
|
122630
|
-
type GetAllActivityTypesResponse = paths[typeof routeName$
|
|
122631
|
-
type GetAllActivityTypesProps = paths[typeof routeName$
|
|
122790
|
+
declare const routeName$8l = "/v1/api/activity-types";
|
|
122791
|
+
type GetAllActivityTypesQueryParams = paths[typeof routeName$8l]['get']['parameters']['query'];
|
|
122792
|
+
type GetAllActivityTypesResponse = paths[typeof routeName$8l]['get']['responses'][200]['content']['application/json'];
|
|
122793
|
+
type GetAllActivityTypesProps = paths[typeof routeName$8l]['get']['parameters'];
|
|
122632
122794
|
declare const getAllActivityTypes: (props: GetAllActivityTypesProps, wgApiClient: ClientType) => Promise<GetAllActivityTypesResponse>;
|
|
122633
122795
|
|
|
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$
|
|
122796
|
+
declare const routeName$8k = "/v1/api/anvaflows/labels/{label}/enum";
|
|
122797
|
+
type GetEnumByAnvaLabelPathParams = paths[typeof routeName$8k]['get']['parameters']['path'];
|
|
122798
|
+
type GetEnumByAnvaLabelQueryParams = paths[typeof routeName$8k]['get']['parameters']['query'];
|
|
122799
|
+
type GetEnumByAnvaLabelResponse = paths[typeof routeName$8k]['get']['responses'][200]['content']['application/json'];
|
|
122800
|
+
type GetEnumByAnvaLabelProps = paths[typeof routeName$8k]['get']['parameters'];
|
|
122639
122801
|
declare const getEnumByAnvaLabel: (props: GetEnumByAnvaLabelProps, wgApiClient: ClientType) => Promise<GetEnumByAnvaLabelResponse>;
|
|
122640
122802
|
|
|
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$
|
|
122803
|
+
declare const routeName$8j = "/v1/api/diasflows/labels/{label}/enum";
|
|
122804
|
+
type GetEnumByDiasLabelPathParams = paths[typeof routeName$8j]['get']['parameters']['path'];
|
|
122805
|
+
type GetEnumByDiasLabelQueryParams = paths[typeof routeName$8j]['get']['parameters']['query'];
|
|
122806
|
+
type GetEnumByDiasLabelResponse = paths[typeof routeName$8j]['get']['responses'][200]['content']['application/json'];
|
|
122807
|
+
type GetEnumByDiasLabelProps = paths[typeof routeName$8j]['get']['parameters'];
|
|
122646
122808
|
declare const getEnumByDiasLabel: (props: GetEnumByDiasLabelProps, wgApiClient: ClientType) => Promise<GetEnumByDiasLabelResponse>;
|
|
122647
122809
|
|
|
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$
|
|
122810
|
+
declare const routeName$8i = "/v1/api/events/{activity_id}/artifact";
|
|
122811
|
+
type GetArtifactFromEventByIdPathParams = paths[typeof routeName$8i]['get']['parameters']['path'];
|
|
122812
|
+
type GetArtifactFromEventByIdQueryParams = paths[typeof routeName$8i]['get']['parameters']['query'];
|
|
122813
|
+
type GetArtifactFromEventByIdResponse = paths[typeof routeName$8i]['get']['responses'][200]['content']['application/json'];
|
|
122814
|
+
type GetArtifactFromEventByIdProps = paths[typeof routeName$8i]['get']['parameters'];
|
|
122653
122815
|
declare const getArtifactFromEventById: (props: GetArtifactFromEventByIdProps, wgApiClient: ClientType) => Promise<GetArtifactFromEventByIdResponse>;
|
|
122654
122816
|
|
|
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$
|
|
122817
|
+
declare const routeName$8h = "/v1/api/flows/jobs/{job_id}";
|
|
122818
|
+
type GetJobResultByIdPathParams = paths[typeof routeName$8h]['get']['parameters']['path'];
|
|
122819
|
+
type GetJobResultByIdQueryParams = paths[typeof routeName$8h]['get']['parameters']['query'];
|
|
122820
|
+
type GetJobResultByIdResponse = paths[typeof routeName$8h]['get']['responses'][200]['content']['application/json'];
|
|
122821
|
+
type GetJobResultByIdProps = paths[typeof routeName$8h]['get']['parameters'];
|
|
122660
122822
|
declare const getJobResultById: (props: GetJobResultByIdProps, wgApiClient: ClientType) => Promise<GetJobResultByIdResponse>;
|
|
122661
122823
|
|
|
122662
|
-
declare const routeName$
|
|
122663
|
-
type GetGbiQueryParams = paths[typeof routeName$
|
|
122664
|
-
type GetGbiResponse = paths[typeof routeName$
|
|
122665
|
-
type GetGbiProps = paths[typeof routeName$
|
|
122824
|
+
declare const routeName$8g = "/v1/api/gbi-codes";
|
|
122825
|
+
type GetGbiQueryParams = paths[typeof routeName$8g]['get']['parameters']['query'];
|
|
122826
|
+
type GetGbiResponse = paths[typeof routeName$8g]['get']['responses'][200]['content']['application/json'];
|
|
122827
|
+
type GetGbiProps = paths[typeof routeName$8g]['get']['parameters'];
|
|
122666
122828
|
declare const getGbi: (props: GetGbiProps, wgApiClient: ClientType) => Promise<GetGbiResponse>;
|
|
122667
122829
|
|
|
122668
|
-
declare const routeName$
|
|
122669
|
-
type GetInsightsIfCarIsInsuredBody = paths[typeof routeName$
|
|
122670
|
-
type GetInsightsIfCarIsInsuredResponse = paths[typeof routeName$
|
|
122830
|
+
declare const routeName$8f = "/v1/api/insights/cars/check-insurance";
|
|
122831
|
+
type GetInsightsIfCarIsInsuredBody = paths[typeof routeName$8f]['post']['requestBody']['content']['application/json'];
|
|
122832
|
+
type GetInsightsIfCarIsInsuredResponse = paths[typeof routeName$8f]['post']['responses'][200]['content']['application/json'];
|
|
122671
122833
|
interface GetInsightsIfCarIsInsuredProps {
|
|
122672
122834
|
body: GetInsightsIfCarIsInsuredBody;
|
|
122673
122835
|
}
|
|
122674
122836
|
declare const getInsightsIfCarIsInsured: (props: GetInsightsIfCarIsInsuredProps, wgApiClient: ClientType) => Promise<GetInsightsIfCarIsInsuredResponse>;
|
|
122675
122837
|
|
|
122676
|
-
declare const routeName$
|
|
122677
|
-
type GetInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
122678
|
-
type GetInsuranceCompaniesResponse = paths[typeof routeName$
|
|
122679
|
-
type GetInsuranceCompaniesProps = paths[typeof routeName$
|
|
122838
|
+
declare const routeName$8e = "/v1/api/insurance_companies";
|
|
122839
|
+
type GetInsuranceCompaniesQueryParams = paths[typeof routeName$8e]['get']['parameters']['query'];
|
|
122840
|
+
type GetInsuranceCompaniesResponse = paths[typeof routeName$8e]['get']['responses'][200]['content']['application/json'];
|
|
122841
|
+
type GetInsuranceCompaniesProps = paths[typeof routeName$8e]['get']['parameters'];
|
|
122680
122842
|
declare const getInsuranceCompanies: (props: GetInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetInsuranceCompaniesResponse>;
|
|
122681
122843
|
|
|
122682
|
-
declare const routeName$
|
|
122683
|
-
type GetEncryptionKeysQueryParams = paths[typeof routeName$
|
|
122684
|
-
type GetEncryptionKeysResponse = paths[typeof routeName$
|
|
122685
|
-
type GetEncryptionKeysProps = paths[typeof routeName$
|
|
122844
|
+
declare const routeName$8d = "/v1/api/keys";
|
|
122845
|
+
type GetEncryptionKeysQueryParams = paths[typeof routeName$8d]['get']['parameters']['query'];
|
|
122846
|
+
type GetEncryptionKeysResponse = paths[typeof routeName$8d]['get']['responses'][200]['content']['application/json'];
|
|
122847
|
+
type GetEncryptionKeysProps = paths[typeof routeName$8d]['get']['parameters'];
|
|
122686
122848
|
declare const getEncryptionKeys: (props: GetEncryptionKeysProps, wgApiClient: ClientType) => Promise<GetEncryptionKeysResponse>;
|
|
122687
122849
|
|
|
122688
|
-
declare const routeName$
|
|
122689
|
-
type GetLeadProvidersByAffinityQueryParams = paths[typeof routeName$
|
|
122690
|
-
type GetLeadProvidersByAffinityResponse = paths[typeof routeName$
|
|
122691
|
-
type GetLeadProvidersByAffinityProps = paths[typeof routeName$
|
|
122850
|
+
declare const routeName$8c = "/v1/api/lead-providers";
|
|
122851
|
+
type GetLeadProvidersByAffinityQueryParams = paths[typeof routeName$8c]['get']['parameters']['query'];
|
|
122852
|
+
type GetLeadProvidersByAffinityResponse = paths[typeof routeName$8c]['get']['responses'][200]['content']['application/json'];
|
|
122853
|
+
type GetLeadProvidersByAffinityProps = paths[typeof routeName$8c]['get']['parameters'];
|
|
122692
122854
|
declare const getLeadProvidersByAffinity: (props: GetLeadProvidersByAffinityProps, wgApiClient: ClientType) => Promise<GetLeadProvidersByAffinityResponse>;
|
|
122693
122855
|
|
|
122694
|
-
declare const routeName$
|
|
122695
|
-
type GetLeadProviderByIdPathParams = paths[typeof routeName$
|
|
122696
|
-
type GetLeadProviderByIdResponse = paths[typeof routeName$
|
|
122697
|
-
type GetLeadProviderByIdProps = paths[typeof routeName$
|
|
122856
|
+
declare const routeName$8b = "/v1/api/lead-providers/{lead_provider_id}";
|
|
122857
|
+
type GetLeadProviderByIdPathParams = paths[typeof routeName$8b]['get']['parameters']['path'];
|
|
122858
|
+
type GetLeadProviderByIdResponse = paths[typeof routeName$8b]['get']['responses'][200]['content']['application/json'];
|
|
122859
|
+
type GetLeadProviderByIdProps = paths[typeof routeName$8b]['get']['parameters'];
|
|
122698
122860
|
declare const getLeadProviderById: (props: GetLeadProviderByIdProps, wgApiClient: ClientType) => Promise<GetLeadProviderByIdResponse>;
|
|
122699
122861
|
|
|
122700
|
-
declare const routeName$
|
|
122701
|
-
type GetNaceQueryParams = paths[typeof routeName$
|
|
122702
|
-
type GetNaceResponse = paths[typeof routeName$
|
|
122703
|
-
type GetNaceProps = paths[typeof routeName$
|
|
122862
|
+
declare const routeName$8a = "/v1/api/nace-codes";
|
|
122863
|
+
type GetNaceQueryParams = paths[typeof routeName$8a]['get']['parameters']['query'];
|
|
122864
|
+
type GetNaceResponse = paths[typeof routeName$8a]['get']['responses'][200]['content']['application/json'];
|
|
122865
|
+
type GetNaceProps = paths[typeof routeName$8a]['get']['parameters'];
|
|
122704
122866
|
declare const getNace: (props: GetNaceProps, wgApiClient: ClientType) => Promise<GetNaceResponse>;
|
|
122705
122867
|
|
|
122706
|
-
declare const routeName$
|
|
122707
|
-
type PostEventAsCarglassPartnerBody = paths[typeof routeName$
|
|
122708
|
-
type PostEventAsCarglassPartnerResponse = paths[typeof routeName$
|
|
122868
|
+
declare const routeName$89 = "/v1/api/partners/carglass/events";
|
|
122869
|
+
type PostEventAsCarglassPartnerBody = paths[typeof routeName$89]['post']['requestBody']['content']['application/json'];
|
|
122870
|
+
type PostEventAsCarglassPartnerResponse = paths[typeof routeName$89]['post']['responses'][201]['content']['application/json'];
|
|
122709
122871
|
interface PostEventAsCarglassPartnerProps {
|
|
122710
122872
|
body: PostEventAsCarglassPartnerBody;
|
|
122711
122873
|
}
|
|
122712
122874
|
declare const postEventAsCarglassPartner: (props: PostEventAsCarglassPartnerProps, wgApiClient: ClientType) => Promise<PostEventAsCarglassPartnerResponse>;
|
|
122713
122875
|
|
|
122714
|
-
declare const routeName$
|
|
122715
|
-
type GetAllAvailablePlansResponse = paths[typeof routeName$
|
|
122876
|
+
declare const routeName$88 = "/v1/api/plans";
|
|
122877
|
+
type GetAllAvailablePlansResponse = paths[typeof routeName$88]['get']['responses'][200]['content']['application/json'];
|
|
122716
122878
|
declare const getAllAvailablePlans: (wgApiClient: ClientType) => Promise<GetAllAvailablePlansResponse>;
|
|
122717
122879
|
|
|
122718
|
-
declare const routeName$
|
|
122719
|
-
type GetSbiQueryParams = paths[typeof routeName$
|
|
122720
|
-
type GetSbiResponse = paths[typeof routeName$
|
|
122721
|
-
type GetSbiProps = paths[typeof routeName$
|
|
122880
|
+
declare const routeName$87 = "/v1/api/sbi-codes";
|
|
122881
|
+
type GetSbiQueryParams = paths[typeof routeName$87]['get']['parameters']['query'];
|
|
122882
|
+
type GetSbiResponse = paths[typeof routeName$87]['get']['responses'][200]['content']['application/json'];
|
|
122883
|
+
type GetSbiProps = paths[typeof routeName$87]['get']['parameters'];
|
|
122722
122884
|
declare const getSbi: (props: GetSbiProps, wgApiClient: ClientType) => Promise<GetSbiResponse>;
|
|
122723
122885
|
|
|
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$
|
|
122886
|
+
declare const routeName$86 = "/v1/api/singularity/jobs/{job_id}";
|
|
122887
|
+
type GetSingularityJobResultByIdPathParams = paths[typeof routeName$86]['get']['parameters']['path'];
|
|
122888
|
+
type GetSingularityJobResultByIdQueryParams = paths[typeof routeName$86]['get']['parameters']['query'];
|
|
122889
|
+
type GetSingularityJobResultByIdResponse = paths[typeof routeName$86]['get']['responses'][200]['content']['application/json'];
|
|
122890
|
+
type GetSingularityJobResultByIdProps = paths[typeof routeName$86]['get']['parameters'];
|
|
122729
122891
|
declare const getSingularityJobResultById: (props: GetSingularityJobResultByIdProps, wgApiClient: ClientType) => Promise<GetSingularityJobResultByIdResponse>;
|
|
122730
122892
|
|
|
122731
|
-
declare const routeName$
|
|
122732
|
-
type GetAllAvailableThemesInWegroupQueryParams = paths[typeof routeName$
|
|
122733
|
-
type GetAllAvailableThemesInWegroupResponse = paths[typeof routeName$
|
|
122734
|
-
type GetAllAvailableThemesInWegroupProps = paths[typeof routeName$
|
|
122893
|
+
declare const routeName$85 = "/v1/api/themes";
|
|
122894
|
+
type GetAllAvailableThemesInWegroupQueryParams = paths[typeof routeName$85]['get']['parameters']['query'];
|
|
122895
|
+
type GetAllAvailableThemesInWegroupResponse = paths[typeof routeName$85]['get']['responses'][200]['content']['application/json'];
|
|
122896
|
+
type GetAllAvailableThemesInWegroupProps = paths[typeof routeName$85]['get']['parameters'];
|
|
122735
122897
|
declare const getAllAvailableThemesInWegroup: (props: GetAllAvailableThemesInWegroupProps, wgApiClient: ClientType) => Promise<GetAllAvailableThemesInWegroupResponse>;
|
|
122736
122898
|
|
|
122737
|
-
declare const routeName$
|
|
122738
|
-
type CreateToolkitAccountBody = paths[typeof routeName$
|
|
122739
|
-
type CreateToolkitAccountQueryParams = paths[typeof routeName$
|
|
122740
|
-
type CreateToolkitAccountResponse = paths[typeof routeName$
|
|
122899
|
+
declare const routeName$84 = "/v1/api/toolkit-accounts";
|
|
122900
|
+
type CreateToolkitAccountBody = paths[typeof routeName$84]['post']['requestBody']['content']['application/json'];
|
|
122901
|
+
type CreateToolkitAccountQueryParams = paths[typeof routeName$84]['post']['parameters']['query'];
|
|
122902
|
+
type CreateToolkitAccountResponse = paths[typeof routeName$84]['post']['responses'][201]['content']['application/json'];
|
|
122741
122903
|
interface CreateToolkitAccountProps {
|
|
122742
122904
|
body: CreateToolkitAccountBody;
|
|
122743
122905
|
params: {
|
|
@@ -122746,10 +122908,10 @@ interface CreateToolkitAccountProps {
|
|
|
122746
122908
|
}
|
|
122747
122909
|
declare const createToolkitAccount: (props: CreateToolkitAccountProps, wgApiClient: ClientType) => Promise<CreateToolkitAccountResponse>;
|
|
122748
122910
|
|
|
122749
|
-
declare const routeName$
|
|
122750
|
-
type CreateToolkitBrokerBody = paths[typeof routeName$
|
|
122751
|
-
type CreateToolkitBrokerQueryParams = paths[typeof routeName$
|
|
122752
|
-
type CreateToolkitBrokerResponse = paths[typeof routeName$
|
|
122911
|
+
declare const routeName$83 = "/v1/api/toolkit-brokers";
|
|
122912
|
+
type CreateToolkitBrokerBody = paths[typeof routeName$83]['post']['requestBody']['content']['application/json'];
|
|
122913
|
+
type CreateToolkitBrokerQueryParams = paths[typeof routeName$83]['post']['parameters']['query'];
|
|
122914
|
+
type CreateToolkitBrokerResponse = paths[typeof routeName$83]['post']['responses'][201]['content']['application/json'];
|
|
122753
122915
|
interface CreateToolkitBrokerProps {
|
|
122754
122916
|
body: CreateToolkitBrokerBody;
|
|
122755
122917
|
params: {
|
|
@@ -122758,10 +122920,10 @@ interface CreateToolkitBrokerProps {
|
|
|
122758
122920
|
}
|
|
122759
122921
|
declare const createToolkitBroker: (props: CreateToolkitBrokerProps, wgApiClient: ClientType) => Promise<CreateToolkitBrokerResponse>;
|
|
122760
122922
|
|
|
122761
|
-
declare const routeName$
|
|
122762
|
-
type CreateTrialBrokerBody = paths[typeof routeName$
|
|
122763
|
-
type CreateTrialBrokerQueryParams = paths[typeof routeName$
|
|
122764
|
-
type CreateTrialBrokerResponse = paths[typeof routeName$
|
|
122923
|
+
declare const routeName$82 = "/v1/api/trials";
|
|
122924
|
+
type CreateTrialBrokerBody = paths[typeof routeName$82]['post']['requestBody']['content']['application/json'];
|
|
122925
|
+
type CreateTrialBrokerQueryParams = paths[typeof routeName$82]['post']['parameters']['query'];
|
|
122926
|
+
type CreateTrialBrokerResponse = paths[typeof routeName$82]['post']['responses'][201]['content']['application/json'];
|
|
122765
122927
|
interface CreateTrialBrokerProps {
|
|
122766
122928
|
body: CreateTrialBrokerBody;
|
|
122767
122929
|
params: {
|
|
@@ -122770,10 +122932,10 @@ interface CreateTrialBrokerProps {
|
|
|
122770
122932
|
}
|
|
122771
122933
|
declare const createTrialBroker: (props: CreateTrialBrokerProps, wgApiClient: ClientType) => Promise<CreateTrialBrokerResponse>;
|
|
122772
122934
|
|
|
122773
|
-
declare const routeName$
|
|
122774
|
-
type VerifyIfADistributionExistsByNameBody = paths[typeof routeName$
|
|
122775
|
-
type VerifyIfADistributionExistsByNameQueryParams = paths[typeof routeName$
|
|
122776
|
-
type VerifyIfADistributionExistsByNameResponse = paths[typeof routeName$
|
|
122935
|
+
declare const routeName$81 = "/v1/api/verify/exists/distribution/name";
|
|
122936
|
+
type VerifyIfADistributionExistsByNameBody = paths[typeof routeName$81]['post']['requestBody']['content']['application/json'];
|
|
122937
|
+
type VerifyIfADistributionExistsByNameQueryParams = paths[typeof routeName$81]['post']['parameters']['query'];
|
|
122938
|
+
type VerifyIfADistributionExistsByNameResponse = paths[typeof routeName$81]['post']['responses'][200]['content']['application/json'];
|
|
122777
122939
|
interface VerifyIfADistributionExistsByNameProps {
|
|
122778
122940
|
body: VerifyIfADistributionExistsByNameBody;
|
|
122779
122941
|
params: {
|
|
@@ -122782,10 +122944,10 @@ interface VerifyIfADistributionExistsByNameProps {
|
|
|
122782
122944
|
}
|
|
122783
122945
|
declare const verifyIfADistributionExistsByName: (props: VerifyIfADistributionExistsByNameProps, wgApiClient: ClientType) => Promise<VerifyIfADistributionExistsByNameResponse>;
|
|
122784
122946
|
|
|
122785
|
-
declare const routeName$
|
|
122786
|
-
type VerifyIfADistributionExistsByCompanyRegistrationBody = paths[typeof routeName$
|
|
122787
|
-
type VerifyIfADistributionExistsByCompanyRegistrationQueryParams = paths[typeof routeName$
|
|
122788
|
-
type VerifyIfADistributionExistsByCompanyRegistrationResponse = paths[typeof routeName$
|
|
122947
|
+
declare const routeName$80 = "/v1/api/verify/exists/distribution/registration";
|
|
122948
|
+
type VerifyIfADistributionExistsByCompanyRegistrationBody = paths[typeof routeName$80]['post']['requestBody']['content']['application/json'];
|
|
122949
|
+
type VerifyIfADistributionExistsByCompanyRegistrationQueryParams = paths[typeof routeName$80]['post']['parameters']['query'];
|
|
122950
|
+
type VerifyIfADistributionExistsByCompanyRegistrationResponse = paths[typeof routeName$80]['post']['responses'][200]['content']['application/json'];
|
|
122789
122951
|
interface VerifyIfADistributionExistsByCompanyRegistrationProps {
|
|
122790
122952
|
body: VerifyIfADistributionExistsByCompanyRegistrationBody;
|
|
122791
122953
|
params: {
|
|
@@ -122794,10 +122956,10 @@ interface VerifyIfADistributionExistsByCompanyRegistrationProps {
|
|
|
122794
122956
|
}
|
|
122795
122957
|
declare const verifyIfADistributionExistsByCompanyRegistration: (props: VerifyIfADistributionExistsByCompanyRegistrationProps, wgApiClient: ClientType) => Promise<VerifyIfADistributionExistsByCompanyRegistrationResponse>;
|
|
122796
122958
|
|
|
122797
|
-
declare const routeName$
|
|
122798
|
-
type VerifyIfAUserExistsByEmailBody = paths[typeof routeName$
|
|
122799
|
-
type VerifyIfAUserExistsByEmailQueryParams = paths[typeof routeName$
|
|
122800
|
-
type VerifyIfAUserExistsByEmailResponse = paths[typeof routeName$
|
|
122959
|
+
declare const routeName$7$ = "/v1/api/verify/exists/user/email";
|
|
122960
|
+
type VerifyIfAUserExistsByEmailBody = paths[typeof routeName$7$]['post']['requestBody']['content']['application/json'];
|
|
122961
|
+
type VerifyIfAUserExistsByEmailQueryParams = paths[typeof routeName$7$]['post']['parameters']['query'];
|
|
122962
|
+
type VerifyIfAUserExistsByEmailResponse = paths[typeof routeName$7$]['post']['responses'][200]['content']['application/json'];
|
|
122801
122963
|
interface VerifyIfAUserExistsByEmailProps {
|
|
122802
122964
|
body: VerifyIfAUserExistsByEmailBody;
|
|
122803
122965
|
params: {
|
|
@@ -122806,10 +122968,10 @@ interface VerifyIfAUserExistsByEmailProps {
|
|
|
122806
122968
|
}
|
|
122807
122969
|
declare const verifyIfAUserExistsByEmail: (props: VerifyIfAUserExistsByEmailProps, wgApiClient: ClientType) => Promise<VerifyIfAUserExistsByEmailResponse>;
|
|
122808
122970
|
|
|
122809
|
-
declare const routeName$
|
|
122810
|
-
type CommentOnActivityPathParams = paths[typeof routeName$
|
|
122811
|
-
type CommentOnActivityQueryParams = paths[typeof routeName$
|
|
122812
|
-
type CommentOnActivityResponse = paths[typeof routeName$
|
|
122971
|
+
declare const routeName$7_ = "/v1/api/activities/{activity_id}/comments";
|
|
122972
|
+
type CommentOnActivityPathParams = paths[typeof routeName$7_]['post']['parameters']['path'];
|
|
122973
|
+
type CommentOnActivityQueryParams = paths[typeof routeName$7_]['post']['parameters']['query'];
|
|
122974
|
+
type CommentOnActivityResponse = paths[typeof routeName$7_]['post']['responses'][201]['content']['application/json'];
|
|
122813
122975
|
interface CommentOnActivityProps {
|
|
122814
122976
|
params: {
|
|
122815
122977
|
query: CommentOnActivityQueryParams;
|
|
@@ -122818,10 +122980,10 @@ interface CommentOnActivityProps {
|
|
|
122818
122980
|
}
|
|
122819
122981
|
declare const commentOnActivity: (props: CommentOnActivityProps, wgApiClient: ClientType) => Promise<CommentOnActivityResponse>;
|
|
122820
122982
|
|
|
122821
|
-
declare const routeName$
|
|
122822
|
-
type DeleteCommentOnActivityPathParams = paths[typeof routeName$
|
|
122823
|
-
type DeleteCommentOnActivityQueryParams = paths[typeof routeName$
|
|
122824
|
-
type DeleteCommentOnActivityResponse = paths[typeof routeName$
|
|
122983
|
+
declare const routeName$7Z = "/v1/api/activities/{activity_id}/comments/{comment_id}";
|
|
122984
|
+
type DeleteCommentOnActivityPathParams = paths[typeof routeName$7Z]['delete']['parameters']['path'];
|
|
122985
|
+
type DeleteCommentOnActivityQueryParams = paths[typeof routeName$7Z]['delete']['parameters']['query'];
|
|
122986
|
+
type DeleteCommentOnActivityResponse = paths[typeof routeName$7Z]['delete']['responses'][200]['content']['application/json'];
|
|
122825
122987
|
interface DeleteCommentOnActivityProps {
|
|
122826
122988
|
params: {
|
|
122827
122989
|
query: DeleteCommentOnActivityQueryParams;
|
|
@@ -122830,10 +122992,10 @@ interface DeleteCommentOnActivityProps {
|
|
|
122830
122992
|
}
|
|
122831
122993
|
declare const deleteCommentOnActivity: (props: DeleteCommentOnActivityProps, wgApiClient: ClientType) => Promise<DeleteCommentOnActivityResponse>;
|
|
122832
122994
|
|
|
122833
|
-
declare const routeName$
|
|
122834
|
-
type UpdateCommentOnActivityPathParams = paths[typeof routeName$
|
|
122835
|
-
type UpdateCommentOnActivityQueryParams = paths[typeof routeName$
|
|
122836
|
-
type UpdateCommentOnActivityResponse = paths[typeof routeName$
|
|
122995
|
+
declare const routeName$7Y = "/v1/api/activities/{activity_id}/comments/{comment_id}";
|
|
122996
|
+
type UpdateCommentOnActivityPathParams = paths[typeof routeName$7Y]['patch']['parameters']['path'];
|
|
122997
|
+
type UpdateCommentOnActivityQueryParams = paths[typeof routeName$7Y]['patch']['parameters']['query'];
|
|
122998
|
+
type UpdateCommentOnActivityResponse = paths[typeof routeName$7Y]['patch']['responses'][200]['content']['application/json'];
|
|
122837
122999
|
interface UpdateCommentOnActivityProps {
|
|
122838
123000
|
params: {
|
|
122839
123001
|
query: UpdateCommentOnActivityQueryParams;
|
|
@@ -122842,36 +123004,36 @@ interface UpdateCommentOnActivityProps {
|
|
|
122842
123004
|
}
|
|
122843
123005
|
declare const updateCommentOnActivity: (props: UpdateCommentOnActivityProps, wgApiClient: ClientType) => Promise<UpdateCommentOnActivityResponse>;
|
|
122844
123006
|
|
|
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$
|
|
123007
|
+
declare const routeName$7X = "/v1/api/distributions/{distribution_id}/parties";
|
|
123008
|
+
type GetAllPartiesByDistributionPathParams = paths[typeof routeName$7X]['get']['parameters']['path'];
|
|
123009
|
+
type GetAllPartiesByDistributionQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
|
|
123010
|
+
type GetAllPartiesByDistributionResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
|
|
123011
|
+
type GetAllPartiesByDistributionProps = paths[typeof routeName$7X]['get']['parameters'];
|
|
122850
123012
|
declare const getAllPartiesByDistribution: (props: GetAllPartiesByDistributionProps, wgApiClient: ClientType) => Promise<GetAllPartiesByDistributionResponse>;
|
|
122851
123013
|
|
|
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$
|
|
123014
|
+
declare const routeName$7W = "/v1/api/exports/{export_id}";
|
|
123015
|
+
type RetrieveExportByIdPathParams = paths[typeof routeName$7W]['get']['parameters']['path'];
|
|
123016
|
+
type RetrieveExportByIdQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
|
|
123017
|
+
type RetrieveExportByIdResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
|
|
123018
|
+
type RetrieveExportByIdProps = paths[typeof routeName$7W]['get']['parameters'];
|
|
122857
123019
|
declare const retrieveExportById: (props: RetrieveExportByIdProps, wgApiClient: ClientType) => Promise<RetrieveExportByIdResponse>;
|
|
122858
123020
|
|
|
122859
|
-
declare const routeName$
|
|
122860
|
-
type GetInsurancePolicyByIdPathParams = paths[typeof routeName$
|
|
122861
|
-
type GetInsurancePolicyByIdResponse = paths[typeof routeName$
|
|
122862
|
-
type GetInsurancePolicyByIdProps = paths[typeof routeName$
|
|
123021
|
+
declare const routeName$7V = "/v1/api/insurance-policies/{insurance_policy_id}";
|
|
123022
|
+
type GetInsurancePolicyByIdPathParams = paths[typeof routeName$7V]['get']['parameters']['path'];
|
|
123023
|
+
type GetInsurancePolicyByIdResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
|
|
123024
|
+
type GetInsurancePolicyByIdProps = paths[typeof routeName$7V]['get']['parameters'];
|
|
122863
123025
|
declare const getInsurancePolicyById: (props: GetInsurancePolicyByIdProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdResponse>;
|
|
122864
123026
|
|
|
122865
|
-
declare const routeName$
|
|
122866
|
-
type GetInsurancePolicyComplianceByIdPathParams = paths[typeof routeName$
|
|
122867
|
-
type GetInsurancePolicyComplianceByIdResponse = paths[typeof routeName$
|
|
122868
|
-
type GetInsurancePolicyComplianceByIdProps = paths[typeof routeName$
|
|
123027
|
+
declare const routeName$7U = "/v1/api/insurance-policies/{insurance_policy_id}/compliance";
|
|
123028
|
+
type GetInsurancePolicyComplianceByIdPathParams = paths[typeof routeName$7U]['get']['parameters']['path'];
|
|
123029
|
+
type GetInsurancePolicyComplianceByIdResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
|
|
123030
|
+
type GetInsurancePolicyComplianceByIdProps = paths[typeof routeName$7U]['get']['parameters'];
|
|
122869
123031
|
declare const getInsurancePolicyComplianceById: (props: GetInsurancePolicyComplianceByIdProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyComplianceByIdResponse>;
|
|
122870
123032
|
|
|
122871
|
-
declare const routeName$
|
|
122872
|
-
type UpdateInsurancePolicyComplianceBody = paths[typeof routeName$
|
|
122873
|
-
type UpdateInsurancePolicyCompliancePathParams = paths[typeof routeName$
|
|
122874
|
-
type UpdateInsurancePolicyComplianceResponse = paths[typeof routeName$
|
|
123033
|
+
declare const routeName$7T = "/v1/api/insurance-policies/{insurance_policy_id}/compliance";
|
|
123034
|
+
type UpdateInsurancePolicyComplianceBody = paths[typeof routeName$7T]['patch']['requestBody']['content']['application/json'];
|
|
123035
|
+
type UpdateInsurancePolicyCompliancePathParams = paths[typeof routeName$7T]['patch']['parameters']['path'];
|
|
123036
|
+
type UpdateInsurancePolicyComplianceResponse = paths[typeof routeName$7T]['patch']['responses'][200]['content']['application/json'];
|
|
122875
123037
|
interface UpdateInsurancePolicyComplianceProps {
|
|
122876
123038
|
body: UpdateInsurancePolicyComplianceBody;
|
|
122877
123039
|
params: {
|
|
@@ -122880,10 +123042,10 @@ interface UpdateInsurancePolicyComplianceProps {
|
|
|
122880
123042
|
}
|
|
122881
123043
|
declare const updateInsurancePolicyCompliance: (props: UpdateInsurancePolicyComplianceProps, wgApiClient: ClientType) => Promise<UpdateInsurancePolicyComplianceResponse>;
|
|
122882
123044
|
|
|
122883
|
-
declare const routeName$
|
|
122884
|
-
type UpdateInsurancePolicyCoverageComplianceBody = paths[typeof routeName$
|
|
122885
|
-
type UpdateInsurancePolicyCoverageCompliancePathParams = paths[typeof routeName$
|
|
122886
|
-
type UpdateInsurancePolicyCoverageComplianceResponse = paths[typeof routeName$
|
|
123045
|
+
declare const routeName$7S = "/v1/api/insurance-policies/{insurance_policy_id}/coverages/{coverage_id}/compliance";
|
|
123046
|
+
type UpdateInsurancePolicyCoverageComplianceBody = paths[typeof routeName$7S]['patch']['requestBody']['content']['application/json'];
|
|
123047
|
+
type UpdateInsurancePolicyCoverageCompliancePathParams = paths[typeof routeName$7S]['patch']['parameters']['path'];
|
|
123048
|
+
type UpdateInsurancePolicyCoverageComplianceResponse = paths[typeof routeName$7S]['patch']['responses'][200]['content']['application/json'];
|
|
122887
123049
|
interface UpdateInsurancePolicyCoverageComplianceProps {
|
|
122888
123050
|
body: UpdateInsurancePolicyCoverageComplianceBody;
|
|
122889
123051
|
params: {
|
|
@@ -122892,10 +123054,10 @@ interface UpdateInsurancePolicyCoverageComplianceProps {
|
|
|
122892
123054
|
}
|
|
122893
123055
|
declare const updateInsurancePolicyCoverageCompliance: (props: UpdateInsurancePolicyCoverageComplianceProps, wgApiClient: ClientType) => Promise<UpdateInsurancePolicyCoverageComplianceResponse>;
|
|
122894
123056
|
|
|
122895
|
-
declare const routeName$
|
|
122896
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody = paths[typeof routeName$
|
|
122897
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams = paths[typeof routeName$
|
|
122898
|
-
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse = paths[typeof routeName$
|
|
123057
|
+
declare const routeName$7R = "/v1/api/parties-by-company-registration";
|
|
123058
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody = paths[typeof routeName$7R]['post']['requestBody']['content']['application/json'];
|
|
123059
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
|
|
123060
|
+
type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse = paths[typeof routeName$7R]['post']['responses'][201]['content']['application/json'];
|
|
122899
123061
|
interface CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps {
|
|
122900
123062
|
body: CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody;
|
|
122901
123063
|
params: {
|
|
@@ -122904,32 +123066,32 @@ interface CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps {
|
|
|
122904
123066
|
}
|
|
122905
123067
|
declare const createPartyByEnrichingWithEnrichingWithCompanyRegistration: (props: CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationProps, wgApiClient: ClientType) => Promise<CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse>;
|
|
122906
123068
|
|
|
122907
|
-
declare const routeName$
|
|
122908
|
-
type GetPartiesOriginFilterQueryParams = paths[typeof routeName$
|
|
122909
|
-
type GetPartiesOriginFilterResponse = paths[typeof routeName$
|
|
122910
|
-
type GetPartiesOriginFilterProps = paths[typeof routeName$
|
|
123069
|
+
declare const routeName$7Q = "/v1/api/parties-filters/origin";
|
|
123070
|
+
type GetPartiesOriginFilterQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
|
|
123071
|
+
type GetPartiesOriginFilterResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
|
|
123072
|
+
type GetPartiesOriginFilterProps = paths[typeof routeName$7Q]['get']['parameters'];
|
|
122911
123073
|
declare const getPartiesOriginFilter: (props: GetPartiesOriginFilterProps, wgApiClient: ClientType) => Promise<GetPartiesOriginFilterResponse>;
|
|
122912
123074
|
|
|
122913
|
-
declare const routeName$
|
|
122914
|
-
type CreateLegalPartyBody = paths[typeof routeName$
|
|
122915
|
-
type CreateLegalPartyResponse = paths[typeof routeName$
|
|
123075
|
+
declare const routeName$7P = "/v1/api/parties/companies";
|
|
123076
|
+
type CreateLegalPartyBody = paths[typeof routeName$7P]['post']['requestBody']['content']['application/json'];
|
|
123077
|
+
type CreateLegalPartyResponse = paths[typeof routeName$7P]['post']['responses'][201]['content']['application/json'];
|
|
122916
123078
|
interface CreateLegalPartyProps {
|
|
122917
123079
|
body: CreateLegalPartyBody;
|
|
122918
123080
|
}
|
|
122919
123081
|
declare const createLegalParty: (props: CreateLegalPartyProps, wgApiClient: ClientType) => Promise<CreateLegalPartyResponse>;
|
|
122920
123082
|
|
|
122921
|
-
declare const routeName$
|
|
122922
|
-
type CreateNaturalPartyBody = paths[typeof routeName$
|
|
122923
|
-
type CreateNaturalPartyResponse = paths[typeof routeName$
|
|
123083
|
+
declare const routeName$7O = "/v1/api/parties/customers";
|
|
123084
|
+
type CreateNaturalPartyBody = paths[typeof routeName$7O]['post']['requestBody']['content']['application/json'];
|
|
123085
|
+
type CreateNaturalPartyResponse = paths[typeof routeName$7O]['post']['responses'][201]['content']['application/json'];
|
|
122924
123086
|
interface CreateNaturalPartyProps {
|
|
122925
123087
|
body: CreateNaturalPartyBody;
|
|
122926
123088
|
}
|
|
122927
123089
|
declare const createNaturalParty: (props: CreateNaturalPartyProps, wgApiClient: ClientType) => Promise<CreateNaturalPartyResponse>;
|
|
122928
123090
|
|
|
122929
|
-
declare const routeName$
|
|
122930
|
-
type SearchPartiesBody = paths[typeof routeName$
|
|
122931
|
-
type SearchPartiesQueryParams = paths[typeof routeName$
|
|
122932
|
-
type SearchPartiesResponse = paths[typeof routeName$
|
|
123091
|
+
declare const routeName$7N = "/v1/api/parties/search";
|
|
123092
|
+
type SearchPartiesBody = paths[typeof routeName$7N]['post']['requestBody']['content']['application/json'];
|
|
123093
|
+
type SearchPartiesQueryParams = paths[typeof routeName$7N]['post']['parameters']['query'];
|
|
123094
|
+
type SearchPartiesResponse = paths[typeof routeName$7N]['post']['responses'][200]['content']['application/json'];
|
|
122933
123095
|
interface SearchPartiesProps {
|
|
122934
123096
|
body: SearchPartiesBody;
|
|
122935
123097
|
params: {
|
|
@@ -122938,16 +123100,16 @@ interface SearchPartiesProps {
|
|
|
122938
123100
|
}
|
|
122939
123101
|
declare const searchParties: (props: SearchPartiesProps, wgApiClient: ClientType) => Promise<SearchPartiesResponse>;
|
|
122940
123102
|
|
|
122941
|
-
declare const routeName$
|
|
122942
|
-
type GetPartyByIdPathParams = paths[typeof routeName$
|
|
122943
|
-
type GetPartyByIdResponse = paths[typeof routeName$
|
|
122944
|
-
type GetPartyByIdProps = paths[typeof routeName$
|
|
123103
|
+
declare const routeName$7M = "/v1/api/parties/{party_id}";
|
|
123104
|
+
type GetPartyByIdPathParams = paths[typeof routeName$7M]['get']['parameters']['path'];
|
|
123105
|
+
type GetPartyByIdResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
|
|
123106
|
+
type GetPartyByIdProps = paths[typeof routeName$7M]['get']['parameters'];
|
|
122945
123107
|
declare const getPartyById: (props: GetPartyByIdProps, wgApiClient: ClientType) => Promise<GetPartyByIdResponse>;
|
|
122946
123108
|
|
|
122947
|
-
declare const routeName$
|
|
122948
|
-
type UpdatePartyByIdBody = paths[typeof routeName$
|
|
122949
|
-
type UpdatePartyByIdPathParams = paths[typeof routeName$
|
|
122950
|
-
type UpdatePartyByIdResponse = paths[typeof routeName$
|
|
123109
|
+
declare const routeName$7L = "/v1/api/parties/{party_id}";
|
|
123110
|
+
type UpdatePartyByIdBody = paths[typeof routeName$7L]['patch']['requestBody']['content']['application/json'];
|
|
123111
|
+
type UpdatePartyByIdPathParams = paths[typeof routeName$7L]['patch']['parameters']['path'];
|
|
123112
|
+
type UpdatePartyByIdResponse = paths[typeof routeName$7L]['patch']['responses'][200]['content']['application/json'];
|
|
122951
123113
|
interface UpdatePartyByIdProps {
|
|
122952
123114
|
body: UpdatePartyByIdBody;
|
|
122953
123115
|
params: {
|
|
@@ -122956,24 +123118,24 @@ interface UpdatePartyByIdProps {
|
|
|
122956
123118
|
}
|
|
122957
123119
|
declare const updatePartyById: (props: UpdatePartyByIdProps, wgApiClient: ClientType) => Promise<UpdatePartyByIdResponse>;
|
|
122958
123120
|
|
|
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$
|
|
123121
|
+
declare const routeName$7K = "/v1/api/parties/{party_id}/activity";
|
|
123122
|
+
type GetActivityByPartyPathParams = paths[typeof routeName$7K]['get']['parameters']['path'];
|
|
123123
|
+
type GetActivityByPartyQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
|
|
123124
|
+
type GetActivityByPartyResponse = paths[typeof routeName$7K]['get']['responses'][200]['content']['application/json'];
|
|
123125
|
+
type GetActivityByPartyProps = paths[typeof routeName$7K]['get']['parameters'];
|
|
122964
123126
|
declare const getActivityByParty: (props: GetActivityByPartyProps, wgApiClient: ClientType) => Promise<GetActivityByPartyResponse>;
|
|
122965
123127
|
|
|
122966
|
-
declare const routeName$
|
|
122967
|
-
type GetPartyAddressesPathParams = paths[typeof routeName$
|
|
122968
|
-
type GetPartyAddressesResponse = paths[typeof routeName$
|
|
122969
|
-
type GetPartyAddressesProps = paths[typeof routeName$
|
|
123128
|
+
declare const routeName$7J = "/v1/api/parties/{party_id}/addresses";
|
|
123129
|
+
type GetPartyAddressesPathParams = paths[typeof routeName$7J]['get']['parameters']['path'];
|
|
123130
|
+
type GetPartyAddressesResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
|
|
123131
|
+
type GetPartyAddressesProps = paths[typeof routeName$7J]['get']['parameters'];
|
|
122970
123132
|
declare const getPartyAddresses: (props: GetPartyAddressesProps, wgApiClient: ClientType) => Promise<GetPartyAddressesResponse>;
|
|
122971
123133
|
|
|
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$
|
|
123134
|
+
declare const routeName$7I = "/v1/api/parties/{party_id}/assignees";
|
|
123135
|
+
type UpdatePartyAssigneesBody = paths[typeof routeName$7I]['put']['requestBody']['content']['application/json'];
|
|
123136
|
+
type UpdatePartyAssigneesPathParams = paths[typeof routeName$7I]['put']['parameters']['path'];
|
|
123137
|
+
type UpdatePartyAssigneesQueryParams = paths[typeof routeName$7I]['put']['parameters']['query'];
|
|
123138
|
+
type UpdatePartyAssigneesResponse = paths[typeof routeName$7I]['put']['responses'][200]['content']['application/json'];
|
|
122977
123139
|
interface UpdatePartyAssigneesProps {
|
|
122978
123140
|
body: UpdatePartyAssigneesBody;
|
|
122979
123141
|
params: {
|
|
@@ -122983,45 +123145,45 @@ interface UpdatePartyAssigneesProps {
|
|
|
122983
123145
|
}
|
|
122984
123146
|
declare const updatePartyAssignees: (props: UpdatePartyAssigneesProps, wgApiClient: ClientType) => Promise<UpdatePartyAssigneesResponse>;
|
|
122985
123147
|
|
|
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$
|
|
123148
|
+
declare const routeName$7H = "/v1/api/parties/{party_id}/claims";
|
|
123149
|
+
type GetClaimsAsPartyPathParams = paths[typeof routeName$7H]['get']['parameters']['path'];
|
|
123150
|
+
type GetClaimsAsPartyQueryParams = paths[typeof routeName$7H]['get']['parameters']['query'];
|
|
123151
|
+
type GetClaimsAsPartyResponse = paths[typeof routeName$7H]['get']['responses'][200]['content']['application/json'];
|
|
123152
|
+
type GetClaimsAsPartyProps = paths[typeof routeName$7H]['get']['parameters'];
|
|
122991
123153
|
declare const getClaimsAsParty: (props: GetClaimsAsPartyProps, wgApiClient: ClientType) => Promise<GetClaimsAsPartyResponse>;
|
|
122992
123154
|
|
|
122993
|
-
declare const routeName$
|
|
122994
|
-
type GetClaimsAsPartyByIdPathParams = paths[typeof routeName$
|
|
122995
|
-
type GetClaimsAsPartyByIdResponse = paths[typeof routeName$
|
|
122996
|
-
type GetClaimsAsPartyByIdProps = paths[typeof routeName$
|
|
123155
|
+
declare const routeName$7G = "/v1/api/parties/{party_id}/claims/{claim_id}";
|
|
123156
|
+
type GetClaimsAsPartyByIdPathParams = paths[typeof routeName$7G]['get']['parameters']['path'];
|
|
123157
|
+
type GetClaimsAsPartyByIdResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
|
|
123158
|
+
type GetClaimsAsPartyByIdProps = paths[typeof routeName$7G]['get']['parameters'];
|
|
122997
123159
|
declare const getClaimsAsPartyById: (props: GetClaimsAsPartyByIdProps, wgApiClient: ClientType) => Promise<GetClaimsAsPartyByIdResponse>;
|
|
122998
123160
|
|
|
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$
|
|
123161
|
+
declare const routeName$7F = "/v1/api/parties/{party_id}/conversation_notes";
|
|
123162
|
+
type GetConversationNotesPathParams = paths[typeof routeName$7F]['get']['parameters']['path'];
|
|
123163
|
+
type GetConversationNotesQueryParams = paths[typeof routeName$7F]['get']['parameters']['query'];
|
|
123164
|
+
type GetConversationNotesResponse = paths[typeof routeName$7F]['get']['responses'][200]['content']['application/json'];
|
|
123165
|
+
type GetConversationNotesProps = paths[typeof routeName$7F]['get']['parameters'];
|
|
123004
123166
|
declare const getConversationNotes: (props: GetConversationNotesProps, wgApiClient: ClientType) => Promise<GetConversationNotesResponse>;
|
|
123005
123167
|
|
|
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$
|
|
123168
|
+
declare const routeName$7E = "/v1/api/parties/{party_id}/current-account-insights";
|
|
123169
|
+
type GetCurrentAccountInsightsAsPartyPathParams = paths[typeof routeName$7E]['get']['parameters']['path'];
|
|
123170
|
+
type GetCurrentAccountInsightsAsPartyQueryParams = paths[typeof routeName$7E]['get']['parameters']['query'];
|
|
123171
|
+
type GetCurrentAccountInsightsAsPartyResponse = paths[typeof routeName$7E]['get']['responses'][200]['content']['application/json'];
|
|
123172
|
+
type GetCurrentAccountInsightsAsPartyProps = paths[typeof routeName$7E]['get']['parameters'];
|
|
123011
123173
|
declare const getCurrentAccountInsightsAsParty: (props: GetCurrentAccountInsightsAsPartyProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsPartyResponse>;
|
|
123012
123174
|
|
|
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$
|
|
123175
|
+
declare const routeName$7D = "/v1/api/parties/{party_id}/documents";
|
|
123176
|
+
type GetDocumentsForPartyPathParams = paths[typeof routeName$7D]['get']['parameters']['path'];
|
|
123177
|
+
type GetDocumentsForPartyQueryParams = paths[typeof routeName$7D]['get']['parameters']['query'];
|
|
123178
|
+
type GetDocumentsForPartyResponse = paths[typeof routeName$7D]['get']['responses'][200]['content']['application/json'];
|
|
123179
|
+
type GetDocumentsForPartyProps = paths[typeof routeName$7D]['get']['parameters'];
|
|
123018
123180
|
declare const getDocumentsForParty: (props: GetDocumentsForPartyProps, wgApiClient: ClientType) => Promise<GetDocumentsForPartyResponse>;
|
|
123019
123181
|
|
|
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$
|
|
123182
|
+
declare const routeName$7C = "/v1/api/parties/{party_id}/documents";
|
|
123183
|
+
type CreateDocumentForPartyBody = paths[typeof routeName$7C]['post']['requestBody']['content']['application/json'];
|
|
123184
|
+
type CreateDocumentForPartyPathParams = paths[typeof routeName$7C]['post']['parameters']['path'];
|
|
123185
|
+
type CreateDocumentForPartyQueryParams = paths[typeof routeName$7C]['post']['parameters']['query'];
|
|
123186
|
+
type CreateDocumentForPartyResponse = paths[typeof routeName$7C]['post']['responses'][201]['content']['application/json'];
|
|
123025
123187
|
interface CreateDocumentForPartyProps {
|
|
123026
123188
|
body: CreateDocumentForPartyBody;
|
|
123027
123189
|
params: {
|
|
@@ -123031,9 +123193,9 @@ interface CreateDocumentForPartyProps {
|
|
|
123031
123193
|
}
|
|
123032
123194
|
declare const createDocumentForParty: (props: CreateDocumentForPartyProps, wgApiClient: ClientType) => Promise<CreateDocumentForPartyResponse>;
|
|
123033
123195
|
|
|
123034
|
-
declare const routeName$
|
|
123035
|
-
type DeleteDocumentForPartyPathParams = paths[typeof routeName$
|
|
123036
|
-
type DeleteDocumentForPartyResponse = paths[typeof routeName$
|
|
123196
|
+
declare const routeName$7B = "/v1/api/parties/{party_id}/documents/{document_id}";
|
|
123197
|
+
type DeleteDocumentForPartyPathParams = paths[typeof routeName$7B]['delete']['parameters']['path'];
|
|
123198
|
+
type DeleteDocumentForPartyResponse = paths[typeof routeName$7B]['delete']['responses'][200]['content']['application/json'];
|
|
123037
123199
|
interface DeleteDocumentForPartyProps {
|
|
123038
123200
|
params: {
|
|
123039
123201
|
path: DeleteDocumentForPartyPathParams;
|
|
@@ -123041,10 +123203,10 @@ interface DeleteDocumentForPartyProps {
|
|
|
123041
123203
|
}
|
|
123042
123204
|
declare const deleteDocumentForParty: (props: DeleteDocumentForPartyProps, wgApiClient: ClientType) => Promise<DeleteDocumentForPartyResponse>;
|
|
123043
123205
|
|
|
123044
|
-
declare const routeName$
|
|
123045
|
-
type UpdateDocumentForPartyBody = paths[typeof routeName$
|
|
123046
|
-
type UpdateDocumentForPartyPathParams = paths[typeof routeName$
|
|
123047
|
-
type UpdateDocumentForPartyResponse = paths[typeof routeName$
|
|
123206
|
+
declare const routeName$7A = "/v1/api/parties/{party_id}/documents/{document_id}";
|
|
123207
|
+
type UpdateDocumentForPartyBody = paths[typeof routeName$7A]['patch']['requestBody']['content']['application/json'];
|
|
123208
|
+
type UpdateDocumentForPartyPathParams = paths[typeof routeName$7A]['patch']['parameters']['path'];
|
|
123209
|
+
type UpdateDocumentForPartyResponse = paths[typeof routeName$7A]['patch']['responses'][200]['content']['application/json'];
|
|
123048
123210
|
interface UpdateDocumentForPartyProps {
|
|
123049
123211
|
body: UpdateDocumentForPartyBody;
|
|
123050
123212
|
params: {
|
|
@@ -123053,10 +123215,10 @@ interface UpdateDocumentForPartyProps {
|
|
|
123053
123215
|
}
|
|
123054
123216
|
declare const updateDocumentForParty: (props: UpdateDocumentForPartyProps, wgApiClient: ClientType) => Promise<UpdateDocumentForPartyResponse>;
|
|
123055
123217
|
|
|
123056
|
-
declare const routeName$
|
|
123057
|
-
type EnrichPartyByIdWithExternalCompanyDataPathParams = paths[typeof routeName$
|
|
123058
|
-
type EnrichPartyByIdWithExternalCompanyDataQueryParams = paths[typeof routeName$
|
|
123059
|
-
type EnrichPartyByIdWithExternalCompanyDataResponse = paths[typeof routeName$
|
|
123218
|
+
declare const routeName$7z = "/v1/api/parties/{party_id}/enrichments";
|
|
123219
|
+
type EnrichPartyByIdWithExternalCompanyDataPathParams = paths[typeof routeName$7z]['put']['parameters']['path'];
|
|
123220
|
+
type EnrichPartyByIdWithExternalCompanyDataQueryParams = paths[typeof routeName$7z]['put']['parameters']['query'];
|
|
123221
|
+
type EnrichPartyByIdWithExternalCompanyDataResponse = paths[typeof routeName$7z]['put']['responses'][200]['content']['application/json'];
|
|
123060
123222
|
interface EnrichPartyByIdWithExternalCompanyDataProps {
|
|
123061
123223
|
params: {
|
|
123062
123224
|
query: EnrichPartyByIdWithExternalCompanyDataQueryParams;
|
|
@@ -123065,10 +123227,10 @@ interface EnrichPartyByIdWithExternalCompanyDataProps {
|
|
|
123065
123227
|
}
|
|
123066
123228
|
declare const enrichPartyByIdWithExternalCompanyData: (props: EnrichPartyByIdWithExternalCompanyDataProps, wgApiClient: ClientType) => Promise<EnrichPartyByIdWithExternalCompanyDataResponse>;
|
|
123067
123229
|
|
|
123068
|
-
declare const routeName$
|
|
123069
|
-
type ExportPartyToAnvaPathParams = paths[typeof routeName$
|
|
123070
|
-
type ExportPartyToAnvaQueryParams = paths[typeof routeName$
|
|
123071
|
-
type ExportPartyToAnvaResponse = paths[typeof routeName$
|
|
123230
|
+
declare const routeName$7y = "/v1/api/parties/{party_id}/export-to-anva";
|
|
123231
|
+
type ExportPartyToAnvaPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
|
|
123232
|
+
type ExportPartyToAnvaQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
|
|
123233
|
+
type ExportPartyToAnvaResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
|
|
123072
123234
|
interface ExportPartyToAnvaProps {
|
|
123073
123235
|
params: {
|
|
123074
123236
|
query: ExportPartyToAnvaQueryParams;
|
|
@@ -123077,10 +123239,10 @@ interface ExportPartyToAnvaProps {
|
|
|
123077
123239
|
}
|
|
123078
123240
|
declare const exportPartyToAnva: (props: ExportPartyToAnvaProps, wgApiClient: ClientType) => Promise<ExportPartyToAnvaResponse>;
|
|
123079
123241
|
|
|
123080
|
-
declare const routeName$
|
|
123081
|
-
type ExportPartyToAssuPathParams = paths[typeof routeName$
|
|
123082
|
-
type ExportPartyToAssuQueryParams = paths[typeof routeName$
|
|
123083
|
-
type ExportPartyToAssuResponse = paths[typeof routeName$
|
|
123242
|
+
declare const routeName$7x = "/v1/api/parties/{party_id}/export-to-assu";
|
|
123243
|
+
type ExportPartyToAssuPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
|
|
123244
|
+
type ExportPartyToAssuQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
|
|
123245
|
+
type ExportPartyToAssuResponse = paths[typeof routeName$7x]['post']['responses'][201]['content']['application/json'];
|
|
123084
123246
|
interface ExportPartyToAssuProps {
|
|
123085
123247
|
params: {
|
|
123086
123248
|
query: ExportPartyToAssuQueryParams;
|
|
@@ -123089,10 +123251,10 @@ interface ExportPartyToAssuProps {
|
|
|
123089
123251
|
}
|
|
123090
123252
|
declare const exportPartyToAssu: (props: ExportPartyToAssuProps, wgApiClient: ClientType) => Promise<ExportPartyToAssuResponse>;
|
|
123091
123253
|
|
|
123092
|
-
declare const routeName$
|
|
123093
|
-
type ExportPartyToDiasPathParams = paths[typeof routeName$
|
|
123094
|
-
type ExportPartyToDiasQueryParams = paths[typeof routeName$
|
|
123095
|
-
type ExportPartyToDiasResponse = paths[typeof routeName$
|
|
123254
|
+
declare const routeName$7w = "/v1/api/parties/{party_id}/export-to-dias";
|
|
123255
|
+
type ExportPartyToDiasPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
|
|
123256
|
+
type ExportPartyToDiasQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
|
|
123257
|
+
type ExportPartyToDiasResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
|
|
123096
123258
|
interface ExportPartyToDiasProps {
|
|
123097
123259
|
params: {
|
|
123098
123260
|
query: ExportPartyToDiasQueryParams;
|
|
@@ -123101,10 +123263,10 @@ interface ExportPartyToDiasProps {
|
|
|
123101
123263
|
}
|
|
123102
123264
|
declare const exportPartyToDias: (props: ExportPartyToDiasProps, wgApiClient: ClientType) => Promise<ExportPartyToDiasResponse>;
|
|
123103
123265
|
|
|
123104
|
-
declare const routeName$
|
|
123105
|
-
type ExportPartyToFasterforwardPathParams = paths[typeof routeName$
|
|
123106
|
-
type ExportPartyToFasterforwardQueryParams = paths[typeof routeName$
|
|
123107
|
-
type ExportPartyToFasterforwardResponse = paths[typeof routeName$
|
|
123266
|
+
declare const routeName$7v = "/v1/api/parties/{party_id}/export-to-fasterforward";
|
|
123267
|
+
type ExportPartyToFasterforwardPathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
|
|
123268
|
+
type ExportPartyToFasterforwardQueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
|
|
123269
|
+
type ExportPartyToFasterforwardResponse = paths[typeof routeName$7v]['post']['responses'][201]['content']['application/json'];
|
|
123108
123270
|
interface ExportPartyToFasterforwardProps {
|
|
123109
123271
|
params: {
|
|
123110
123272
|
query: ExportPartyToFasterforwardQueryParams;
|
|
@@ -123113,16 +123275,16 @@ interface ExportPartyToFasterforwardProps {
|
|
|
123113
123275
|
}
|
|
123114
123276
|
declare const exportPartyToFasterforward: (props: ExportPartyToFasterforwardProps, wgApiClient: ClientType) => Promise<ExportPartyToFasterforwardResponse>;
|
|
123115
123277
|
|
|
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$
|
|
123278
|
+
declare const routeName$7u = "/v1/api/parties/{party_id}/exports";
|
|
123279
|
+
type RetrieveAllExportsByPartyPathParams = paths[typeof routeName$7u]['get']['parameters']['path'];
|
|
123280
|
+
type RetrieveAllExportsByPartyQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
|
|
123281
|
+
type RetrieveAllExportsByPartyResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
|
|
123282
|
+
type RetrieveAllExportsByPartyProps = paths[typeof routeName$7u]['get']['parameters'];
|
|
123121
123283
|
declare const retrieveAllExportsByParty: (props: RetrieveAllExportsByPartyProps, wgApiClient: ClientType) => Promise<RetrieveAllExportsByPartyResponse>;
|
|
123122
123284
|
|
|
123123
|
-
declare const routeName$
|
|
123124
|
-
type ExportPartyByIdPathParams = paths[typeof routeName$
|
|
123125
|
-
type ExportPartyByIdResponse = paths[typeof routeName$
|
|
123285
|
+
declare const routeName$7t = "/v1/api/parties/{party_id}/exports/crm";
|
|
123286
|
+
type ExportPartyByIdPathParams = paths[typeof routeName$7t]['post']['parameters']['path'];
|
|
123287
|
+
type ExportPartyByIdResponse = paths[typeof routeName$7t]['post']['responses'][201]['content']['application/json'];
|
|
123126
123288
|
interface ExportPartyByIdProps {
|
|
123127
123289
|
params: {
|
|
123128
123290
|
path: ExportPartyByIdPathParams;
|
|
@@ -123130,17 +123292,17 @@ interface ExportPartyByIdProps {
|
|
|
123130
123292
|
}
|
|
123131
123293
|
declare const exportPartyById: (props: ExportPartyByIdProps, wgApiClient: ClientType) => Promise<ExportPartyByIdResponse>;
|
|
123132
123294
|
|
|
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$
|
|
123295
|
+
declare const routeName$7s = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123296
|
+
type GetInsurancePoliciesForPartyPathParams = paths[typeof routeName$7s]['get']['parameters']['path'];
|
|
123297
|
+
type GetInsurancePoliciesForPartyQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
|
|
123298
|
+
type GetInsurancePoliciesForPartyResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
|
|
123299
|
+
type GetInsurancePoliciesForPartyProps = paths[typeof routeName$7s]['get']['parameters'];
|
|
123138
123300
|
declare const getInsurancePoliciesForParty: (props: GetInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesForPartyResponse>;
|
|
123139
123301
|
|
|
123140
|
-
declare const routeName$
|
|
123141
|
-
type UpsertInsurancePoliciesForPartyBody = paths[typeof routeName$
|
|
123142
|
-
type UpsertInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123143
|
-
type UpsertInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123302
|
+
declare const routeName$7r = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123303
|
+
type UpsertInsurancePoliciesForPartyBody = paths[typeof routeName$7r]['put']['requestBody']['content']['application/json'];
|
|
123304
|
+
type UpsertInsurancePoliciesForPartyPathParams = paths[typeof routeName$7r]['put']['parameters']['path'];
|
|
123305
|
+
type UpsertInsurancePoliciesForPartyResponse = paths[typeof routeName$7r]['put']['responses'][201]['content']['application/json'];
|
|
123144
123306
|
interface UpsertInsurancePoliciesForPartyProps {
|
|
123145
123307
|
body: UpsertInsurancePoliciesForPartyBody;
|
|
123146
123308
|
params: {
|
|
@@ -123149,10 +123311,10 @@ interface UpsertInsurancePoliciesForPartyProps {
|
|
|
123149
123311
|
}
|
|
123150
123312
|
declare const upsertInsurancePoliciesForParty: (props: UpsertInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<UpsertInsurancePoliciesForPartyResponse>;
|
|
123151
123313
|
|
|
123152
|
-
declare const routeName$
|
|
123153
|
-
type CreateInsurancePoliciesForPartyBody = paths[typeof routeName$
|
|
123154
|
-
type CreateInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123155
|
-
type CreateInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123314
|
+
declare const routeName$7q = "/v1/api/parties/{party_id}/insurance-policies";
|
|
123315
|
+
type CreateInsurancePoliciesForPartyBody = paths[typeof routeName$7q]['post']['requestBody']['content']['application/json'];
|
|
123316
|
+
type CreateInsurancePoliciesForPartyPathParams = paths[typeof routeName$7q]['post']['parameters']['path'];
|
|
123317
|
+
type CreateInsurancePoliciesForPartyResponse = paths[typeof routeName$7q]['post']['responses'][201]['content']['application/json'];
|
|
123156
123318
|
interface CreateInsurancePoliciesForPartyProps {
|
|
123157
123319
|
body: CreateInsurancePoliciesForPartyBody;
|
|
123158
123320
|
params: {
|
|
@@ -123161,9 +123323,9 @@ interface CreateInsurancePoliciesForPartyProps {
|
|
|
123161
123323
|
}
|
|
123162
123324
|
declare const createInsurancePoliciesForParty: (props: CreateInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<CreateInsurancePoliciesForPartyResponse>;
|
|
123163
123325
|
|
|
123164
|
-
declare const routeName$
|
|
123165
|
-
type DeleteInsurancePoliciesForPartyPathParams = paths[typeof routeName$
|
|
123166
|
-
type DeleteInsurancePoliciesForPartyResponse = paths[typeof routeName$
|
|
123326
|
+
declare const routeName$7p = "/v1/api/parties/{party_id}/insurance-policies/{insurance_policy_id}";
|
|
123327
|
+
type DeleteInsurancePoliciesForPartyPathParams = paths[typeof routeName$7p]['delete']['parameters']['path'];
|
|
123328
|
+
type DeleteInsurancePoliciesForPartyResponse = paths[typeof routeName$7p]['delete']['responses'][200]['content']['application/json'];
|
|
123167
123329
|
interface DeleteInsurancePoliciesForPartyProps {
|
|
123168
123330
|
params: {
|
|
123169
123331
|
path: DeleteInsurancePoliciesForPartyPathParams;
|
|
@@ -123171,52 +123333,52 @@ interface DeleteInsurancePoliciesForPartyProps {
|
|
|
123171
123333
|
}
|
|
123172
123334
|
declare const deleteInsurancePoliciesForParty: (props: DeleteInsurancePoliciesForPartyProps, wgApiClient: ClientType) => Promise<DeleteInsurancePoliciesForPartyResponse>;
|
|
123173
123335
|
|
|
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$
|
|
123336
|
+
declare const routeName$7o = "/v1/api/parties/{party_id}/insurance-policies/{insurance_policy_id}/finconnect/link";
|
|
123337
|
+
type GetFinconnectLinkForInsurancePolicyPathParams = paths[typeof routeName$7o]['get']['parameters']['path'];
|
|
123338
|
+
type GetFinconnectLinkForInsurancePolicyQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
|
|
123339
|
+
type GetFinconnectLinkForInsurancePolicyResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
|
|
123340
|
+
type GetFinconnectLinkForInsurancePolicyProps = paths[typeof routeName$7o]['get']['parameters'];
|
|
123179
123341
|
declare const getFinconnectLinkForInsurancePolicy: (props: GetFinconnectLinkForInsurancePolicyProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkForInsurancePolicyResponse>;
|
|
123180
123342
|
|
|
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$
|
|
123343
|
+
declare const routeName$7n = "/v1/api/parties/{party_id}/invoices";
|
|
123344
|
+
type GetInvoicesAsPartyPathParams = paths[typeof routeName$7n]['get']['parameters']['path'];
|
|
123345
|
+
type GetInvoicesAsPartyQueryParams = paths[typeof routeName$7n]['get']['parameters']['query'];
|
|
123346
|
+
type GetInvoicesAsPartyResponse = paths[typeof routeName$7n]['get']['responses'][200]['content']['application/json'];
|
|
123347
|
+
type GetInvoicesAsPartyProps = paths[typeof routeName$7n]['get']['parameters'];
|
|
123186
123348
|
declare const getInvoicesAsParty: (props: GetInvoicesAsPartyProps, wgApiClient: ClientType) => Promise<GetInvoicesAsPartyResponse>;
|
|
123187
123349
|
|
|
123188
|
-
declare const routeName$
|
|
123189
|
-
type GetInvoicesAsPartyByIdPathParams = paths[typeof routeName$
|
|
123190
|
-
type GetInvoicesAsPartyByIdResponse = paths[typeof routeName$
|
|
123191
|
-
type GetInvoicesAsPartyByIdProps = paths[typeof routeName$
|
|
123350
|
+
declare const routeName$7m = "/v1/api/parties/{party_id}/invoices/{invoice_id}";
|
|
123351
|
+
type GetInvoicesAsPartyByIdPathParams = paths[typeof routeName$7m]['get']['parameters']['path'];
|
|
123352
|
+
type GetInvoicesAsPartyByIdResponse = paths[typeof routeName$7m]['get']['responses'][200]['content']['application/json'];
|
|
123353
|
+
type GetInvoicesAsPartyByIdProps = paths[typeof routeName$7m]['get']['parameters'];
|
|
123192
123354
|
declare const getInvoicesAsPartyById: (props: GetInvoicesAsPartyByIdProps, wgApiClient: ClientType) => Promise<GetInvoicesAsPartyByIdResponse>;
|
|
123193
123355
|
|
|
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$
|
|
123356
|
+
declare const routeName$7l = "/v1/api/parties/{party_id}/kyc";
|
|
123357
|
+
type GetKycByPartyPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
|
|
123358
|
+
type GetKycByPartyQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
|
|
123359
|
+
type GetKycByPartyResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
|
|
123360
|
+
type GetKycByPartyProps = paths[typeof routeName$7l]['get']['parameters'];
|
|
123199
123361
|
declare const getKycByParty: (props: GetKycByPartyProps, wgApiClient: ClientType) => Promise<GetKycByPartyResponse>;
|
|
123200
123362
|
|
|
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$
|
|
123363
|
+
declare const routeName$7k = "/v1/api/parties/{party_id}/management/possible-insurance-products";
|
|
123364
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdPathParams = paths[typeof routeName$7k]['get']['parameters']['path'];
|
|
123365
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams = paths[typeof routeName$7k]['get']['parameters']['query'];
|
|
123366
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
|
|
123367
|
+
type GetPossibleInsuranceProductsForManagementByPartyIdProps = paths[typeof routeName$7k]['get']['parameters'];
|
|
123206
123368
|
declare const getPossibleInsuranceProductsForManagementByPartyId: (props: GetPossibleInsuranceProductsForManagementByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsForManagementByPartyIdResponse>;
|
|
123207
123369
|
|
|
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$
|
|
123370
|
+
declare const routeName$7j = "/v1/api/parties/{party_id}/merge-suggestions";
|
|
123371
|
+
type GetPartyMergeSuggestionsPathParams = paths[typeof routeName$7j]['get']['parameters']['path'];
|
|
123372
|
+
type GetPartyMergeSuggestionsQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
|
|
123373
|
+
type GetPartyMergeSuggestionsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
|
|
123374
|
+
type GetPartyMergeSuggestionsProps = paths[typeof routeName$7j]['get']['parameters'];
|
|
123213
123375
|
declare const getPartyMergeSuggestions: (props: GetPartyMergeSuggestionsProps, wgApiClient: ClientType) => Promise<GetPartyMergeSuggestionsResponse>;
|
|
123214
123376
|
|
|
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$
|
|
123377
|
+
declare const routeName$7i = "/v1/api/parties/{party_id}/merges";
|
|
123378
|
+
type MergePartiesTogetherBody = paths[typeof routeName$7i]['post']['requestBody']['content']['application/json'];
|
|
123379
|
+
type MergePartiesTogetherPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
|
|
123380
|
+
type MergePartiesTogetherQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
|
|
123381
|
+
type MergePartiesTogetherResponse = paths[typeof routeName$7i]['post']['responses'][200]['content']['application/json'];
|
|
123220
123382
|
interface MergePartiesTogetherProps {
|
|
123221
123383
|
body: MergePartiesTogetherBody;
|
|
123222
123384
|
params: {
|
|
@@ -123226,10 +123388,10 @@ interface MergePartiesTogetherProps {
|
|
|
123226
123388
|
}
|
|
123227
123389
|
declare const mergePartiesTogether: (props: MergePartiesTogetherProps, wgApiClient: ClientType) => Promise<MergePartiesTogetherResponse>;
|
|
123228
123390
|
|
|
123229
|
-
declare const routeName$
|
|
123230
|
-
type CreatePartyNoteBody = paths[typeof routeName$
|
|
123231
|
-
type CreatePartyNotePathParams = paths[typeof routeName$
|
|
123232
|
-
type CreatePartyNoteResponse = paths[typeof routeName$
|
|
123391
|
+
declare const routeName$7h = "/v1/api/parties/{party_id}/notes";
|
|
123392
|
+
type CreatePartyNoteBody = paths[typeof routeName$7h]['post']['requestBody']['content']['application/json'];
|
|
123393
|
+
type CreatePartyNotePathParams = paths[typeof routeName$7h]['post']['parameters']['path'];
|
|
123394
|
+
type CreatePartyNoteResponse = paths[typeof routeName$7h]['post']['responses'][201]['content']['application/json'];
|
|
123233
123395
|
interface CreatePartyNoteProps {
|
|
123234
123396
|
body: CreatePartyNoteBody;
|
|
123235
123397
|
params: {
|
|
@@ -123238,9 +123400,9 @@ interface CreatePartyNoteProps {
|
|
|
123238
123400
|
}
|
|
123239
123401
|
declare const createPartyNote: (props: CreatePartyNoteProps, wgApiClient: ClientType) => Promise<CreatePartyNoteResponse>;
|
|
123240
123402
|
|
|
123241
|
-
declare const routeName$
|
|
123242
|
-
type DeletePartyNoteByIdPathParams = paths[typeof routeName$
|
|
123243
|
-
type DeletePartyNoteByIdResponse = paths[typeof routeName$
|
|
123403
|
+
declare const routeName$7g = "/v1/api/parties/{party_id}/notes/{note_id}";
|
|
123404
|
+
type DeletePartyNoteByIdPathParams = paths[typeof routeName$7g]['delete']['parameters']['path'];
|
|
123405
|
+
type DeletePartyNoteByIdResponse = paths[typeof routeName$7g]['delete']['responses'][200]['content']['application/json'];
|
|
123244
123406
|
interface DeletePartyNoteByIdProps {
|
|
123245
123407
|
params: {
|
|
123246
123408
|
path: DeletePartyNoteByIdPathParams;
|
|
@@ -123248,10 +123410,10 @@ interface DeletePartyNoteByIdProps {
|
|
|
123248
123410
|
}
|
|
123249
123411
|
declare const deletePartyNoteById: (props: DeletePartyNoteByIdProps, wgApiClient: ClientType) => Promise<DeletePartyNoteByIdResponse>;
|
|
123250
123412
|
|
|
123251
|
-
declare const routeName$
|
|
123252
|
-
type UpdatePartyNoteByIdBody = paths[typeof routeName$
|
|
123253
|
-
type UpdatePartyNoteByIdPathParams = paths[typeof routeName$
|
|
123254
|
-
type UpdatePartyNoteByIdResponse = paths[typeof routeName$
|
|
123413
|
+
declare const routeName$7f = "/v1/api/parties/{party_id}/notes/{note_id}";
|
|
123414
|
+
type UpdatePartyNoteByIdBody = paths[typeof routeName$7f]['patch']['requestBody']['content']['application/json'];
|
|
123415
|
+
type UpdatePartyNoteByIdPathParams = paths[typeof routeName$7f]['patch']['parameters']['path'];
|
|
123416
|
+
type UpdatePartyNoteByIdResponse = paths[typeof routeName$7f]['patch']['responses'][200]['content']['application/json'];
|
|
123255
123417
|
interface UpdatePartyNoteByIdProps {
|
|
123256
123418
|
body: UpdatePartyNoteByIdBody;
|
|
123257
123419
|
params: {
|
|
@@ -123260,11 +123422,11 @@ interface UpdatePartyNoteByIdProps {
|
|
|
123260
123422
|
}
|
|
123261
123423
|
declare const updatePartyNoteById: (props: UpdatePartyNoteByIdProps, wgApiClient: ClientType) => Promise<UpdatePartyNoteByIdResponse>;
|
|
123262
123424
|
|
|
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$
|
|
123425
|
+
declare const routeName$7e = "/v1/api/parties/{party_id}/offers";
|
|
123426
|
+
type CreatePartyOffersBody = paths[typeof routeName$7e]['post']['requestBody']['content']['application/json'];
|
|
123427
|
+
type CreatePartyOffersPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
|
|
123428
|
+
type CreatePartyOffersQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
|
|
123429
|
+
type CreatePartyOffersResponse = paths[typeof routeName$7e]['post']['responses'][201]['content']['application/json'];
|
|
123268
123430
|
interface CreatePartyOffersProps {
|
|
123269
123431
|
body: CreatePartyOffersBody;
|
|
123270
123432
|
params: {
|
|
@@ -123274,23 +123436,23 @@ interface CreatePartyOffersProps {
|
|
|
123274
123436
|
}
|
|
123275
123437
|
declare const createPartyOffers: (props: CreatePartyOffersProps, wgApiClient: ClientType) => Promise<CreatePartyOffersResponse>;
|
|
123276
123438
|
|
|
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$
|
|
123439
|
+
declare const routeName$7d = "/v1/api/parties/{party_id}/onesurance-data";
|
|
123440
|
+
type GetOnesuranceDataByPartyIdPathParams = paths[typeof routeName$7d]['get']['parameters']['path'];
|
|
123441
|
+
type GetOnesuranceDataByPartyIdQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
|
|
123442
|
+
type GetOnesuranceDataByPartyIdResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
|
|
123443
|
+
type GetOnesuranceDataByPartyIdProps = paths[typeof routeName$7d]['get']['parameters'];
|
|
123282
123444
|
declare const getOnesuranceDataByPartyId: (props: GetOnesuranceDataByPartyIdProps, wgApiClient: ClientType) => Promise<GetOnesuranceDataByPartyIdResponse>;
|
|
123283
123445
|
|
|
123284
|
-
declare const routeName$
|
|
123285
|
-
type GetPolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123286
|
-
type GetPolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123287
|
-
type GetPolicyPackagesForPartyProps = paths[typeof routeName$
|
|
123446
|
+
declare const routeName$7c = "/v1/api/parties/{party_id}/policy-packages";
|
|
123447
|
+
type GetPolicyPackagesForPartyPathParams = paths[typeof routeName$7c]['get']['parameters']['path'];
|
|
123448
|
+
type GetPolicyPackagesForPartyResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
|
|
123449
|
+
type GetPolicyPackagesForPartyProps = paths[typeof routeName$7c]['get']['parameters'];
|
|
123288
123450
|
declare const getPolicyPackagesForParty: (props: GetPolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesForPartyResponse>;
|
|
123289
123451
|
|
|
123290
|
-
declare const routeName$
|
|
123291
|
-
type UpsertPolicyPackagesForPartyBody = paths[typeof routeName$
|
|
123292
|
-
type UpsertPolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123293
|
-
type UpsertPolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123452
|
+
declare const routeName$7b = "/v1/api/parties/{party_id}/policy-packages";
|
|
123453
|
+
type UpsertPolicyPackagesForPartyBody = paths[typeof routeName$7b]['put']['requestBody']['content']['application/json'];
|
|
123454
|
+
type UpsertPolicyPackagesForPartyPathParams = paths[typeof routeName$7b]['put']['parameters']['path'];
|
|
123455
|
+
type UpsertPolicyPackagesForPartyResponse = paths[typeof routeName$7b]['put']['responses'][201]['content']['application/json'];
|
|
123294
123456
|
interface UpsertPolicyPackagesForPartyProps {
|
|
123295
123457
|
body: UpsertPolicyPackagesForPartyBody;
|
|
123296
123458
|
params: {
|
|
@@ -123299,16 +123461,16 @@ interface UpsertPolicyPackagesForPartyProps {
|
|
|
123299
123461
|
}
|
|
123300
123462
|
declare const upsertPolicyPackagesForParty: (props: UpsertPolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<UpsertPolicyPackagesForPartyResponse>;
|
|
123301
123463
|
|
|
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$
|
|
123464
|
+
declare const routeName$7a = "/v1/api/parties/{party_id}/policy-packages/{policy_package_id}";
|
|
123465
|
+
type GetPolicyPackageByIdPathParams = paths[typeof routeName$7a]['get']['parameters']['path'];
|
|
123466
|
+
type GetPolicyPackageByIdQueryParams = paths[typeof routeName$7a]['get']['parameters']['query'];
|
|
123467
|
+
type GetPolicyPackageByIdResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
|
|
123468
|
+
type GetPolicyPackageByIdProps = paths[typeof routeName$7a]['get']['parameters'];
|
|
123307
123469
|
declare const getPolicyPackageById: (props: GetPolicyPackageByIdProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdResponse>;
|
|
123308
123470
|
|
|
123309
|
-
declare const routeName$
|
|
123310
|
-
type DeletePolicyPackagesForPartyPathParams = paths[typeof routeName$
|
|
123311
|
-
type DeletePolicyPackagesForPartyResponse = paths[typeof routeName$
|
|
123471
|
+
declare const routeName$79 = "/v1/api/parties/{party_id}/policy-packages/{policy_package_id}";
|
|
123472
|
+
type DeletePolicyPackagesForPartyPathParams = paths[typeof routeName$79]['delete']['parameters']['path'];
|
|
123473
|
+
type DeletePolicyPackagesForPartyResponse = paths[typeof routeName$79]['delete']['responses'][200]['content']['application/json'];
|
|
123312
123474
|
interface DeletePolicyPackagesForPartyProps {
|
|
123313
123475
|
params: {
|
|
123314
123476
|
path: DeletePolicyPackagesForPartyPathParams;
|
|
@@ -123316,17 +123478,17 @@ interface DeletePolicyPackagesForPartyProps {
|
|
|
123316
123478
|
}
|
|
123317
123479
|
declare const deletePolicyPackagesForParty: (props: DeletePolicyPackagesForPartyProps, wgApiClient: ClientType) => Promise<DeletePolicyPackagesForPartyResponse>;
|
|
123318
123480
|
|
|
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$
|
|
123481
|
+
declare const routeName$78 = "/v1/api/parties/{party_id}/possible-insurance-products";
|
|
123482
|
+
type GetPossibleInsuranceProductsByPartyIdPathParams = paths[typeof routeName$78]['get']['parameters']['path'];
|
|
123483
|
+
type GetPossibleInsuranceProductsByPartyIdQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
|
|
123484
|
+
type GetPossibleInsuranceProductsByPartyIdResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
|
|
123485
|
+
type GetPossibleInsuranceProductsByPartyIdProps = paths[typeof routeName$78]['get']['parameters'];
|
|
123324
123486
|
declare const getPossibleInsuranceProductsByPartyId: (props: GetPossibleInsuranceProductsByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsByPartyIdResponse>;
|
|
123325
123487
|
|
|
123326
|
-
declare const routeName$
|
|
123327
|
-
type CreateReferenceForPartyBody = paths[typeof routeName$
|
|
123328
|
-
type CreateReferenceForPartyPathParams = paths[typeof routeName$
|
|
123329
|
-
type CreateReferenceForPartyResponse = paths[typeof routeName$
|
|
123488
|
+
declare const routeName$77 = "/v1/api/parties/{party_id}/references";
|
|
123489
|
+
type CreateReferenceForPartyBody = paths[typeof routeName$77]['post']['requestBody']['content']['application/json'];
|
|
123490
|
+
type CreateReferenceForPartyPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
|
|
123491
|
+
type CreateReferenceForPartyResponse = paths[typeof routeName$77]['post']['responses'][200]['content']['application/json'];
|
|
123330
123492
|
interface CreateReferenceForPartyProps {
|
|
123331
123493
|
body: CreateReferenceForPartyBody;
|
|
123332
123494
|
params: {
|
|
@@ -123335,17 +123497,17 @@ interface CreateReferenceForPartyProps {
|
|
|
123335
123497
|
}
|
|
123336
123498
|
declare const createReferenceForParty: (props: CreateReferenceForPartyProps, wgApiClient: ClientType) => Promise<CreateReferenceForPartyResponse>;
|
|
123337
123499
|
|
|
123338
|
-
declare const routeName$
|
|
123339
|
-
type GetRiskAnalysisByPartyIdPathParams = paths[typeof routeName$
|
|
123340
|
-
type GetRiskAnalysisByPartyIdResponse = paths[typeof routeName$
|
|
123341
|
-
type GetRiskAnalysisByPartyIdProps = paths[typeof routeName$
|
|
123500
|
+
declare const routeName$76 = "/v1/api/parties/{party_id}/risk_analysis";
|
|
123501
|
+
type GetRiskAnalysisByPartyIdPathParams = paths[typeof routeName$76]['get']['parameters']['path'];
|
|
123502
|
+
type GetRiskAnalysisByPartyIdResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
|
|
123503
|
+
type GetRiskAnalysisByPartyIdProps = paths[typeof routeName$76]['get']['parameters'];
|
|
123342
123504
|
declare const getRiskAnalysisByPartyId: (props: GetRiskAnalysisByPartyIdProps, wgApiClient: ClientType) => Promise<GetRiskAnalysisByPartyIdResponse>;
|
|
123343
123505
|
|
|
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$
|
|
123506
|
+
declare const routeName$75 = "/v1/api/parties/{party_id}/risk_objects/{risk_object_id}/relations";
|
|
123507
|
+
type CreateRelationBetweenRiskObjectAndPartyBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
|
|
123508
|
+
type CreateRelationBetweenRiskObjectAndPartyPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
|
|
123509
|
+
type CreateRelationBetweenRiskObjectAndPartyQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
|
|
123510
|
+
type CreateRelationBetweenRiskObjectAndPartyResponse = paths[typeof routeName$75]['post']['responses'][201]['content']['application/json'];
|
|
123349
123511
|
interface CreateRelationBetweenRiskObjectAndPartyProps {
|
|
123350
123512
|
body: CreateRelationBetweenRiskObjectAndPartyBody;
|
|
123351
123513
|
params: {
|
|
@@ -123355,11 +123517,11 @@ interface CreateRelationBetweenRiskObjectAndPartyProps {
|
|
|
123355
123517
|
}
|
|
123356
123518
|
declare const createRelationBetweenRiskObjectAndParty: (props: CreateRelationBetweenRiskObjectAndPartyProps, wgApiClient: ClientType) => Promise<CreateRelationBetweenRiskObjectAndPartyResponse>;
|
|
123357
123519
|
|
|
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$
|
|
123520
|
+
declare const routeName$74 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/email-inquiries";
|
|
123521
|
+
type SendMailForSimulationToPartyBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
|
|
123522
|
+
type SendMailForSimulationToPartyPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
|
|
123523
|
+
type SendMailForSimulationToPartyQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
|
|
123524
|
+
type SendMailForSimulationToPartyResponse = paths[typeof routeName$74]['post']['responses'][201]['content']['application/json'];
|
|
123363
123525
|
interface SendMailForSimulationToPartyProps {
|
|
123364
123526
|
body: SendMailForSimulationToPartyBody;
|
|
123365
123527
|
params: {
|
|
@@ -123369,17 +123531,17 @@ interface SendMailForSimulationToPartyProps {
|
|
|
123369
123531
|
}
|
|
123370
123532
|
declare const sendMailForSimulationToParty: (props: SendMailForSimulationToPartyProps, wgApiClient: ClientType) => Promise<SendMailForSimulationToPartyResponse>;
|
|
123371
123533
|
|
|
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$
|
|
123534
|
+
declare const routeName$73 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/insurance-policies";
|
|
123535
|
+
type GetInsurancePolicySimulationsForPartyPathParams = paths[typeof routeName$73]['get']['parameters']['path'];
|
|
123536
|
+
type GetInsurancePolicySimulationsForPartyQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
|
|
123537
|
+
type GetInsurancePolicySimulationsForPartyResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
|
|
123538
|
+
type GetInsurancePolicySimulationsForPartyProps = paths[typeof routeName$73]['get']['parameters'];
|
|
123377
123539
|
declare const getInsurancePolicySimulationsForParty: (props: GetInsurancePolicySimulationsForPartyProps, wgApiClient: ClientType) => Promise<GetInsurancePolicySimulationsForPartyResponse>;
|
|
123378
123540
|
|
|
123379
|
-
declare const routeName$
|
|
123380
|
-
type UpsertInsurancePolicySimulationForPartyBody = paths[typeof routeName$
|
|
123381
|
-
type UpsertInsurancePolicySimulationForPartyPathParams = paths[typeof routeName$
|
|
123382
|
-
type UpsertInsurancePolicySimulationForPartyResponse = paths[typeof routeName$
|
|
123541
|
+
declare const routeName$72 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/insurance-policies";
|
|
123542
|
+
type UpsertInsurancePolicySimulationForPartyBody = paths[typeof routeName$72]['put']['requestBody']['content']['application/json'];
|
|
123543
|
+
type UpsertInsurancePolicySimulationForPartyPathParams = paths[typeof routeName$72]['put']['parameters']['path'];
|
|
123544
|
+
type UpsertInsurancePolicySimulationForPartyResponse = paths[typeof routeName$72]['put']['responses'][201]['content']['application/json'];
|
|
123383
123545
|
interface UpsertInsurancePolicySimulationForPartyProps {
|
|
123384
123546
|
body: UpsertInsurancePolicySimulationForPartyBody;
|
|
123385
123547
|
params: {
|
|
@@ -123388,31 +123550,31 @@ interface UpsertInsurancePolicySimulationForPartyProps {
|
|
|
123388
123550
|
}
|
|
123389
123551
|
declare const upsertInsurancePolicySimulationForParty: (props: UpsertInsurancePolicySimulationForPartyProps, wgApiClient: ClientType) => Promise<UpsertInsurancePolicySimulationForPartyResponse>;
|
|
123390
123552
|
|
|
123391
|
-
declare const routeName$
|
|
123392
|
-
type GetPolicyPackageSimulationsForPartyPathParams = paths[typeof routeName$
|
|
123393
|
-
type GetPolicyPackageSimulationsForPartyResponse = paths[typeof routeName$
|
|
123394
|
-
type GetPolicyPackageSimulationsForPartyProps = paths[typeof routeName$
|
|
123553
|
+
declare const routeName$71 = "/v1/api/parties/{party_id}/simulations/{simulation_id}/policy-packages";
|
|
123554
|
+
type GetPolicyPackageSimulationsForPartyPathParams = paths[typeof routeName$71]['get']['parameters']['path'];
|
|
123555
|
+
type GetPolicyPackageSimulationsForPartyResponse = paths[typeof routeName$71]['get']['responses'][200]['content']['application/json'];
|
|
123556
|
+
type GetPolicyPackageSimulationsForPartyProps = paths[typeof routeName$71]['get']['parameters'];
|
|
123395
123557
|
declare const getPolicyPackageSimulationsForParty: (props: GetPolicyPackageSimulationsForPartyProps, wgApiClient: ClientType) => Promise<GetPolicyPackageSimulationsForPartyResponse>;
|
|
123396
123558
|
|
|
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$
|
|
123559
|
+
declare const routeName$70 = "/v1/api/parties/{party_id}/staff/possible-insurance-products";
|
|
123560
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdPathParams = paths[typeof routeName$70]['get']['parameters']['path'];
|
|
123561
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams = paths[typeof routeName$70]['get']['parameters']['query'];
|
|
123562
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdResponse = paths[typeof routeName$70]['get']['responses'][200]['content']['application/json'];
|
|
123563
|
+
type GetPossibleInsuranceProductsForStaffByPartyIdProps = paths[typeof routeName$70]['get']['parameters'];
|
|
123402
123564
|
declare const getPossibleInsuranceProductsForStaffByPartyId: (props: GetPossibleInsuranceProductsForStaffByPartyIdProps, wgApiClient: ClientType) => Promise<GetPossibleInsuranceProductsForStaffByPartyIdResponse>;
|
|
123403
123565
|
|
|
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$
|
|
123566
|
+
declare const routeName$6$ = "/v1/api/parties/{party_id}/system-campaigns";
|
|
123567
|
+
type GetSystemCampaignsByPartyPathParams = paths[typeof routeName$6$]['get']['parameters']['path'];
|
|
123568
|
+
type GetSystemCampaignsByPartyQueryParams = paths[typeof routeName$6$]['get']['parameters']['query'];
|
|
123569
|
+
type GetSystemCampaignsByPartyResponse = paths[typeof routeName$6$]['get']['responses'][200]['content']['application/json'];
|
|
123570
|
+
type GetSystemCampaignsByPartyProps = paths[typeof routeName$6$]['get']['parameters'];
|
|
123409
123571
|
declare const getSystemCampaignsByParty: (props: GetSystemCampaignsByPartyProps, wgApiClient: ClientType) => Promise<GetSystemCampaignsByPartyResponse>;
|
|
123410
123572
|
|
|
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$
|
|
123573
|
+
declare const routeName$6_ = "/v1/api/parties/{party_id}/transfers";
|
|
123574
|
+
type TransferPartyToOtherDistributionBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
|
|
123575
|
+
type TransferPartyToOtherDistributionPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
|
|
123576
|
+
type TransferPartyToOtherDistributionQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
|
|
123577
|
+
type TransferPartyToOtherDistributionResponse = paths[typeof routeName$6_]['post']['responses'][200]['content']['application/json'];
|
|
123416
123578
|
interface TransferPartyToOtherDistributionProps {
|
|
123417
123579
|
body: TransferPartyToOtherDistributionBody;
|
|
123418
123580
|
params: {
|
|
@@ -123422,10 +123584,10 @@ interface TransferPartyToOtherDistributionProps {
|
|
|
123422
123584
|
}
|
|
123423
123585
|
declare const transferPartyToOtherDistribution: (props: TransferPartyToOtherDistributionProps, wgApiClient: ClientType) => Promise<TransferPartyToOtherDistributionResponse>;
|
|
123424
123586
|
|
|
123425
|
-
declare const routeName$
|
|
123426
|
-
type CreatePartyRelationsBody = paths[typeof routeName$
|
|
123427
|
-
type CreatePartyRelationsQueryParams = paths[typeof routeName$
|
|
123428
|
-
type CreatePartyRelationsResponse = paths[typeof routeName$
|
|
123587
|
+
declare const routeName$6Z = "/v1/api/relations";
|
|
123588
|
+
type CreatePartyRelationsBody = paths[typeof routeName$6Z]['post']['requestBody']['content']['application/json'];
|
|
123589
|
+
type CreatePartyRelationsQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
|
|
123590
|
+
type CreatePartyRelationsResponse = paths[typeof routeName$6Z]['post']['responses'][201]['content']['application/json'];
|
|
123429
123591
|
interface CreatePartyRelationsProps {
|
|
123430
123592
|
body: CreatePartyRelationsBody;
|
|
123431
123593
|
params: {
|
|
@@ -123434,9 +123596,9 @@ interface CreatePartyRelationsProps {
|
|
|
123434
123596
|
}
|
|
123435
123597
|
declare const createPartyRelations: (props: CreatePartyRelationsProps, wgApiClient: ClientType) => Promise<CreatePartyRelationsResponse>;
|
|
123436
123598
|
|
|
123437
|
-
declare const routeName$
|
|
123438
|
-
type DeletePartyRelationsPathParams = paths[typeof routeName$
|
|
123439
|
-
type DeletePartyRelationsResponse = paths[typeof routeName$
|
|
123599
|
+
declare const routeName$6Y = "/v1/api/relations/{relation_id}";
|
|
123600
|
+
type DeletePartyRelationsPathParams = paths[typeof routeName$6Y]['delete']['parameters']['path'];
|
|
123601
|
+
type DeletePartyRelationsResponse = paths[typeof routeName$6Y]['delete']['responses'][200]['content']['application/json'];
|
|
123440
123602
|
interface DeletePartyRelationsProps {
|
|
123441
123603
|
params: {
|
|
123442
123604
|
path: DeletePartyRelationsPathParams;
|
|
@@ -123444,10 +123606,10 @@ interface DeletePartyRelationsProps {
|
|
|
123444
123606
|
}
|
|
123445
123607
|
declare const deletePartyRelations: (props: DeletePartyRelationsProps, wgApiClient: ClientType) => Promise<DeletePartyRelationsResponse>;
|
|
123446
123608
|
|
|
123447
|
-
declare const routeName$
|
|
123448
|
-
type UpdatePartyRelationsBody = paths[typeof routeName$
|
|
123449
|
-
type UpdatePartyRelationsPathParams = paths[typeof routeName$
|
|
123450
|
-
type UpdatePartyRelationsResponse = paths[typeof routeName$
|
|
123609
|
+
declare const routeName$6X = "/v1/api/relations/{relation_id}";
|
|
123610
|
+
type UpdatePartyRelationsBody = paths[typeof routeName$6X]['patch']['requestBody']['content']['application/json'];
|
|
123611
|
+
type UpdatePartyRelationsPathParams = paths[typeof routeName$6X]['patch']['parameters']['path'];
|
|
123612
|
+
type UpdatePartyRelationsResponse = paths[typeof routeName$6X]['patch']['responses'][200]['content']['application/json'];
|
|
123451
123613
|
interface UpdatePartyRelationsProps {
|
|
123452
123614
|
body: UpdatePartyRelationsBody;
|
|
123453
123615
|
params: {
|
|
@@ -123456,53 +123618,53 @@ interface UpdatePartyRelationsProps {
|
|
|
123456
123618
|
}
|
|
123457
123619
|
declare const updatePartyRelations: (props: UpdatePartyRelationsProps, wgApiClient: ClientType) => Promise<UpdatePartyRelationsResponse>;
|
|
123458
123620
|
|
|
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$
|
|
123621
|
+
declare const routeName$6W = "/v2/api/distributions/{distribution_id}/parties";
|
|
123622
|
+
type GetAllPartiesByDistributionV2PathParams = paths[typeof routeName$6W]['get']['parameters']['path'];
|
|
123623
|
+
type GetAllPartiesByDistributionV2QueryParams = paths[typeof routeName$6W]['get']['parameters']['query'];
|
|
123624
|
+
type GetAllPartiesByDistributionV2Response = paths[typeof routeName$6W]['get']['responses'][200]['content']['application/json'];
|
|
123625
|
+
type GetAllPartiesByDistributionV2Props = paths[typeof routeName$6W]['get']['parameters'];
|
|
123464
123626
|
declare const getAllPartiesByDistributionV2: (props: GetAllPartiesByDistributionV2Props, wgApiClient: ClientType) => Promise<GetAllPartiesByDistributionV2Response>;
|
|
123465
123627
|
|
|
123466
|
-
declare const routeName$
|
|
123467
|
-
type SearchCitiesByCountryQueryParams = paths[typeof routeName$
|
|
123468
|
-
type SearchCitiesByCountryResponse = paths[typeof routeName$
|
|
123469
|
-
type SearchCitiesByCountryProps = paths[typeof routeName$
|
|
123628
|
+
declare const routeName$6V = "/v1/api/address/cities";
|
|
123629
|
+
type SearchCitiesByCountryQueryParams = paths[typeof routeName$6V]['get']['parameters']['query'];
|
|
123630
|
+
type SearchCitiesByCountryResponse = paths[typeof routeName$6V]['get']['responses'][200]['content']['application/json'];
|
|
123631
|
+
type SearchCitiesByCountryProps = paths[typeof routeName$6V]['get']['parameters'];
|
|
123470
123632
|
declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
|
|
123471
123633
|
|
|
123472
|
-
declare const routeName$
|
|
123473
|
-
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$
|
|
123474
|
-
type GetAddressInfoFreemiumResponse = paths[typeof routeName$
|
|
123475
|
-
type GetAddressInfoFreemiumProps = paths[typeof routeName$
|
|
123634
|
+
declare const routeName$6U = "/v1/api/address/info/freemium";
|
|
123635
|
+
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
|
|
123636
|
+
type GetAddressInfoFreemiumResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
|
|
123637
|
+
type GetAddressInfoFreemiumProps = paths[typeof routeName$6U]['get']['parameters'];
|
|
123476
123638
|
declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
|
|
123477
123639
|
|
|
123478
|
-
declare const routeName$
|
|
123479
|
-
type GetAddressInfoQueryParams = paths[typeof routeName$
|
|
123480
|
-
type GetAddressInfoResponse = paths[typeof routeName$
|
|
123481
|
-
type GetAddressInfoProps = paths[typeof routeName$
|
|
123640
|
+
declare const routeName$6T = "/v1/api/address/info/premium";
|
|
123641
|
+
type GetAddressInfoQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
|
|
123642
|
+
type GetAddressInfoResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
|
|
123643
|
+
type GetAddressInfoProps = paths[typeof routeName$6T]['get']['parameters'];
|
|
123482
123644
|
declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
|
|
123483
123645
|
|
|
123484
|
-
declare const routeName$
|
|
123485
|
-
type SearchAddressesByCountryQueryParams = paths[typeof routeName$
|
|
123486
|
-
type SearchAddressesByCountryResponse = paths[typeof routeName$
|
|
123487
|
-
type SearchAddressesByCountryProps = paths[typeof routeName$
|
|
123646
|
+
declare const routeName$6S = "/v1/api/address/search";
|
|
123647
|
+
type SearchAddressesByCountryQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
|
|
123648
|
+
type SearchAddressesByCountryResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
|
|
123649
|
+
type SearchAddressesByCountryProps = paths[typeof routeName$6S]['get']['parameters'];
|
|
123488
123650
|
declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
|
|
123489
123651
|
|
|
123490
|
-
declare const routeName$
|
|
123491
|
-
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$
|
|
123492
|
-
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$
|
|
123493
|
-
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$
|
|
123652
|
+
declare const routeName$6R = "/v1/api/address/streets";
|
|
123653
|
+
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
|
|
123654
|
+
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
|
|
123655
|
+
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$6R]['get']['parameters'];
|
|
123494
123656
|
declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
|
|
123495
123657
|
|
|
123496
|
-
declare const routeName$
|
|
123497
|
-
type GetWeatherInfoQueryParams = paths[typeof routeName$
|
|
123498
|
-
type GetWeatherInfoResponse = paths[typeof routeName$
|
|
123499
|
-
type GetWeatherInfoProps = paths[typeof routeName$
|
|
123658
|
+
declare const routeName$6Q = "/v1/api/weather/info";
|
|
123659
|
+
type GetWeatherInfoQueryParams = paths[typeof routeName$6Q]['get']['parameters']['query'];
|
|
123660
|
+
type GetWeatherInfoResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
|
|
123661
|
+
type GetWeatherInfoProps = paths[typeof routeName$6Q]['get']['parameters'];
|
|
123500
123662
|
declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
|
|
123501
123663
|
|
|
123502
|
-
declare const routeName$
|
|
123503
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$
|
|
123504
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$
|
|
123505
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$
|
|
123664
|
+
declare const routeName$6P = "/v1/api/advisory-report-front-page-pdf";
|
|
123665
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$6P]['post']['requestBody']['content']['application/json'];
|
|
123666
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
|
|
123667
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
|
|
123506
123668
|
interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
123507
123669
|
body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
|
|
123508
123670
|
params: {
|
|
@@ -123511,16 +123673,16 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
|
123511
123673
|
}
|
|
123512
123674
|
declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
|
|
123513
123675
|
|
|
123514
|
-
declare const routeName$
|
|
123515
|
-
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$
|
|
123516
|
-
type GetAllAdvisoryReportsResponse = paths[typeof routeName$
|
|
123517
|
-
type GetAllAdvisoryReportsProps = paths[typeof routeName$
|
|
123676
|
+
declare const routeName$6O = "/v1/api/advisory-reports";
|
|
123677
|
+
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
|
|
123678
|
+
type GetAllAdvisoryReportsResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
|
|
123679
|
+
type GetAllAdvisoryReportsProps = paths[typeof routeName$6O]['get']['parameters'];
|
|
123518
123680
|
declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
|
|
123519
123681
|
|
|
123520
|
-
declare const routeName$
|
|
123521
|
-
type CreateAdvisoryReportBody = paths[typeof routeName$
|
|
123522
|
-
type CreateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123523
|
-
type CreateAdvisoryReportResponse = paths[typeof routeName$
|
|
123682
|
+
declare const routeName$6N = "/v1/api/advisory-reports";
|
|
123683
|
+
type CreateAdvisoryReportBody = paths[typeof routeName$6N]['post']['requestBody']['content']['application/json'];
|
|
123684
|
+
type CreateAdvisoryReportQueryParams = paths[typeof routeName$6N]['post']['parameters']['query'];
|
|
123685
|
+
type CreateAdvisoryReportResponse = paths[typeof routeName$6N]['post']['responses'][201]['content']['application/json'];
|
|
123524
123686
|
interface CreateAdvisoryReportProps {
|
|
123525
123687
|
body: CreateAdvisoryReportBody;
|
|
123526
123688
|
params: {
|
|
@@ -123529,24 +123691,24 @@ interface CreateAdvisoryReportProps {
|
|
|
123529
123691
|
}
|
|
123530
123692
|
declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
|
|
123531
123693
|
|
|
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$
|
|
123694
|
+
declare const routeName$6M = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
|
|
123695
|
+
type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6M]['get']['parameters']['path'];
|
|
123696
|
+
type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6M]['get']['parameters']['query'];
|
|
123697
|
+
type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
|
|
123698
|
+
type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6M]['get']['parameters'];
|
|
123537
123699
|
declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
|
|
123538
123700
|
|
|
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$
|
|
123701
|
+
declare const routeName$6L = "/v1/api/advisory-reports/{report_id}";
|
|
123702
|
+
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
|
|
123703
|
+
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$6L]['get']['parameters']['query'];
|
|
123704
|
+
type GetAdvisoryReportByIdResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
|
|
123705
|
+
type GetAdvisoryReportByIdProps = paths[typeof routeName$6L]['get']['parameters'];
|
|
123544
123706
|
declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
|
|
123545
123707
|
|
|
123546
|
-
declare const routeName$
|
|
123547
|
-
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
123548
|
-
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
123549
|
-
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
123708
|
+
declare const routeName$6K = "/v1/api/advisory-reports/{report_id}";
|
|
123709
|
+
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$6K]['delete']['parameters']['path'];
|
|
123710
|
+
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$6K]['delete']['parameters']['query'];
|
|
123711
|
+
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$6K]['delete']['responses'][200]['content']['application/json'];
|
|
123550
123712
|
interface DeleteAdvisoryReportRevisionProps {
|
|
123551
123713
|
params: {
|
|
123552
123714
|
query: DeleteAdvisoryReportRevisionQueryParams;
|
|
@@ -123555,11 +123717,11 @@ interface DeleteAdvisoryReportRevisionProps {
|
|
|
123555
123717
|
}
|
|
123556
123718
|
declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
|
|
123557
123719
|
|
|
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$
|
|
123720
|
+
declare const routeName$6J = "/v1/api/advisory-reports/{report_id}";
|
|
123721
|
+
type UpdateAdvisoryReportBody = paths[typeof routeName$6J]['patch']['requestBody']['content']['application/json'];
|
|
123722
|
+
type UpdateAdvisoryReportPathParams = paths[typeof routeName$6J]['patch']['parameters']['path'];
|
|
123723
|
+
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$6J]['patch']['parameters']['query'];
|
|
123724
|
+
type UpdateAdvisoryReportResponse = paths[typeof routeName$6J]['patch']['responses'][200]['content']['application/json'];
|
|
123563
123725
|
interface UpdateAdvisoryReportProps {
|
|
123564
123726
|
body: UpdateAdvisoryReportBody;
|
|
123565
123727
|
params: {
|
|
@@ -123569,11 +123731,11 @@ interface UpdateAdvisoryReportProps {
|
|
|
123569
123731
|
}
|
|
123570
123732
|
declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
|
|
123571
123733
|
|
|
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$
|
|
123734
|
+
declare const routeName$6I = "/v1/api/advisory-reports/{report_id}/acceptances";
|
|
123735
|
+
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
|
|
123736
|
+
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
|
|
123737
|
+
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
|
|
123738
|
+
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
|
|
123577
123739
|
interface AcceptOrRejectAnAdvisoryReportProps {
|
|
123578
123740
|
body: AcceptOrRejectAnAdvisoryReportBody;
|
|
123579
123741
|
params: {
|
|
@@ -123583,11 +123745,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
|
|
|
123583
123745
|
}
|
|
123584
123746
|
declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
|
|
123585
123747
|
|
|
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$
|
|
123748
|
+
declare const routeName$6H = "/v1/api/advisory-reports/{report_id}/clauses";
|
|
123749
|
+
type PutClausesForReportBody = paths[typeof routeName$6H]['put']['requestBody']['content']['application/json'];
|
|
123750
|
+
type PutClausesForReportPathParams = paths[typeof routeName$6H]['put']['parameters']['path'];
|
|
123751
|
+
type PutClausesForReportQueryParams = paths[typeof routeName$6H]['put']['parameters']['query'];
|
|
123752
|
+
type PutClausesForReportResponse = paths[typeof routeName$6H]['put']['responses'][200]['content']['application/json'];
|
|
123591
123753
|
interface PutClausesForReportProps {
|
|
123592
123754
|
body: PutClausesForReportBody;
|
|
123593
123755
|
params: {
|
|
@@ -123597,11 +123759,11 @@ interface PutClausesForReportProps {
|
|
|
123597
123759
|
}
|
|
123598
123760
|
declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
|
|
123599
123761
|
|
|
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$
|
|
123762
|
+
declare const routeName$6G = "/v1/api/advisory-reports/{report_id}/conversations";
|
|
123763
|
+
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$6G]['post']['requestBody']['content']['application/json'];
|
|
123764
|
+
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$6G]['post']['parameters']['path'];
|
|
123765
|
+
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
|
|
123766
|
+
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$6G]['post']['responses'][201]['content']['application/json'];
|
|
123605
123767
|
interface LinkConversationToAdvisoryReportProps {
|
|
123606
123768
|
body: LinkConversationToAdvisoryReportBody;
|
|
123607
123769
|
params: {
|
|
@@ -123611,10 +123773,10 @@ interface LinkConversationToAdvisoryReportProps {
|
|
|
123611
123773
|
}
|
|
123612
123774
|
declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
|
|
123613
123775
|
|
|
123614
|
-
declare const routeName$
|
|
123615
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123616
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123617
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123776
|
+
declare const routeName$6F = "/v1/api/advisory-reports/{report_id}/docx";
|
|
123777
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$6F]['post']['parameters']['path'];
|
|
123778
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
|
|
123779
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$6F]['post']['responses'][200]['content']['application/json'];
|
|
123618
123780
|
interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
123619
123781
|
params: {
|
|
123620
123782
|
query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
|
|
@@ -123623,11 +123785,11 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
|
123623
123785
|
}
|
|
123624
123786
|
declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
|
|
123625
123787
|
|
|
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$
|
|
123788
|
+
declare const routeName$6E = "/v1/api/advisory-reports/{report_id}/email-inquiries";
|
|
123789
|
+
type SendAdvisoryReportAsMailBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
|
|
123790
|
+
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$6E]['post']['parameters']['path'];
|
|
123791
|
+
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
|
|
123792
|
+
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$6E]['post']['responses'][201]['content']['application/json'];
|
|
123631
123793
|
interface SendAdvisoryReportAsMailProps {
|
|
123632
123794
|
body: SendAdvisoryReportAsMailBody;
|
|
123633
123795
|
params: {
|
|
@@ -123637,24 +123799,24 @@ interface SendAdvisoryReportAsMailProps {
|
|
|
123637
123799
|
}
|
|
123638
123800
|
declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
|
|
123639
123801
|
|
|
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$
|
|
123802
|
+
declare const routeName$6D = "/v1/api/advisory-reports/{report_id}/events";
|
|
123803
|
+
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
|
|
123804
|
+
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
|
|
123805
|
+
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
|
|
123806
|
+
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$6D]['get']['parameters'];
|
|
123645
123807
|
declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
|
|
123646
123808
|
|
|
123647
|
-
declare const routeName$
|
|
123648
|
-
type GetAdvisoryReportExportOptionsPathParams = paths[typeof routeName$
|
|
123649
|
-
type GetAdvisoryReportExportOptionsResponse = paths[typeof routeName$
|
|
123650
|
-
type GetAdvisoryReportExportOptionsProps = paths[typeof routeName$
|
|
123809
|
+
declare const routeName$6C = "/v1/api/advisory-reports/{report_id}/export-options";
|
|
123810
|
+
type GetAdvisoryReportExportOptionsPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
|
|
123811
|
+
type GetAdvisoryReportExportOptionsResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
|
|
123812
|
+
type GetAdvisoryReportExportOptionsProps = paths[typeof routeName$6C]['get']['parameters'];
|
|
123651
123813
|
declare const getAdvisoryReportExportOptions: (props: GetAdvisoryReportExportOptionsProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportExportOptionsResponse>;
|
|
123652
123814
|
|
|
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$
|
|
123815
|
+
declare const routeName$6B = "/v1/api/advisory-reports/{report_id}/exports";
|
|
123816
|
+
type ExportAdvisoryReportByIdBody = paths[typeof routeName$6B]['post']['requestBody']['content']['application/json'];
|
|
123817
|
+
type ExportAdvisoryReportByIdPathParams = paths[typeof routeName$6B]['post']['parameters']['path'];
|
|
123818
|
+
type ExportAdvisoryReportByIdQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
|
|
123819
|
+
type ExportAdvisoryReportByIdResponse = paths[typeof routeName$6B]['post']['responses'][201]['content']['application/json'];
|
|
123658
123820
|
interface ExportAdvisoryReportByIdProps {
|
|
123659
123821
|
body: ExportAdvisoryReportByIdBody;
|
|
123660
123822
|
params: {
|
|
@@ -123664,11 +123826,11 @@ interface ExportAdvisoryReportByIdProps {
|
|
|
123664
123826
|
}
|
|
123665
123827
|
declare const exportAdvisoryReportById: (props: ExportAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<ExportAdvisoryReportByIdResponse>;
|
|
123666
123828
|
|
|
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$
|
|
123829
|
+
declare const routeName$6A = "/v1/api/advisory-reports/{report_id}/insurance-policies";
|
|
123830
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6A]['put']['requestBody']['content']['application/json'];
|
|
123831
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6A]['put']['parameters']['path'];
|
|
123832
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6A]['put']['parameters']['query'];
|
|
123833
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6A]['put']['responses'][200]['content']['application/json'];
|
|
123672
123834
|
interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
123673
123835
|
body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
|
|
123674
123836
|
params: {
|
|
@@ -123678,11 +123840,11 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
123678
123840
|
}
|
|
123679
123841
|
declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
123680
123842
|
|
|
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$
|
|
123843
|
+
declare const routeName$6z = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
|
|
123844
|
+
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6z]['put']['requestBody']['content']['application/json'];
|
|
123845
|
+
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6z]['put']['parameters']['path'];
|
|
123846
|
+
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6z]['put']['parameters']['query'];
|
|
123847
|
+
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6z]['put']['responses'][200]['content']['application/json'];
|
|
123686
123848
|
interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
123687
123849
|
body: OrderInsurancePolciesOfAdvisoryReportBody;
|
|
123688
123850
|
params: {
|
|
@@ -123692,10 +123854,10 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
|
123692
123854
|
}
|
|
123693
123855
|
declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
|
|
123694
123856
|
|
|
123695
|
-
declare const routeName$
|
|
123696
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123697
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123698
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123857
|
+
declare const routeName$6y = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
|
|
123858
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6y]['delete']['parameters']['path'];
|
|
123859
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6y]['delete']['parameters']['query'];
|
|
123860
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6y]['delete']['responses'][200]['content']['application/json'];
|
|
123699
123861
|
interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
123700
123862
|
params: {
|
|
123701
123863
|
query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
|
|
@@ -123704,17 +123866,17 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
123704
123866
|
}
|
|
123705
123867
|
declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
123706
123868
|
|
|
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$
|
|
123869
|
+
declare const routeName$6x = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
123870
|
+
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6x]['get']['parameters']['path'];
|
|
123871
|
+
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
|
|
123872
|
+
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6x]['get']['responses'][307]['content']['application/json'];
|
|
123873
|
+
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$6x]['get']['parameters'];
|
|
123712
123874
|
declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
|
|
123713
123875
|
|
|
123714
|
-
declare const routeName$
|
|
123715
|
-
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123716
|
-
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123717
|
-
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123876
|
+
declare const routeName$6w = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
123877
|
+
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
|
|
123878
|
+
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
|
|
123879
|
+
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6w]['post']['responses'][200]['content']['application/json'];
|
|
123718
123880
|
interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
123719
123881
|
params: {
|
|
123720
123882
|
query: GeneratePdfOfAdvisoryReportByIdQueryParams;
|
|
@@ -123723,9 +123885,9 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
|
123723
123885
|
}
|
|
123724
123886
|
declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
|
|
123725
123887
|
|
|
123726
|
-
declare const routeName$
|
|
123727
|
-
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$
|
|
123728
|
-
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$
|
|
123888
|
+
declare const routeName$6v = "/v1/api/advisory-reports/{report_id}/personalise-advices";
|
|
123889
|
+
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$6v]['post']['parameters']['path'];
|
|
123890
|
+
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$6v]['post']['responses'][200]['content']['application/json'];
|
|
123729
123891
|
interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
123730
123892
|
params: {
|
|
123731
123893
|
path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
|
|
@@ -123733,11 +123895,11 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
|
123733
123895
|
}
|
|
123734
123896
|
declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
|
|
123735
123897
|
|
|
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$
|
|
123898
|
+
declare const routeName$6u = "/v1/api/advisory-reports/{report_id}/policy-packages";
|
|
123899
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6u]['put']['requestBody']['content']['application/json'];
|
|
123900
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6u]['put']['parameters']['path'];
|
|
123901
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6u]['put']['parameters']['query'];
|
|
123902
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6u]['put']['responses'][200]['content']['application/json'];
|
|
123741
123903
|
interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
123742
123904
|
body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
|
|
123743
123905
|
params: {
|
|
@@ -123747,11 +123909,11 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
|
123747
123909
|
}
|
|
123748
123910
|
declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
|
|
123749
123911
|
|
|
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$
|
|
123912
|
+
declare const routeName$6t = "/v1/api/advisory-reports/{report_id}/revisions";
|
|
123913
|
+
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$6t]['post']['requestBody']['content']['application/json'];
|
|
123914
|
+
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$6t]['post']['parameters']['path'];
|
|
123915
|
+
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$6t]['post']['parameters']['query'];
|
|
123916
|
+
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$6t]['post']['responses'][201]['content']['application/json'];
|
|
123755
123917
|
interface CreateAdvisoryReportRevisionProps {
|
|
123756
123918
|
body: CreateAdvisoryReportRevisionBody;
|
|
123757
123919
|
params: {
|
|
@@ -123761,11 +123923,11 @@ interface CreateAdvisoryReportRevisionProps {
|
|
|
123761
123923
|
}
|
|
123762
123924
|
declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
|
|
123763
123925
|
|
|
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$
|
|
123926
|
+
declare const routeName$6s = "/v1/api/advisory-reports/{report_id}/risk-domains";
|
|
123927
|
+
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$6s]['post']['requestBody']['content']['application/json'];
|
|
123928
|
+
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6s]['post']['parameters']['path'];
|
|
123929
|
+
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6s]['post']['parameters']['query'];
|
|
123930
|
+
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6s]['post']['responses'][201]['content']['application/json'];
|
|
123769
123931
|
interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
123770
123932
|
body: CreateRiskDomainForAdvisoryReportByIdBody;
|
|
123771
123933
|
params: {
|
|
@@ -123775,10 +123937,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
|
123775
123937
|
}
|
|
123776
123938
|
declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
|
|
123777
123939
|
|
|
123778
|
-
declare const routeName$
|
|
123779
|
-
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123780
|
-
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123781
|
-
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123940
|
+
declare const routeName$6r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
|
|
123941
|
+
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6r]['delete']['parameters']['path'];
|
|
123942
|
+
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6r]['delete']['parameters']['query'];
|
|
123943
|
+
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6r]['delete']['responses'][200]['content']['application/json'];
|
|
123782
123944
|
interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
123783
123945
|
params: {
|
|
123784
123946
|
query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
|
|
@@ -123787,11 +123949,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
|
123787
123949
|
}
|
|
123788
123950
|
declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
|
|
123789
123951
|
|
|
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$
|
|
123952
|
+
declare const routeName$6q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
|
|
123953
|
+
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
|
|
123954
|
+
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
|
|
123955
|
+
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
|
|
123956
|
+
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
|
|
123795
123957
|
interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
123796
123958
|
body: CreateRiskDomainActionForAdvisoryReportByIdBody;
|
|
123797
123959
|
params: {
|
|
@@ -123801,10 +123963,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123801
123963
|
}
|
|
123802
123964
|
declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123803
123965
|
|
|
123804
|
-
declare const routeName$
|
|
123805
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123806
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123807
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
123966
|
+
declare const routeName$6p = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
123967
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6p]['delete']['parameters']['path'];
|
|
123968
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6p]['delete']['parameters']['query'];
|
|
123969
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6p]['delete']['responses'][200]['content']['application/json'];
|
|
123808
123970
|
interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
123809
123971
|
params: {
|
|
123810
123972
|
query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
|
|
@@ -123813,11 +123975,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123813
123975
|
}
|
|
123814
123976
|
declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123815
123977
|
|
|
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$
|
|
123978
|
+
declare const routeName$6o = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
123979
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6o]['patch']['requestBody']['content']['application/json'];
|
|
123980
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6o]['patch']['parameters']['path'];
|
|
123981
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6o]['patch']['parameters']['query'];
|
|
123982
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6o]['patch']['responses'][200]['content']['application/json'];
|
|
123821
123983
|
interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
123822
123984
|
body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
|
|
123823
123985
|
params: {
|
|
@@ -123827,11 +123989,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
123827
123989
|
}
|
|
123828
123990
|
declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
123829
123991
|
|
|
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$
|
|
123992
|
+
declare const routeName$6n = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
|
|
123993
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6n]['post']['requestBody']['content']['application/json'];
|
|
123994
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
|
|
123995
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
|
|
123996
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6n]['post']['responses'][201]['content']['application/json'];
|
|
123835
123997
|
interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123836
123998
|
body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
123837
123999
|
params: {
|
|
@@ -123841,10 +124003,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123841
124003
|
}
|
|
123842
124004
|
declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123843
124005
|
|
|
123844
|
-
declare const routeName$
|
|
123845
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
123846
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
123847
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
124006
|
+
declare const routeName$6m = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
124007
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6m]['delete']['parameters']['path'];
|
|
124008
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6m]['delete']['parameters']['query'];
|
|
124009
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6m]['delete']['responses'][200]['content']['application/json'];
|
|
123848
124010
|
interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123849
124011
|
params: {
|
|
123850
124012
|
query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
|
|
@@ -123853,11 +124015,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123853
124015
|
}
|
|
123854
124016
|
declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123855
124017
|
|
|
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$
|
|
124018
|
+
declare const routeName$6l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
124019
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6l]['patch']['requestBody']['content']['application/json'];
|
|
124020
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6l]['patch']['parameters']['path'];
|
|
124021
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6l]['patch']['parameters']['query'];
|
|
124022
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6l]['patch']['responses'][201]['content']['application/json'];
|
|
123861
124023
|
interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
123862
124024
|
body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
123863
124025
|
params: {
|
|
@@ -123867,11 +124029,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
123867
124029
|
}
|
|
123868
124030
|
declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
123869
124031
|
|
|
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$
|
|
124032
|
+
declare const routeName$6k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
|
|
124033
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6k]['put']['requestBody']['content']['application/json'];
|
|
124034
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6k]['put']['parameters']['path'];
|
|
124035
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6k]['put']['parameters']['query'];
|
|
124036
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6k]['put']['responses'][201]['content']['application/json'];
|
|
123875
124037
|
interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
123876
124038
|
body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
|
|
123877
124039
|
params: {
|
|
@@ -123881,18 +124043,18 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
|
123881
124043
|
}
|
|
123882
124044
|
declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
|
|
123883
124045
|
|
|
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$
|
|
124046
|
+
declare const routeName$6j = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
124047
|
+
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
|
|
124048
|
+
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$6j]['get']['parameters']['query'];
|
|
124049
|
+
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
|
|
124050
|
+
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$6j]['get']['parameters'];
|
|
123889
124051
|
declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
|
|
123890
124052
|
|
|
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$
|
|
124053
|
+
declare const routeName$6i = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
124054
|
+
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$6i]['put']['requestBody']['content']['application/json'];
|
|
124055
|
+
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$6i]['put']['parameters']['path'];
|
|
124056
|
+
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$6i]['put']['parameters']['query'];
|
|
124057
|
+
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$6i]['put']['responses'][200]['content']['application/json'];
|
|
123896
124058
|
interface CreateAdvisoryReportStepSettingsProps {
|
|
123897
124059
|
body: CreateAdvisoryReportStepSettingsBody;
|
|
123898
124060
|
params: {
|
|
@@ -123902,10 +124064,10 @@ interface CreateAdvisoryReportStepSettingsProps {
|
|
|
123902
124064
|
}
|
|
123903
124065
|
declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
|
|
123904
124066
|
|
|
123905
|
-
declare const routeName$
|
|
123906
|
-
type DeleteAdvisoryReportPathParams = paths[typeof routeName$
|
|
123907
|
-
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$
|
|
123908
|
-
type DeleteAdvisoryReportResponse = paths[typeof routeName$
|
|
124067
|
+
declare const routeName$6h = "/v2/api/advisory-reports/{report_id}";
|
|
124068
|
+
type DeleteAdvisoryReportPathParams = paths[typeof routeName$6h]['delete']['parameters']['path'];
|
|
124069
|
+
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$6h]['delete']['parameters']['query'];
|
|
124070
|
+
type DeleteAdvisoryReportResponse = paths[typeof routeName$6h]['delete']['responses'][200]['content']['application/json'];
|
|
123909
124071
|
interface DeleteAdvisoryReportProps {
|
|
123910
124072
|
params: {
|
|
123911
124073
|
query: DeleteAdvisoryReportQueryParams;
|
|
@@ -123914,11 +124076,11 @@ interface DeleteAdvisoryReportProps {
|
|
|
123914
124076
|
}
|
|
123915
124077
|
declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
|
|
123916
124078
|
|
|
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$
|
|
124079
|
+
declare const routeName$6g = "/v2/api/advisory-reports/{report_id}/revisions";
|
|
124080
|
+
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$6g]['post']['requestBody']['content']['application/json'];
|
|
124081
|
+
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
|
|
124082
|
+
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
|
|
124083
|
+
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
|
|
123922
124084
|
interface CreateAdvisoryReportRevisionV2Props {
|
|
123923
124085
|
body: CreateAdvisoryReportRevisionV2Body;
|
|
123924
124086
|
params: {
|
|
@@ -123928,36 +124090,36 @@ interface CreateAdvisoryReportRevisionV2Props {
|
|
|
123928
124090
|
}
|
|
123929
124091
|
declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
|
|
123930
124092
|
|
|
123931
|
-
declare const routeName$
|
|
123932
|
-
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$
|
|
124093
|
+
declare const routeName$6f = "/v1/api/affiliations";
|
|
124094
|
+
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
|
|
123933
124095
|
declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
|
|
123934
124096
|
|
|
123935
|
-
declare const routeName$
|
|
123936
|
-
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$
|
|
123937
|
-
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$
|
|
123938
|
-
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$
|
|
124097
|
+
declare const routeName$6e = "/v1/api/anva-producers/{anva_producer_id}";
|
|
124098
|
+
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6e]['get']['parameters']['path'];
|
|
124099
|
+
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6e]['get']['responses'][200]['content']['application/json'];
|
|
124100
|
+
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6e]['get']['parameters'];
|
|
123939
124101
|
declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
|
|
123940
124102
|
|
|
123941
|
-
declare const routeName$
|
|
123942
|
-
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$
|
|
123943
|
-
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$
|
|
123944
|
-
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$
|
|
124103
|
+
declare const routeName$6d = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
|
|
124104
|
+
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6d]['get']['parameters']['path'];
|
|
124105
|
+
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6d]['get']['responses'][200]['content']['application/json'];
|
|
124106
|
+
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6d]['get']['parameters'];
|
|
123945
124107
|
declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
|
|
123946
124108
|
|
|
123947
|
-
declare const routeName$
|
|
123948
|
-
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$
|
|
124109
|
+
declare const routeName$6c = "/v1/api/brokers/me";
|
|
124110
|
+
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6c]['get']['responses'][200]['content']['application/json'];
|
|
123949
124111
|
declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
|
|
123950
124112
|
|
|
123951
|
-
declare const routeName$
|
|
123952
|
-
type GetTheBrokerByIdPathParams = paths[typeof routeName$
|
|
123953
|
-
type GetTheBrokerByIdResponse = paths[typeof routeName$
|
|
123954
|
-
type GetTheBrokerByIdProps = paths[typeof routeName$
|
|
124113
|
+
declare const routeName$6b = "/v1/api/brokers/{broker_id}";
|
|
124114
|
+
type GetTheBrokerByIdPathParams = paths[typeof routeName$6b]['get']['parameters']['path'];
|
|
124115
|
+
type GetTheBrokerByIdResponse = paths[typeof routeName$6b]['get']['responses'][200]['content']['application/json'];
|
|
124116
|
+
type GetTheBrokerByIdProps = paths[typeof routeName$6b]['get']['parameters'];
|
|
123955
124117
|
declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
|
|
123956
124118
|
|
|
123957
|
-
declare const routeName$
|
|
123958
|
-
type UpdateBrokerByBrokerBody = paths[typeof routeName$
|
|
123959
|
-
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$
|
|
123960
|
-
type UpdateBrokerByBrokerResponse = paths[typeof routeName$
|
|
124119
|
+
declare const routeName$6a = "/v1/api/brokers/{broker_id}";
|
|
124120
|
+
type UpdateBrokerByBrokerBody = paths[typeof routeName$6a]['patch']['requestBody']['content']['application/json'];
|
|
124121
|
+
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6a]['patch']['parameters']['path'];
|
|
124122
|
+
type UpdateBrokerByBrokerResponse = paths[typeof routeName$6a]['patch']['responses'][200]['content']['application/json'];
|
|
123961
124123
|
interface UpdateBrokerByBrokerProps {
|
|
123962
124124
|
body: UpdateBrokerByBrokerBody;
|
|
123963
124125
|
params: {
|
|
@@ -123966,23 +124128,23 @@ interface UpdateBrokerByBrokerProps {
|
|
|
123966
124128
|
}
|
|
123967
124129
|
declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
|
|
123968
124130
|
|
|
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$
|
|
124131
|
+
declare const routeName$69 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
|
|
124132
|
+
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
|
|
124133
|
+
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
|
|
124134
|
+
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
|
|
124135
|
+
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$69]['get']['parameters'];
|
|
123974
124136
|
declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
|
|
123975
124137
|
|
|
123976
|
-
declare const routeName$
|
|
123977
|
-
type GetBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
123978
|
-
type GetBrokerIntegrationsResponse = paths[typeof routeName$
|
|
123979
|
-
type GetBrokerIntegrationsProps = paths[typeof routeName$
|
|
124138
|
+
declare const routeName$68 = "/v1/api/brokers/{broker_id}/integrations";
|
|
124139
|
+
type GetBrokerIntegrationsPathParams = paths[typeof routeName$68]['get']['parameters']['path'];
|
|
124140
|
+
type GetBrokerIntegrationsResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
|
|
124141
|
+
type GetBrokerIntegrationsProps = paths[typeof routeName$68]['get']['parameters'];
|
|
123980
124142
|
declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
|
|
123981
124143
|
|
|
123982
|
-
declare const routeName$
|
|
123983
|
-
type UpdateBrokerIntegrationsBody = paths[typeof routeName$
|
|
123984
|
-
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
123985
|
-
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$
|
|
124144
|
+
declare const routeName$67 = "/v1/api/brokers/{broker_id}/integrations";
|
|
124145
|
+
type UpdateBrokerIntegrationsBody = paths[typeof routeName$67]['patch']['requestBody']['content']['application/json'];
|
|
124146
|
+
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
|
|
124147
|
+
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
|
|
123986
124148
|
interface UpdateBrokerIntegrationsProps {
|
|
123987
124149
|
body: UpdateBrokerIntegrationsBody;
|
|
123988
124150
|
params: {
|
|
@@ -123991,16 +124153,16 @@ interface UpdateBrokerIntegrationsProps {
|
|
|
123991
124153
|
}
|
|
123992
124154
|
declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
|
|
123993
124155
|
|
|
123994
|
-
declare const routeName$
|
|
123995
|
-
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
123996
|
-
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
123997
|
-
type GetAnvaClosingQuestionsProps = paths[typeof routeName$
|
|
124156
|
+
declare const routeName$66 = "/v1/api/anvaflows/closing-questions";
|
|
124157
|
+
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$66]['get']['parameters']['query'];
|
|
124158
|
+
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$66]['get']['responses'][200]['content']['application/json'];
|
|
124159
|
+
type GetAnvaClosingQuestionsProps = paths[typeof routeName$66]['get']['parameters'];
|
|
123998
124160
|
declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
|
|
123999
124161
|
|
|
124000
|
-
declare const routeName$
|
|
124001
|
-
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$
|
|
124002
|
-
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
124003
|
-
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
124162
|
+
declare const routeName$65 = "/v1/api/anvaflows/closing-questions";
|
|
124163
|
+
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$65]['put']['requestBody']['content']['application/json'];
|
|
124164
|
+
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$65]['put']['parameters']['query'];
|
|
124165
|
+
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$65]['put']['responses'][200]['content']['application/json'];
|
|
124004
124166
|
interface UpsertAnvaClosingQuestionsProps {
|
|
124005
124167
|
body: UpsertAnvaClosingQuestionsBody;
|
|
124006
124168
|
params: {
|
|
@@ -124009,10 +124171,10 @@ interface UpsertAnvaClosingQuestionsProps {
|
|
|
124009
124171
|
}
|
|
124010
124172
|
declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
|
|
124011
124173
|
|
|
124012
|
-
declare const routeName$
|
|
124013
|
-
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$
|
|
124014
|
-
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
124015
|
-
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
124174
|
+
declare const routeName$64 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
|
|
124175
|
+
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
|
|
124176
|
+
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
|
|
124177
|
+
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
|
|
124016
124178
|
interface DeleteAnvaClosingQuestionsProps {
|
|
124017
124179
|
params: {
|
|
124018
124180
|
query: DeleteAnvaClosingQuestionsQueryParams;
|
|
@@ -124021,52 +124183,52 @@ interface DeleteAnvaClosingQuestionsProps {
|
|
|
124021
124183
|
}
|
|
124022
124184
|
declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
|
|
124023
124185
|
|
|
124024
|
-
declare const routeName$
|
|
124025
|
-
type GetAnvaLabelsQueryParams = paths[typeof routeName$
|
|
124026
|
-
type GetAnvaLabelsResponse = paths[typeof routeName$
|
|
124027
|
-
type GetAnvaLabelsProps = paths[typeof routeName$
|
|
124186
|
+
declare const routeName$63 = "/v1/api/anvaflows/labels";
|
|
124187
|
+
type GetAnvaLabelsQueryParams = paths[typeof routeName$63]['get']['parameters']['query'];
|
|
124188
|
+
type GetAnvaLabelsResponse = paths[typeof routeName$63]['get']['responses'][200]['content']['application/json'];
|
|
124189
|
+
type GetAnvaLabelsProps = paths[typeof routeName$63]['get']['parameters'];
|
|
124028
124190
|
declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
|
|
124029
124191
|
|
|
124030
|
-
declare const routeName$
|
|
124031
|
-
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$
|
|
124032
|
-
type GetAnvaMutationReasonsResponse = paths[typeof routeName$
|
|
124033
|
-
type GetAnvaMutationReasonsProps = paths[typeof routeName$
|
|
124192
|
+
declare const routeName$62 = "/v1/api/anvaflows/mutation-reasons";
|
|
124193
|
+
type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
|
|
124194
|
+
type GetAnvaMutationReasonsResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
|
|
124195
|
+
type GetAnvaMutationReasonsProps = paths[typeof routeName$62]['get']['parameters'];
|
|
124034
124196
|
declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
|
|
124035
124197
|
|
|
124036
|
-
declare const routeName$
|
|
124037
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$
|
|
124038
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$
|
|
124039
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$
|
|
124198
|
+
declare const routeName$61 = "/v1/api/anvaflows/supported-adn-coverages";
|
|
124199
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
|
|
124200
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
|
|
124201
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$61]['get']['parameters'];
|
|
124040
124202
|
declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
|
|
124041
124203
|
|
|
124042
|
-
declare const routeName$
|
|
124043
|
-
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$
|
|
124044
|
-
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$
|
|
124045
|
-
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$
|
|
124204
|
+
declare const routeName$60 = "/v1/api/anvaflows/supported-coverages";
|
|
124205
|
+
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
|
|
124206
|
+
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
|
|
124207
|
+
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$60]['get']['parameters'];
|
|
124046
124208
|
declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
|
|
124047
124209
|
|
|
124048
|
-
declare const routeName$
|
|
124049
|
-
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
124050
|
-
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$
|
|
124051
|
-
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$
|
|
124210
|
+
declare const routeName$5$ = "/v1/api/anvaflows/supported-insurance-companies";
|
|
124211
|
+
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
|
|
124212
|
+
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
|
|
124213
|
+
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$5$]['get']['parameters'];
|
|
124052
124214
|
declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
|
|
124053
124215
|
|
|
124054
|
-
declare const routeName$
|
|
124055
|
-
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$
|
|
124056
|
-
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$
|
|
124057
|
-
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$
|
|
124216
|
+
declare const routeName$5_ = "/v1/api/anvaflows/supported-insurances";
|
|
124217
|
+
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
|
|
124218
|
+
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
|
|
124219
|
+
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$5_]['get']['parameters'];
|
|
124058
124220
|
declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
|
|
124059
124221
|
|
|
124060
|
-
declare const routeName$
|
|
124061
|
-
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
124062
|
-
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$
|
|
124063
|
-
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$
|
|
124222
|
+
declare const routeName$5Z = "/v1/api/anvaflows/supported-tags";
|
|
124223
|
+
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
|
|
124224
|
+
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
|
|
124225
|
+
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$5Z]['get']['parameters'];
|
|
124064
124226
|
declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
|
|
124065
124227
|
|
|
124066
|
-
declare const routeName$
|
|
124067
|
-
type CreateAnvaflowTagsBody = paths[typeof routeName$
|
|
124068
|
-
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
124069
|
-
type CreateAnvaflowTagsResponse = paths[typeof routeName$
|
|
124228
|
+
declare const routeName$5Y = "/v1/api/anvaflows/supported-tags";
|
|
124229
|
+
type CreateAnvaflowTagsBody = paths[typeof routeName$5Y]['put']['requestBody']['content']['application/json'];
|
|
124230
|
+
type CreateAnvaflowTagsQueryParams = paths[typeof routeName$5Y]['put']['parameters']['query'];
|
|
124231
|
+
type CreateAnvaflowTagsResponse = paths[typeof routeName$5Y]['put']['responses'][200]['content']['application/json'];
|
|
124070
124232
|
interface CreateAnvaflowTagsProps {
|
|
124071
124233
|
body: CreateAnvaflowTagsBody;
|
|
124072
124234
|
params: {
|
|
@@ -124075,11 +124237,11 @@ interface CreateAnvaflowTagsProps {
|
|
|
124075
124237
|
}
|
|
124076
124238
|
declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
|
|
124077
124239
|
|
|
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$
|
|
124240
|
+
declare const routeName$5X = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
124241
|
+
type CreateAnvaPartyViaConversationBody = paths[typeof routeName$5X]['post']['requestBody']['content']['application/json'];
|
|
124242
|
+
type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
|
|
124243
|
+
type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
|
|
124244
|
+
type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
|
|
124083
124245
|
interface CreateAnvaPartyViaConversationProps {
|
|
124084
124246
|
body: CreateAnvaPartyViaConversationBody;
|
|
124085
124247
|
params: {
|
|
@@ -124089,11 +124251,11 @@ interface CreateAnvaPartyViaConversationProps {
|
|
|
124089
124251
|
}
|
|
124090
124252
|
declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
|
|
124091
124253
|
|
|
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$
|
|
124254
|
+
declare const routeName$5W = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
124255
|
+
type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$5W]['patch']['requestBody']['content']['application/json'];
|
|
124256
|
+
type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$5W]['patch']['parameters']['path'];
|
|
124257
|
+
type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$5W]['patch']['parameters']['query'];
|
|
124258
|
+
type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$5W]['patch']['responses'][200]['content']['application/json'];
|
|
124097
124259
|
interface UpdateAnvaPartyViaConversationProps {
|
|
124098
124260
|
body: UpdateAnvaPartyViaConversationBody;
|
|
124099
124261
|
params: {
|
|
@@ -124103,11 +124265,11 @@ interface UpdateAnvaPartyViaConversationProps {
|
|
|
124103
124265
|
}
|
|
124104
124266
|
declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
|
|
124105
124267
|
|
|
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$
|
|
124268
|
+
declare const routeName$5V = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
|
|
124269
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$5V]['post']['requestBody']['content']['application/json'];
|
|
124270
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$5V]['post']['parameters']['path'];
|
|
124271
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$5V]['post']['parameters']['query'];
|
|
124272
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$5V]['post']['responses'][200]['content']['application/json'];
|
|
124111
124273
|
interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
124112
124274
|
body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
|
|
124113
124275
|
params: {
|
|
@@ -124117,11 +124279,11 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
|
124117
124279
|
}
|
|
124118
124280
|
declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
|
|
124119
124281
|
|
|
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$
|
|
124282
|
+
declare const routeName$5U = "/v1/api/anvaflows/{session_id}/calculate";
|
|
124283
|
+
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$5U]['post']['requestBody']['content']['application/json'];
|
|
124284
|
+
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$5U]['post']['parameters']['path'];
|
|
124285
|
+
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$5U]['post']['parameters']['query'];
|
|
124286
|
+
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$5U]['post']['responses'][200]['content']['application/json'];
|
|
124125
124287
|
interface CalculateAnvaquotesBySessionIdProps {
|
|
124126
124288
|
body: CalculateAnvaquotesBySessionIdBody;
|
|
124127
124289
|
params: {
|
|
@@ -124131,18 +124293,18 @@ interface CalculateAnvaquotesBySessionIdProps {
|
|
|
124131
124293
|
}
|
|
124132
124294
|
declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
|
|
124133
124295
|
|
|
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$
|
|
124296
|
+
declare const routeName$5T = "/v1/api/anvaflows/{session_id}/collection-methods";
|
|
124297
|
+
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
|
|
124298
|
+
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$5T]['get']['parameters']['query'];
|
|
124299
|
+
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
|
|
124300
|
+
type GetAnvaCollectionMethodsProps = paths[typeof routeName$5T]['get']['parameters'];
|
|
124139
124301
|
declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
|
|
124140
124302
|
|
|
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$
|
|
124303
|
+
declare const routeName$5S = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
|
|
124304
|
+
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$5S]['post']['requestBody']['content']['application/json'];
|
|
124305
|
+
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
|
|
124306
|
+
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$5S]['post']['parameters']['query'];
|
|
124307
|
+
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$5S]['post']['responses'][200]['content']['application/json'];
|
|
124146
124308
|
interface RecalculateSimulationBySessionIdProps {
|
|
124147
124309
|
body: RecalculateSimulationBySessionIdBody;
|
|
124148
124310
|
params: {
|
|
@@ -124152,6 +124314,20 @@ interface RecalculateSimulationBySessionIdProps {
|
|
|
124152
124314
|
}
|
|
124153
124315
|
declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
|
|
124154
124316
|
|
|
124317
|
+
declare const routeName$5R = "/v1/api/anvaflows/{session_id}/regenerate";
|
|
124318
|
+
type RegenerateAnvaquestionnaireBySessionIdBody = paths[typeof routeName$5R]['post']['requestBody']['content']['application/json'];
|
|
124319
|
+
type RegenerateAnvaquestionnaireBySessionIdPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
|
|
124320
|
+
type RegenerateAnvaquestionnaireBySessionIdQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
|
|
124321
|
+
type RegenerateAnvaquestionnaireBySessionIdResponse = paths[typeof routeName$5R]['post']['responses'][200]['content']['application/json'];
|
|
124322
|
+
interface RegenerateAnvaquestionnaireBySessionIdProps {
|
|
124323
|
+
body: RegenerateAnvaquestionnaireBySessionIdBody;
|
|
124324
|
+
params: {
|
|
124325
|
+
query: RegenerateAnvaquestionnaireBySessionIdQueryParams;
|
|
124326
|
+
path: RegenerateAnvaquestionnaireBySessionIdPathParams;
|
|
124327
|
+
};
|
|
124328
|
+
}
|
|
124329
|
+
declare const regenerateAnvaquestionnaireBySessionId: (props: RegenerateAnvaquestionnaireBySessionIdProps, wgApiClient: ClientType) => Promise<RegenerateAnvaquestionnaireBySessionIdResponse>;
|
|
124330
|
+
|
|
124155
124331
|
declare const routeName$5Q = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
|
|
124156
124332
|
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$5Q]['post']['requestBody']['content']['application/json'];
|
|
124157
124333
|
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
|
|
@@ -127660,4 +127836,4 @@ type GetSupportedYellowhiveflowInsurancesResponse = paths[typeof routeName]['get
|
|
|
127660
127836
|
type GetSupportedYellowhiveflowInsurancesProps = paths[typeof routeName]['get']['parameters'];
|
|
127661
127837
|
declare const getSupportedYellowhiveflowInsurances: (props: GetSupportedYellowhiveflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedYellowhiveflowInsurancesResponse>;
|
|
127662
127838
|
|
|
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 };
|
|
127839
|
+
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 };
|