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