wg-api-sdk 1.0.48 → 1.0.49
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 +1038 -935
- package/dist/esm/index.mjs +1 -1
- package/dist/index.d.ts +1038 -935
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -3823,6 +3823,26 @@ interface paths {
|
|
|
3823
3823
|
patch?: never;
|
|
3824
3824
|
trace?: never;
|
|
3825
3825
|
};
|
|
3826
|
+
"/v1/api/emails/analyze": {
|
|
3827
|
+
parameters: {
|
|
3828
|
+
query?: never;
|
|
3829
|
+
header?: never;
|
|
3830
|
+
path?: never;
|
|
3831
|
+
cookie?: never;
|
|
3832
|
+
};
|
|
3833
|
+
get?: never;
|
|
3834
|
+
put?: never;
|
|
3835
|
+
/**
|
|
3836
|
+
* Analyze Email
|
|
3837
|
+
* @description Analyze an email document via Singularity using a provided document_id
|
|
3838
|
+
*/
|
|
3839
|
+
post: operations["analyze_email_v1_api_emails_analyze_post"];
|
|
3840
|
+
delete?: never;
|
|
3841
|
+
options?: never;
|
|
3842
|
+
head?: never;
|
|
3843
|
+
patch?: never;
|
|
3844
|
+
trace?: never;
|
|
3845
|
+
};
|
|
3826
3846
|
"/v1/api/people/search": {
|
|
3827
3847
|
parameters: {
|
|
3828
3848
|
query?: never;
|
|
@@ -8206,7 +8226,7 @@ interface components {
|
|
|
8206
8226
|
* Timestamp
|
|
8207
8227
|
* Format: date-time
|
|
8208
8228
|
* @description Timestamp of when the error occured
|
|
8209
|
-
* @default 2025-08-
|
|
8229
|
+
* @default 2025-08-18T10:34:23.351342
|
|
8210
8230
|
*/
|
|
8211
8231
|
timestamp: string;
|
|
8212
8232
|
/**
|
|
@@ -51315,7 +51335,7 @@ interface components {
|
|
|
51315
51335
|
/**
|
|
51316
51336
|
* Quote Specifications
|
|
51317
51337
|
* @default {
|
|
51318
|
-
* "contract_commencement_date": "2025-08-
|
|
51338
|
+
* "contract_commencement_date": "2025-08-14"
|
|
51319
51339
|
* }
|
|
51320
51340
|
*/
|
|
51321
51341
|
quote_specifications: components["schemas"]["QuoteSpecification"];
|
|
@@ -89362,6 +89382,83 @@ interface operations {
|
|
|
89362
89382
|
};
|
|
89363
89383
|
};
|
|
89364
89384
|
};
|
|
89385
|
+
analyze_email_v1_api_emails_analyze_post: {
|
|
89386
|
+
parameters: {
|
|
89387
|
+
query?: never;
|
|
89388
|
+
header?: {
|
|
89389
|
+
/** @description Which release to target running in 'PRODUCTION' environment. */
|
|
89390
|
+
"x-release"?: string;
|
|
89391
|
+
};
|
|
89392
|
+
path?: never;
|
|
89393
|
+
cookie?: never;
|
|
89394
|
+
};
|
|
89395
|
+
requestBody?: never;
|
|
89396
|
+
responses: {
|
|
89397
|
+
/** @description Successful Response */
|
|
89398
|
+
201: {
|
|
89399
|
+
headers: {
|
|
89400
|
+
[name: string]: unknown;
|
|
89401
|
+
};
|
|
89402
|
+
content: {
|
|
89403
|
+
"application/json": unknown;
|
|
89404
|
+
};
|
|
89405
|
+
};
|
|
89406
|
+
/** @description Bad Request */
|
|
89407
|
+
400: {
|
|
89408
|
+
headers: {
|
|
89409
|
+
[name: string]: unknown;
|
|
89410
|
+
};
|
|
89411
|
+
content: {
|
|
89412
|
+
"application/json": components["schemas"]["Error_4XX"];
|
|
89413
|
+
};
|
|
89414
|
+
};
|
|
89415
|
+
/** @description Unauthorized */
|
|
89416
|
+
401: {
|
|
89417
|
+
headers: {
|
|
89418
|
+
[name: string]: unknown;
|
|
89419
|
+
};
|
|
89420
|
+
content: {
|
|
89421
|
+
"application/json": components["schemas"]["Error_401"];
|
|
89422
|
+
};
|
|
89423
|
+
};
|
|
89424
|
+
/** @description Forbidden */
|
|
89425
|
+
403: {
|
|
89426
|
+
headers: {
|
|
89427
|
+
[name: string]: unknown;
|
|
89428
|
+
};
|
|
89429
|
+
content: {
|
|
89430
|
+
"application/json": components["schemas"]["Error_403"];
|
|
89431
|
+
};
|
|
89432
|
+
};
|
|
89433
|
+
/** @description Unprocessable Entity */
|
|
89434
|
+
422: {
|
|
89435
|
+
headers: {
|
|
89436
|
+
[name: string]: unknown;
|
|
89437
|
+
};
|
|
89438
|
+
content: {
|
|
89439
|
+
"application/json": components["schemas"]["Error_422"];
|
|
89440
|
+
};
|
|
89441
|
+
};
|
|
89442
|
+
/** @description Too Many Requests */
|
|
89443
|
+
429: {
|
|
89444
|
+
headers: {
|
|
89445
|
+
[name: string]: unknown;
|
|
89446
|
+
};
|
|
89447
|
+
content: {
|
|
89448
|
+
"application/json": components["schemas"]["Error_429"];
|
|
89449
|
+
};
|
|
89450
|
+
};
|
|
89451
|
+
/** @description Internal Server Error */
|
|
89452
|
+
500: {
|
|
89453
|
+
headers: {
|
|
89454
|
+
[name: string]: unknown;
|
|
89455
|
+
};
|
|
89456
|
+
content: {
|
|
89457
|
+
"application/json": components["schemas"]["ServerError"];
|
|
89458
|
+
};
|
|
89459
|
+
};
|
|
89460
|
+
};
|
|
89461
|
+
};
|
|
89365
89462
|
search_directors_by_first_and_last_name_v1_api_people_search_get: {
|
|
89366
89463
|
parameters: {
|
|
89367
89464
|
query: {
|
|
@@ -109559,52 +109656,52 @@ type Middleware = Middleware$1;
|
|
|
109559
109656
|
type ClientType = ReturnType<typeof createClient<paths>>;
|
|
109560
109657
|
declare const wgApiClient: (options: ClientOptions) => ClientType;
|
|
109561
109658
|
|
|
109562
|
-
declare const routeName$
|
|
109563
|
-
type GetWeatherInfoQueryParams = paths[typeof routeName$
|
|
109564
|
-
type GetWeatherInfoResponse = paths[typeof routeName$
|
|
109565
|
-
type GetWeatherInfoProps = paths[typeof routeName$
|
|
109659
|
+
declare const routeName$6Y = "/v1/api/weather/info";
|
|
109660
|
+
type GetWeatherInfoQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
|
|
109661
|
+
type GetWeatherInfoResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
|
|
109662
|
+
type GetWeatherInfoProps = paths[typeof routeName$6Y]['get']['parameters'];
|
|
109566
109663
|
declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
|
|
109567
109664
|
|
|
109568
|
-
declare const routeName$
|
|
109569
|
-
type SearchCitiesByCountryQueryParams = paths[typeof routeName$
|
|
109570
|
-
type SearchCitiesByCountryResponse = paths[typeof routeName$
|
|
109571
|
-
type SearchCitiesByCountryProps = paths[typeof routeName$
|
|
109665
|
+
declare const routeName$6X = "/v1/api/address/cities";
|
|
109666
|
+
type SearchCitiesByCountryQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
|
|
109667
|
+
type SearchCitiesByCountryResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
|
|
109668
|
+
type SearchCitiesByCountryProps = paths[typeof routeName$6X]['get']['parameters'];
|
|
109572
109669
|
declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
|
|
109573
109670
|
|
|
109574
|
-
declare const routeName$
|
|
109575
|
-
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$
|
|
109576
|
-
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$
|
|
109577
|
-
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$
|
|
109671
|
+
declare const routeName$6W = "/v1/api/address/streets";
|
|
109672
|
+
type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$6W]['get']['parameters']['query'];
|
|
109673
|
+
type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$6W]['get']['responses'][200]['content']['application/json'];
|
|
109674
|
+
type SeachStreetsByCityAndCountryProps = paths[typeof routeName$6W]['get']['parameters'];
|
|
109578
109675
|
declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
|
|
109579
109676
|
|
|
109580
|
-
declare const routeName$
|
|
109581
|
-
type SearchAddressesByCountryQueryParams = paths[typeof routeName$
|
|
109582
|
-
type SearchAddressesByCountryResponse = paths[typeof routeName$
|
|
109583
|
-
type SearchAddressesByCountryProps = paths[typeof routeName$
|
|
109677
|
+
declare const routeName$6V = "/v1/api/address/search";
|
|
109678
|
+
type SearchAddressesByCountryQueryParams = paths[typeof routeName$6V]['get']['parameters']['query'];
|
|
109679
|
+
type SearchAddressesByCountryResponse = paths[typeof routeName$6V]['get']['responses'][200]['content']['application/json'];
|
|
109680
|
+
type SearchAddressesByCountryProps = paths[typeof routeName$6V]['get']['parameters'];
|
|
109584
109681
|
declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
|
|
109585
109682
|
|
|
109586
|
-
declare const routeName$
|
|
109587
|
-
type GetAddressInfoQueryParams = paths[typeof routeName$
|
|
109588
|
-
type GetAddressInfoResponse = paths[typeof routeName$
|
|
109589
|
-
type GetAddressInfoProps = paths[typeof routeName$
|
|
109683
|
+
declare const routeName$6U = "/v1/api/address/info/premium";
|
|
109684
|
+
type GetAddressInfoQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
|
|
109685
|
+
type GetAddressInfoResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
|
|
109686
|
+
type GetAddressInfoProps = paths[typeof routeName$6U]['get']['parameters'];
|
|
109590
109687
|
declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
|
|
109591
109688
|
|
|
109592
|
-
declare const routeName$
|
|
109593
|
-
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$
|
|
109594
|
-
type GetAddressInfoFreemiumResponse = paths[typeof routeName$
|
|
109595
|
-
type GetAddressInfoFreemiumProps = paths[typeof routeName$
|
|
109689
|
+
declare const routeName$6T = "/v1/api/address/info/freemium";
|
|
109690
|
+
type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
|
|
109691
|
+
type GetAddressInfoFreemiumResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
|
|
109692
|
+
type GetAddressInfoFreemiumProps = paths[typeof routeName$6T]['get']['parameters'];
|
|
109596
109693
|
declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
|
|
109597
109694
|
|
|
109598
|
-
declare const routeName$
|
|
109599
|
-
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$
|
|
109600
|
-
type GetAllAdvisoryReportsResponse = paths[typeof routeName$
|
|
109601
|
-
type GetAllAdvisoryReportsProps = paths[typeof routeName$
|
|
109695
|
+
declare const routeName$6S = "/v1/api/advisory-reports";
|
|
109696
|
+
type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
|
|
109697
|
+
type GetAllAdvisoryReportsResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
|
|
109698
|
+
type GetAllAdvisoryReportsProps = paths[typeof routeName$6S]['get']['parameters'];
|
|
109602
109699
|
declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
|
|
109603
109700
|
|
|
109604
|
-
declare const routeName$
|
|
109605
|
-
type CreateAdvisoryReportBody = paths[typeof routeName$
|
|
109606
|
-
type CreateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109607
|
-
type CreateAdvisoryReportResponse = paths[typeof routeName$
|
|
109701
|
+
declare const routeName$6R = "/v1/api/advisory-reports";
|
|
109702
|
+
type CreateAdvisoryReportBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
|
|
109703
|
+
type CreateAdvisoryReportQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
|
|
109704
|
+
type CreateAdvisoryReportResponse = paths[typeof routeName$6R]['post']['responses'][201]['content']['application/json'];
|
|
109608
109705
|
interface CreateAdvisoryReportProps {
|
|
109609
109706
|
body: CreateAdvisoryReportBody;
|
|
109610
109707
|
params: {
|
|
@@ -109613,17 +109710,17 @@ interface CreateAdvisoryReportProps {
|
|
|
109613
109710
|
}
|
|
109614
109711
|
declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
|
|
109615
109712
|
|
|
109616
|
-
declare const routeName$
|
|
109617
|
-
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109618
|
-
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109619
|
-
type GetAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109620
|
-
type GetAdvisoryReportByIdProps = paths[typeof routeName$
|
|
109713
|
+
declare const routeName$6Q = "/v1/api/advisory-reports/{report_id}";
|
|
109714
|
+
type GetAdvisoryReportByIdPathParams = paths[typeof routeName$6Q]['get']['parameters']['path'];
|
|
109715
|
+
type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$6Q]['get']['parameters']['query'];
|
|
109716
|
+
type GetAdvisoryReportByIdResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
|
|
109717
|
+
type GetAdvisoryReportByIdProps = paths[typeof routeName$6Q]['get']['parameters'];
|
|
109621
109718
|
declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
|
|
109622
109719
|
|
|
109623
|
-
declare const routeName$
|
|
109624
|
-
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
109625
|
-
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
109626
|
-
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
109720
|
+
declare const routeName$6P = "/v1/api/advisory-reports/{report_id}";
|
|
109721
|
+
type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$6P]['delete']['parameters']['path'];
|
|
109722
|
+
type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$6P]['delete']['parameters']['query'];
|
|
109723
|
+
type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$6P]['delete']['responses'][200]['content']['application/json'];
|
|
109627
109724
|
interface DeleteAdvisoryReportRevisionProps {
|
|
109628
109725
|
params: {
|
|
109629
109726
|
query: DeleteAdvisoryReportRevisionQueryParams;
|
|
@@ -109632,11 +109729,11 @@ interface DeleteAdvisoryReportRevisionProps {
|
|
|
109632
109729
|
}
|
|
109633
109730
|
declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
|
|
109634
109731
|
|
|
109635
|
-
declare const routeName$
|
|
109636
|
-
type UpdateAdvisoryReportBody = paths[typeof routeName$
|
|
109637
|
-
type UpdateAdvisoryReportPathParams = paths[typeof routeName$
|
|
109638
|
-
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109639
|
-
type UpdateAdvisoryReportResponse = paths[typeof routeName$
|
|
109732
|
+
declare const routeName$6O = "/v1/api/advisory-reports/{report_id}";
|
|
109733
|
+
type UpdateAdvisoryReportBody = paths[typeof routeName$6O]['patch']['requestBody']['content']['application/json'];
|
|
109734
|
+
type UpdateAdvisoryReportPathParams = paths[typeof routeName$6O]['patch']['parameters']['path'];
|
|
109735
|
+
type UpdateAdvisoryReportQueryParams = paths[typeof routeName$6O]['patch']['parameters']['query'];
|
|
109736
|
+
type UpdateAdvisoryReportResponse = paths[typeof routeName$6O]['patch']['responses'][200]['content']['application/json'];
|
|
109640
109737
|
interface UpdateAdvisoryReportProps {
|
|
109641
109738
|
body: UpdateAdvisoryReportBody;
|
|
109642
109739
|
params: {
|
|
@@ -109646,18 +109743,18 @@ interface UpdateAdvisoryReportProps {
|
|
|
109646
109743
|
}
|
|
109647
109744
|
declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
|
|
109648
109745
|
|
|
109649
|
-
declare const routeName$
|
|
109650
|
-
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
109651
|
-
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
109652
|
-
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
109653
|
-
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
109746
|
+
declare const routeName$6N = "/v1/api/advisory-reports/{report_id}/events";
|
|
109747
|
+
type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$6N]['get']['parameters']['path'];
|
|
109748
|
+
type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$6N]['get']['parameters']['query'];
|
|
109749
|
+
type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
|
|
109750
|
+
type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$6N]['get']['parameters'];
|
|
109654
109751
|
declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
|
|
109655
109752
|
|
|
109656
|
-
declare const routeName$
|
|
109657
|
-
type SendAdvisoryReportAsMailBody = paths[typeof routeName$
|
|
109658
|
-
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$
|
|
109659
|
-
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$
|
|
109660
|
-
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$
|
|
109753
|
+
declare const routeName$6M = "/v1/api/advisory-reports/{report_id}/email-inquiries";
|
|
109754
|
+
type SendAdvisoryReportAsMailBody = paths[typeof routeName$6M]['post']['requestBody']['content']['application/json'];
|
|
109755
|
+
type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$6M]['post']['parameters']['path'];
|
|
109756
|
+
type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$6M]['post']['parameters']['query'];
|
|
109757
|
+
type SendAdvisoryReportAsMailResponse = paths[typeof routeName$6M]['post']['responses'][201]['content']['application/json'];
|
|
109661
109758
|
interface SendAdvisoryReportAsMailProps {
|
|
109662
109759
|
body: SendAdvisoryReportAsMailBody;
|
|
109663
109760
|
params: {
|
|
@@ -109667,10 +109764,10 @@ interface SendAdvisoryReportAsMailProps {
|
|
|
109667
109764
|
}
|
|
109668
109765
|
declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
|
|
109669
109766
|
|
|
109670
|
-
declare const routeName$
|
|
109671
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109672
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109673
|
-
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109767
|
+
declare const routeName$6L = "/v1/api/advisory-reports/{report_id}/docx";
|
|
109768
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$6L]['post']['parameters']['path'];
|
|
109769
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6L]['post']['parameters']['query'];
|
|
109770
|
+
type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$6L]['post']['responses'][200]['content']['application/json'];
|
|
109674
109771
|
interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
109675
109772
|
params: {
|
|
109676
109773
|
query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
|
|
@@ -109679,17 +109776,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
|
|
|
109679
109776
|
}
|
|
109680
109777
|
declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
|
|
109681
109778
|
|
|
109682
|
-
declare const routeName$
|
|
109683
|
-
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109684
|
-
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109685
|
-
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109686
|
-
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$
|
|
109779
|
+
declare const routeName$6K = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
109780
|
+
type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
|
|
109781
|
+
type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6K]['get']['parameters']['query'];
|
|
109782
|
+
type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6K]['get']['responses'][307]['content']['application/json'];
|
|
109783
|
+
type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$6K]['get']['parameters'];
|
|
109687
109784
|
declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
|
|
109688
109785
|
|
|
109689
|
-
declare const routeName$
|
|
109690
|
-
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109691
|
-
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109692
|
-
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109786
|
+
declare const routeName$6J = "/v1/api/advisory-reports/{report_id}/pdf";
|
|
109787
|
+
type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
|
|
109788
|
+
type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
|
|
109789
|
+
type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$6J]['post']['responses'][200]['content']['application/json'];
|
|
109693
109790
|
interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
109694
109791
|
params: {
|
|
109695
109792
|
query: GeneratePdfOfAdvisoryReportByIdQueryParams;
|
|
@@ -109698,10 +109795,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
|
|
|
109698
109795
|
}
|
|
109699
109796
|
declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
|
|
109700
109797
|
|
|
109701
|
-
declare const routeName$
|
|
109702
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$
|
|
109703
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$
|
|
109704
|
-
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$
|
|
109798
|
+
declare const routeName$6I = "/v1/api/advisory-report-front-page-pdf";
|
|
109799
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
|
|
109800
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
|
|
109801
|
+
type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$6I]['post']['responses'][201]['content']['application/json'];
|
|
109705
109802
|
interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
109706
109803
|
body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
|
|
109707
109804
|
params: {
|
|
@@ -109710,11 +109807,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
|
|
|
109710
109807
|
}
|
|
109711
109808
|
declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
|
|
109712
109809
|
|
|
109713
|
-
declare const routeName$
|
|
109714
|
-
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$
|
|
109715
|
-
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$
|
|
109716
|
-
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109717
|
-
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$
|
|
109810
|
+
declare const routeName$6H = "/v1/api/advisory-reports/{report_id}/acceptances";
|
|
109811
|
+
type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$6H]['post']['requestBody']['content']['application/json'];
|
|
109812
|
+
type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$6H]['post']['parameters']['path'];
|
|
109813
|
+
type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
|
|
109814
|
+
type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$6H]['post']['responses'][200]['content']['application/json'];
|
|
109718
109815
|
interface AcceptOrRejectAnAdvisoryReportProps {
|
|
109719
109816
|
body: AcceptOrRejectAnAdvisoryReportBody;
|
|
109720
109817
|
params: {
|
|
@@ -109724,11 +109821,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
|
|
|
109724
109821
|
}
|
|
109725
109822
|
declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
|
|
109726
109823
|
|
|
109727
|
-
declare const routeName$
|
|
109728
|
-
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$
|
|
109729
|
-
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$
|
|
109730
|
-
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109731
|
-
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$
|
|
109824
|
+
declare const routeName$6G = "/v1/api/advisory-reports/{report_id}/conversations";
|
|
109825
|
+
type LinkConversationToAdvisoryReportBody = paths[typeof routeName$6G]['post']['requestBody']['content']['application/json'];
|
|
109826
|
+
type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$6G]['post']['parameters']['path'];
|
|
109827
|
+
type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
|
|
109828
|
+
type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$6G]['post']['responses'][201]['content']['application/json'];
|
|
109732
109829
|
interface LinkConversationToAdvisoryReportProps {
|
|
109733
109830
|
body: LinkConversationToAdvisoryReportBody;
|
|
109734
109831
|
params: {
|
|
@@ -109738,11 +109835,11 @@ interface LinkConversationToAdvisoryReportProps {
|
|
|
109738
109835
|
}
|
|
109739
109836
|
declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
|
|
109740
109837
|
|
|
109741
|
-
declare const routeName$
|
|
109742
|
-
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$
|
|
109743
|
-
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$
|
|
109744
|
-
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$
|
|
109745
|
-
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$
|
|
109838
|
+
declare const routeName$6F = "/v2/api/advisory-reports/{report_id}/revisions";
|
|
109839
|
+
type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
|
|
109840
|
+
type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$6F]['post']['parameters']['path'];
|
|
109841
|
+
type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
|
|
109842
|
+
type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$6F]['post']['responses'][201]['content']['application/json'];
|
|
109746
109843
|
interface CreateAdvisoryReportRevisionV2Props {
|
|
109747
109844
|
body: CreateAdvisoryReportRevisionV2Body;
|
|
109748
109845
|
params: {
|
|
@@ -109752,11 +109849,11 @@ interface CreateAdvisoryReportRevisionV2Props {
|
|
|
109752
109849
|
}
|
|
109753
109850
|
declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
|
|
109754
109851
|
|
|
109755
|
-
declare const routeName$
|
|
109756
|
-
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$
|
|
109757
|
-
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$
|
|
109758
|
-
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$
|
|
109759
|
-
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$
|
|
109852
|
+
declare const routeName$6E = "/v1/api/advisory-reports/{report_id}/revisions";
|
|
109853
|
+
type CreateAdvisoryReportRevisionBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
|
|
109854
|
+
type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$6E]['post']['parameters']['path'];
|
|
109855
|
+
type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
|
|
109856
|
+
type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$6E]['post']['responses'][201]['content']['application/json'];
|
|
109760
109857
|
interface CreateAdvisoryReportRevisionProps {
|
|
109761
109858
|
body: CreateAdvisoryReportRevisionBody;
|
|
109762
109859
|
params: {
|
|
@@ -109766,10 +109863,10 @@ interface CreateAdvisoryReportRevisionProps {
|
|
|
109766
109863
|
}
|
|
109767
109864
|
declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
|
|
109768
109865
|
|
|
109769
|
-
declare const routeName$
|
|
109770
|
-
type DeleteAdvisoryReportPathParams = paths[typeof routeName$
|
|
109771
|
-
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109772
|
-
type DeleteAdvisoryReportResponse = paths[typeof routeName$
|
|
109866
|
+
declare const routeName$6D = "/v2/api/advisory-reports/{report_id}";
|
|
109867
|
+
type DeleteAdvisoryReportPathParams = paths[typeof routeName$6D]['delete']['parameters']['path'];
|
|
109868
|
+
type DeleteAdvisoryReportQueryParams = paths[typeof routeName$6D]['delete']['parameters']['query'];
|
|
109869
|
+
type DeleteAdvisoryReportResponse = paths[typeof routeName$6D]['delete']['responses'][200]['content']['application/json'];
|
|
109773
109870
|
interface DeleteAdvisoryReportProps {
|
|
109774
109871
|
params: {
|
|
109775
109872
|
query: DeleteAdvisoryReportQueryParams;
|
|
@@ -109778,11 +109875,11 @@ interface DeleteAdvisoryReportProps {
|
|
|
109778
109875
|
}
|
|
109779
109876
|
declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
|
|
109780
109877
|
|
|
109781
|
-
declare const routeName$
|
|
109782
|
-
type PutClausesForReportBody = paths[typeof routeName$
|
|
109783
|
-
type PutClausesForReportPathParams = paths[typeof routeName$
|
|
109784
|
-
type PutClausesForReportQueryParams = paths[typeof routeName$
|
|
109785
|
-
type PutClausesForReportResponse = paths[typeof routeName$
|
|
109878
|
+
declare const routeName$6C = "/v1/api/advisory-reports/{report_id}/clauses";
|
|
109879
|
+
type PutClausesForReportBody = paths[typeof routeName$6C]['put']['requestBody']['content']['application/json'];
|
|
109880
|
+
type PutClausesForReportPathParams = paths[typeof routeName$6C]['put']['parameters']['path'];
|
|
109881
|
+
type PutClausesForReportQueryParams = paths[typeof routeName$6C]['put']['parameters']['query'];
|
|
109882
|
+
type PutClausesForReportResponse = paths[typeof routeName$6C]['put']['responses'][200]['content']['application/json'];
|
|
109786
109883
|
interface PutClausesForReportProps {
|
|
109787
109884
|
body: PutClausesForReportBody;
|
|
109788
109885
|
params: {
|
|
@@ -109792,9 +109889,9 @@ interface PutClausesForReportProps {
|
|
|
109792
109889
|
}
|
|
109793
109890
|
declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
|
|
109794
109891
|
|
|
109795
|
-
declare const routeName$
|
|
109796
|
-
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$
|
|
109797
|
-
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$
|
|
109892
|
+
declare const routeName$6B = "/v1/api/advisory-reports/{report_id}/personalise-advices";
|
|
109893
|
+
type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$6B]['post']['parameters']['path'];
|
|
109894
|
+
type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$6B]['post']['responses'][200]['content']['application/json'];
|
|
109798
109895
|
interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
109799
109896
|
params: {
|
|
109800
109897
|
path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
|
|
@@ -109802,18 +109899,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
|
|
|
109802
109899
|
}
|
|
109803
109900
|
declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
|
|
109804
109901
|
|
|
109805
|
-
declare const routeName$
|
|
109806
|
-
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$
|
|
109807
|
-
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$
|
|
109808
|
-
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$
|
|
109809
|
-
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$
|
|
109902
|
+
declare const routeName$6A = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
109903
|
+
type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$6A]['get']['parameters']['path'];
|
|
109904
|
+
type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
|
|
109905
|
+
type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
|
|
109906
|
+
type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$6A]['get']['parameters'];
|
|
109810
109907
|
declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
|
|
109811
109908
|
|
|
109812
|
-
declare const routeName$
|
|
109813
|
-
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$
|
|
109814
|
-
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$
|
|
109815
|
-
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$
|
|
109816
|
-
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$
|
|
109909
|
+
declare const routeName$6z = "/v1/api/advisory-reports/{report_id}/settings/steps";
|
|
109910
|
+
type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$6z]['put']['requestBody']['content']['application/json'];
|
|
109911
|
+
type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$6z]['put']['parameters']['path'];
|
|
109912
|
+
type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$6z]['put']['parameters']['query'];
|
|
109913
|
+
type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$6z]['put']['responses'][200]['content']['application/json'];
|
|
109817
109914
|
interface CreateAdvisoryReportStepSettingsProps {
|
|
109818
109915
|
body: CreateAdvisoryReportStepSettingsBody;
|
|
109819
109916
|
params: {
|
|
@@ -109823,11 +109920,11 @@ interface CreateAdvisoryReportStepSettingsProps {
|
|
|
109823
109920
|
}
|
|
109824
109921
|
declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
|
|
109825
109922
|
|
|
109826
|
-
declare const routeName$
|
|
109827
|
-
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109828
|
-
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109829
|
-
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109830
|
-
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109923
|
+
declare const routeName$6y = "/v1/api/advisory-reports/{report_id}/risk-domains";
|
|
109924
|
+
type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$6y]['post']['requestBody']['content']['application/json'];
|
|
109925
|
+
type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6y]['post']['parameters']['path'];
|
|
109926
|
+
type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6y]['post']['parameters']['query'];
|
|
109927
|
+
type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6y]['post']['responses'][201]['content']['application/json'];
|
|
109831
109928
|
interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
109832
109929
|
body: CreateRiskDomainForAdvisoryReportByIdBody;
|
|
109833
109930
|
params: {
|
|
@@ -109837,10 +109934,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
|
|
|
109837
109934
|
}
|
|
109838
109935
|
declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
|
|
109839
109936
|
|
|
109840
|
-
declare const routeName$
|
|
109841
|
-
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109842
|
-
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109843
|
-
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109937
|
+
declare const routeName$6x = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
|
|
109938
|
+
type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6x]['delete']['parameters']['path'];
|
|
109939
|
+
type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6x]['delete']['parameters']['query'];
|
|
109940
|
+
type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6x]['delete']['responses'][200]['content']['application/json'];
|
|
109844
109941
|
interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
109845
109942
|
params: {
|
|
109846
109943
|
query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
|
|
@@ -109849,11 +109946,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
|
|
|
109849
109946
|
}
|
|
109850
109947
|
declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
|
|
109851
109948
|
|
|
109852
|
-
declare const routeName$
|
|
109853
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109854
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109855
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109856
|
-
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109949
|
+
declare const routeName$6w = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
|
|
109950
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6w]['post']['requestBody']['content']['application/json'];
|
|
109951
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
|
|
109952
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
|
|
109953
|
+
type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6w]['post']['responses'][201]['content']['application/json'];
|
|
109857
109954
|
interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
109858
109955
|
body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
109859
109956
|
params: {
|
|
@@ -109863,10 +109960,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
109863
109960
|
}
|
|
109864
109961
|
declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
109865
109962
|
|
|
109866
|
-
declare const routeName$
|
|
109867
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109868
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109869
|
-
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109963
|
+
declare const routeName$6v = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
109964
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6v]['delete']['parameters']['path'];
|
|
109965
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6v]['delete']['parameters']['query'];
|
|
109966
|
+
type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6v]['delete']['responses'][200]['content']['application/json'];
|
|
109870
109967
|
interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
109871
109968
|
params: {
|
|
109872
109969
|
query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
|
|
@@ -109875,11 +109972,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
109875
109972
|
}
|
|
109876
109973
|
declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
109877
109974
|
|
|
109878
|
-
declare const routeName$
|
|
109879
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109880
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109881
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109882
|
-
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109975
|
+
declare const routeName$6u = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
|
|
109976
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6u]['patch']['requestBody']['content']['application/json'];
|
|
109977
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6u]['patch']['parameters']['path'];
|
|
109978
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6u]['patch']['parameters']['query'];
|
|
109979
|
+
type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6u]['patch']['responses'][201]['content']['application/json'];
|
|
109883
109980
|
interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
109884
109981
|
body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
|
|
109885
109982
|
params: {
|
|
@@ -109889,11 +109986,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
|
|
|
109889
109986
|
}
|
|
109890
109987
|
declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
|
|
109891
109988
|
|
|
109892
|
-
declare const routeName$
|
|
109893
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109894
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109895
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109896
|
-
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
109989
|
+
declare const routeName$6t = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
|
|
109990
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6t]['put']['requestBody']['content']['application/json'];
|
|
109991
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6t]['put']['parameters']['path'];
|
|
109992
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6t]['put']['parameters']['query'];
|
|
109993
|
+
type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6t]['put']['responses'][201]['content']['application/json'];
|
|
109897
109994
|
interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
109898
109995
|
body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
|
|
109899
109996
|
params: {
|
|
@@ -109903,11 +110000,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
|
|
|
109903
110000
|
}
|
|
109904
110001
|
declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
|
|
109905
110002
|
|
|
109906
|
-
declare const routeName$
|
|
109907
|
-
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109908
|
-
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109909
|
-
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109910
|
-
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110003
|
+
declare const routeName$6s = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
|
|
110004
|
+
type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6s]['post']['requestBody']['content']['application/json'];
|
|
110005
|
+
type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6s]['post']['parameters']['path'];
|
|
110006
|
+
type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6s]['post']['parameters']['query'];
|
|
110007
|
+
type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6s]['post']['responses'][201]['content']['application/json'];
|
|
109911
110008
|
interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
109912
110009
|
body: CreateRiskDomainActionForAdvisoryReportByIdBody;
|
|
109913
110010
|
params: {
|
|
@@ -109917,10 +110014,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
109917
110014
|
}
|
|
109918
110015
|
declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
109919
110016
|
|
|
109920
|
-
declare const routeName$
|
|
109921
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109922
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109923
|
-
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110017
|
+
declare const routeName$6r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
110018
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6r]['delete']['parameters']['path'];
|
|
110019
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6r]['delete']['parameters']['query'];
|
|
110020
|
+
type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6r]['delete']['responses'][200]['content']['application/json'];
|
|
109924
110021
|
interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
109925
110022
|
params: {
|
|
109926
110023
|
query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
|
|
@@ -109929,11 +110026,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
109929
110026
|
}
|
|
109930
110027
|
declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
109931
110028
|
|
|
109932
|
-
declare const routeName$
|
|
109933
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109934
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109935
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109936
|
-
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110029
|
+
declare const routeName$6q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
|
|
110030
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6q]['patch']['requestBody']['content']['application/json'];
|
|
110031
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6q]['patch']['parameters']['path'];
|
|
110032
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6q]['patch']['parameters']['query'];
|
|
110033
|
+
type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6q]['patch']['responses'][200]['content']['application/json'];
|
|
109937
110034
|
interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
109938
110035
|
body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
|
|
109939
110036
|
params: {
|
|
@@ -109943,11 +110040,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
|
|
|
109943
110040
|
}
|
|
109944
110041
|
declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
|
|
109945
110042
|
|
|
109946
|
-
declare const routeName$
|
|
109947
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109948
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109949
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109950
|
-
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110043
|
+
declare const routeName$6p = "/v1/api/advisory-reports/{report_id}/insurance-policies";
|
|
110044
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6p]['put']['requestBody']['content']['application/json'];
|
|
110045
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6p]['put']['parameters']['path'];
|
|
110046
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6p]['put']['parameters']['query'];
|
|
110047
|
+
type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6p]['put']['responses'][200]['content']['application/json'];
|
|
109951
110048
|
interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
109952
110049
|
body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
|
|
109953
110050
|
params: {
|
|
@@ -109957,10 +110054,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
109957
110054
|
}
|
|
109958
110055
|
declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
109959
110056
|
|
|
109960
|
-
declare const routeName$
|
|
109961
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109962
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109963
|
-
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110057
|
+
declare const routeName$6o = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
|
|
110058
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6o]['delete']['parameters']['path'];
|
|
110059
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6o]['delete']['parameters']['query'];
|
|
110060
|
+
type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6o]['delete']['responses'][200]['content']['application/json'];
|
|
109964
110061
|
interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
109965
110062
|
params: {
|
|
109966
110063
|
query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
|
|
@@ -109969,11 +110066,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
|
|
|
109969
110066
|
}
|
|
109970
110067
|
declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
|
|
109971
110068
|
|
|
109972
|
-
declare const routeName$
|
|
109973
|
-
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$
|
|
109974
|
-
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$
|
|
109975
|
-
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$
|
|
109976
|
-
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$
|
|
110069
|
+
declare const routeName$6n = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
|
|
110070
|
+
type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6n]['put']['requestBody']['content']['application/json'];
|
|
110071
|
+
type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6n]['put']['parameters']['path'];
|
|
110072
|
+
type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6n]['put']['parameters']['query'];
|
|
110073
|
+
type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6n]['put']['responses'][200]['content']['application/json'];
|
|
109977
110074
|
interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
109978
110075
|
body: OrderInsurancePolciesOfAdvisoryReportBody;
|
|
109979
110076
|
params: {
|
|
@@ -109983,11 +110080,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
|
|
|
109983
110080
|
}
|
|
109984
110081
|
declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
|
|
109985
110082
|
|
|
109986
|
-
declare const routeName$
|
|
109987
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$
|
|
109988
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$
|
|
109989
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$
|
|
109990
|
-
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$
|
|
110083
|
+
declare const routeName$6m = "/v1/api/advisory-reports/{report_id}/policy-packages";
|
|
110084
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6m]['put']['requestBody']['content']['application/json'];
|
|
110085
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6m]['put']['parameters']['path'];
|
|
110086
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6m]['put']['parameters']['query'];
|
|
110087
|
+
type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6m]['put']['responses'][200]['content']['application/json'];
|
|
109991
110088
|
interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
109992
110089
|
body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
|
|
109993
110090
|
params: {
|
|
@@ -109997,51 +110094,51 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
|
|
|
109997
110094
|
}
|
|
109998
110095
|
declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
|
|
109999
110096
|
|
|
110000
|
-
declare const routeName$
|
|
110001
|
-
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$
|
|
110097
|
+
declare const routeName$6l = "/v1/api/affiliations";
|
|
110098
|
+
type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6l]['get']['responses'][200]['content']['application/json'];
|
|
110002
110099
|
declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
|
|
110003
110100
|
|
|
110004
|
-
declare const routeName$
|
|
110005
|
-
type GetAnvaLabelsQueryParams = paths[typeof routeName$
|
|
110006
|
-
type GetAnvaLabelsResponse = paths[typeof routeName$
|
|
110007
|
-
type GetAnvaLabelsProps = paths[typeof routeName$
|
|
110101
|
+
declare const routeName$6k = "/v1/api/anvaflows/labels";
|
|
110102
|
+
type GetAnvaLabelsQueryParams = paths[typeof routeName$6k]['get']['parameters']['query'];
|
|
110103
|
+
type GetAnvaLabelsResponse = paths[typeof routeName$6k]['get']['responses'][200]['content']['application/json'];
|
|
110104
|
+
type GetAnvaLabelsProps = paths[typeof routeName$6k]['get']['parameters'];
|
|
110008
110105
|
declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
|
|
110009
110106
|
|
|
110010
|
-
declare const routeName$
|
|
110011
|
-
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$
|
|
110012
|
-
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$
|
|
110013
|
-
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$
|
|
110107
|
+
declare const routeName$6j = "/v1/api/anvaflows/supported-insurances";
|
|
110108
|
+
type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$6j]['get']['parameters']['query'];
|
|
110109
|
+
type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
|
|
110110
|
+
type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$6j]['get']['parameters'];
|
|
110014
110111
|
declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
|
|
110015
110112
|
|
|
110016
|
-
declare const routeName$
|
|
110017
|
-
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$
|
|
110018
|
-
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$
|
|
110019
|
-
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$
|
|
110113
|
+
declare const routeName$6i = "/v1/api/anvaflows/supported-tags";
|
|
110114
|
+
type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$6i]['get']['parameters']['query'];
|
|
110115
|
+
type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
|
|
110116
|
+
type GetSupportedAnvaflowTagsProps = paths[typeof routeName$6i]['get']['parameters'];
|
|
110020
110117
|
declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
|
|
110021
110118
|
|
|
110022
|
-
declare const routeName$
|
|
110023
|
-
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$
|
|
110024
|
-
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$
|
|
110025
|
-
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$
|
|
110119
|
+
declare const routeName$6h = "/v1/api/anvaflows/supported-coverages";
|
|
110120
|
+
type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$6h]['get']['parameters']['query'];
|
|
110121
|
+
type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$6h]['get']['responses'][200]['content']['application/json'];
|
|
110122
|
+
type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$6h]['get']['parameters'];
|
|
110026
110123
|
declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
|
|
110027
110124
|
|
|
110028
|
-
declare const routeName$
|
|
110029
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$
|
|
110030
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$
|
|
110031
|
-
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$
|
|
110125
|
+
declare const routeName$6g = "/v1/api/anvaflows/supported-adn-coverages";
|
|
110126
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$6g]['get']['parameters']['query'];
|
|
110127
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$6g]['get']['responses'][200]['content']['application/json'];
|
|
110128
|
+
type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$6g]['get']['parameters'];
|
|
110032
110129
|
declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
|
|
110033
110130
|
|
|
110034
|
-
declare const routeName$
|
|
110035
|
-
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$
|
|
110036
|
-
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$
|
|
110037
|
-
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$
|
|
110131
|
+
declare const routeName$6f = "/v1/api/anvaflows/supported-insurance-companies";
|
|
110132
|
+
type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$6f]['get']['parameters']['query'];
|
|
110133
|
+
type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
|
|
110134
|
+
type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$6f]['get']['parameters'];
|
|
110038
110135
|
declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
|
|
110039
110136
|
|
|
110040
|
-
declare const routeName$
|
|
110041
|
-
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
110042
|
-
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
110043
|
-
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
110044
|
-
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
110137
|
+
declare const routeName$6e = "/v1/api/anvaflows/{session_id}/calculate";
|
|
110138
|
+
type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6e]['post']['requestBody']['content']['application/json'];
|
|
110139
|
+
type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6e]['post']['parameters']['path'];
|
|
110140
|
+
type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
|
|
110141
|
+
type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6e]['post']['responses'][200]['content']['application/json'];
|
|
110045
110142
|
interface CalculateAnvaquotesBySessionIdProps {
|
|
110046
110143
|
body: CalculateAnvaquotesBySessionIdBody;
|
|
110047
110144
|
params: {
|
|
@@ -110051,11 +110148,11 @@ interface CalculateAnvaquotesBySessionIdProps {
|
|
|
110051
110148
|
}
|
|
110052
110149
|
declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
|
|
110053
110150
|
|
|
110054
|
-
declare const routeName$
|
|
110055
|
-
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$
|
|
110056
|
-
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$
|
|
110057
|
-
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$
|
|
110058
|
-
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$
|
|
110151
|
+
declare const routeName$6d = "/v2/api/anvaflows/{session_id}/calculate";
|
|
110152
|
+
type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6d]['post']['requestBody']['content']['application/json'];
|
|
110153
|
+
type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
|
|
110154
|
+
type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
|
|
110155
|
+
type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6d]['post']['responses'][202]['content']['application/json'];
|
|
110059
110156
|
interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
110060
110157
|
body: EnqueueCalculationAnvaquotesBySessionIdBody;
|
|
110061
110158
|
params: {
|
|
@@ -110065,11 +110162,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
|
|
|
110065
110162
|
}
|
|
110066
110163
|
declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
|
|
110067
110164
|
|
|
110068
|
-
declare const routeName$
|
|
110069
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$
|
|
110070
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$
|
|
110071
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$
|
|
110072
|
-
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$
|
|
110165
|
+
declare const routeName$6c = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
|
|
110166
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6c]['post']['requestBody']['content']['application/json'];
|
|
110167
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
|
|
110168
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
|
|
110169
|
+
type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
|
|
110073
110170
|
interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
110074
110171
|
body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
|
|
110075
110172
|
params: {
|
|
@@ -110079,10 +110176,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
|
|
|
110079
110176
|
}
|
|
110080
110177
|
declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
|
|
110081
110178
|
|
|
110082
|
-
declare const routeName$
|
|
110083
|
-
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
110084
|
-
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
110085
|
-
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
110179
|
+
declare const routeName$6b = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
110180
|
+
type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6b]['post']['parameters']['path'];
|
|
110181
|
+
type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
|
|
110182
|
+
type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
|
|
110086
110183
|
interface SendOfferToAnvaBySessionIdProps {
|
|
110087
110184
|
params: {
|
|
110088
110185
|
query: SendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -110091,10 +110188,10 @@ interface SendOfferToAnvaBySessionIdProps {
|
|
|
110091
110188
|
}
|
|
110092
110189
|
declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
|
|
110093
110190
|
|
|
110094
|
-
declare const routeName$
|
|
110095
|
-
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
110096
|
-
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
110097
|
-
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
110191
|
+
declare const routeName$6a = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
|
|
110192
|
+
type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6a]['post']['parameters']['path'];
|
|
110193
|
+
type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6a]['post']['parameters']['query'];
|
|
110194
|
+
type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6a]['post']['responses'][202]['content']['application/json'];
|
|
110098
110195
|
interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
110099
110196
|
params: {
|
|
110100
110197
|
query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
|
|
@@ -110103,11 +110200,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
|
|
|
110103
110200
|
}
|
|
110104
110201
|
declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
|
|
110105
110202
|
|
|
110106
|
-
declare const routeName$
|
|
110107
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$
|
|
110108
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$
|
|
110109
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$
|
|
110110
|
-
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$
|
|
110203
|
+
declare const routeName$69 = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
|
|
110204
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$69]['post']['requestBody']['content']['application/json'];
|
|
110205
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$69]['post']['parameters']['path'];
|
|
110206
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
|
|
110207
|
+
type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$69]['post']['responses'][202]['content']['application/json'];
|
|
110111
110208
|
interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
110112
110209
|
body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
|
|
110113
110210
|
params: {
|
|
@@ -110117,11 +110214,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
|
|
|
110117
110214
|
}
|
|
110118
110215
|
declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
|
|
110119
110216
|
|
|
110120
|
-
declare const routeName$
|
|
110121
|
-
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$
|
|
110122
|
-
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$
|
|
110123
|
-
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$
|
|
110124
|
-
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$
|
|
110217
|
+
declare const routeName$68 = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
|
|
110218
|
+
type RecalculateSimulationBySessionIdBody = paths[typeof routeName$68]['post']['requestBody']['content']['application/json'];
|
|
110219
|
+
type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$68]['post']['parameters']['path'];
|
|
110220
|
+
type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$68]['post']['parameters']['query'];
|
|
110221
|
+
type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$68]['post']['responses'][200]['content']['application/json'];
|
|
110125
110222
|
interface RecalculateSimulationBySessionIdProps {
|
|
110126
110223
|
body: RecalculateSimulationBySessionIdBody;
|
|
110127
110224
|
params: {
|
|
@@ -110131,23 +110228,23 @@ interface RecalculateSimulationBySessionIdProps {
|
|
|
110131
110228
|
}
|
|
110132
110229
|
declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
|
|
110133
110230
|
|
|
110134
|
-
declare const routeName$
|
|
110135
|
-
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$
|
|
110136
|
-
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$
|
|
110137
|
-
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$
|
|
110138
|
-
type GetAnvaCollectionMethodsProps = paths[typeof routeName$
|
|
110231
|
+
declare const routeName$67 = "/v1/api/anvaflows/{session_id}/collection-methods";
|
|
110232
|
+
type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$67]['get']['parameters']['path'];
|
|
110233
|
+
type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$67]['get']['parameters']['query'];
|
|
110234
|
+
type GetAnvaCollectionMethodsResponse = paths[typeof routeName$67]['get']['responses'][200]['content']['application/json'];
|
|
110235
|
+
type GetAnvaCollectionMethodsProps = paths[typeof routeName$67]['get']['parameters'];
|
|
110139
110236
|
declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
|
|
110140
110237
|
|
|
110141
|
-
declare const routeName$
|
|
110142
|
-
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
110143
|
-
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
110144
|
-
type GetAnvaClosingQuestionsProps = paths[typeof routeName$
|
|
110238
|
+
declare const routeName$66 = "/v1/api/anvaflows/closing-questions";
|
|
110239
|
+
type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$66]['get']['parameters']['query'];
|
|
110240
|
+
type GetAnvaClosingQuestionsResponse = paths[typeof routeName$66]['get']['responses'][200]['content']['application/json'];
|
|
110241
|
+
type GetAnvaClosingQuestionsProps = paths[typeof routeName$66]['get']['parameters'];
|
|
110145
110242
|
declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
|
|
110146
110243
|
|
|
110147
|
-
declare const routeName$
|
|
110148
|
-
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$
|
|
110149
|
-
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
110150
|
-
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
110244
|
+
declare const routeName$65 = "/v1/api/anvaflows/closing-questions";
|
|
110245
|
+
type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$65]['put']['requestBody']['content']['application/json'];
|
|
110246
|
+
type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$65]['put']['parameters']['query'];
|
|
110247
|
+
type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$65]['put']['responses'][200]['content']['application/json'];
|
|
110151
110248
|
interface UpsertAnvaClosingQuestionsProps {
|
|
110152
110249
|
body: UpsertAnvaClosingQuestionsBody;
|
|
110153
110250
|
params: {
|
|
@@ -110156,10 +110253,10 @@ interface UpsertAnvaClosingQuestionsProps {
|
|
|
110156
110253
|
}
|
|
110157
110254
|
declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
|
|
110158
110255
|
|
|
110159
|
-
declare const routeName$
|
|
110160
|
-
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$
|
|
110161
|
-
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$
|
|
110162
|
-
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$
|
|
110256
|
+
declare const routeName$64 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
|
|
110257
|
+
type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
|
|
110258
|
+
type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
|
|
110259
|
+
type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
|
|
110163
110260
|
interface DeleteAnvaClosingQuestionsProps {
|
|
110164
110261
|
params: {
|
|
110165
110262
|
query: DeleteAnvaClosingQuestionsQueryParams;
|
|
@@ -110168,11 +110265,11 @@ interface DeleteAnvaClosingQuestionsProps {
|
|
|
110168
110265
|
}
|
|
110169
110266
|
declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
|
|
110170
110267
|
|
|
110171
|
-
declare const routeName$
|
|
110172
|
-
type CreateAnvaPartyBody = paths[typeof routeName$
|
|
110173
|
-
type CreateAnvaPartyPathParams = paths[typeof routeName$
|
|
110174
|
-
type CreateAnvaPartyQueryParams = paths[typeof routeName$
|
|
110175
|
-
type CreateAnvaPartyResponse = paths[typeof routeName$
|
|
110268
|
+
declare const routeName$63 = "/v1/api/anvaflows/{session_id}/anva-party";
|
|
110269
|
+
type CreateAnvaPartyBody = paths[typeof routeName$63]['post']['requestBody']['content']['application/json'];
|
|
110270
|
+
type CreateAnvaPartyPathParams = paths[typeof routeName$63]['post']['parameters']['path'];
|
|
110271
|
+
type CreateAnvaPartyQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
|
|
110272
|
+
type CreateAnvaPartyResponse = paths[typeof routeName$63]['post']['responses'][201]['content']['application/json'];
|
|
110176
110273
|
interface CreateAnvaPartyProps {
|
|
110177
110274
|
body: CreateAnvaPartyBody;
|
|
110178
110275
|
params: {
|
|
@@ -110182,24 +110279,24 @@ interface CreateAnvaPartyProps {
|
|
|
110182
110279
|
}
|
|
110183
110280
|
declare const createAnvaParty: (props: CreateAnvaPartyProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyResponse>;
|
|
110184
110281
|
|
|
110185
|
-
declare const routeName$
|
|
110186
|
-
type GetAnvaproductsQueryParams = paths[typeof routeName$
|
|
110187
|
-
type GetAnvaproductsResponse = paths[typeof routeName$
|
|
110188
|
-
type GetAnvaproductsProps = paths[typeof routeName$
|
|
110282
|
+
declare const routeName$62 = "/v1/api/anvaproducts";
|
|
110283
|
+
type GetAnvaproductsQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
|
|
110284
|
+
type GetAnvaproductsResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
|
|
110285
|
+
type GetAnvaproductsProps = paths[typeof routeName$62]['get']['parameters'];
|
|
110189
110286
|
declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
|
|
110190
110287
|
|
|
110191
|
-
declare const routeName$
|
|
110192
|
-
type GetAnvaproductByIdPathParams = paths[typeof routeName$
|
|
110193
|
-
type GetAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
110194
|
-
type GetAnvaproductByIdResponse = paths[typeof routeName$
|
|
110195
|
-
type GetAnvaproductByIdProps = paths[typeof routeName$
|
|
110288
|
+
declare const routeName$61 = "/v1/api/anvaproducts/{anva_product_id}";
|
|
110289
|
+
type GetAnvaproductByIdPathParams = paths[typeof routeName$61]['get']['parameters']['path'];
|
|
110290
|
+
type GetAnvaproductByIdQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
|
|
110291
|
+
type GetAnvaproductByIdResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
|
|
110292
|
+
type GetAnvaproductByIdProps = paths[typeof routeName$61]['get']['parameters'];
|
|
110196
110293
|
declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
|
|
110197
110294
|
|
|
110198
|
-
declare const routeName$
|
|
110199
|
-
type PatchAnvaproductByIdBody = paths[typeof routeName$
|
|
110200
|
-
type PatchAnvaproductByIdPathParams = paths[typeof routeName$
|
|
110201
|
-
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$
|
|
110202
|
-
type PatchAnvaproductByIdResponse = paths[typeof routeName$
|
|
110295
|
+
declare const routeName$60 = "/v1/api/anvaproducts/{anva_product_id}";
|
|
110296
|
+
type PatchAnvaproductByIdBody = paths[typeof routeName$60]['patch']['requestBody']['content']['application/json'];
|
|
110297
|
+
type PatchAnvaproductByIdPathParams = paths[typeof routeName$60]['patch']['parameters']['path'];
|
|
110298
|
+
type PatchAnvaproductByIdQueryParams = paths[typeof routeName$60]['patch']['parameters']['query'];
|
|
110299
|
+
type PatchAnvaproductByIdResponse = paths[typeof routeName$60]['patch']['responses'][200]['content']['application/json'];
|
|
110203
110300
|
interface PatchAnvaproductByIdProps {
|
|
110204
110301
|
body: PatchAnvaproductByIdBody;
|
|
110205
110302
|
params: {
|
|
@@ -110209,11 +110306,11 @@ interface PatchAnvaproductByIdProps {
|
|
|
110209
110306
|
}
|
|
110210
110307
|
declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
|
|
110211
110308
|
|
|
110212
|
-
declare const routeName$
|
|
110213
|
-
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$
|
|
110214
|
-
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$
|
|
110215
|
-
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$
|
|
110216
|
-
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$
|
|
110309
|
+
declare const routeName$5$ = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
|
|
110310
|
+
type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$5$]['patch']['requestBody']['content']['application/json'];
|
|
110311
|
+
type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$5$]['patch']['parameters']['path'];
|
|
110312
|
+
type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$5$]['patch']['parameters']['query'];
|
|
110313
|
+
type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$5$]['patch']['responses'][200]['content']['application/json'];
|
|
110217
110314
|
interface PatchAnvaproductCoverageByIdProps {
|
|
110218
110315
|
body: PatchAnvaproductCoverageByIdBody;
|
|
110219
110316
|
params: {
|
|
@@ -110223,18 +110320,18 @@ interface PatchAnvaproductCoverageByIdProps {
|
|
|
110223
110320
|
}
|
|
110224
110321
|
declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
|
|
110225
110322
|
|
|
110226
|
-
declare const routeName$
|
|
110227
|
-
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$
|
|
110228
|
-
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$
|
|
110229
|
-
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$
|
|
110230
|
-
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$
|
|
110323
|
+
declare const routeName$5_ = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
110324
|
+
type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$5_]['get']['parameters']['path'];
|
|
110325
|
+
type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
|
|
110326
|
+
type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
|
|
110327
|
+
type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$5_]['get']['parameters'];
|
|
110231
110328
|
declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
|
|
110232
110329
|
|
|
110233
|
-
declare const routeName$
|
|
110234
|
-
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
110235
|
-
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
110236
|
-
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
110237
|
-
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
110330
|
+
declare const routeName$5Z = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
|
|
110331
|
+
type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$5Z]['put']['requestBody']['content']['application/json'];
|
|
110332
|
+
type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$5Z]['put']['parameters']['path'];
|
|
110333
|
+
type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$5Z]['put']['parameters']['query'];
|
|
110334
|
+
type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$5Z]['put']['responses'][200]['content']['application/json'];
|
|
110238
110335
|
interface UpdateAnvaflowsQuestionnaireProps {
|
|
110239
110336
|
body: UpdateAnvaflowsQuestionnaireBody;
|
|
110240
110337
|
params: {
|
|
@@ -110244,11 +110341,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
|
|
|
110244
110341
|
}
|
|
110245
110342
|
declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
|
|
110246
110343
|
|
|
110247
|
-
declare const routeName$
|
|
110248
|
-
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$
|
|
110249
|
-
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$
|
|
110250
|
-
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$
|
|
110251
|
-
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$
|
|
110344
|
+
declare const routeName$5Y = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
|
|
110345
|
+
type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$5Y]['post']['requestBody']['content']['application/json'];
|
|
110346
|
+
type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
|
|
110347
|
+
type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
|
|
110348
|
+
type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$5Y]['post']['responses'][200]['content']['application/json'];
|
|
110252
110349
|
interface ValidateAnvaflowsQuestionnaireProps {
|
|
110253
110350
|
body: ValidateAnvaflowsQuestionnaireBody;
|
|
110254
110351
|
params: {
|
|
@@ -110258,10 +110355,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
|
|
|
110258
110355
|
}
|
|
110259
110356
|
declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
|
|
110260
110357
|
|
|
110261
|
-
declare const routeName$
|
|
110262
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$
|
|
110263
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$
|
|
110264
|
-
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$
|
|
110358
|
+
declare const routeName$5X = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
|
|
110359
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$5X]['post']['requestBody']['content']['application/json'];
|
|
110360
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
|
|
110361
|
+
type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$5X]['post']['responses'][200]['content']['application/json'];
|
|
110265
110362
|
interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
110266
110363
|
body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
|
|
110267
110364
|
params: {
|
|
@@ -110270,20 +110367,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
|
|
|
110270
110367
|
}
|
|
110271
110368
|
declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
|
|
110272
110369
|
|
|
110273
|
-
declare const routeName$
|
|
110274
|
-
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$
|
|
110370
|
+
declare const routeName$5W = "/v1/api/brokers/me";
|
|
110371
|
+
type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
|
|
110275
110372
|
declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
|
|
110276
110373
|
|
|
110277
|
-
declare const routeName$
|
|
110278
|
-
type GetTheBrokerByIdPathParams = paths[typeof routeName$
|
|
110279
|
-
type GetTheBrokerByIdResponse = paths[typeof routeName$
|
|
110280
|
-
type GetTheBrokerByIdProps = paths[typeof routeName$
|
|
110374
|
+
declare const routeName$5V = "/v1/api/brokers/{broker_id}";
|
|
110375
|
+
type GetTheBrokerByIdPathParams = paths[typeof routeName$5V]['get']['parameters']['path'];
|
|
110376
|
+
type GetTheBrokerByIdResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
|
|
110377
|
+
type GetTheBrokerByIdProps = paths[typeof routeName$5V]['get']['parameters'];
|
|
110281
110378
|
declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
|
|
110282
110379
|
|
|
110283
|
-
declare const routeName$
|
|
110284
|
-
type UpdateBrokerByBrokerBody = paths[typeof routeName$
|
|
110285
|
-
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$
|
|
110286
|
-
type UpdateBrokerByBrokerResponse = paths[typeof routeName$
|
|
110380
|
+
declare const routeName$5U = "/v1/api/brokers/{broker_id}";
|
|
110381
|
+
type UpdateBrokerByBrokerBody = paths[typeof routeName$5U]['patch']['requestBody']['content']['application/json'];
|
|
110382
|
+
type UpdateBrokerByBrokerPathParams = paths[typeof routeName$5U]['patch']['parameters']['path'];
|
|
110383
|
+
type UpdateBrokerByBrokerResponse = paths[typeof routeName$5U]['patch']['responses'][200]['content']['application/json'];
|
|
110287
110384
|
interface UpdateBrokerByBrokerProps {
|
|
110288
110385
|
body: UpdateBrokerByBrokerBody;
|
|
110289
110386
|
params: {
|
|
@@ -110292,16 +110389,16 @@ interface UpdateBrokerByBrokerProps {
|
|
|
110292
110389
|
}
|
|
110293
110390
|
declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
|
|
110294
110391
|
|
|
110295
|
-
declare const routeName$
|
|
110296
|
-
type GetBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
110297
|
-
type GetBrokerIntegrationsResponse = paths[typeof routeName$
|
|
110298
|
-
type GetBrokerIntegrationsProps = paths[typeof routeName$
|
|
110392
|
+
declare const routeName$5T = "/v1/api/brokers/{broker_id}/integrations";
|
|
110393
|
+
type GetBrokerIntegrationsPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
|
|
110394
|
+
type GetBrokerIntegrationsResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
|
|
110395
|
+
type GetBrokerIntegrationsProps = paths[typeof routeName$5T]['get']['parameters'];
|
|
110299
110396
|
declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
|
|
110300
110397
|
|
|
110301
|
-
declare const routeName$
|
|
110302
|
-
type UpdateBrokerIntegrationsBody = paths[typeof routeName$
|
|
110303
|
-
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$
|
|
110304
|
-
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$
|
|
110398
|
+
declare const routeName$5S = "/v1/api/brokers/{broker_id}/integrations";
|
|
110399
|
+
type UpdateBrokerIntegrationsBody = paths[typeof routeName$5S]['patch']['requestBody']['content']['application/json'];
|
|
110400
|
+
type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$5S]['patch']['parameters']['path'];
|
|
110401
|
+
type UpdateBrokerIntegrationsResponse = paths[typeof routeName$5S]['patch']['responses'][200]['content']['application/json'];
|
|
110305
110402
|
interface UpdateBrokerIntegrationsProps {
|
|
110306
110403
|
body: UpdateBrokerIntegrationsBody;
|
|
110307
110404
|
params: {
|
|
@@ -110310,37 +110407,37 @@ interface UpdateBrokerIntegrationsProps {
|
|
|
110310
110407
|
}
|
|
110311
110408
|
declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
|
|
110312
110409
|
|
|
110313
|
-
declare const routeName$
|
|
110314
|
-
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$
|
|
110315
|
-
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$
|
|
110316
|
-
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$
|
|
110410
|
+
declare const routeName$5R = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
|
|
110411
|
+
type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$5R]['get']['parameters']['path'];
|
|
110412
|
+
type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$5R]['get']['responses'][200]['content']['application/json'];
|
|
110413
|
+
type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$5R]['get']['parameters'];
|
|
110317
110414
|
declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
|
|
110318
110415
|
|
|
110319
|
-
declare const routeName$
|
|
110320
|
-
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$
|
|
110321
|
-
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$
|
|
110322
|
-
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$
|
|
110416
|
+
declare const routeName$5Q = "/v1/api/anva-producers/{anva_producer_id}";
|
|
110417
|
+
type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$5Q]['get']['parameters']['path'];
|
|
110418
|
+
type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
|
|
110419
|
+
type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$5Q]['get']['parameters'];
|
|
110323
110420
|
declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
|
|
110324
110421
|
|
|
110325
|
-
declare const routeName$
|
|
110326
|
-
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$
|
|
110327
|
-
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$
|
|
110328
|
-
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$
|
|
110329
|
-
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$
|
|
110422
|
+
declare const routeName$5P = "/v1/api/brokers/{broker_id}/checklists/onboarding";
|
|
110423
|
+
type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$5P]['get']['parameters']['path'];
|
|
110424
|
+
type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$5P]['get']['parameters']['query'];
|
|
110425
|
+
type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$5P]['get']['responses'][200]['content']['application/json'];
|
|
110426
|
+
type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$5P]['get']['parameters'];
|
|
110330
110427
|
declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
|
|
110331
110428
|
|
|
110332
|
-
declare const routeName$
|
|
110333
|
-
type GetCampaignByIdPathParams = paths[typeof routeName$
|
|
110334
|
-
type GetCampaignByIdQueryParams = paths[typeof routeName$
|
|
110335
|
-
type GetCampaignByIdResponse = paths[typeof routeName$
|
|
110336
|
-
type GetCampaignByIdProps = paths[typeof routeName$
|
|
110429
|
+
declare const routeName$5O = "/v1/api/campaigns/{campaign_id}";
|
|
110430
|
+
type GetCampaignByIdPathParams = paths[typeof routeName$5O]['get']['parameters']['path'];
|
|
110431
|
+
type GetCampaignByIdQueryParams = paths[typeof routeName$5O]['get']['parameters']['query'];
|
|
110432
|
+
type GetCampaignByIdResponse = paths[typeof routeName$5O]['get']['responses'][200]['content']['application/json'];
|
|
110433
|
+
type GetCampaignByIdProps = paths[typeof routeName$5O]['get']['parameters'];
|
|
110337
110434
|
declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
|
|
110338
110435
|
|
|
110339
|
-
declare const routeName$
|
|
110340
|
-
type UpdateCampaignBody = paths[typeof routeName$
|
|
110341
|
-
type UpdateCampaignPathParams = paths[typeof routeName$
|
|
110342
|
-
type UpdateCampaignQueryParams = paths[typeof routeName$
|
|
110343
|
-
type UpdateCampaignResponse = paths[typeof routeName$
|
|
110436
|
+
declare const routeName$5N = "/v1/api/campaigns/{campaign_id}";
|
|
110437
|
+
type UpdateCampaignBody = paths[typeof routeName$5N]['patch']['requestBody']['content']['application/json'];
|
|
110438
|
+
type UpdateCampaignPathParams = paths[typeof routeName$5N]['patch']['parameters']['path'];
|
|
110439
|
+
type UpdateCampaignQueryParams = paths[typeof routeName$5N]['patch']['parameters']['query'];
|
|
110440
|
+
type UpdateCampaignResponse = paths[typeof routeName$5N]['patch']['responses'][200]['content']['application/json'];
|
|
110344
110441
|
interface UpdateCampaignProps {
|
|
110345
110442
|
body: UpdateCampaignBody;
|
|
110346
110443
|
params: {
|
|
@@ -110350,16 +110447,16 @@ interface UpdateCampaignProps {
|
|
|
110350
110447
|
}
|
|
110351
110448
|
declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
|
|
110352
110449
|
|
|
110353
|
-
declare const routeName$
|
|
110354
|
-
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$
|
|
110355
|
-
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$
|
|
110356
|
-
type GetAllCampaignsByDistributionProps = paths[typeof routeName$
|
|
110450
|
+
declare const routeName$5M = "/v1/api/campaigns";
|
|
110451
|
+
type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
|
|
110452
|
+
type GetAllCampaignsByDistributionResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
|
|
110453
|
+
type GetAllCampaignsByDistributionProps = paths[typeof routeName$5M]['get']['parameters'];
|
|
110357
110454
|
declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
|
|
110358
110455
|
|
|
110359
|
-
declare const routeName$
|
|
110360
|
-
type CreateCampaignBody = paths[typeof routeName$
|
|
110361
|
-
type CreateCampaignQueryParams = paths[typeof routeName$
|
|
110362
|
-
type CreateCampaignResponse = paths[typeof routeName$
|
|
110456
|
+
declare const routeName$5L = "/v1/api/campaigns";
|
|
110457
|
+
type CreateCampaignBody = paths[typeof routeName$5L]['post']['requestBody']['content']['application/json'];
|
|
110458
|
+
type CreateCampaignQueryParams = paths[typeof routeName$5L]['post']['parameters']['query'];
|
|
110459
|
+
type CreateCampaignResponse = paths[typeof routeName$5L]['post']['responses'][201]['content']['application/json'];
|
|
110363
110460
|
interface CreateCampaignProps {
|
|
110364
110461
|
body: CreateCampaignBody;
|
|
110365
110462
|
params: {
|
|
@@ -110368,17 +110465,17 @@ interface CreateCampaignProps {
|
|
|
110368
110465
|
}
|
|
110369
110466
|
declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
|
|
110370
110467
|
|
|
110371
|
-
declare const routeName$
|
|
110372
|
-
type GetMetricsByCampaignPathParams = paths[typeof routeName$
|
|
110373
|
-
type GetMetricsByCampaignQueryParams = paths[typeof routeName$
|
|
110374
|
-
type GetMetricsByCampaignResponse = paths[typeof routeName$
|
|
110375
|
-
type GetMetricsByCampaignProps = paths[typeof routeName$
|
|
110468
|
+
declare const routeName$5K = "/v1/api/campaigns/{campaign_id}/metrics";
|
|
110469
|
+
type GetMetricsByCampaignPathParams = paths[typeof routeName$5K]['get']['parameters']['path'];
|
|
110470
|
+
type GetMetricsByCampaignQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
|
|
110471
|
+
type GetMetricsByCampaignResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
|
|
110472
|
+
type GetMetricsByCampaignProps = paths[typeof routeName$5K]['get']['parameters'];
|
|
110376
110473
|
declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
|
|
110377
110474
|
|
|
110378
|
-
declare const routeName$
|
|
110379
|
-
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$
|
|
110380
|
-
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$
|
|
110381
|
-
type UpdateTargetsByCampaignResponse = paths[typeof routeName$
|
|
110475
|
+
declare const routeName$5J = "/v1/api/campaigns/{campaign_id}/targets";
|
|
110476
|
+
type UpdateTargetsByCampaignPathParams = paths[typeof routeName$5J]['patch']['parameters']['path'];
|
|
110477
|
+
type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$5J]['patch']['parameters']['query'];
|
|
110478
|
+
type UpdateTargetsByCampaignResponse = paths[typeof routeName$5J]['patch']['responses'][200]['content']['application/json'];
|
|
110382
110479
|
interface UpdateTargetsByCampaignProps {
|
|
110383
110480
|
params: {
|
|
110384
110481
|
query: UpdateTargetsByCampaignQueryParams;
|
|
@@ -110387,15 +110484,15 @@ interface UpdateTargetsByCampaignProps {
|
|
|
110387
110484
|
}
|
|
110388
110485
|
declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
|
|
110389
110486
|
|
|
110390
|
-
declare const routeName$
|
|
110391
|
-
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$
|
|
110392
|
-
type GetAllCampaignTemplatesResponse = paths[typeof routeName$
|
|
110393
|
-
type GetAllCampaignTemplatesProps = paths[typeof routeName$
|
|
110487
|
+
declare const routeName$5I = "/v1/api/campaign-templates";
|
|
110488
|
+
type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$5I]['get']['parameters']['query'];
|
|
110489
|
+
type GetAllCampaignTemplatesResponse = paths[typeof routeName$5I]['get']['responses'][200]['content']['application/json'];
|
|
110490
|
+
type GetAllCampaignTemplatesProps = paths[typeof routeName$5I]['get']['parameters'];
|
|
110394
110491
|
declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
|
|
110395
110492
|
|
|
110396
|
-
declare const routeName$
|
|
110397
|
-
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$
|
|
110398
|
-
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$
|
|
110493
|
+
declare const routeName$5H = "/v1/api/campaigns/example-mails";
|
|
110494
|
+
type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$5H]['post']['parameters']['query'];
|
|
110495
|
+
type SendExampleCampaignTargetMailResponse = paths[typeof routeName$5H]['post']['responses'][201]['content']['application/json'];
|
|
110399
110496
|
interface SendExampleCampaignTargetMailProps {
|
|
110400
110497
|
params: {
|
|
110401
110498
|
query: SendExampleCampaignTargetMailQueryParams;
|
|
@@ -110403,16 +110500,16 @@ interface SendExampleCampaignTargetMailProps {
|
|
|
110403
110500
|
}
|
|
110404
110501
|
declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
|
|
110405
110502
|
|
|
110406
|
-
declare const routeName$
|
|
110407
|
-
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$
|
|
110408
|
-
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$
|
|
110409
|
-
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$
|
|
110503
|
+
declare const routeName$5G = "/v1/api/distributions/campaign-settings";
|
|
110504
|
+
type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
|
|
110505
|
+
type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$5G]['get']['responses'][200]['content']['application/json'];
|
|
110506
|
+
type GetCampaignSettingsByDistributionProps = paths[typeof routeName$5G]['get']['parameters'];
|
|
110410
110507
|
declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
|
|
110411
110508
|
|
|
110412
|
-
declare const routeName$
|
|
110413
|
-
type GenerateDnsPrefixBody = paths[typeof routeName$
|
|
110414
|
-
type GenerateDnsPrefixQueryParams = paths[typeof routeName$
|
|
110415
|
-
type GenerateDnsPrefixResponse = paths[typeof routeName$
|
|
110509
|
+
declare const routeName$5F = "/v1/api/campaigns/dns-prefixes/generate";
|
|
110510
|
+
type GenerateDnsPrefixBody = paths[typeof routeName$5F]['post']['requestBody']['content']['application/json'];
|
|
110511
|
+
type GenerateDnsPrefixQueryParams = paths[typeof routeName$5F]['post']['parameters']['query'];
|
|
110512
|
+
type GenerateDnsPrefixResponse = paths[typeof routeName$5F]['post']['responses'][200]['content']['application/json'];
|
|
110416
110513
|
interface GenerateDnsPrefixProps {
|
|
110417
110514
|
body: GenerateDnsPrefixBody;
|
|
110418
110515
|
params: {
|
|
@@ -110421,16 +110518,16 @@ interface GenerateDnsPrefixProps {
|
|
|
110421
110518
|
}
|
|
110422
110519
|
declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
|
|
110423
110520
|
|
|
110424
|
-
declare const routeName$
|
|
110425
|
-
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$
|
|
110426
|
-
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$
|
|
110427
|
-
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$
|
|
110521
|
+
declare const routeName$5E = "/v1/api/mail-templates/campaign-target";
|
|
110522
|
+
type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
|
|
110523
|
+
type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$5E]['get']['responses'][200]['content']['application/json'];
|
|
110524
|
+
type GetCampaignTargetMailTemplateProps = paths[typeof routeName$5E]['get']['parameters'];
|
|
110428
110525
|
declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
|
|
110429
110526
|
|
|
110430
|
-
declare const routeName$
|
|
110431
|
-
type CreateClaimAsCustomerPathParams = paths[typeof routeName$
|
|
110432
|
-
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
110433
|
-
type CreateClaimAsCustomerResponse = paths[typeof routeName$
|
|
110527
|
+
declare const routeName$5D = "/v1/api/distributions/{distribution_id}/claims";
|
|
110528
|
+
type CreateClaimAsCustomerPathParams = paths[typeof routeName$5D]['post']['parameters']['path'];
|
|
110529
|
+
type CreateClaimAsCustomerQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
|
|
110530
|
+
type CreateClaimAsCustomerResponse = paths[typeof routeName$5D]['post']['responses'][201]['content']['application/json'];
|
|
110434
110531
|
interface CreateClaimAsCustomerProps {
|
|
110435
110532
|
params: {
|
|
110436
110533
|
query: CreateClaimAsCustomerQueryParams;
|
|
@@ -110439,15 +110536,15 @@ interface CreateClaimAsCustomerProps {
|
|
|
110439
110536
|
}
|
|
110440
110537
|
declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
|
|
110441
110538
|
|
|
110442
|
-
declare const routeName$
|
|
110443
|
-
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$
|
|
110444
|
-
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$
|
|
110445
|
-
type GetAllClaimsAsBrokerProps = paths[typeof routeName$
|
|
110539
|
+
declare const routeName$5C = "/v1/api/claims";
|
|
110540
|
+
type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
|
|
110541
|
+
type GetAllClaimsAsBrokerResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
|
|
110542
|
+
type GetAllClaimsAsBrokerProps = paths[typeof routeName$5C]['get']['parameters'];
|
|
110446
110543
|
declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
|
|
110447
110544
|
|
|
110448
|
-
declare const routeName$
|
|
110449
|
-
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$
|
|
110450
|
-
type CreateClaimAsBrokerResponse = paths[typeof routeName$
|
|
110545
|
+
declare const routeName$5B = "/v1/api/claims";
|
|
110546
|
+
type CreateClaimAsBrokerQueryParams = paths[typeof routeName$5B]['post']['parameters']['query'];
|
|
110547
|
+
type CreateClaimAsBrokerResponse = paths[typeof routeName$5B]['post']['responses'][201]['content']['application/json'];
|
|
110451
110548
|
interface CreateClaimAsBrokerProps {
|
|
110452
110549
|
params: {
|
|
110453
110550
|
query: CreateClaimAsBrokerQueryParams;
|
|
@@ -110455,17 +110552,17 @@ interface CreateClaimAsBrokerProps {
|
|
|
110455
110552
|
}
|
|
110456
110553
|
declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
|
|
110457
110554
|
|
|
110458
|
-
declare const routeName$
|
|
110459
|
-
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110460
|
-
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110461
|
-
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
110462
|
-
type GetClaimAsBrokerByIdProps = paths[typeof routeName$
|
|
110555
|
+
declare const routeName$5A = "/v1/api/claims/{claim_id}";
|
|
110556
|
+
type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$5A]['get']['parameters']['path'];
|
|
110557
|
+
type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
|
|
110558
|
+
type GetClaimAsBrokerByIdResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
|
|
110559
|
+
type GetClaimAsBrokerByIdProps = paths[typeof routeName$5A]['get']['parameters'];
|
|
110463
110560
|
declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
|
|
110464
110561
|
|
|
110465
|
-
declare const routeName$
|
|
110466
|
-
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110467
|
-
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110468
|
-
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
110562
|
+
declare const routeName$5z = "/v1/api/claims/{claim_id}";
|
|
110563
|
+
type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$5z]['delete']['parameters']['path'];
|
|
110564
|
+
type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$5z]['delete']['parameters']['query'];
|
|
110565
|
+
type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$5z]['delete']['responses'][200]['content']['application/json'];
|
|
110469
110566
|
interface DeleteClaimAsBrokerByIdProps {
|
|
110470
110567
|
params: {
|
|
110471
110568
|
query: DeleteClaimAsBrokerByIdQueryParams;
|
|
@@ -110474,10 +110571,10 @@ interface DeleteClaimAsBrokerByIdProps {
|
|
|
110474
110571
|
}
|
|
110475
110572
|
declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
|
|
110476
110573
|
|
|
110477
|
-
declare const routeName$
|
|
110478
|
-
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110479
|
-
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110480
|
-
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$
|
|
110574
|
+
declare const routeName$5y = "/v1/api/claims/{claim_id}";
|
|
110575
|
+
type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$5y]['patch']['parameters']['path'];
|
|
110576
|
+
type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$5y]['patch']['parameters']['query'];
|
|
110577
|
+
type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$5y]['patch']['responses'][200]['content']['application/json'];
|
|
110481
110578
|
interface UpdateClaimAsBrokerByIdProps {
|
|
110482
110579
|
params: {
|
|
110483
110580
|
query: UpdateClaimAsBrokerByIdQueryParams;
|
|
@@ -110486,10 +110583,10 @@ interface UpdateClaimAsBrokerByIdProps {
|
|
|
110486
110583
|
}
|
|
110487
110584
|
declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
|
|
110488
110585
|
|
|
110489
|
-
declare const routeName$
|
|
110490
|
-
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$
|
|
110491
|
-
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$
|
|
110492
|
-
type UpdateDeclarationRemarkResponse = paths[typeof routeName$
|
|
110586
|
+
declare const routeName$5x = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
|
|
110587
|
+
type UpdateDeclarationRemarkPathParams = paths[typeof routeName$5x]['put']['parameters']['path'];
|
|
110588
|
+
type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$5x]['put']['parameters']['query'];
|
|
110589
|
+
type UpdateDeclarationRemarkResponse = paths[typeof routeName$5x]['put']['responses'][200]['content']['application/json'];
|
|
110493
110590
|
interface UpdateDeclarationRemarkProps {
|
|
110494
110591
|
params: {
|
|
110495
110592
|
query: UpdateDeclarationRemarkQueryParams;
|
|
@@ -110498,10 +110595,10 @@ interface UpdateDeclarationRemarkProps {
|
|
|
110498
110595
|
}
|
|
110499
110596
|
declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
|
|
110500
110597
|
|
|
110501
|
-
declare const routeName$
|
|
110502
|
-
type CreateLockForClaimPathParams = paths[typeof routeName$
|
|
110503
|
-
type CreateLockForClaimQueryParams = paths[typeof routeName$
|
|
110504
|
-
type CreateLockForClaimResponse = paths[typeof routeName$
|
|
110598
|
+
declare const routeName$5w = "/v1/api/claims/{claim_id}/lock";
|
|
110599
|
+
type CreateLockForClaimPathParams = paths[typeof routeName$5w]['post']['parameters']['path'];
|
|
110600
|
+
type CreateLockForClaimQueryParams = paths[typeof routeName$5w]['post']['parameters']['query'];
|
|
110601
|
+
type CreateLockForClaimResponse = paths[typeof routeName$5w]['post']['responses'][201]['content']['application/json'];
|
|
110505
110602
|
interface CreateLockForClaimProps {
|
|
110506
110603
|
params: {
|
|
110507
110604
|
query: CreateLockForClaimQueryParams;
|
|
@@ -110510,10 +110607,10 @@ interface CreateLockForClaimProps {
|
|
|
110510
110607
|
}
|
|
110511
110608
|
declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
|
|
110512
110609
|
|
|
110513
|
-
declare const routeName$
|
|
110514
|
-
type UnlockClaimPathParams = paths[typeof routeName$
|
|
110515
|
-
type UnlockClaimQueryParams = paths[typeof routeName$
|
|
110516
|
-
type UnlockClaimResponse = paths[typeof routeName$
|
|
110610
|
+
declare const routeName$5v = "/v1/api/claims/{claim_id}/unlock";
|
|
110611
|
+
type UnlockClaimPathParams = paths[typeof routeName$5v]['post']['parameters']['path'];
|
|
110612
|
+
type UnlockClaimQueryParams = paths[typeof routeName$5v]['post']['parameters']['query'];
|
|
110613
|
+
type UnlockClaimResponse = paths[typeof routeName$5v]['post']['responses'][200]['content']['application/json'];
|
|
110517
110614
|
interface UnlockClaimProps {
|
|
110518
110615
|
params: {
|
|
110519
110616
|
query: UnlockClaimQueryParams;
|
|
@@ -110522,10 +110619,10 @@ interface UnlockClaimProps {
|
|
|
110522
110619
|
}
|
|
110523
110620
|
declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
|
|
110524
110621
|
|
|
110525
|
-
declare const routeName$
|
|
110526
|
-
type ClaimRequestUpdatePathParams = paths[typeof routeName$
|
|
110527
|
-
type ClaimRequestUpdateQueryParams = paths[typeof routeName$
|
|
110528
|
-
type ClaimRequestUpdateResponse = paths[typeof routeName$
|
|
110622
|
+
declare const routeName$5u = "/v1/api/claims/{claim_id}/request_update";
|
|
110623
|
+
type ClaimRequestUpdatePathParams = paths[typeof routeName$5u]['post']['parameters']['path'];
|
|
110624
|
+
type ClaimRequestUpdateQueryParams = paths[typeof routeName$5u]['post']['parameters']['query'];
|
|
110625
|
+
type ClaimRequestUpdateResponse = paths[typeof routeName$5u]['post']['responses'][200]['content']['application/json'];
|
|
110529
110626
|
interface ClaimRequestUpdateProps {
|
|
110530
110627
|
params: {
|
|
110531
110628
|
query: ClaimRequestUpdateQueryParams;
|
|
@@ -110534,10 +110631,10 @@ interface ClaimRequestUpdateProps {
|
|
|
110534
110631
|
}
|
|
110535
110632
|
declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
|
|
110536
110633
|
|
|
110537
|
-
declare const routeName$
|
|
110538
|
-
type ValidateClaimPathParams = paths[typeof routeName$
|
|
110539
|
-
type ValidateClaimQueryParams = paths[typeof routeName$
|
|
110540
|
-
type ValidateClaimResponse = paths[typeof routeName$
|
|
110634
|
+
declare const routeName$5t = "/v1/api/claims/{claim_id}/validate";
|
|
110635
|
+
type ValidateClaimPathParams = paths[typeof routeName$5t]['post']['parameters']['path'];
|
|
110636
|
+
type ValidateClaimQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
|
|
110637
|
+
type ValidateClaimResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
|
|
110541
110638
|
interface ValidateClaimProps {
|
|
110542
110639
|
params: {
|
|
110543
110640
|
query: ValidateClaimQueryParams;
|
|
@@ -110546,10 +110643,10 @@ interface ValidateClaimProps {
|
|
|
110546
110643
|
}
|
|
110547
110644
|
declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
|
|
110548
110645
|
|
|
110549
|
-
declare const routeName$
|
|
110550
|
-
type CreateDocumentForClaimPathParams = paths[typeof routeName$
|
|
110551
|
-
type CreateDocumentForClaimQueryParams = paths[typeof routeName$
|
|
110552
|
-
type CreateDocumentForClaimResponse = paths[typeof routeName$
|
|
110646
|
+
declare const routeName$5s = "/v1/api/claims/{claim_id}/documents";
|
|
110647
|
+
type CreateDocumentForClaimPathParams = paths[typeof routeName$5s]['post']['parameters']['path'];
|
|
110648
|
+
type CreateDocumentForClaimQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
|
|
110649
|
+
type CreateDocumentForClaimResponse = paths[typeof routeName$5s]['post']['responses'][201]['content']['application/json'];
|
|
110553
110650
|
interface CreateDocumentForClaimProps {
|
|
110554
110651
|
params: {
|
|
110555
110652
|
query: CreateDocumentForClaimQueryParams;
|
|
@@ -110558,17 +110655,17 @@ interface CreateDocumentForClaimProps {
|
|
|
110558
110655
|
}
|
|
110559
110656
|
declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
|
|
110560
110657
|
|
|
110561
|
-
declare const routeName$
|
|
110562
|
-
type DownloadDocumentByIdPathParams = paths[typeof routeName$
|
|
110563
|
-
type DownloadDocumentByIdQueryParams = paths[typeof routeName$
|
|
110564
|
-
type DownloadDocumentByIdResponse = paths[typeof routeName$
|
|
110565
|
-
type DownloadDocumentByIdProps = paths[typeof routeName$
|
|
110658
|
+
declare const routeName$5r = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
110659
|
+
type DownloadDocumentByIdPathParams = paths[typeof routeName$5r]['get']['parameters']['path'];
|
|
110660
|
+
type DownloadDocumentByIdQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
|
|
110661
|
+
type DownloadDocumentByIdResponse = paths[typeof routeName$5r]['get']['responses'][307]['content']['application/json'];
|
|
110662
|
+
type DownloadDocumentByIdProps = paths[typeof routeName$5r]['get']['parameters'];
|
|
110566
110663
|
declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
|
|
110567
110664
|
|
|
110568
|
-
declare const routeName$
|
|
110569
|
-
type DeleteDocumentByIdPathParams = paths[typeof routeName$
|
|
110570
|
-
type DeleteDocumentByIdQueryParams = paths[typeof routeName$
|
|
110571
|
-
type DeleteDocumentByIdResponse = paths[typeof routeName$
|
|
110665
|
+
declare const routeName$5q = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
110666
|
+
type DeleteDocumentByIdPathParams = paths[typeof routeName$5q]['delete']['parameters']['path'];
|
|
110667
|
+
type DeleteDocumentByIdQueryParams = paths[typeof routeName$5q]['delete']['parameters']['query'];
|
|
110668
|
+
type DeleteDocumentByIdResponse = paths[typeof routeName$5q]['delete']['responses'][200]['content']['application/json'];
|
|
110572
110669
|
interface DeleteDocumentByIdProps {
|
|
110573
110670
|
params: {
|
|
110574
110671
|
query: DeleteDocumentByIdQueryParams;
|
|
@@ -110577,10 +110674,10 @@ interface DeleteDocumentByIdProps {
|
|
|
110577
110674
|
}
|
|
110578
110675
|
declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
|
|
110579
110676
|
|
|
110580
|
-
declare const routeName$
|
|
110581
|
-
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$
|
|
110582
|
-
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$
|
|
110583
|
-
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$
|
|
110677
|
+
declare const routeName$5p = "/v1/api/claims/{claim_id}/documents/{document_id}";
|
|
110678
|
+
type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$5p]['patch']['parameters']['path'];
|
|
110679
|
+
type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$5p]['patch']['parameters']['query'];
|
|
110680
|
+
type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$5p]['patch']['responses'][200]['content']['application/json'];
|
|
110584
110681
|
interface UpdateDocumentMetadataByIdProps {
|
|
110585
110682
|
params: {
|
|
110586
110683
|
query: UpdateDocumentMetadataByIdQueryParams;
|
|
@@ -110589,17 +110686,17 @@ interface UpdateDocumentMetadataByIdProps {
|
|
|
110589
110686
|
}
|
|
110590
110687
|
declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
|
|
110591
110688
|
|
|
110592
|
-
declare const routeName$
|
|
110593
|
-
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110594
|
-
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110595
|
-
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110596
|
-
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$
|
|
110689
|
+
declare const routeName$5o = "/v1/api/claims/customer/token/{token}";
|
|
110690
|
+
type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5o]['get']['parameters']['path'];
|
|
110691
|
+
type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
|
|
110692
|
+
type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
|
|
110693
|
+
type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$5o]['get']['parameters'];
|
|
110597
110694
|
declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
|
|
110598
110695
|
|
|
110599
|
-
declare const routeName$
|
|
110600
|
-
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110601
|
-
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110602
|
-
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110696
|
+
declare const routeName$5n = "/v1/api/claims/customer/token/{token}";
|
|
110697
|
+
type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5n]['patch']['parameters']['path'];
|
|
110698
|
+
type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5n]['patch']['parameters']['query'];
|
|
110699
|
+
type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$5n]['patch']['responses'][200]['content']['application/json'];
|
|
110603
110700
|
interface UpdateClaimAsCustomerWithTokenProps {
|
|
110604
110701
|
params: {
|
|
110605
110702
|
query: UpdateClaimAsCustomerWithTokenQueryParams;
|
|
@@ -110608,10 +110705,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
|
|
|
110608
110705
|
}
|
|
110609
110706
|
declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
|
|
110610
110707
|
|
|
110611
|
-
declare const routeName$
|
|
110612
|
-
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110613
|
-
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110614
|
-
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110708
|
+
declare const routeName$5m = "/v1/api/claims/customer/token/{token}/entities";
|
|
110709
|
+
type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5m]['post']['parameters']['path'];
|
|
110710
|
+
type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5m]['post']['parameters']['query'];
|
|
110711
|
+
type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5m]['post']['responses'][201]['content']['application/json'];
|
|
110615
110712
|
interface CreateEntityAsCustomerWithTokenProps {
|
|
110616
110713
|
params: {
|
|
110617
110714
|
query: CreateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -110620,10 +110717,10 @@ interface CreateEntityAsCustomerWithTokenProps {
|
|
|
110620
110717
|
}
|
|
110621
110718
|
declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
|
|
110622
110719
|
|
|
110623
|
-
declare const routeName$
|
|
110624
|
-
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110625
|
-
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110626
|
-
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110720
|
+
declare const routeName$5l = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
110721
|
+
type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5l]['delete']['parameters']['path'];
|
|
110722
|
+
type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5l]['delete']['parameters']['query'];
|
|
110723
|
+
type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$5l]['delete']['responses'][200]['content']['application/json'];
|
|
110627
110724
|
interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
110628
110725
|
params: {
|
|
110629
110726
|
query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
|
|
@@ -110632,10 +110729,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
|
|
|
110632
110729
|
}
|
|
110633
110730
|
declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
|
|
110634
110731
|
|
|
110635
|
-
declare const routeName$
|
|
110636
|
-
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110637
|
-
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110638
|
-
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110732
|
+
declare const routeName$5k = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
|
|
110733
|
+
type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5k]['patch']['parameters']['path'];
|
|
110734
|
+
type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5k]['patch']['parameters']['query'];
|
|
110735
|
+
type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5k]['patch']['responses'][200]['content']['application/json'];
|
|
110639
110736
|
interface UpdateEntityAsCustomerWithTokenProps {
|
|
110640
110737
|
params: {
|
|
110641
110738
|
query: UpdateEntityAsCustomerWithTokenQueryParams;
|
|
@@ -110644,10 +110741,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
|
|
|
110644
110741
|
}
|
|
110645
110742
|
declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
|
|
110646
110743
|
|
|
110647
|
-
declare const routeName$
|
|
110648
|
-
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$
|
|
110649
|
-
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$
|
|
110650
|
-
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$
|
|
110744
|
+
declare const routeName$5j = "/v1/api/claims/upload/{claim_doc_category}";
|
|
110745
|
+
type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$5j]['post']['parameters']['path'];
|
|
110746
|
+
type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$5j]['post']['parameters']['query'];
|
|
110747
|
+
type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$5j]['post']['responses'][200]['content']['application/json'];
|
|
110651
110748
|
interface UploadClaimDocumentAsBrokerProps {
|
|
110652
110749
|
params: {
|
|
110653
110750
|
query: UploadClaimDocumentAsBrokerQueryParams;
|
|
@@ -110656,10 +110753,10 @@ interface UploadClaimDocumentAsBrokerProps {
|
|
|
110656
110753
|
}
|
|
110657
110754
|
declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
|
|
110658
110755
|
|
|
110659
|
-
declare const routeName$
|
|
110660
|
-
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$
|
|
110661
|
-
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$
|
|
110662
|
-
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$
|
|
110756
|
+
declare const routeName$5i = "/v1/api/claims/customer/upload/{claim_doc_category}";
|
|
110757
|
+
type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$5i]['post']['parameters']['path'];
|
|
110758
|
+
type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$5i]['post']['parameters']['query'];
|
|
110759
|
+
type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$5i]['post']['responses'][200]['content']['application/json'];
|
|
110663
110760
|
interface CreateUploadLinkAsCustomerProps {
|
|
110664
110761
|
params: {
|
|
110665
110762
|
query: CreateUploadLinkAsCustomerQueryParams;
|
|
@@ -110668,9 +110765,9 @@ interface CreateUploadLinkAsCustomerProps {
|
|
|
110668
110765
|
}
|
|
110669
110766
|
declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
|
|
110670
110767
|
|
|
110671
|
-
declare const routeName$
|
|
110672
|
-
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$
|
|
110673
|
-
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$
|
|
110768
|
+
declare const routeName$5h = "/v1/api/claims/generate/token";
|
|
110769
|
+
type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
|
|
110770
|
+
type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$5h]['post']['responses'][201]['content']['application/json'];
|
|
110674
110771
|
interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
110675
110772
|
params: {
|
|
110676
110773
|
query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
|
|
@@ -110678,17 +110775,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
|
|
|
110678
110775
|
}
|
|
110679
110776
|
declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
|
|
110680
110777
|
|
|
110681
|
-
declare const routeName$
|
|
110682
|
-
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$
|
|
110683
|
-
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$
|
|
110684
|
-
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$
|
|
110685
|
-
type GetClaimEventsAsCustomerProps = paths[typeof routeName$
|
|
110778
|
+
declare const routeName$5g = "/v1/api/claims/customer/token/{token}/events";
|
|
110779
|
+
type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5g]['get']['parameters']['path'];
|
|
110780
|
+
type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5g]['get']['parameters']['query'];
|
|
110781
|
+
type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5g]['get']['responses'][200]['content']['application/json'];
|
|
110782
|
+
type GetClaimEventsAsCustomerProps = paths[typeof routeName$5g]['get']['parameters'];
|
|
110686
110783
|
declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
|
|
110687
110784
|
|
|
110688
|
-
declare const routeName$
|
|
110689
|
-
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$
|
|
110690
|
-
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$
|
|
110691
|
-
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$
|
|
110785
|
+
declare const routeName$5f = "/v1/api/claims/customer/token/{token}/documents";
|
|
110786
|
+
type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
|
|
110787
|
+
type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5f]['post']['parameters']['query'];
|
|
110788
|
+
type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5f]['post']['responses'][200]['content']['application/json'];
|
|
110692
110789
|
interface CreateDocumentForClaimAsCustomerProps {
|
|
110693
110790
|
params: {
|
|
110694
110791
|
query: CreateDocumentForClaimAsCustomerQueryParams;
|
|
@@ -110697,10 +110794,10 @@ interface CreateDocumentForClaimAsCustomerProps {
|
|
|
110697
110794
|
}
|
|
110698
110795
|
declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
|
|
110699
110796
|
|
|
110700
|
-
declare const routeName$
|
|
110701
|
-
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110702
|
-
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110703
|
-
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110797
|
+
declare const routeName$5e = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
110798
|
+
type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5e]['delete']['parameters']['path'];
|
|
110799
|
+
type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5e]['delete']['parameters']['query'];
|
|
110800
|
+
type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5e]['delete']['responses'][200]['content']['application/json'];
|
|
110704
110801
|
interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
110705
110802
|
params: {
|
|
110706
110803
|
query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
|
|
@@ -110709,10 +110806,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
|
|
|
110709
110806
|
}
|
|
110710
110807
|
declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
|
|
110711
110808
|
|
|
110712
|
-
declare const routeName$
|
|
110713
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$
|
|
110714
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$
|
|
110715
|
-
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$
|
|
110809
|
+
declare const routeName$5d = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
|
|
110810
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5d]['patch']['parameters']['path'];
|
|
110811
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5d]['patch']['parameters']['query'];
|
|
110812
|
+
type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5d]['patch']['responses'][200]['content']['application/json'];
|
|
110716
110813
|
interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
110717
110814
|
params: {
|
|
110718
110815
|
query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
|
|
@@ -110721,10 +110818,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
|
|
|
110721
110818
|
}
|
|
110722
110819
|
declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
|
|
110723
110820
|
|
|
110724
|
-
declare const routeName$
|
|
110725
|
-
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$
|
|
110726
|
-
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$
|
|
110727
|
-
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$
|
|
110821
|
+
declare const routeName$5c = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
|
|
110822
|
+
type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5c]['post']['parameters']['path'];
|
|
110823
|
+
type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5c]['post']['parameters']['query'];
|
|
110824
|
+
type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5c]['post']['responses'][200]['content']['application/json'];
|
|
110728
110825
|
interface CreateNoteOnEventAsCustomerProps {
|
|
110729
110826
|
params: {
|
|
110730
110827
|
query: CreateNoteOnEventAsCustomerQueryParams;
|
|
@@ -110733,10 +110830,10 @@ interface CreateNoteOnEventAsCustomerProps {
|
|
|
110733
110830
|
}
|
|
110734
110831
|
declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
|
|
110735
110832
|
|
|
110736
|
-
declare const routeName$
|
|
110737
|
-
type CreateEntityAsBrokerPathParams = paths[typeof routeName$
|
|
110738
|
-
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$
|
|
110739
|
-
type CreateEntityAsBrokerResponse = paths[typeof routeName$
|
|
110833
|
+
declare const routeName$5b = "/v1/api/claims/{claim_id}/entities";
|
|
110834
|
+
type CreateEntityAsBrokerPathParams = paths[typeof routeName$5b]['post']['parameters']['path'];
|
|
110835
|
+
type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5b]['post']['parameters']['query'];
|
|
110836
|
+
type CreateEntityAsBrokerResponse = paths[typeof routeName$5b]['post']['responses'][201]['content']['application/json'];
|
|
110740
110837
|
interface CreateEntityAsBrokerProps {
|
|
110741
110838
|
params: {
|
|
110742
110839
|
query: CreateEntityAsBrokerQueryParams;
|
|
@@ -110745,10 +110842,10 @@ interface CreateEntityAsBrokerProps {
|
|
|
110745
110842
|
}
|
|
110746
110843
|
declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
|
|
110747
110844
|
|
|
110748
|
-
declare const routeName$
|
|
110749
|
-
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110750
|
-
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110751
|
-
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
110845
|
+
declare const routeName$5a = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
110846
|
+
type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5a]['delete']['parameters']['path'];
|
|
110847
|
+
type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5a]['delete']['parameters']['query'];
|
|
110848
|
+
type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5a]['delete']['responses'][200]['content']['application/json'];
|
|
110752
110849
|
interface DeleteEntityAsBrokerByIdProps {
|
|
110753
110850
|
params: {
|
|
110754
110851
|
query: DeleteEntityAsBrokerByIdQueryParams;
|
|
@@ -110757,10 +110854,10 @@ interface DeleteEntityAsBrokerByIdProps {
|
|
|
110757
110854
|
}
|
|
110758
110855
|
declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
|
|
110759
110856
|
|
|
110760
|
-
declare const routeName$
|
|
110761
|
-
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110762
|
-
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110763
|
-
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$
|
|
110857
|
+
declare const routeName$59 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
|
|
110858
|
+
type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$59]['patch']['parameters']['path'];
|
|
110859
|
+
type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$59]['patch']['parameters']['query'];
|
|
110860
|
+
type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$59]['patch']['responses'][200]['content']['application/json'];
|
|
110764
110861
|
interface UpdateEntityAsBrokerByIdProps {
|
|
110765
110862
|
params: {
|
|
110766
110863
|
query: UpdateEntityAsBrokerByIdQueryParams;
|
|
@@ -110769,17 +110866,17 @@ interface UpdateEntityAsBrokerByIdProps {
|
|
|
110769
110866
|
}
|
|
110770
110867
|
declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
|
|
110771
110868
|
|
|
110772
|
-
declare const routeName$
|
|
110773
|
-
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$
|
|
110774
|
-
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$
|
|
110775
|
-
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$
|
|
110776
|
-
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$
|
|
110869
|
+
declare const routeName$58 = "/v1/api/claims/{claim_id}/events";
|
|
110870
|
+
type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$58]['get']['parameters']['path'];
|
|
110871
|
+
type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$58]['get']['parameters']['query'];
|
|
110872
|
+
type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$58]['get']['responses'][200]['content']['application/json'];
|
|
110873
|
+
type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$58]['get']['parameters'];
|
|
110777
110874
|
declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
|
|
110778
110875
|
|
|
110779
|
-
declare const routeName$
|
|
110780
|
-
type SendClaimToKeypointPathParams = paths[typeof routeName$
|
|
110781
|
-
type SendClaimToKeypointQueryParams = paths[typeof routeName$
|
|
110782
|
-
type SendClaimToKeypointResponse = paths[typeof routeName$
|
|
110876
|
+
declare const routeName$57 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
|
|
110877
|
+
type SendClaimToKeypointPathParams = paths[typeof routeName$57]['post']['parameters']['path'];
|
|
110878
|
+
type SendClaimToKeypointQueryParams = paths[typeof routeName$57]['post']['parameters']['query'];
|
|
110879
|
+
type SendClaimToKeypointResponse = paths[typeof routeName$57]['post']['responses'][201]['content']['application/json'];
|
|
110783
110880
|
interface SendClaimToKeypointProps {
|
|
110784
110881
|
params: {
|
|
110785
110882
|
query: SendClaimToKeypointQueryParams;
|
|
@@ -110788,10 +110885,10 @@ interface SendClaimToKeypointProps {
|
|
|
110788
110885
|
}
|
|
110789
110886
|
declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
|
|
110790
110887
|
|
|
110791
|
-
declare const routeName$
|
|
110792
|
-
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$
|
|
110793
|
-
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$
|
|
110794
|
-
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$
|
|
110888
|
+
declare const routeName$56 = "/v1/api/claims/{claim_id}/customer/followup-page/email";
|
|
110889
|
+
type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$56]['post']['parameters']['path'];
|
|
110890
|
+
type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$56]['post']['parameters']['query'];
|
|
110891
|
+
type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$56]['post']['responses'][200]['content']['application/json'];
|
|
110795
110892
|
interface SendMailFollowupPageToCustomerProps {
|
|
110796
110893
|
params: {
|
|
110797
110894
|
query: SendMailFollowupPageToCustomerQueryParams;
|
|
@@ -110800,21 +110897,21 @@ interface SendMailFollowupPageToCustomerProps {
|
|
|
110800
110897
|
}
|
|
110801
110898
|
declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
|
|
110802
110899
|
|
|
110803
|
-
declare const routeName$
|
|
110804
|
-
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$
|
|
110900
|
+
declare const routeName$55 = "/v1/api/claims/categories/CAR";
|
|
110901
|
+
type GetAllCarClaimCategoriesResponse = paths[typeof routeName$55]['get']['responses'][200]['content']['application/json'];
|
|
110805
110902
|
declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
|
|
110806
110903
|
|
|
110807
|
-
declare const routeName$
|
|
110808
|
-
type GetInfoForClaimPathParams = paths[typeof routeName$
|
|
110809
|
-
type GetInfoForClaimQueryParams = paths[typeof routeName$
|
|
110810
|
-
type GetInfoForClaimResponse = paths[typeof routeName$
|
|
110811
|
-
type GetInfoForClaimProps = paths[typeof routeName$
|
|
110904
|
+
declare const routeName$54 = "/v1/api/claims/info/{claim_type}/{claim_category}";
|
|
110905
|
+
type GetInfoForClaimPathParams = paths[typeof routeName$54]['get']['parameters']['path'];
|
|
110906
|
+
type GetInfoForClaimQueryParams = paths[typeof routeName$54]['get']['parameters']['query'];
|
|
110907
|
+
type GetInfoForClaimResponse = paths[typeof routeName$54]['get']['responses'][200]['content']['application/json'];
|
|
110908
|
+
type GetInfoForClaimProps = paths[typeof routeName$54]['get']['parameters'];
|
|
110812
110909
|
declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
|
|
110813
110910
|
|
|
110814
|
-
declare const routeName$
|
|
110815
|
-
type CreateNoteOnEventPathParams = paths[typeof routeName$
|
|
110816
|
-
type CreateNoteOnEventQueryParams = paths[typeof routeName$
|
|
110817
|
-
type CreateNoteOnEventResponse = paths[typeof routeName$
|
|
110911
|
+
declare const routeName$53 = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
|
|
110912
|
+
type CreateNoteOnEventPathParams = paths[typeof routeName$53]['post']['parameters']['path'];
|
|
110913
|
+
type CreateNoteOnEventQueryParams = paths[typeof routeName$53]['post']['parameters']['query'];
|
|
110914
|
+
type CreateNoteOnEventResponse = paths[typeof routeName$53]['post']['responses'][201]['content']['application/json'];
|
|
110818
110915
|
interface CreateNoteOnEventProps {
|
|
110819
110916
|
params: {
|
|
110820
110917
|
query: CreateNoteOnEventQueryParams;
|
|
@@ -110823,10 +110920,10 @@ interface CreateNoteOnEventProps {
|
|
|
110823
110920
|
}
|
|
110824
110921
|
declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
|
|
110825
110922
|
|
|
110826
|
-
declare const routeName$
|
|
110827
|
-
type DeleteNotePathParams = paths[typeof routeName$
|
|
110828
|
-
type DeleteNoteQueryParams = paths[typeof routeName$
|
|
110829
|
-
type DeleteNoteResponse = paths[typeof routeName$
|
|
110923
|
+
declare const routeName$52 = "/v1/api/claims/notes/{note_id}";
|
|
110924
|
+
type DeleteNotePathParams = paths[typeof routeName$52]['delete']['parameters']['path'];
|
|
110925
|
+
type DeleteNoteQueryParams = paths[typeof routeName$52]['delete']['parameters']['query'];
|
|
110926
|
+
type DeleteNoteResponse = paths[typeof routeName$52]['delete']['responses'][200]['content']['application/json'];
|
|
110830
110927
|
interface DeleteNoteProps {
|
|
110831
110928
|
params: {
|
|
110832
110929
|
query: DeleteNoteQueryParams;
|
|
@@ -110835,10 +110932,10 @@ interface DeleteNoteProps {
|
|
|
110835
110932
|
}
|
|
110836
110933
|
declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
|
|
110837
110934
|
|
|
110838
|
-
declare const routeName$
|
|
110839
|
-
type UpdateNotePathParams = paths[typeof routeName$
|
|
110840
|
-
type UpdateNoteQueryParams = paths[typeof routeName$
|
|
110841
|
-
type UpdateNoteResponse = paths[typeof routeName$
|
|
110935
|
+
declare const routeName$51 = "/v1/api/claims/notes/{note_id}";
|
|
110936
|
+
type UpdateNotePathParams = paths[typeof routeName$51]['patch']['parameters']['path'];
|
|
110937
|
+
type UpdateNoteQueryParams = paths[typeof routeName$51]['patch']['parameters']['query'];
|
|
110938
|
+
type UpdateNoteResponse = paths[typeof routeName$51]['patch']['responses'][200]['content']['application/json'];
|
|
110842
110939
|
interface UpdateNoteProps {
|
|
110843
110940
|
params: {
|
|
110844
110941
|
query: UpdateNoteQueryParams;
|
|
@@ -110847,17 +110944,17 @@ interface UpdateNoteProps {
|
|
|
110847
110944
|
}
|
|
110848
110945
|
declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
|
|
110849
110946
|
|
|
110850
|
-
declare const routeName$
|
|
110851
|
-
type ClaimReportByIdPathParams = paths[typeof routeName$
|
|
110852
|
-
type ClaimReportByIdQueryParams = paths[typeof routeName$
|
|
110853
|
-
type ClaimReportByIdResponse = paths[typeof routeName$
|
|
110854
|
-
type ClaimReportByIdProps = paths[typeof routeName$
|
|
110947
|
+
declare const routeName$50 = "/v1/api/claims/{claim_id}/report";
|
|
110948
|
+
type ClaimReportByIdPathParams = paths[typeof routeName$50]['get']['parameters']['path'];
|
|
110949
|
+
type ClaimReportByIdQueryParams = paths[typeof routeName$50]['get']['parameters']['query'];
|
|
110950
|
+
type ClaimReportByIdResponse = paths[typeof routeName$50]['get']['responses'][200]['content']['application/json'];
|
|
110951
|
+
type ClaimReportByIdProps = paths[typeof routeName$50]['get']['parameters'];
|
|
110855
110952
|
declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
|
|
110856
110953
|
|
|
110857
|
-
declare const routeName$
|
|
110858
|
-
type SendMailClaimReportByIdPathParams = paths[typeof routeName$
|
|
110859
|
-
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$
|
|
110860
|
-
type SendMailClaimReportByIdResponse = paths[typeof routeName$
|
|
110954
|
+
declare const routeName$4$ = "/v1/api/claims/{claim_id}/report/email";
|
|
110955
|
+
type SendMailClaimReportByIdPathParams = paths[typeof routeName$4$]['post']['parameters']['path'];
|
|
110956
|
+
type SendMailClaimReportByIdQueryParams = paths[typeof routeName$4$]['post']['parameters']['query'];
|
|
110957
|
+
type SendMailClaimReportByIdResponse = paths[typeof routeName$4$]['post']['responses'][200]['content']['application/json'];
|
|
110861
110958
|
interface SendMailClaimReportByIdProps {
|
|
110862
110959
|
params: {
|
|
110863
110960
|
query: SendMailClaimReportByIdQueryParams;
|
|
@@ -110866,16 +110963,16 @@ interface SendMailClaimReportByIdProps {
|
|
|
110866
110963
|
}
|
|
110867
110964
|
declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
|
|
110868
110965
|
|
|
110869
|
-
declare const routeName$
|
|
110870
|
-
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
110871
|
-
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
110872
|
-
type GetBrokerConnectionsByIdProps = paths[typeof routeName$
|
|
110966
|
+
declare const routeName$4_ = "/v1/api/brokers/{broker_id}/connections";
|
|
110967
|
+
type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$4_]['get']['parameters']['path'];
|
|
110968
|
+
type GetBrokerConnectionsByIdResponse = paths[typeof routeName$4_]['get']['responses'][200]['content']['application/json'];
|
|
110969
|
+
type GetBrokerConnectionsByIdProps = paths[typeof routeName$4_]['get']['parameters'];
|
|
110873
110970
|
declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
|
|
110874
110971
|
|
|
110875
|
-
declare const routeName$
|
|
110876
|
-
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$
|
|
110877
|
-
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$
|
|
110878
|
-
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$
|
|
110972
|
+
declare const routeName$4Z = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
110973
|
+
type CreateBrokerConnectionsByIdBody = paths[typeof routeName$4Z]['post']['requestBody']['content']['application/json'];
|
|
110974
|
+
type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$4Z]['post']['parameters']['path'];
|
|
110975
|
+
type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$4Z]['post']['responses'][201]['content']['application/json'];
|
|
110879
110976
|
interface CreateBrokerConnectionsByIdProps {
|
|
110880
110977
|
body: CreateBrokerConnectionsByIdBody;
|
|
110881
110978
|
params: {
|
|
@@ -110884,9 +110981,9 @@ interface CreateBrokerConnectionsByIdProps {
|
|
|
110884
110981
|
}
|
|
110885
110982
|
declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
|
|
110886
110983
|
|
|
110887
|
-
declare const routeName$
|
|
110888
|
-
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
110889
|
-
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
110984
|
+
declare const routeName$4Y = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
110985
|
+
type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$4Y]['delete']['parameters']['path'];
|
|
110986
|
+
type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$4Y]['delete']['responses'][200]['content']['application/json'];
|
|
110890
110987
|
interface DeleteBrokerConnectionByKeyProps {
|
|
110891
110988
|
params: {
|
|
110892
110989
|
path: DeleteBrokerConnectionByKeyPathParams;
|
|
@@ -110894,10 +110991,10 @@ interface DeleteBrokerConnectionByKeyProps {
|
|
|
110894
110991
|
}
|
|
110895
110992
|
declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
|
|
110896
110993
|
|
|
110897
|
-
declare const routeName$
|
|
110898
|
-
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$
|
|
110899
|
-
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$
|
|
110900
|
-
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$
|
|
110994
|
+
declare const routeName$4X = "/v1/api/brokers/{broker_id}/connections/{key}";
|
|
110995
|
+
type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$4X]['patch']['requestBody']['content']['application/json'];
|
|
110996
|
+
type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$4X]['patch']['parameters']['path'];
|
|
110997
|
+
type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$4X]['patch']['responses'][200]['content']['application/json'];
|
|
110901
110998
|
interface UpdateBrokerConnectionByKeyProps {
|
|
110902
110999
|
body: UpdateBrokerConnectionByKeyBody;
|
|
110903
111000
|
params: {
|
|
@@ -110906,10 +111003,10 @@ interface UpdateBrokerConnectionByKeyProps {
|
|
|
110906
111003
|
}
|
|
110907
111004
|
declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
|
|
110908
111005
|
|
|
110909
|
-
declare const routeName$
|
|
110910
|
-
type CreateDistributionConnectionByIdBody = paths[typeof routeName$
|
|
110911
|
-
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$
|
|
110912
|
-
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$
|
|
111006
|
+
declare const routeName$4W = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
111007
|
+
type CreateDistributionConnectionByIdBody = paths[typeof routeName$4W]['post']['requestBody']['content']['application/json'];
|
|
111008
|
+
type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$4W]['post']['parameters']['path'];
|
|
111009
|
+
type CreateDistributionConnectionByIdResponse = paths[typeof routeName$4W]['post']['responses'][201]['content']['application/json'];
|
|
110913
111010
|
interface CreateDistributionConnectionByIdProps {
|
|
110914
111011
|
body: CreateDistributionConnectionByIdBody;
|
|
110915
111012
|
params: {
|
|
@@ -110918,9 +111015,9 @@ interface CreateDistributionConnectionByIdProps {
|
|
|
110918
111015
|
}
|
|
110919
111016
|
declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
|
|
110920
111017
|
|
|
110921
|
-
declare const routeName$
|
|
110922
|
-
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
110923
|
-
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
111018
|
+
declare const routeName$4V = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
111019
|
+
type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$4V]['delete']['parameters']['path'];
|
|
111020
|
+
type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$4V]['delete']['responses'][200]['content']['application/json'];
|
|
110924
111021
|
interface DeleteDistributionConnectionByKeyProps {
|
|
110925
111022
|
params: {
|
|
110926
111023
|
path: DeleteDistributionConnectionByKeyPathParams;
|
|
@@ -110928,10 +111025,10 @@ interface DeleteDistributionConnectionByKeyProps {
|
|
|
110928
111025
|
}
|
|
110929
111026
|
declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
|
|
110930
111027
|
|
|
110931
|
-
declare const routeName$
|
|
110932
|
-
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$
|
|
110933
|
-
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$
|
|
110934
|
-
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$
|
|
111028
|
+
declare const routeName$4U = "/v1/api/distributions/{distribution_id}/connections/{key}";
|
|
111029
|
+
type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$4U]['patch']['requestBody']['content']['application/json'];
|
|
111030
|
+
type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$4U]['patch']['parameters']['path'];
|
|
111031
|
+
type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$4U]['patch']['responses'][200]['content']['application/json'];
|
|
110935
111032
|
interface UpdateDistributionConnectionByKeyProps {
|
|
110936
111033
|
body: UpdateDistributionConnectionByKeyBody;
|
|
110937
111034
|
params: {
|
|
@@ -110940,29 +111037,29 @@ interface UpdateDistributionConnectionByKeyProps {
|
|
|
110940
111037
|
}
|
|
110941
111038
|
declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
|
|
110942
111039
|
|
|
110943
|
-
declare const routeName$
|
|
110944
|
-
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$
|
|
110945
|
-
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$
|
|
110946
|
-
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$
|
|
110947
|
-
type GetDistributionConnectionsByIdProps = paths[typeof routeName$
|
|
111040
|
+
declare const routeName$4T = "/v1/api/distributions/{distribution_id}/connections";
|
|
111041
|
+
type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$4T]['get']['parameters']['path'];
|
|
111042
|
+
type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$4T]['get']['parameters']['query'];
|
|
111043
|
+
type GetDistributionConnectionsByIdResponse = paths[typeof routeName$4T]['get']['responses'][200]['content']['application/json'];
|
|
111044
|
+
type GetDistributionConnectionsByIdProps = paths[typeof routeName$4T]['get']['parameters'];
|
|
110948
111045
|
declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
|
|
110949
111046
|
|
|
110950
|
-
declare const routeName$
|
|
110951
|
-
type GetAnvaPartiesQueryParams = paths[typeof routeName$
|
|
110952
|
-
type GetAnvaPartiesResponse = paths[typeof routeName$
|
|
110953
|
-
type GetAnvaPartiesProps = paths[typeof routeName$
|
|
111047
|
+
declare const routeName$4S = "/v1/api/connections/anva/parties";
|
|
111048
|
+
type GetAnvaPartiesQueryParams = paths[typeof routeName$4S]['get']['parameters']['query'];
|
|
111049
|
+
type GetAnvaPartiesResponse = paths[typeof routeName$4S]['get']['responses'][200]['content']['application/json'];
|
|
111050
|
+
type GetAnvaPartiesProps = paths[typeof routeName$4S]['get']['parameters'];
|
|
110954
111051
|
declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
|
|
110955
111052
|
|
|
110956
|
-
declare const routeName$
|
|
110957
|
-
type GetAnvaEmployeesQueryParams = paths[typeof routeName$
|
|
110958
|
-
type GetAnvaEmployeesResponse = paths[typeof routeName$
|
|
110959
|
-
type GetAnvaEmployeesProps = paths[typeof routeName$
|
|
111053
|
+
declare const routeName$4R = "/v1/api/connections/anva/employees";
|
|
111054
|
+
type GetAnvaEmployeesQueryParams = paths[typeof routeName$4R]['get']['parameters']['query'];
|
|
111055
|
+
type GetAnvaEmployeesResponse = paths[typeof routeName$4R]['get']['responses'][200]['content']['application/json'];
|
|
111056
|
+
type GetAnvaEmployeesProps = paths[typeof routeName$4R]['get']['parameters'];
|
|
110960
111057
|
declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
|
|
110961
111058
|
|
|
110962
|
-
declare const routeName$
|
|
110963
|
-
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$
|
|
110964
|
-
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$
|
|
110965
|
-
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$
|
|
111059
|
+
declare const routeName$4Q = "/v1/api/connections/anva/parties/{anva_id}/imports";
|
|
111060
|
+
type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$4Q]['post']['parameters']['path'];
|
|
111061
|
+
type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$4Q]['post']['parameters']['query'];
|
|
111062
|
+
type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$4Q]['post']['responses'][201]['content']['application/json'];
|
|
110966
111063
|
interface ImportAnvaPartyInWegroupProps {
|
|
110967
111064
|
params: {
|
|
110968
111065
|
query: ImportAnvaPartyInWegroupQueryParams;
|
|
@@ -110971,29 +111068,29 @@ interface ImportAnvaPartyInWegroupProps {
|
|
|
110971
111068
|
}
|
|
110972
111069
|
declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
|
|
110973
111070
|
|
|
110974
|
-
declare const routeName$
|
|
110975
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$
|
|
110976
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
110977
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$
|
|
110978
|
-
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$
|
|
111071
|
+
declare const routeName$4P = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
|
|
111072
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$4P]['get']['parameters']['path'];
|
|
111073
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$4P]['get']['parameters']['query'];
|
|
111074
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$4P]['get']['responses'][307]['content']['application/json'];
|
|
111075
|
+
type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$4P]['get']['parameters'];
|
|
110979
111076
|
declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
|
|
110980
111077
|
|
|
110981
|
-
declare const routeName$
|
|
110982
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$
|
|
110983
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
110984
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$
|
|
110985
|
-
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$
|
|
111078
|
+
declare const routeName$4O = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
|
|
111079
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$4O]['get']['parameters']['path'];
|
|
111080
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$4O]['get']['parameters']['query'];
|
|
111081
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$4O]['get']['responses'][307]['content']['application/json'];
|
|
111082
|
+
type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$4O]['get']['parameters'];
|
|
110986
111083
|
declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
|
|
110987
111084
|
|
|
110988
|
-
declare const routeName$
|
|
110989
|
-
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$
|
|
110990
|
-
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$
|
|
110991
|
-
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$
|
|
111085
|
+
declare const routeName$4N = "/v1/api/connections/anva/documents/import";
|
|
111086
|
+
type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$4N]['get']['parameters']['query'];
|
|
111087
|
+
type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$4N]['get']['responses'][307]['content']['application/json'];
|
|
111088
|
+
type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$4N]['get']['parameters'];
|
|
110992
111089
|
declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
|
|
110993
111090
|
|
|
110994
|
-
declare const routeName$
|
|
110995
|
-
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$
|
|
110996
|
-
type ValidateAnvaConnectionResponse = paths[typeof routeName$
|
|
111091
|
+
declare const routeName$4M = "/v1/api/connections/anva/validate";
|
|
111092
|
+
type ValidateAnvaConnectionQueryParams = paths[typeof routeName$4M]['post']['parameters']['query'];
|
|
111093
|
+
type ValidateAnvaConnectionResponse = paths[typeof routeName$4M]['post']['responses'][200]['content']['application/json'];
|
|
110997
111094
|
interface ValidateAnvaConnectionProps {
|
|
110998
111095
|
params: {
|
|
110999
111096
|
query: ValidateAnvaConnectionQueryParams;
|
|
@@ -111001,9 +111098,9 @@ interface ValidateAnvaConnectionProps {
|
|
|
111001
111098
|
}
|
|
111002
111099
|
declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
|
|
111003
111100
|
|
|
111004
|
-
declare const routeName$
|
|
111005
|
-
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$
|
|
111006
|
-
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$
|
|
111101
|
+
declare const routeName$4L = "/v1/api/connections/anva_dwh/validate";
|
|
111102
|
+
type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$4L]['post']['parameters']['query'];
|
|
111103
|
+
type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$4L]['post']['responses'][200]['content']['application/json'];
|
|
111007
111104
|
interface ValidateAnvaDwhConnectionProps {
|
|
111008
111105
|
params: {
|
|
111009
111106
|
query: ValidateAnvaDwhConnectionQueryParams;
|
|
@@ -111011,22 +111108,22 @@ interface ValidateAnvaDwhConnectionProps {
|
|
|
111011
111108
|
}
|
|
111012
111109
|
declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
|
|
111013
111110
|
|
|
111014
|
-
declare const routeName$
|
|
111015
|
-
type GetDiasPartiesQueryParams = paths[typeof routeName$
|
|
111016
|
-
type GetDiasPartiesResponse = paths[typeof routeName$
|
|
111017
|
-
type GetDiasPartiesProps = paths[typeof routeName$
|
|
111111
|
+
declare const routeName$4K = "/v1/api/connections/dias/parties";
|
|
111112
|
+
type GetDiasPartiesQueryParams = paths[typeof routeName$4K]['get']['parameters']['query'];
|
|
111113
|
+
type GetDiasPartiesResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
|
|
111114
|
+
type GetDiasPartiesProps = paths[typeof routeName$4K]['get']['parameters'];
|
|
111018
111115
|
declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
|
|
111019
111116
|
|
|
111020
|
-
declare const routeName$
|
|
111021
|
-
type GetDiasEmployeesQueryParams = paths[typeof routeName$
|
|
111022
|
-
type GetDiasEmployeesResponse = paths[typeof routeName$
|
|
111023
|
-
type GetDiasEmployeesProps = paths[typeof routeName$
|
|
111117
|
+
declare const routeName$4J = "/v1/api/connections/dias/employees";
|
|
111118
|
+
type GetDiasEmployeesQueryParams = paths[typeof routeName$4J]['get']['parameters']['query'];
|
|
111119
|
+
type GetDiasEmployeesResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
|
|
111120
|
+
type GetDiasEmployeesProps = paths[typeof routeName$4J]['get']['parameters'];
|
|
111024
111121
|
declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
|
|
111025
111122
|
|
|
111026
|
-
declare const routeName$
|
|
111027
|
-
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$
|
|
111028
|
-
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$
|
|
111029
|
-
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$
|
|
111123
|
+
declare const routeName$4I = "/v1/api/connections/dias/parties/{dias_id}/imports";
|
|
111124
|
+
type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$4I]['post']['parameters']['path'];
|
|
111125
|
+
type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$4I]['post']['parameters']['query'];
|
|
111126
|
+
type ImportDiasPartyInWegroupResponse = paths[typeof routeName$4I]['post']['responses'][201]['content']['application/json'];
|
|
111030
111127
|
interface ImportDiasPartyInWegroupProps {
|
|
111031
111128
|
params: {
|
|
111032
111129
|
query: ImportDiasPartyInWegroupQueryParams;
|
|
@@ -111035,21 +111132,21 @@ interface ImportDiasPartyInWegroupProps {
|
|
|
111035
111132
|
}
|
|
111036
111133
|
declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
|
|
111037
111134
|
|
|
111038
|
-
declare const routeName$
|
|
111039
|
-
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$
|
|
111040
|
-
type GetFasterforwardEmployeesResponse = paths[typeof routeName$
|
|
111041
|
-
type GetFasterforwardEmployeesProps = paths[typeof routeName$
|
|
111135
|
+
declare const routeName$4H = "/v1/api/connections/fasterforward/employees";
|
|
111136
|
+
type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$4H]['get']['parameters']['query'];
|
|
111137
|
+
type GetFasterforwardEmployeesResponse = paths[typeof routeName$4H]['get']['responses'][200]['content']['application/json'];
|
|
111138
|
+
type GetFasterforwardEmployeesProps = paths[typeof routeName$4H]['get']['parameters'];
|
|
111042
111139
|
declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
|
|
111043
111140
|
|
|
111044
|
-
declare const routeName$
|
|
111045
|
-
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$
|
|
111046
|
-
type GetFasterforwardTeamsResponse = paths[typeof routeName$
|
|
111047
|
-
type GetFasterforwardTeamsProps = paths[typeof routeName$
|
|
111141
|
+
declare const routeName$4G = "/v1/api/connections/fasterforward/teams";
|
|
111142
|
+
type GetFasterforwardTeamsQueryParams = paths[typeof routeName$4G]['get']['parameters']['query'];
|
|
111143
|
+
type GetFasterforwardTeamsResponse = paths[typeof routeName$4G]['get']['responses'][200]['content']['application/json'];
|
|
111144
|
+
type GetFasterforwardTeamsProps = paths[typeof routeName$4G]['get']['parameters'];
|
|
111048
111145
|
declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
|
|
111049
111146
|
|
|
111050
|
-
declare const routeName$
|
|
111051
|
-
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$
|
|
111052
|
-
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$
|
|
111147
|
+
declare const routeName$4F = "/v1/api/connections/fasterforward/validate";
|
|
111148
|
+
type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$4F]['post']['parameters']['query'];
|
|
111149
|
+
type ValidateFasterforwardConnectionResponse = paths[typeof routeName$4F]['post']['responses'][200]['content']['application/json'];
|
|
111053
111150
|
interface ValidateFasterforwardConnectionProps {
|
|
111054
111151
|
params: {
|
|
111055
111152
|
query: ValidateFasterforwardConnectionQueryParams;
|
|
@@ -111057,15 +111154,15 @@ interface ValidateFasterforwardConnectionProps {
|
|
|
111057
111154
|
}
|
|
111058
111155
|
declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
|
|
111059
111156
|
|
|
111060
|
-
declare const routeName$
|
|
111061
|
-
type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$
|
|
111062
|
-
type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$
|
|
111063
|
-
type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$
|
|
111157
|
+
declare const routeName$4E = "/v1/api/integrations/anva/parties";
|
|
111158
|
+
type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$4E]['get']['parameters']['query'];
|
|
111159
|
+
type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$4E]['get']['responses'][200]['content']['application/json'];
|
|
111160
|
+
type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$4E]['get']['parameters'];
|
|
111064
111161
|
declare const v1ApiIntegrationsAnvaPartiesGet: (props: V1ApiIntegrationsAnvaPartiesGetProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesGetResponse>;
|
|
111065
111162
|
|
|
111066
|
-
declare const routeName$
|
|
111067
|
-
type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$
|
|
111068
|
-
type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$
|
|
111163
|
+
declare const routeName$4D = "/v1/api/integrations/anva/parties/{anva_id}/imports";
|
|
111164
|
+
type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$4D]['post']['parameters']['query'];
|
|
111165
|
+
type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$4D]['post']['responses'][201]['content']['application/json'];
|
|
111069
111166
|
interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
|
|
111070
111167
|
params: {
|
|
111071
111168
|
query: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams;
|
|
@@ -111073,9 +111170,9 @@ interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
|
|
|
111073
111170
|
}
|
|
111074
111171
|
declare const v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost: (props: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse>;
|
|
111075
111172
|
|
|
111076
|
-
declare const routeName$
|
|
111077
|
-
type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$
|
|
111078
|
-
type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$
|
|
111173
|
+
declare const routeName$4C = "/v1/api/integrations/anva/validate";
|
|
111174
|
+
type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$4C]['post']['parameters']['query'];
|
|
111175
|
+
type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$4C]['post']['responses'][200]['content']['application/json'];
|
|
111079
111176
|
interface V1ApiIntegrationsAnvaValidatePostProps {
|
|
111080
111177
|
params: {
|
|
111081
111178
|
query: V1ApiIntegrationsAnvaValidatePostQueryParams;
|
|
@@ -111083,11 +111180,11 @@ interface V1ApiIntegrationsAnvaValidatePostProps {
|
|
|
111083
111180
|
}
|
|
111084
111181
|
declare const v1ApiIntegrationsAnvaValidatePost: (props: V1ApiIntegrationsAnvaValidatePostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaValidatePostResponse>;
|
|
111085
111182
|
|
|
111086
|
-
declare const routeName$
|
|
111087
|
-
type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$
|
|
111088
|
-
type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$
|
|
111089
|
-
type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$
|
|
111090
|
-
type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$
|
|
111183
|
+
declare const routeName$4B = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
|
|
111184
|
+
type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$4B]['post']['requestBody']['content']['application/json'];
|
|
111185
|
+
type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$4B]['post']['parameters']['path'];
|
|
111186
|
+
type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$4B]['post']['parameters']['query'];
|
|
111187
|
+
type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$4B]['post']['responses'][200]['content']['application/json'];
|
|
111091
111188
|
interface GenerateQuestionsToPrefillByCarProps {
|
|
111092
111189
|
body: GenerateQuestionsToPrefillByCarBody;
|
|
111093
111190
|
params: {
|
|
@@ -111097,11 +111194,11 @@ interface GenerateQuestionsToPrefillByCarProps {
|
|
|
111097
111194
|
}
|
|
111098
111195
|
declare const generateQuestionsToPrefillByCar: (props: GenerateQuestionsToPrefillByCarProps, wgApiClient: ClientType) => Promise<GenerateQuestionsToPrefillByCarResponse>;
|
|
111099
111196
|
|
|
111100
|
-
declare const routeName$
|
|
111101
|
-
type CreateConversationBody = paths[typeof routeName$
|
|
111102
|
-
type CreateConversationPathParams = paths[typeof routeName$
|
|
111103
|
-
type CreateConversationQueryParams = paths[typeof routeName$
|
|
111104
|
-
type CreateConversationResponse = paths[typeof routeName$
|
|
111197
|
+
declare const routeName$4A = "/v1/api/flows/{flow_id}/conversations";
|
|
111198
|
+
type CreateConversationBody = paths[typeof routeName$4A]['post']['requestBody']['content']['application/json'];
|
|
111199
|
+
type CreateConversationPathParams = paths[typeof routeName$4A]['post']['parameters']['path'];
|
|
111200
|
+
type CreateConversationQueryParams = paths[typeof routeName$4A]['post']['parameters']['query'];
|
|
111201
|
+
type CreateConversationResponse = paths[typeof routeName$4A]['post']['responses'][201]['content']['application/json'];
|
|
111105
111202
|
interface CreateConversationProps {
|
|
111106
111203
|
body: CreateConversationBody;
|
|
111107
111204
|
params: {
|
|
@@ -111111,11 +111208,11 @@ interface CreateConversationProps {
|
|
|
111111
111208
|
}
|
|
111112
111209
|
declare const createConversation: (props: CreateConversationProps, wgApiClient: ClientType) => Promise<CreateConversationResponse>;
|
|
111113
111210
|
|
|
111114
|
-
declare const routeName$
|
|
111115
|
-
type AnswerAFlowSessionBody = paths[typeof routeName$
|
|
111116
|
-
type AnswerAFlowSessionPathParams = paths[typeof routeName$
|
|
111117
|
-
type AnswerAFlowSessionQueryParams = paths[typeof routeName$
|
|
111118
|
-
type AnswerAFlowSessionResponse = paths[typeof routeName$
|
|
111211
|
+
declare const routeName$4z = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
|
|
111212
|
+
type AnswerAFlowSessionBody = paths[typeof routeName$4z]['post']['requestBody']['content']['application/json'];
|
|
111213
|
+
type AnswerAFlowSessionPathParams = paths[typeof routeName$4z]['post']['parameters']['path'];
|
|
111214
|
+
type AnswerAFlowSessionQueryParams = paths[typeof routeName$4z]['post']['parameters']['query'];
|
|
111215
|
+
type AnswerAFlowSessionResponse = paths[typeof routeName$4z]['post']['responses'][200]['content']['application/json'];
|
|
111119
111216
|
interface AnswerAFlowSessionProps {
|
|
111120
111217
|
body: AnswerAFlowSessionBody;
|
|
111121
111218
|
params: {
|
|
@@ -111125,28 +111222,28 @@ interface AnswerAFlowSessionProps {
|
|
|
111125
111222
|
}
|
|
111126
111223
|
declare const answerAFlowSession: (props: AnswerAFlowSessionProps, wgApiClient: ClientType) => Promise<AnswerAFlowSessionResponse>;
|
|
111127
111224
|
|
|
111128
|
-
declare const routeName$
|
|
111129
|
-
type GetAllConversationsQueryParams = paths[typeof routeName$
|
|
111130
|
-
type GetAllConversationsResponse = paths[typeof routeName$
|
|
111131
|
-
type GetAllConversationsProps = paths[typeof routeName$
|
|
111225
|
+
declare const routeName$4y = "/v1/api/conversations";
|
|
111226
|
+
type GetAllConversationsQueryParams = paths[typeof routeName$4y]['get']['parameters']['query'];
|
|
111227
|
+
type GetAllConversationsResponse = paths[typeof routeName$4y]['get']['responses'][200]['content']['application/json'];
|
|
111228
|
+
type GetAllConversationsProps = paths[typeof routeName$4y]['get']['parameters'];
|
|
111132
111229
|
declare const getAllConversations: (props: GetAllConversationsProps, wgApiClient: ClientType) => Promise<GetAllConversationsResponse>;
|
|
111133
111230
|
|
|
111134
|
-
declare const routeName$
|
|
111135
|
-
type GetConversationsOriginFilterQueryParams = paths[typeof routeName$
|
|
111136
|
-
type GetConversationsOriginFilterResponse = paths[typeof routeName$
|
|
111137
|
-
type GetConversationsOriginFilterProps = paths[typeof routeName$
|
|
111231
|
+
declare const routeName$4x = "/v1/api/conversations-filters/origin";
|
|
111232
|
+
type GetConversationsOriginFilterQueryParams = paths[typeof routeName$4x]['get']['parameters']['query'];
|
|
111233
|
+
type GetConversationsOriginFilterResponse = paths[typeof routeName$4x]['get']['responses'][200]['content']['application/json'];
|
|
111234
|
+
type GetConversationsOriginFilterProps = paths[typeof routeName$4x]['get']['parameters'];
|
|
111138
111235
|
declare const getConversationsOriginFilter: (props: GetConversationsOriginFilterProps, wgApiClient: ClientType) => Promise<GetConversationsOriginFilterResponse>;
|
|
111139
111236
|
|
|
111140
|
-
declare const routeName$
|
|
111141
|
-
type GetConversationByIdPathParams = paths[typeof routeName$
|
|
111142
|
-
type GetConversationByIdQueryParams = paths[typeof routeName$
|
|
111143
|
-
type GetConversationByIdResponse = paths[typeof routeName$
|
|
111144
|
-
type GetConversationByIdProps = paths[typeof routeName$
|
|
111237
|
+
declare const routeName$4w = "/v1/api/conversations/{session_id}";
|
|
111238
|
+
type GetConversationByIdPathParams = paths[typeof routeName$4w]['get']['parameters']['path'];
|
|
111239
|
+
type GetConversationByIdQueryParams = paths[typeof routeName$4w]['get']['parameters']['query'];
|
|
111240
|
+
type GetConversationByIdResponse = paths[typeof routeName$4w]['get']['responses'][200]['content']['application/json'];
|
|
111241
|
+
type GetConversationByIdProps = paths[typeof routeName$4w]['get']['parameters'];
|
|
111145
111242
|
declare const getConversationById: (props: GetConversationByIdProps, wgApiClient: ClientType) => Promise<GetConversationByIdResponse>;
|
|
111146
111243
|
|
|
111147
|
-
declare const routeName$
|
|
111148
|
-
type DeleteSessionBySessionIdPathParams = paths[typeof routeName$
|
|
111149
|
-
type DeleteSessionBySessionIdResponse = paths[typeof routeName$
|
|
111244
|
+
declare const routeName$4v = "/v1/api/conversations/{session_id}";
|
|
111245
|
+
type DeleteSessionBySessionIdPathParams = paths[typeof routeName$4v]['delete']['parameters']['path'];
|
|
111246
|
+
type DeleteSessionBySessionIdResponse = paths[typeof routeName$4v]['delete']['responses'][200]['content']['application/json'];
|
|
111150
111247
|
interface DeleteSessionBySessionIdProps {
|
|
111151
111248
|
params: {
|
|
111152
111249
|
path: DeleteSessionBySessionIdPathParams;
|
|
@@ -111154,10 +111251,10 @@ interface DeleteSessionBySessionIdProps {
|
|
|
111154
111251
|
}
|
|
111155
111252
|
declare const deleteSessionBySessionId: (props: DeleteSessionBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteSessionBySessionIdResponse>;
|
|
111156
111253
|
|
|
111157
|
-
declare const routeName$
|
|
111158
|
-
type UpdateConversationByIdBody = paths[typeof routeName$
|
|
111159
|
-
type UpdateConversationByIdPathParams = paths[typeof routeName$
|
|
111160
|
-
type UpdateConversationByIdResponse = paths[typeof routeName$
|
|
111254
|
+
declare const routeName$4u = "/v1/api/conversations/{session_id}";
|
|
111255
|
+
type UpdateConversationByIdBody = paths[typeof routeName$4u]['patch']['requestBody']['content']['application/json'];
|
|
111256
|
+
type UpdateConversationByIdPathParams = paths[typeof routeName$4u]['patch']['parameters']['path'];
|
|
111257
|
+
type UpdateConversationByIdResponse = paths[typeof routeName$4u]['patch']['responses'][200]['content']['application/json'];
|
|
111161
111258
|
interface UpdateConversationByIdProps {
|
|
111162
111259
|
body: UpdateConversationByIdBody;
|
|
111163
111260
|
params: {
|
|
@@ -111166,16 +111263,16 @@ interface UpdateConversationByIdProps {
|
|
|
111166
111263
|
}
|
|
111167
111264
|
declare const updateConversationById: (props: UpdateConversationByIdProps, wgApiClient: ClientType) => Promise<UpdateConversationByIdResponse>;
|
|
111168
111265
|
|
|
111169
|
-
declare const routeName$
|
|
111170
|
-
type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$
|
|
111171
|
-
type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$
|
|
111172
|
-
type GetAllSessionsBySessionIdResponse = paths[typeof routeName$
|
|
111173
|
-
type GetAllSessionsBySessionIdProps = paths[typeof routeName$
|
|
111266
|
+
declare const routeName$4t = "/v1/api/conversations/{session_id}/sessions";
|
|
111267
|
+
type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$4t]['get']['parameters']['path'];
|
|
111268
|
+
type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$4t]['get']['parameters']['query'];
|
|
111269
|
+
type GetAllSessionsBySessionIdResponse = paths[typeof routeName$4t]['get']['responses'][200]['content']['application/json'];
|
|
111270
|
+
type GetAllSessionsBySessionIdProps = paths[typeof routeName$4t]['get']['parameters'];
|
|
111174
111271
|
declare const getAllSessionsBySessionId: (props: GetAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<GetAllSessionsBySessionIdResponse>;
|
|
111175
111272
|
|
|
111176
|
-
declare const routeName$
|
|
111177
|
-
type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$
|
|
111178
|
-
type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$
|
|
111273
|
+
declare const routeName$4s = "/v1/api/conversations/{session_id}/sessions";
|
|
111274
|
+
type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$4s]['delete']['parameters']['path'];
|
|
111275
|
+
type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$4s]['delete']['responses'][200]['content']['application/json'];
|
|
111179
111276
|
interface DeleteAllSessionsBySessionIdProps {
|
|
111180
111277
|
params: {
|
|
111181
111278
|
path: DeleteAllSessionsBySessionIdPathParams;
|
|
@@ -111183,10 +111280,10 @@ interface DeleteAllSessionsBySessionIdProps {
|
|
|
111183
111280
|
}
|
|
111184
111281
|
declare const deleteAllSessionsBySessionId: (props: DeleteAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteAllSessionsBySessionIdResponse>;
|
|
111185
111282
|
|
|
111186
|
-
declare const routeName$
|
|
111187
|
-
type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$
|
|
111188
|
-
type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$
|
|
111189
|
-
type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$
|
|
111283
|
+
declare const routeName$4r = "/v1/api/conversations/{session_id}/entities/{entity_id}";
|
|
111284
|
+
type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4r]['delete']['parameters']['path'];
|
|
111285
|
+
type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4r]['delete']['parameters']['query'];
|
|
111286
|
+
type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4r]['delete']['responses'][200]['content']['application/json'];
|
|
111190
111287
|
interface DeleteEntityBySessionIdAndFlowIdProps {
|
|
111191
111288
|
params: {
|
|
111192
111289
|
query: DeleteEntityBySessionIdAndFlowIdQueryParams;
|
|
@@ -111195,10 +111292,10 @@ interface DeleteEntityBySessionIdAndFlowIdProps {
|
|
|
111195
111292
|
}
|
|
111196
111293
|
declare const deleteEntityBySessionIdAndFlowId: (props: DeleteEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeleteEntityBySessionIdAndFlowIdResponse>;
|
|
111197
111294
|
|
|
111198
|
-
declare const routeName$
|
|
111199
|
-
type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$
|
|
111200
|
-
type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$
|
|
111201
|
-
type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$
|
|
111295
|
+
declare const routeName$4q = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
|
|
111296
|
+
type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4q]['delete']['parameters']['path'];
|
|
111297
|
+
type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4q]['delete']['parameters']['query'];
|
|
111298
|
+
type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4q]['delete']['responses'][200]['content']['application/json'];
|
|
111202
111299
|
interface DeletePartyEntityBySessionIdAndFlowIdProps {
|
|
111203
111300
|
params: {
|
|
111204
111301
|
query: DeletePartyEntityBySessionIdAndFlowIdQueryParams;
|
|
@@ -111207,10 +111304,10 @@ interface DeletePartyEntityBySessionIdAndFlowIdProps {
|
|
|
111207
111304
|
}
|
|
111208
111305
|
declare const deletePartyEntityBySessionIdAndFlowId: (props: DeletePartyEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeletePartyEntityBySessionIdAndFlowIdResponse>;
|
|
111209
111306
|
|
|
111210
|
-
declare const routeName$
|
|
111211
|
-
type MarkConversationAsCompletedByIdBody = paths[typeof routeName$
|
|
111212
|
-
type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$
|
|
111213
|
-
type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$
|
|
111307
|
+
declare const routeName$4p = "/v1/api/conversations/{session_id}/complete";
|
|
111308
|
+
type MarkConversationAsCompletedByIdBody = paths[typeof routeName$4p]['post']['requestBody']['content']['application/json'];
|
|
111309
|
+
type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$4p]['post']['parameters']['path'];
|
|
111310
|
+
type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$4p]['post']['responses'][200]['content']['application/json'];
|
|
111214
111311
|
interface MarkConversationAsCompletedByIdProps {
|
|
111215
111312
|
body: MarkConversationAsCompletedByIdBody;
|
|
111216
111313
|
params: {
|
|
@@ -111219,9 +111316,9 @@ interface MarkConversationAsCompletedByIdProps {
|
|
|
111219
111316
|
}
|
|
111220
111317
|
declare const markConversationAsCompletedById: (props: MarkConversationAsCompletedByIdProps, wgApiClient: ClientType) => Promise<MarkConversationAsCompletedByIdResponse>;
|
|
111221
111318
|
|
|
111222
|
-
declare const routeName$
|
|
111223
|
-
type CreateConversationReminderPathParams = paths[typeof routeName$
|
|
111224
|
-
type CreateConversationReminderResponse = paths[typeof routeName$
|
|
111319
|
+
declare const routeName$4o = "/v1/api/conversations/{session_id}/reminders";
|
|
111320
|
+
type CreateConversationReminderPathParams = paths[typeof routeName$4o]['post']['parameters']['path'];
|
|
111321
|
+
type CreateConversationReminderResponse = paths[typeof routeName$4o]['post']['responses'][200]['content']['application/json'];
|
|
111225
111322
|
interface CreateConversationReminderProps {
|
|
111226
111323
|
params: {
|
|
111227
111324
|
path: CreateConversationReminderPathParams;
|
|
@@ -111229,11 +111326,11 @@ interface CreateConversationReminderProps {
|
|
|
111229
111326
|
}
|
|
111230
111327
|
declare const createConversationReminder: (props: CreateConversationReminderProps, wgApiClient: ClientType) => Promise<CreateConversationReminderResponse>;
|
|
111231
111328
|
|
|
111232
|
-
declare const routeName$
|
|
111233
|
-
type GetConversationReportPdfByIdBody = paths[typeof routeName$
|
|
111234
|
-
type GetConversationReportPdfByIdPathParams = paths[typeof routeName$
|
|
111235
|
-
type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$
|
|
111236
|
-
type GetConversationReportPdfByIdResponse = paths[typeof routeName$
|
|
111329
|
+
declare const routeName$4n = "/v1/api/conversations/{session_id}/pdf";
|
|
111330
|
+
type GetConversationReportPdfByIdBody = paths[typeof routeName$4n]['post']['requestBody']['content']['application/json'];
|
|
111331
|
+
type GetConversationReportPdfByIdPathParams = paths[typeof routeName$4n]['post']['parameters']['path'];
|
|
111332
|
+
type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$4n]['post']['parameters']['query'];
|
|
111333
|
+
type GetConversationReportPdfByIdResponse = paths[typeof routeName$4n]['post']['responses'][200]['content']['application/json'];
|
|
111237
111334
|
interface GetConversationReportPdfByIdProps {
|
|
111238
111335
|
body: GetConversationReportPdfByIdBody;
|
|
111239
111336
|
params: {
|
|
@@ -111243,10 +111340,10 @@ interface GetConversationReportPdfByIdProps {
|
|
|
111243
111340
|
}
|
|
111244
111341
|
declare const getConversationReportPdfById: (props: GetConversationReportPdfByIdProps, wgApiClient: ClientType) => Promise<GetConversationReportPdfByIdResponse>;
|
|
111245
111342
|
|
|
111246
|
-
declare const routeName$
|
|
111247
|
-
type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$
|
|
111248
|
-
type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$
|
|
111249
|
-
type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$
|
|
111343
|
+
declare const routeName$4m = "/v1/api/conversations/{session_id}/feedback";
|
|
111344
|
+
type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$4m]['post']['parameters']['path'];
|
|
111345
|
+
type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$4m]['post']['parameters']['query'];
|
|
111346
|
+
type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$4m]['post']['responses'][201]['content']['application/json'];
|
|
111250
111347
|
interface GiveFeedbackOnConversationByIdProps {
|
|
111251
111348
|
params: {
|
|
111252
111349
|
query: GiveFeedbackOnConversationByIdQueryParams;
|
|
@@ -111255,134 +111352,134 @@ interface GiveFeedbackOnConversationByIdProps {
|
|
|
111255
111352
|
}
|
|
111256
111353
|
declare const giveFeedbackOnConversationById: (props: GiveFeedbackOnConversationByIdProps, wgApiClient: ClientType) => Promise<GiveFeedbackOnConversationByIdResponse>;
|
|
111257
111354
|
|
|
111258
|
-
declare const routeName$
|
|
111259
|
-
type GetChatBySessionIdPathParams = paths[typeof routeName$
|
|
111260
|
-
type GetChatBySessionIdResponse = paths[typeof routeName$
|
|
111261
|
-
type GetChatBySessionIdProps = paths[typeof routeName$
|
|
111355
|
+
declare const routeName$4l = "/v1/api/conversations/{session_id}/chat";
|
|
111356
|
+
type GetChatBySessionIdPathParams = paths[typeof routeName$4l]['get']['parameters']['path'];
|
|
111357
|
+
type GetChatBySessionIdResponse = paths[typeof routeName$4l]['get']['responses'][200]['content']['application/json'];
|
|
111358
|
+
type GetChatBySessionIdProps = paths[typeof routeName$4l]['get']['parameters'];
|
|
111262
111359
|
declare const getChatBySessionId: (props: GetChatBySessionIdProps, wgApiClient: ClientType) => Promise<GetChatBySessionIdResponse>;
|
|
111263
111360
|
|
|
111264
|
-
declare const routeName$
|
|
111265
|
-
type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$
|
|
111266
|
-
type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$
|
|
111267
|
-
type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$
|
|
111268
|
-
type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$
|
|
111361
|
+
declare const routeName$4k = "/v2/api/conversations/{session_id}/chat-summary";
|
|
111362
|
+
type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4k]['get']['parameters']['path'];
|
|
111363
|
+
type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4k]['get']['parameters']['query'];
|
|
111364
|
+
type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4k]['get']['responses'][200]['content']['application/json'];
|
|
111365
|
+
type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4k]['get']['parameters'];
|
|
111269
111366
|
declare const getChatSummaryV2BySessionId: (props: GetChatSummaryV2BySessionIdProps, wgApiClient: ClientType) => Promise<GetChatSummaryV2BySessionIdResponse>;
|
|
111270
111367
|
|
|
111271
|
-
declare const routeName$
|
|
111272
|
-
type GetPartiesLinkedToUserResponse = paths[typeof routeName$
|
|
111368
|
+
declare const routeName$4j = "/v1/api/me/parties";
|
|
111369
|
+
type GetPartiesLinkedToUserResponse = paths[typeof routeName$4j]['get']['responses'][200]['content']['application/json'];
|
|
111273
111370
|
declare const getPartiesLinkedToUser: (wgApiClient: ClientType) => Promise<GetPartiesLinkedToUserResponse>;
|
|
111274
111371
|
|
|
111275
|
-
declare const routeName$
|
|
111276
|
-
type InviteUserToPartyBody = paths[typeof routeName$
|
|
111277
|
-
type InviteUserToPartyResponse = paths[typeof routeName$
|
|
111372
|
+
declare const routeName$4i = "/v1/api/customer-invitations";
|
|
111373
|
+
type InviteUserToPartyBody = paths[typeof routeName$4i]['post']['requestBody']['content']['application/json'];
|
|
111374
|
+
type InviteUserToPartyResponse = paths[typeof routeName$4i]['post']['responses'][200]['content']['application/json'];
|
|
111278
111375
|
interface InviteUserToPartyProps {
|
|
111279
111376
|
body: InviteUserToPartyBody;
|
|
111280
111377
|
}
|
|
111281
111378
|
declare const inviteUserToParty: (props: InviteUserToPartyProps, wgApiClient: ClientType) => Promise<InviteUserToPartyResponse>;
|
|
111282
111379
|
|
|
111283
|
-
declare const routeName$
|
|
111284
|
-
type LinkPartyToUserBody = paths[typeof routeName$
|
|
111285
|
-
type LinkPartyToUserResponse = paths[typeof routeName$
|
|
111380
|
+
declare const routeName$4h = "/v1/api/parties/link-users";
|
|
111381
|
+
type LinkPartyToUserBody = paths[typeof routeName$4h]['post']['requestBody']['content']['application/json'];
|
|
111382
|
+
type LinkPartyToUserResponse = paths[typeof routeName$4h]['post']['responses'][200]['content']['application/json'];
|
|
111286
111383
|
interface LinkPartyToUserProps {
|
|
111287
111384
|
body: LinkPartyToUserBody;
|
|
111288
111385
|
}
|
|
111289
111386
|
declare const linkPartyToUser: (props: LinkPartyToUserProps, wgApiClient: ClientType) => Promise<LinkPartyToUserResponse>;
|
|
111290
111387
|
|
|
111291
|
-
declare const routeName$
|
|
111292
|
-
type DelinkPartyToUserBody = paths[typeof routeName$
|
|
111293
|
-
type DelinkPartyToUserResponse = paths[typeof routeName$
|
|
111388
|
+
declare const routeName$4g = "/v1/api/parties/delink-users";
|
|
111389
|
+
type DelinkPartyToUserBody = paths[typeof routeName$4g]['post']['requestBody']['content']['application/json'];
|
|
111390
|
+
type DelinkPartyToUserResponse = paths[typeof routeName$4g]['post']['responses'][200]['content']['application/json'];
|
|
111294
111391
|
interface DelinkPartyToUserProps {
|
|
111295
111392
|
body: DelinkPartyToUserBody;
|
|
111296
111393
|
}
|
|
111297
111394
|
declare const delinkPartyToUser: (props: DelinkPartyToUserProps, wgApiClient: ClientType) => Promise<DelinkPartyToUserResponse>;
|
|
111298
111395
|
|
|
111299
|
-
declare const routeName$
|
|
111300
|
-
type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$
|
|
111301
|
-
type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$
|
|
111302
|
-
type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$
|
|
111396
|
+
declare const routeName$4f = "/v1/api/customers/me/insurance-policies";
|
|
111397
|
+
type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4f]['get']['parameters']['query'];
|
|
111398
|
+
type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4f]['get']['responses'][200]['content']['application/json'];
|
|
111399
|
+
type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4f]['get']['parameters'];
|
|
111303
111400
|
declare const getInsurancePoliciesAsCustomer: (props: GetInsurancePoliciesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesAsCustomerResponse>;
|
|
111304
111401
|
|
|
111305
|
-
declare const routeName$
|
|
111306
|
-
type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$
|
|
111307
|
-
type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$
|
|
111308
|
-
type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$
|
|
111402
|
+
declare const routeName$4e = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
|
|
111403
|
+
type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4e]['get']['parameters']['path'];
|
|
111404
|
+
type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4e]['get']['responses'][200]['content']['application/json'];
|
|
111405
|
+
type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4e]['get']['parameters'];
|
|
111309
111406
|
declare const getInsurancePolicyByIdAsCustomer: (props: GetInsurancePolicyByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdAsCustomerResponse>;
|
|
111310
111407
|
|
|
111311
|
-
declare const routeName$
|
|
111312
|
-
type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$
|
|
111313
|
-
type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$
|
|
111408
|
+
declare const routeName$4d = "/v1/api/customers/me/anva-inquiry";
|
|
111409
|
+
type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4d]['post']['requestBody']['content']['application/json'];
|
|
111410
|
+
type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4d]['post']['responses'][201]['content']['application/json'];
|
|
111314
111411
|
interface SendAnvaInquiryAsCustomerProps {
|
|
111315
111412
|
body: SendAnvaInquiryAsCustomerBody;
|
|
111316
111413
|
}
|
|
111317
111414
|
declare const sendAnvaInquiryAsCustomer: (props: SendAnvaInquiryAsCustomerProps, wgApiClient: ClientType) => Promise<SendAnvaInquiryAsCustomerResponse>;
|
|
111318
111415
|
|
|
111319
|
-
declare const routeName$
|
|
111320
|
-
type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$
|
|
111321
|
-
type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$
|
|
111322
|
-
type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$
|
|
111416
|
+
declare const routeName$4c = "/v1/api/customers/me/policy-packages";
|
|
111417
|
+
type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4c]['get']['parameters']['query'];
|
|
111418
|
+
type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4c]['get']['responses'][200]['content']['application/json'];
|
|
111419
|
+
type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4c]['get']['parameters'];
|
|
111323
111420
|
declare const getPolicyPackagesAsCustomer: (props: GetPolicyPackagesAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesAsCustomerResponse>;
|
|
111324
111421
|
|
|
111325
|
-
declare const routeName$
|
|
111326
|
-
type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$
|
|
111327
|
-
type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$
|
|
111328
|
-
type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$
|
|
111422
|
+
declare const routeName$4b = "/v1/api/customers/me/policy-packages/{policy_package_id}";
|
|
111423
|
+
type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4b]['get']['parameters']['path'];
|
|
111424
|
+
type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4b]['get']['responses'][200]['content']['application/json'];
|
|
111425
|
+
type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4b]['get']['parameters'];
|
|
111329
111426
|
declare const getPolicyPackageByIdAsCustomer: (props: GetPolicyPackageByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdAsCustomerResponse>;
|
|
111330
111427
|
|
|
111331
|
-
declare const routeName$
|
|
111332
|
-
type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$
|
|
111333
|
-
type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$
|
|
111334
|
-
type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$
|
|
111428
|
+
declare const routeName$4a = "/v1/api/customers/me/current-account-insights";
|
|
111429
|
+
type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4a]['get']['parameters']['query'];
|
|
111430
|
+
type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4a]['get']['responses'][200]['content']['application/json'];
|
|
111431
|
+
type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4a]['get']['parameters'];
|
|
111335
111432
|
declare const getCurrentAccountInsightsAsCustomer: (props: GetCurrentAccountInsightsAsCustomerProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsCustomerResponse>;
|
|
111336
111433
|
|
|
111337
|
-
declare const routeName$
|
|
111338
|
-
type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$
|
|
111339
|
-
type GetInvoicesAsCustomerResponse = paths[typeof routeName$
|
|
111340
|
-
type GetInvoicesAsCustomerProps = paths[typeof routeName$
|
|
111434
|
+
declare const routeName$49 = "/v1/api/customers/me/invoices";
|
|
111435
|
+
type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$49]['get']['parameters']['query'];
|
|
111436
|
+
type GetInvoicesAsCustomerResponse = paths[typeof routeName$49]['get']['responses'][200]['content']['application/json'];
|
|
111437
|
+
type GetInvoicesAsCustomerProps = paths[typeof routeName$49]['get']['parameters'];
|
|
111341
111438
|
declare const getInvoicesAsCustomer: (props: GetInvoicesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoicesAsCustomerResponse>;
|
|
111342
111439
|
|
|
111343
|
-
declare const routeName$
|
|
111344
|
-
type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$
|
|
111345
|
-
type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$
|
|
111346
|
-
type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$
|
|
111440
|
+
declare const routeName$48 = "/v1/api/customers/me/invoices/{invoice_id}";
|
|
111441
|
+
type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$48]['get']['parameters']['path'];
|
|
111442
|
+
type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$48]['get']['responses'][200]['content']['application/json'];
|
|
111443
|
+
type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$48]['get']['parameters'];
|
|
111347
111444
|
declare const getInvoiceByIdAsCustomer: (props: GetInvoiceByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoiceByIdAsCustomerResponse>;
|
|
111348
111445
|
|
|
111349
|
-
declare const routeName$
|
|
111350
|
-
type GetClaimsAsCustomerQueryParams = paths[typeof routeName$
|
|
111351
|
-
type GetClaimsAsCustomerResponse = paths[typeof routeName$
|
|
111352
|
-
type GetClaimsAsCustomerProps = paths[typeof routeName$
|
|
111446
|
+
declare const routeName$47 = "/v1/api/customers/me/claims";
|
|
111447
|
+
type GetClaimsAsCustomerQueryParams = paths[typeof routeName$47]['get']['parameters']['query'];
|
|
111448
|
+
type GetClaimsAsCustomerResponse = paths[typeof routeName$47]['get']['responses'][200]['content']['application/json'];
|
|
111449
|
+
type GetClaimsAsCustomerProps = paths[typeof routeName$47]['get']['parameters'];
|
|
111353
111450
|
declare const getClaimsAsCustomer: (props: GetClaimsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimsAsCustomerResponse>;
|
|
111354
111451
|
|
|
111355
|
-
declare const routeName$
|
|
111356
|
-
type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$
|
|
111357
|
-
type GetClaimByIdAsCustomerResponse = paths[typeof routeName$
|
|
111358
|
-
type GetClaimByIdAsCustomerProps = paths[typeof routeName$
|
|
111452
|
+
declare const routeName$46 = "/v1/api/customers/me/claims/{claim_id}";
|
|
111453
|
+
type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$46]['get']['parameters']['path'];
|
|
111454
|
+
type GetClaimByIdAsCustomerResponse = paths[typeof routeName$46]['get']['responses'][200]['content']['application/json'];
|
|
111455
|
+
type GetClaimByIdAsCustomerProps = paths[typeof routeName$46]['get']['parameters'];
|
|
111359
111456
|
declare const getClaimByIdAsCustomer: (props: GetClaimByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimByIdAsCustomerResponse>;
|
|
111360
111457
|
|
|
111361
|
-
declare const routeName$
|
|
111362
|
-
type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$
|
|
111363
|
-
type GetDocumentsAsCustomerResponse = paths[typeof routeName$
|
|
111364
|
-
type GetDocumentsAsCustomerProps = paths[typeof routeName$
|
|
111458
|
+
declare const routeName$45 = "/v1/api/customers/me/documents";
|
|
111459
|
+
type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$45]['get']['parameters']['query'];
|
|
111460
|
+
type GetDocumentsAsCustomerResponse = paths[typeof routeName$45]['get']['responses'][200]['content']['application/json'];
|
|
111461
|
+
type GetDocumentsAsCustomerProps = paths[typeof routeName$45]['get']['parameters'];
|
|
111365
111462
|
declare const getDocumentsAsCustomer: (props: GetDocumentsAsCustomerProps, wgApiClient: ClientType) => Promise<GetDocumentsAsCustomerResponse>;
|
|
111366
111463
|
|
|
111367
|
-
declare const routeName$
|
|
111368
|
-
type PatchOwnPartyAsCustomerBody = paths[typeof routeName$
|
|
111369
|
-
type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$
|
|
111464
|
+
declare const routeName$44 = "/v1/api/parties/me";
|
|
111465
|
+
type PatchOwnPartyAsCustomerBody = paths[typeof routeName$44]['patch']['requestBody']['content']['application/json'];
|
|
111466
|
+
type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$44]['patch']['responses'][200]['content']['application/json'];
|
|
111370
111467
|
interface PatchOwnPartyAsCustomerProps {
|
|
111371
111468
|
body: PatchOwnPartyAsCustomerBody;
|
|
111372
111469
|
}
|
|
111373
111470
|
declare const patchOwnPartyAsCustomer: (props: PatchOwnPartyAsCustomerProps, wgApiClient: ClientType) => Promise<PatchOwnPartyAsCustomerResponse>;
|
|
111374
111471
|
|
|
111375
|
-
declare const routeName$
|
|
111376
|
-
type CreatePartyActivtiesAsCustomerBody = paths[typeof routeName$
|
|
111377
|
-
type CreatePartyActivtiesAsCustomerResponse = paths[typeof routeName$
|
|
111472
|
+
declare const routeName$43 = "/v1/api/parties/me/activities";
|
|
111473
|
+
type CreatePartyActivtiesAsCustomerBody = paths[typeof routeName$43]['post']['requestBody']['content']['application/json'];
|
|
111474
|
+
type CreatePartyActivtiesAsCustomerResponse = paths[typeof routeName$43]['post']['responses'][201]['content']['application/json'];
|
|
111378
111475
|
interface CreatePartyActivtiesAsCustomerProps {
|
|
111379
111476
|
body: CreatePartyActivtiesAsCustomerBody;
|
|
111380
111477
|
}
|
|
111381
111478
|
declare const createPartyActivtiesAsCustomer: (props: CreatePartyActivtiesAsCustomerProps, wgApiClient: ClientType) => Promise<CreatePartyActivtiesAsCustomerResponse>;
|
|
111382
111479
|
|
|
111383
|
-
declare const routeName$
|
|
111384
|
-
type DeletePartyActivtiesAsCustomerPathParams = paths[typeof routeName$
|
|
111385
|
-
type DeletePartyActivtiesAsCustomerResponse = paths[typeof routeName$
|
|
111480
|
+
declare const routeName$42 = "/v1/api/parties/me/activities/{activity_id}";
|
|
111481
|
+
type DeletePartyActivtiesAsCustomerPathParams = paths[typeof routeName$42]['delete']['parameters']['path'];
|
|
111482
|
+
type DeletePartyActivtiesAsCustomerResponse = paths[typeof routeName$42]['delete']['responses'][200]['content']['application/json'];
|
|
111386
111483
|
interface DeletePartyActivtiesAsCustomerProps {
|
|
111387
111484
|
params: {
|
|
111388
111485
|
path: DeletePartyActivtiesAsCustomerPathParams;
|
|
@@ -111390,10 +111487,10 @@ interface DeletePartyActivtiesAsCustomerProps {
|
|
|
111390
111487
|
}
|
|
111391
111488
|
declare const deletePartyActivtiesAsCustomer: (props: DeletePartyActivtiesAsCustomerProps, wgApiClient: ClientType) => Promise<DeletePartyActivtiesAsCustomerResponse>;
|
|
111392
111489
|
|
|
111393
|
-
declare const routeName$
|
|
111394
|
-
type UpdatePartyActivtiesAsCustomerBody = paths[typeof routeName$
|
|
111395
|
-
type UpdatePartyActivtiesAsCustomerPathParams = paths[typeof routeName$
|
|
111396
|
-
type UpdatePartyActivtiesAsCustomerResponse = paths[typeof routeName$
|
|
111490
|
+
declare const routeName$41 = "/v1/api/parties/me/activities/{activity_id}";
|
|
111491
|
+
type UpdatePartyActivtiesAsCustomerBody = paths[typeof routeName$41]['patch']['requestBody']['content']['application/json'];
|
|
111492
|
+
type UpdatePartyActivtiesAsCustomerPathParams = paths[typeof routeName$41]['patch']['parameters']['path'];
|
|
111493
|
+
type UpdatePartyActivtiesAsCustomerResponse = paths[typeof routeName$41]['patch']['responses'][200]['content']['application/json'];
|
|
111397
111494
|
interface UpdatePartyActivtiesAsCustomerProps {
|
|
111398
111495
|
body: UpdatePartyActivtiesAsCustomerBody;
|
|
111399
111496
|
params: {
|
|
@@ -111402,10 +111499,10 @@ interface UpdatePartyActivtiesAsCustomerProps {
|
|
|
111402
111499
|
}
|
|
111403
111500
|
declare const updatePartyActivtiesAsCustomer: (props: UpdatePartyActivtiesAsCustomerProps, wgApiClient: ClientType) => Promise<UpdatePartyActivtiesAsCustomerResponse>;
|
|
111404
111501
|
|
|
111405
|
-
declare const routeName$
|
|
111406
|
-
type HandleCreateDistributionThemeBody = paths[typeof routeName$
|
|
111407
|
-
type HandleCreateDistributionThemeQueryParams = paths[typeof routeName$
|
|
111408
|
-
type HandleCreateDistributionThemeResponse = paths[typeof routeName$
|
|
111502
|
+
declare const routeName$40 = "/v1/api/distributions/{distribution_id}/themes";
|
|
111503
|
+
type HandleCreateDistributionThemeBody = paths[typeof routeName$40]['post']['requestBody']['content']['application/json'];
|
|
111504
|
+
type HandleCreateDistributionThemeQueryParams = paths[typeof routeName$40]['post']['parameters']['query'];
|
|
111505
|
+
type HandleCreateDistributionThemeResponse = paths[typeof routeName$40]['post']['responses'][201]['content']['application/json'];
|
|
111409
111506
|
interface HandleCreateDistributionThemeProps {
|
|
111410
111507
|
body: HandleCreateDistributionThemeBody;
|
|
111411
111508
|
params: {
|
|
@@ -111414,10 +111511,10 @@ interface HandleCreateDistributionThemeProps {
|
|
|
111414
111511
|
}
|
|
111415
111512
|
declare const handleCreateDistributionTheme: (props: HandleCreateDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleCreateDistributionThemeResponse>;
|
|
111416
111513
|
|
|
111417
|
-
declare const routeName$
|
|
111418
|
-
type HandleDeleteDistributionThemePathParams = paths[typeof routeName$
|
|
111419
|
-
type HandleDeleteDistributionThemeQueryParams = paths[typeof routeName$
|
|
111420
|
-
type HandleDeleteDistributionThemeResponse = paths[typeof routeName$
|
|
111514
|
+
declare const routeName$3$ = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
|
|
111515
|
+
type HandleDeleteDistributionThemePathParams = paths[typeof routeName$3$]['delete']['parameters']['path'];
|
|
111516
|
+
type HandleDeleteDistributionThemeQueryParams = paths[typeof routeName$3$]['delete']['parameters']['query'];
|
|
111517
|
+
type HandleDeleteDistributionThemeResponse = paths[typeof routeName$3$]['delete']['responses'][200]['content']['application/json'];
|
|
111421
111518
|
interface HandleDeleteDistributionThemeProps {
|
|
111422
111519
|
params: {
|
|
111423
111520
|
query: HandleDeleteDistributionThemeQueryParams;
|
|
@@ -111426,11 +111523,11 @@ interface HandleDeleteDistributionThemeProps {
|
|
|
111426
111523
|
}
|
|
111427
111524
|
declare const handleDeleteDistributionTheme: (props: HandleDeleteDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleDeleteDistributionThemeResponse>;
|
|
111428
111525
|
|
|
111429
|
-
declare const routeName$
|
|
111430
|
-
type HandleUpdateDistributionThemeBody = paths[typeof routeName$
|
|
111431
|
-
type HandleUpdateDistributionThemePathParams = paths[typeof routeName$
|
|
111432
|
-
type HandleUpdateDistributionThemeQueryParams = paths[typeof routeName$
|
|
111433
|
-
type HandleUpdateDistributionThemeResponse = paths[typeof routeName$
|
|
111526
|
+
declare const routeName$3_ = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
|
|
111527
|
+
type HandleUpdateDistributionThemeBody = paths[typeof routeName$3_]['patch']['requestBody']['content']['application/json'];
|
|
111528
|
+
type HandleUpdateDistributionThemePathParams = paths[typeof routeName$3_]['patch']['parameters']['path'];
|
|
111529
|
+
type HandleUpdateDistributionThemeQueryParams = paths[typeof routeName$3_]['patch']['parameters']['query'];
|
|
111530
|
+
type HandleUpdateDistributionThemeResponse = paths[typeof routeName$3_]['patch']['responses'][200]['content']['application/json'];
|
|
111434
111531
|
interface HandleUpdateDistributionThemeProps {
|
|
111435
111532
|
body: HandleUpdateDistributionThemeBody;
|
|
111436
111533
|
params: {
|
|
@@ -111440,57 +111537,57 @@ interface HandleUpdateDistributionThemeProps {
|
|
|
111440
111537
|
}
|
|
111441
111538
|
declare const handleUpdateDistributionTheme: (props: HandleUpdateDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleUpdateDistributionThemeResponse>;
|
|
111442
111539
|
|
|
111443
|
-
declare const routeName$
|
|
111444
|
-
type GetNoveltyInsightsByDistributionPathParams = paths[typeof routeName$
|
|
111445
|
-
type GetNoveltyInsightsByDistributionQueryParams = paths[typeof routeName$
|
|
111446
|
-
type GetNoveltyInsightsByDistributionResponse = paths[typeof routeName$
|
|
111447
|
-
type GetNoveltyInsightsByDistributionProps = paths[typeof routeName$
|
|
111540
|
+
declare const routeName$3Z = "/v1/api/distributions/{distribution_id}/insights/novelties";
|
|
111541
|
+
type GetNoveltyInsightsByDistributionPathParams = paths[typeof routeName$3Z]['get']['parameters']['path'];
|
|
111542
|
+
type GetNoveltyInsightsByDistributionQueryParams = paths[typeof routeName$3Z]['get']['parameters']['query'];
|
|
111543
|
+
type GetNoveltyInsightsByDistributionResponse = paths[typeof routeName$3Z]['get']['responses'][200]['content']['application/json'];
|
|
111544
|
+
type GetNoveltyInsightsByDistributionProps = paths[typeof routeName$3Z]['get']['parameters'];
|
|
111448
111545
|
declare const getNoveltyInsightsByDistribution: (props: GetNoveltyInsightsByDistributionProps, wgApiClient: ClientType) => Promise<GetNoveltyInsightsByDistributionResponse>;
|
|
111449
111546
|
|
|
111450
|
-
declare const routeName$
|
|
111451
|
-
type GetPerformanceInsightsByDistributionPathParams = paths[typeof routeName$
|
|
111452
|
-
type GetPerformanceInsightsByDistributionQueryParams = paths[typeof routeName$
|
|
111453
|
-
type GetPerformanceInsightsByDistributionResponse = paths[typeof routeName$
|
|
111454
|
-
type GetPerformanceInsightsByDistributionProps = paths[typeof routeName$
|
|
111547
|
+
declare const routeName$3Y = "/v1/api/distributions/{distribution_id}/insights/performance";
|
|
111548
|
+
type GetPerformanceInsightsByDistributionPathParams = paths[typeof routeName$3Y]['get']['parameters']['path'];
|
|
111549
|
+
type GetPerformanceInsightsByDistributionQueryParams = paths[typeof routeName$3Y]['get']['parameters']['query'];
|
|
111550
|
+
type GetPerformanceInsightsByDistributionResponse = paths[typeof routeName$3Y]['get']['responses'][200]['content']['application/json'];
|
|
111551
|
+
type GetPerformanceInsightsByDistributionProps = paths[typeof routeName$3Y]['get']['parameters'];
|
|
111455
111552
|
declare const getPerformanceInsightsByDistribution: (props: GetPerformanceInsightsByDistributionProps, wgApiClient: ClientType) => Promise<GetPerformanceInsightsByDistributionResponse>;
|
|
111456
111553
|
|
|
111457
|
-
declare const routeName$
|
|
111458
|
-
type GetDistributionActivityPathParams = paths[typeof routeName$
|
|
111459
|
-
type GetDistributionActivityQueryParams = paths[typeof routeName$
|
|
111460
|
-
type GetDistributionActivityResponse = paths[typeof routeName$
|
|
111461
|
-
type GetDistributionActivityProps = paths[typeof routeName$
|
|
111554
|
+
declare const routeName$3X = "/v1/api/distributions/{distribution_id}/activity";
|
|
111555
|
+
type GetDistributionActivityPathParams = paths[typeof routeName$3X]['get']['parameters']['path'];
|
|
111556
|
+
type GetDistributionActivityQueryParams = paths[typeof routeName$3X]['get']['parameters']['query'];
|
|
111557
|
+
type GetDistributionActivityResponse = paths[typeof routeName$3X]['get']['responses'][200]['content']['application/json'];
|
|
111558
|
+
type GetDistributionActivityProps = paths[typeof routeName$3X]['get']['parameters'];
|
|
111462
111559
|
declare const getDistributionActivity: (props: GetDistributionActivityProps, wgApiClient: ClientType) => Promise<GetDistributionActivityResponse>;
|
|
111463
111560
|
|
|
111464
|
-
declare const routeName$
|
|
111465
|
-
type GetDistributionAffiliationsPathParams = paths[typeof routeName$
|
|
111466
|
-
type GetDistributionAffiliationsResponse = paths[typeof routeName$
|
|
111467
|
-
type GetDistributionAffiliationsProps = paths[typeof routeName$
|
|
111561
|
+
declare const routeName$3W = "/v1/api/distributions/{distribution_id}/affiliations";
|
|
111562
|
+
type GetDistributionAffiliationsPathParams = paths[typeof routeName$3W]['get']['parameters']['path'];
|
|
111563
|
+
type GetDistributionAffiliationsResponse = paths[typeof routeName$3W]['get']['responses'][200]['content']['application/json'];
|
|
111564
|
+
type GetDistributionAffiliationsProps = paths[typeof routeName$3W]['get']['parameters'];
|
|
111468
111565
|
declare const getDistributionAffiliations: (props: GetDistributionAffiliationsProps, wgApiClient: ClientType) => Promise<GetDistributionAffiliationsResponse>;
|
|
111469
111566
|
|
|
111470
|
-
declare const routeName$
|
|
111471
|
-
type GetDistributionByIdPathParams = paths[typeof routeName$
|
|
111472
|
-
type GetDistributionByIdResponse = paths[typeof routeName$
|
|
111473
|
-
type GetDistributionByIdProps = paths[typeof routeName$
|
|
111567
|
+
declare const routeName$3V = "/v1/api/distributions/{distribution_id}";
|
|
111568
|
+
type GetDistributionByIdPathParams = paths[typeof routeName$3V]['get']['parameters']['path'];
|
|
111569
|
+
type GetDistributionByIdResponse = paths[typeof routeName$3V]['get']['responses'][200]['content']['application/json'];
|
|
111570
|
+
type GetDistributionByIdProps = paths[typeof routeName$3V]['get']['parameters'];
|
|
111474
111571
|
declare const getDistributionById: (props: GetDistributionByIdProps, wgApiClient: ClientType) => Promise<GetDistributionByIdResponse>;
|
|
111475
111572
|
|
|
111476
|
-
declare const routeName$
|
|
111477
|
-
type GenerateDistributionAboutUsCompletionBody = paths[typeof routeName$
|
|
111478
|
-
type GenerateDistributionAboutUsCompletionResponse = paths[typeof routeName$
|
|
111573
|
+
declare const routeName$3U = "/v1/api/distributions/about-us-completion";
|
|
111574
|
+
type GenerateDistributionAboutUsCompletionBody = paths[typeof routeName$3U]['post']['requestBody']['content']['application/json'];
|
|
111575
|
+
type GenerateDistributionAboutUsCompletionResponse = paths[typeof routeName$3U]['post']['responses'][200]['content']['application/json'];
|
|
111479
111576
|
interface GenerateDistributionAboutUsCompletionProps {
|
|
111480
111577
|
body: GenerateDistributionAboutUsCompletionBody;
|
|
111481
111578
|
}
|
|
111482
111579
|
declare const generateDistributionAboutUsCompletion: (props: GenerateDistributionAboutUsCompletionProps, wgApiClient: ClientType) => Promise<GenerateDistributionAboutUsCompletionResponse>;
|
|
111483
111580
|
|
|
111484
|
-
declare const routeName$
|
|
111485
|
-
type GetDistributionTagsQueryParams = paths[typeof routeName$
|
|
111486
|
-
type GetDistributionTagsResponse = paths[typeof routeName$
|
|
111487
|
-
type GetDistributionTagsProps = paths[typeof routeName$
|
|
111581
|
+
declare const routeName$3T = "/v1/api/distributions/tags";
|
|
111582
|
+
type GetDistributionTagsQueryParams = paths[typeof routeName$3T]['get']['parameters']['query'];
|
|
111583
|
+
type GetDistributionTagsResponse = paths[typeof routeName$3T]['get']['responses'][200]['content']['application/json'];
|
|
111584
|
+
type GetDistributionTagsProps = paths[typeof routeName$3T]['get']['parameters'];
|
|
111488
111585
|
declare const getDistributionTags: (props: GetDistributionTagsProps, wgApiClient: ClientType) => Promise<GetDistributionTagsResponse>;
|
|
111489
111586
|
|
|
111490
|
-
declare const routeName$
|
|
111491
|
-
type CreateDistributionTagBody = paths[typeof routeName$
|
|
111492
|
-
type CreateDistributionTagQueryParams = paths[typeof routeName$
|
|
111493
|
-
type CreateDistributionTagResponse = paths[typeof routeName$
|
|
111587
|
+
declare const routeName$3S = "/v1/api/distributions/tags";
|
|
111588
|
+
type CreateDistributionTagBody = paths[typeof routeName$3S]['post']['requestBody']['content']['application/json'];
|
|
111589
|
+
type CreateDistributionTagQueryParams = paths[typeof routeName$3S]['post']['parameters']['query'];
|
|
111590
|
+
type CreateDistributionTagResponse = paths[typeof routeName$3S]['post']['responses'][201]['content']['application/json'];
|
|
111494
111591
|
interface CreateDistributionTagProps {
|
|
111495
111592
|
body: CreateDistributionTagBody;
|
|
111496
111593
|
params: {
|
|
@@ -111499,10 +111596,10 @@ interface CreateDistributionTagProps {
|
|
|
111499
111596
|
}
|
|
111500
111597
|
declare const createDistributionTag: (props: CreateDistributionTagProps, wgApiClient: ClientType) => Promise<CreateDistributionTagResponse>;
|
|
111501
111598
|
|
|
111502
|
-
declare const routeName$
|
|
111503
|
-
type DeleteDistributionTagPathParams = paths[typeof routeName$
|
|
111504
|
-
type DeleteDistributionTagQueryParams = paths[typeof routeName$
|
|
111505
|
-
type DeleteDistributionTagResponse = paths[typeof routeName$
|
|
111599
|
+
declare const routeName$3R = "/v1/api/distributions/tags/{value}";
|
|
111600
|
+
type DeleteDistributionTagPathParams = paths[typeof routeName$3R]['delete']['parameters']['path'];
|
|
111601
|
+
type DeleteDistributionTagQueryParams = paths[typeof routeName$3R]['delete']['parameters']['query'];
|
|
111602
|
+
type DeleteDistributionTagResponse = paths[typeof routeName$3R]['delete']['responses'][200]['content']['application/json'];
|
|
111506
111603
|
interface DeleteDistributionTagProps {
|
|
111507
111604
|
params: {
|
|
111508
111605
|
query: DeleteDistributionTagQueryParams;
|
|
@@ -111511,16 +111608,16 @@ interface DeleteDistributionTagProps {
|
|
|
111511
111608
|
}
|
|
111512
111609
|
declare const deleteDistributionTag: (props: DeleteDistributionTagProps, wgApiClient: ClientType) => Promise<DeleteDistributionTagResponse>;
|
|
111513
111610
|
|
|
111514
|
-
declare const routeName$
|
|
111515
|
-
type GetInsuranceProductClausesByDistributionQueryParams = paths[typeof routeName$
|
|
111516
|
-
type GetInsuranceProductClausesByDistributionResponse = paths[typeof routeName$
|
|
111517
|
-
type GetInsuranceProductClausesByDistributionProps = paths[typeof routeName$
|
|
111611
|
+
declare const routeName$3Q = "/v1/api/distributions/insurance-product-clauses";
|
|
111612
|
+
type GetInsuranceProductClausesByDistributionQueryParams = paths[typeof routeName$3Q]['get']['parameters']['query'];
|
|
111613
|
+
type GetInsuranceProductClausesByDistributionResponse = paths[typeof routeName$3Q]['get']['responses'][200]['content']['application/json'];
|
|
111614
|
+
type GetInsuranceProductClausesByDistributionProps = paths[typeof routeName$3Q]['get']['parameters'];
|
|
111518
111615
|
declare const getInsuranceProductClausesByDistribution: (props: GetInsuranceProductClausesByDistributionProps, wgApiClient: ClientType) => Promise<GetInsuranceProductClausesByDistributionResponse>;
|
|
111519
111616
|
|
|
111520
|
-
declare const routeName$
|
|
111521
|
-
type CreateInsuranceProductClauseForDistributionBody = paths[typeof routeName$
|
|
111522
|
-
type CreateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$
|
|
111523
|
-
type CreateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$
|
|
111617
|
+
declare const routeName$3P = "/v1/api/distributions/insurance-product-clauses";
|
|
111618
|
+
type CreateInsuranceProductClauseForDistributionBody = paths[typeof routeName$3P]['post']['requestBody']['content']['application/json'];
|
|
111619
|
+
type CreateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$3P]['post']['parameters']['query'];
|
|
111620
|
+
type CreateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$3P]['post']['responses'][201]['content']['application/json'];
|
|
111524
111621
|
interface CreateInsuranceProductClauseForDistributionProps {
|
|
111525
111622
|
body: CreateInsuranceProductClauseForDistributionBody;
|
|
111526
111623
|
params: {
|
|
@@ -111529,10 +111626,10 @@ interface CreateInsuranceProductClauseForDistributionProps {
|
|
|
111529
111626
|
}
|
|
111530
111627
|
declare const createInsuranceProductClauseForDistribution: (props: CreateInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<CreateInsuranceProductClauseForDistributionResponse>;
|
|
111531
111628
|
|
|
111532
|
-
declare const routeName$
|
|
111533
|
-
type DeleteInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$
|
|
111534
|
-
type DeleteInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$
|
|
111535
|
-
type DeleteInsuranceProductClauseForDistributionResponse = paths[typeof routeName$
|
|
111629
|
+
declare const routeName$3O = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
|
|
111630
|
+
type DeleteInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$3O]['delete']['parameters']['path'];
|
|
111631
|
+
type DeleteInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$3O]['delete']['parameters']['query'];
|
|
111632
|
+
type DeleteInsuranceProductClauseForDistributionResponse = paths[typeof routeName$3O]['delete']['responses'][200]['content']['application/json'];
|
|
111536
111633
|
interface DeleteInsuranceProductClauseForDistributionProps {
|
|
111537
111634
|
params: {
|
|
111538
111635
|
query: DeleteInsuranceProductClauseForDistributionQueryParams;
|
|
@@ -111541,11 +111638,11 @@ interface DeleteInsuranceProductClauseForDistributionProps {
|
|
|
111541
111638
|
}
|
|
111542
111639
|
declare const deleteInsuranceProductClauseForDistribution: (props: DeleteInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<DeleteInsuranceProductClauseForDistributionResponse>;
|
|
111543
111640
|
|
|
111544
|
-
declare const routeName$
|
|
111545
|
-
type UpdateInsuranceProductClauseForDistributionBody = paths[typeof routeName$
|
|
111546
|
-
type UpdateInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$
|
|
111547
|
-
type UpdateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$
|
|
111548
|
-
type UpdateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$
|
|
111641
|
+
declare const routeName$3N = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
|
|
111642
|
+
type UpdateInsuranceProductClauseForDistributionBody = paths[typeof routeName$3N]['patch']['requestBody']['content']['application/json'];
|
|
111643
|
+
type UpdateInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$3N]['patch']['parameters']['path'];
|
|
111644
|
+
type UpdateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$3N]['patch']['parameters']['query'];
|
|
111645
|
+
type UpdateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$3N]['patch']['responses'][200]['content']['application/json'];
|
|
111549
111646
|
interface UpdateInsuranceProductClauseForDistributionProps {
|
|
111550
111647
|
body: UpdateInsuranceProductClauseForDistributionBody;
|
|
111551
111648
|
params: {
|
|
@@ -111555,16 +111652,16 @@ interface UpdateInsuranceProductClauseForDistributionProps {
|
|
|
111555
111652
|
}
|
|
111556
111653
|
declare const updateInsuranceProductClauseForDistribution: (props: UpdateInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<UpdateInsuranceProductClauseForDistributionResponse>;
|
|
111557
111654
|
|
|
111558
|
-
declare const routeName$
|
|
111559
|
-
type GetUspByDistributionQueryParams = paths[typeof routeName$
|
|
111560
|
-
type GetUspByDistributionResponse = paths[typeof routeName$
|
|
111561
|
-
type GetUspByDistributionProps = paths[typeof routeName$
|
|
111655
|
+
declare const routeName$3M = "/v1/api/distributions/usp";
|
|
111656
|
+
type GetUspByDistributionQueryParams = paths[typeof routeName$3M]['get']['parameters']['query'];
|
|
111657
|
+
type GetUspByDistributionResponse = paths[typeof routeName$3M]['get']['responses'][200]['content']['application/json'];
|
|
111658
|
+
type GetUspByDistributionProps = paths[typeof routeName$3M]['get']['parameters'];
|
|
111562
111659
|
declare const getUspByDistribution: (props: GetUspByDistributionProps, wgApiClient: ClientType) => Promise<GetUspByDistributionResponse>;
|
|
111563
111660
|
|
|
111564
|
-
declare const routeName$
|
|
111565
|
-
type CreateUspItemForDistributionBody = paths[typeof routeName$
|
|
111566
|
-
type CreateUspItemForDistributionQueryParams = paths[typeof routeName$
|
|
111567
|
-
type CreateUspItemForDistributionResponse = paths[typeof routeName$
|
|
111661
|
+
declare const routeName$3L = "/v1/api/distributions/usp";
|
|
111662
|
+
type CreateUspItemForDistributionBody = paths[typeof routeName$3L]['post']['requestBody']['content']['application/json'];
|
|
111663
|
+
type CreateUspItemForDistributionQueryParams = paths[typeof routeName$3L]['post']['parameters']['query'];
|
|
111664
|
+
type CreateUspItemForDistributionResponse = paths[typeof routeName$3L]['post']['responses'][200]['content']['application/json'];
|
|
111568
111665
|
interface CreateUspItemForDistributionProps {
|
|
111569
111666
|
body: CreateUspItemForDistributionBody;
|
|
111570
111667
|
params: {
|
|
@@ -111573,11 +111670,11 @@ interface CreateUspItemForDistributionProps {
|
|
|
111573
111670
|
}
|
|
111574
111671
|
declare const createUspItemForDistribution: (props: CreateUspItemForDistributionProps, wgApiClient: ClientType) => Promise<CreateUspItemForDistributionResponse>;
|
|
111575
111672
|
|
|
111576
|
-
declare const routeName$
|
|
111577
|
-
type UpdateUspByDistributionAndIdBody = paths[typeof routeName$
|
|
111578
|
-
type UpdateUspByDistributionAndIdPathParams = paths[typeof routeName$
|
|
111579
|
-
type UpdateUspByDistributionAndIdQueryParams = paths[typeof routeName$
|
|
111580
|
-
type UpdateUspByDistributionAndIdResponse = paths[typeof routeName$
|
|
111673
|
+
declare const routeName$3K = "/v1/api/distributions/usp/{usp_id}";
|
|
111674
|
+
type UpdateUspByDistributionAndIdBody = paths[typeof routeName$3K]['put']['requestBody']['content']['application/json'];
|
|
111675
|
+
type UpdateUspByDistributionAndIdPathParams = paths[typeof routeName$3K]['put']['parameters']['path'];
|
|
111676
|
+
type UpdateUspByDistributionAndIdQueryParams = paths[typeof routeName$3K]['put']['parameters']['query'];
|
|
111677
|
+
type UpdateUspByDistributionAndIdResponse = paths[typeof routeName$3K]['put']['responses'][200]['content']['application/json'];
|
|
111581
111678
|
interface UpdateUspByDistributionAndIdProps {
|
|
111582
111679
|
body: UpdateUspByDistributionAndIdBody;
|
|
111583
111680
|
params: {
|
|
@@ -111587,10 +111684,10 @@ interface UpdateUspByDistributionAndIdProps {
|
|
|
111587
111684
|
}
|
|
111588
111685
|
declare const updateUspByDistributionAndId: (props: UpdateUspByDistributionAndIdProps, wgApiClient: ClientType) => Promise<UpdateUspByDistributionAndIdResponse>;
|
|
111589
111686
|
|
|
111590
|
-
declare const routeName$
|
|
111591
|
-
type DeleteUspByDistributionAndIdPathParams = paths[typeof routeName$
|
|
111592
|
-
type DeleteUspByDistributionAndIdQueryParams = paths[typeof routeName$
|
|
111593
|
-
type DeleteUspByDistributionAndIdResponse = paths[typeof routeName$
|
|
111687
|
+
declare const routeName$3J = "/v1/api/distributions/usp/{usp_id}";
|
|
111688
|
+
type DeleteUspByDistributionAndIdPathParams = paths[typeof routeName$3J]['delete']['parameters']['path'];
|
|
111689
|
+
type DeleteUspByDistributionAndIdQueryParams = paths[typeof routeName$3J]['delete']['parameters']['query'];
|
|
111690
|
+
type DeleteUspByDistributionAndIdResponse = paths[typeof routeName$3J]['delete']['responses'][200]['content']['application/json'];
|
|
111594
111691
|
interface DeleteUspByDistributionAndIdProps {
|
|
111595
111692
|
params: {
|
|
111596
111693
|
query: DeleteUspByDistributionAndIdQueryParams;
|
|
@@ -111599,35 +111696,35 @@ interface DeleteUspByDistributionAndIdProps {
|
|
|
111599
111696
|
}
|
|
111600
111697
|
declare const deleteUspByDistributionAndId: (props: DeleteUspByDistributionAndIdProps, wgApiClient: ClientType) => Promise<DeleteUspByDistributionAndIdResponse>;
|
|
111601
111698
|
|
|
111602
|
-
declare const routeName$
|
|
111603
|
-
type GetPromotionsByDistributionIdPathParams = paths[typeof routeName$
|
|
111604
|
-
type GetPromotionsByDistributionIdResponse = paths[typeof routeName$
|
|
111605
|
-
type GetPromotionsByDistributionIdProps = paths[typeof routeName$
|
|
111699
|
+
declare const routeName$3I = "/v1/api/distributions/{distribution_id}/promotions";
|
|
111700
|
+
type GetPromotionsByDistributionIdPathParams = paths[typeof routeName$3I]['get']['parameters']['path'];
|
|
111701
|
+
type GetPromotionsByDistributionIdResponse = paths[typeof routeName$3I]['get']['responses'][200]['content']['application/json'];
|
|
111702
|
+
type GetPromotionsByDistributionIdProps = paths[typeof routeName$3I]['get']['parameters'];
|
|
111606
111703
|
declare const getPromotionsByDistributionId: (props: GetPromotionsByDistributionIdProps, wgApiClient: ClientType) => Promise<GetPromotionsByDistributionIdResponse>;
|
|
111607
111704
|
|
|
111608
|
-
declare const routeName$
|
|
111609
|
-
type GetDistributionHasPendingUpgradePathParams = paths[typeof routeName$
|
|
111610
|
-
type GetDistributionHasPendingUpgradeResponse = paths[typeof routeName$
|
|
111611
|
-
type GetDistributionHasPendingUpgradeProps = paths[typeof routeName$
|
|
111705
|
+
declare const routeName$3H = "/v1/api/distribution/{distribution_id}/pending-upgrades";
|
|
111706
|
+
type GetDistributionHasPendingUpgradePathParams = paths[typeof routeName$3H]['get']['parameters']['path'];
|
|
111707
|
+
type GetDistributionHasPendingUpgradeResponse = paths[typeof routeName$3H]['get']['responses'][200]['content']['application/json'];
|
|
111708
|
+
type GetDistributionHasPendingUpgradeProps = paths[typeof routeName$3H]['get']['parameters'];
|
|
111612
111709
|
declare const getDistributionHasPendingUpgrade: (props: GetDistributionHasPendingUpgradeProps, wgApiClient: ClientType) => Promise<GetDistributionHasPendingUpgradeResponse>;
|
|
111613
111710
|
|
|
111614
|
-
declare const routeName$
|
|
111615
|
-
type InviteColleaguesToDistributionBody = paths[typeof routeName$
|
|
111616
|
-
type InviteColleaguesToDistributionResponse = paths[typeof routeName$
|
|
111711
|
+
declare const routeName$3G = "/v1/api/distributions/invitations";
|
|
111712
|
+
type InviteColleaguesToDistributionBody = paths[typeof routeName$3G]['post']['requestBody']['content']['application/json'];
|
|
111713
|
+
type InviteColleaguesToDistributionResponse = paths[typeof routeName$3G]['post']['responses'][201]['content']['application/json'];
|
|
111617
111714
|
interface InviteColleaguesToDistributionProps {
|
|
111618
111715
|
body: InviteColleaguesToDistributionBody;
|
|
111619
111716
|
}
|
|
111620
111717
|
declare const inviteColleaguesToDistribution: (props: InviteColleaguesToDistributionProps, wgApiClient: ClientType) => Promise<InviteColleaguesToDistributionResponse>;
|
|
111621
111718
|
|
|
111622
|
-
declare const routeName$
|
|
111623
|
-
type GetIntegrationsByDistributionPathParams = paths[typeof routeName$
|
|
111624
|
-
type GetIntegrationsByDistributionResponse = paths[typeof routeName$
|
|
111625
|
-
type GetIntegrationsByDistributionProps = paths[typeof routeName$
|
|
111719
|
+
declare const routeName$3F = "/v1/api/distributions/{distribution_id}/integrations";
|
|
111720
|
+
type GetIntegrationsByDistributionPathParams = paths[typeof routeName$3F]['get']['parameters']['path'];
|
|
111721
|
+
type GetIntegrationsByDistributionResponse = paths[typeof routeName$3F]['get']['responses'][201]['content']['application/json'];
|
|
111722
|
+
type GetIntegrationsByDistributionProps = paths[typeof routeName$3F]['get']['parameters'];
|
|
111626
111723
|
declare const getIntegrationsByDistribution: (props: GetIntegrationsByDistributionProps, wgApiClient: ClientType) => Promise<GetIntegrationsByDistributionResponse>;
|
|
111627
111724
|
|
|
111628
|
-
declare const routeName$
|
|
111629
|
-
type UpdateDistributionIntegrationsPathParams = paths[typeof routeName$
|
|
111630
|
-
type UpdateDistributionIntegrationsResponse = paths[typeof routeName$
|
|
111725
|
+
declare const routeName$3E = "/v1/api/distributions/{distribution_id}/integrations";
|
|
111726
|
+
type UpdateDistributionIntegrationsPathParams = paths[typeof routeName$3E]['put']['parameters']['path'];
|
|
111727
|
+
type UpdateDistributionIntegrationsResponse = paths[typeof routeName$3E]['put']['responses'][201]['content']['application/json'];
|
|
111631
111728
|
interface UpdateDistributionIntegrationsProps {
|
|
111632
111729
|
params: {
|
|
111633
111730
|
path: UpdateDistributionIntegrationsPathParams;
|
|
@@ -111635,28 +111732,28 @@ interface UpdateDistributionIntegrationsProps {
|
|
|
111635
111732
|
}
|
|
111636
111733
|
declare const updateDistributionIntegrations: (props: UpdateDistributionIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateDistributionIntegrationsResponse>;
|
|
111637
111734
|
|
|
111638
|
-
declare const routeName$
|
|
111639
|
-
type GetDistributionSettingsResponse = paths[typeof routeName$
|
|
111735
|
+
declare const routeName$3D = "/v1/api/distributions/settings";
|
|
111736
|
+
type GetDistributionSettingsResponse = paths[typeof routeName$3D]['get']['responses'][200]['content']['application/json'];
|
|
111640
111737
|
declare const getDistributionSettings: (wgApiClient: ClientType) => Promise<GetDistributionSettingsResponse>;
|
|
111641
111738
|
|
|
111642
|
-
declare const routeName$
|
|
111643
|
-
type UpdateDistributionSettingsBody = paths[typeof routeName$
|
|
111644
|
-
type UpdateDistributionSettingsResponse = paths[typeof routeName$
|
|
111739
|
+
declare const routeName$3C = "/v1/api/distributions/settings";
|
|
111740
|
+
type UpdateDistributionSettingsBody = paths[typeof routeName$3C]['patch']['requestBody']['content']['application/json'];
|
|
111741
|
+
type UpdateDistributionSettingsResponse = paths[typeof routeName$3C]['patch']['responses'][200]['content']['application/json'];
|
|
111645
111742
|
interface UpdateDistributionSettingsProps {
|
|
111646
111743
|
body: UpdateDistributionSettingsBody;
|
|
111647
111744
|
}
|
|
111648
111745
|
declare const updateDistributionSettings: (props: UpdateDistributionSettingsProps, wgApiClient: ClientType) => Promise<UpdateDistributionSettingsResponse>;
|
|
111649
111746
|
|
|
111650
|
-
declare const routeName$
|
|
111651
|
-
type GetDistributionFaqQueryParams = paths[typeof routeName$
|
|
111652
|
-
type GetDistributionFaqResponse = paths[typeof routeName$
|
|
111653
|
-
type GetDistributionFaqProps = paths[typeof routeName$
|
|
111747
|
+
declare const routeName$3B = "/v1/api/distributions/faq";
|
|
111748
|
+
type GetDistributionFaqQueryParams = paths[typeof routeName$3B]['get']['parameters']['query'];
|
|
111749
|
+
type GetDistributionFaqResponse = paths[typeof routeName$3B]['get']['responses'][200]['content']['application/json'];
|
|
111750
|
+
type GetDistributionFaqProps = paths[typeof routeName$3B]['get']['parameters'];
|
|
111654
111751
|
declare const getDistributionFaq: (props: GetDistributionFaqProps, wgApiClient: ClientType) => Promise<GetDistributionFaqResponse>;
|
|
111655
111752
|
|
|
111656
|
-
declare const routeName$
|
|
111657
|
-
type UpsertDistributionFaqBody = paths[typeof routeName$
|
|
111658
|
-
type UpsertDistributionFaqQueryParams = paths[typeof routeName$
|
|
111659
|
-
type UpsertDistributionFaqResponse = paths[typeof routeName$
|
|
111753
|
+
declare const routeName$3A = "/v1/api/distributions/faq";
|
|
111754
|
+
type UpsertDistributionFaqBody = paths[typeof routeName$3A]['put']['requestBody']['content']['application/json'];
|
|
111755
|
+
type UpsertDistributionFaqQueryParams = paths[typeof routeName$3A]['put']['parameters']['query'];
|
|
111756
|
+
type UpsertDistributionFaqResponse = paths[typeof routeName$3A]['put']['responses'][200]['content']['application/json'];
|
|
111660
111757
|
interface UpsertDistributionFaqProps {
|
|
111661
111758
|
body: UpsertDistributionFaqBody;
|
|
111662
111759
|
params: {
|
|
@@ -111665,10 +111762,10 @@ interface UpsertDistributionFaqProps {
|
|
|
111665
111762
|
}
|
|
111666
111763
|
declare const upsertDistributionFaq: (props: UpsertDistributionFaqProps, wgApiClient: ClientType) => Promise<UpsertDistributionFaqResponse>;
|
|
111667
111764
|
|
|
111668
|
-
declare const routeName$
|
|
111669
|
-
type DeleteDistributionFaqPathParams = paths[typeof routeName$
|
|
111670
|
-
type DeleteDistributionFaqQueryParams = paths[typeof routeName$
|
|
111671
|
-
type DeleteDistributionFaqResponse = paths[typeof routeName$
|
|
111765
|
+
declare const routeName$3z = "/v1/api/distributions/faq/{faq_id}";
|
|
111766
|
+
type DeleteDistributionFaqPathParams = paths[typeof routeName$3z]['delete']['parameters']['path'];
|
|
111767
|
+
type DeleteDistributionFaqQueryParams = paths[typeof routeName$3z]['delete']['parameters']['query'];
|
|
111768
|
+
type DeleteDistributionFaqResponse = paths[typeof routeName$3z]['delete']['responses'][200]['content']['application/json'];
|
|
111672
111769
|
interface DeleteDistributionFaqProps {
|
|
111673
111770
|
params: {
|
|
111674
111771
|
query: DeleteDistributionFaqQueryParams;
|
|
@@ -111677,72 +111774,78 @@ interface DeleteDistributionFaqProps {
|
|
|
111677
111774
|
}
|
|
111678
111775
|
declare const deleteDistributionFaq: (props: DeleteDistributionFaqProps, wgApiClient: ClientType) => Promise<DeleteDistributionFaqResponse>;
|
|
111679
111776
|
|
|
111680
|
-
declare const routeName$
|
|
111681
|
-
type GetSupportedMimeTypesResponse = paths[typeof routeName$
|
|
111777
|
+
declare const routeName$3y = "/v1/api/document-extractor/supported-mime-types";
|
|
111778
|
+
type GetSupportedMimeTypesResponse = paths[typeof routeName$3y]['get']['responses'][200]['content']['application/json'];
|
|
111682
111779
|
declare const getSupportedMimeTypes: (wgApiClient: ClientType) => Promise<GetSupportedMimeTypesResponse>;
|
|
111683
111780
|
|
|
111684
|
-
declare const routeName$
|
|
111685
|
-
type ExtractOneDocumentBody = paths[typeof routeName$
|
|
111686
|
-
type ExtractOneDocumentResponse = paths[typeof routeName$
|
|
111781
|
+
declare const routeName$3x = "/v1/api/document-extractor/one";
|
|
111782
|
+
type ExtractOneDocumentBody = paths[typeof routeName$3x]['post']['requestBody']['content']['application/json'];
|
|
111783
|
+
type ExtractOneDocumentResponse = paths[typeof routeName$3x]['post']['responses'][201]['content']['application/json'];
|
|
111687
111784
|
interface ExtractOneDocumentProps {
|
|
111688
111785
|
body: ExtractOneDocumentBody;
|
|
111689
111786
|
}
|
|
111690
111787
|
declare const extractOneDocument: (props: ExtractOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractOneDocumentResponse>;
|
|
111691
111788
|
|
|
111692
|
-
declare const routeName$
|
|
111693
|
-
type ExtractOffersForOneDocumentBody = paths[typeof routeName$
|
|
111694
|
-
type ExtractOffersForOneDocumentResponse = paths[typeof routeName$
|
|
111789
|
+
declare const routeName$3w = "/v1/api/document-extractor/one/offers";
|
|
111790
|
+
type ExtractOffersForOneDocumentBody = paths[typeof routeName$3w]['post']['requestBody']['content']['application/json'];
|
|
111791
|
+
type ExtractOffersForOneDocumentResponse = paths[typeof routeName$3w]['post']['responses'][201]['content']['application/json'];
|
|
111695
111792
|
interface ExtractOffersForOneDocumentProps {
|
|
111696
111793
|
body: ExtractOffersForOneDocumentBody;
|
|
111697
111794
|
}
|
|
111698
111795
|
declare const extractOffersForOneDocument: (props: ExtractOffersForOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractOffersForOneDocumentResponse>;
|
|
111699
111796
|
|
|
111700
|
-
declare const routeName$
|
|
111701
|
-
type ExtractInsurancePoliciesForOneDocumentBody = paths[typeof routeName$
|
|
111702
|
-
type ExtractInsurancePoliciesForOneDocumentResponse = paths[typeof routeName$
|
|
111797
|
+
declare const routeName$3v = "/v1/api/document-extractor/one/insurance-policies";
|
|
111798
|
+
type ExtractInsurancePoliciesForOneDocumentBody = paths[typeof routeName$3v]['post']['requestBody']['content']['application/json'];
|
|
111799
|
+
type ExtractInsurancePoliciesForOneDocumentResponse = paths[typeof routeName$3v]['post']['responses'][201]['content']['application/json'];
|
|
111703
111800
|
interface ExtractInsurancePoliciesForOneDocumentProps {
|
|
111704
111801
|
body: ExtractInsurancePoliciesForOneDocumentBody;
|
|
111705
111802
|
}
|
|
111706
111803
|
declare const extractInsurancePoliciesForOneDocument: (props: ExtractInsurancePoliciesForOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractInsurancePoliciesForOneDocumentResponse>;
|
|
111707
111804
|
|
|
111708
|
-
declare const routeName$
|
|
111709
|
-
type GetExtractEnityInfoPathParams = paths[typeof routeName$
|
|
111710
|
-
type GetExtractEnityInfoResponse = paths[typeof routeName$
|
|
111711
|
-
type GetExtractEnityInfoProps = paths[typeof routeName$
|
|
111805
|
+
declare const routeName$3u = "/v1/api/document-extractor/entities/{entity_id}";
|
|
111806
|
+
type GetExtractEnityInfoPathParams = paths[typeof routeName$3u]['get']['parameters']['path'];
|
|
111807
|
+
type GetExtractEnityInfoResponse = paths[typeof routeName$3u]['get']['responses'][200]['content']['application/json'];
|
|
111808
|
+
type GetExtractEnityInfoProps = paths[typeof routeName$3u]['get']['parameters'];
|
|
111712
111809
|
declare const getExtractEnityInfo: (props: GetExtractEnityInfoProps, wgApiClient: ClientType) => Promise<GetExtractEnityInfoResponse>;
|
|
111713
111810
|
|
|
111714
|
-
declare const routeName$
|
|
111715
|
-
type GetProvenanceInfoOfDocumentPathParams = paths[typeof routeName$
|
|
111716
|
-
type GetProvenanceInfoOfDocumentResponse = paths[typeof routeName$
|
|
111717
|
-
type GetProvenanceInfoOfDocumentProps = paths[typeof routeName$
|
|
111811
|
+
declare const routeName$3t = "/v1/api/document-extractor/documents/{document_id}";
|
|
111812
|
+
type GetProvenanceInfoOfDocumentPathParams = paths[typeof routeName$3t]['get']['parameters']['path'];
|
|
111813
|
+
type GetProvenanceInfoOfDocumentResponse = paths[typeof routeName$3t]['get']['responses'][200]['content']['application/json'];
|
|
111814
|
+
type GetProvenanceInfoOfDocumentProps = paths[typeof routeName$3t]['get']['parameters'];
|
|
111718
111815
|
declare const getProvenanceInfoOfDocument: (props: GetProvenanceInfoOfDocumentProps, wgApiClient: ClientType) => Promise<GetProvenanceInfoOfDocumentResponse>;
|
|
111719
111816
|
|
|
111720
|
-
declare const routeName$
|
|
111721
|
-
type ExtractManyDocumentInBatchBody = paths[typeof routeName$
|
|
111722
|
-
type ExtractManyDocumentInBatchResponse = paths[typeof routeName$
|
|
111817
|
+
declare const routeName$3s = "/v1/api/document-extractor/batches";
|
|
111818
|
+
type ExtractManyDocumentInBatchBody = paths[typeof routeName$3s]['post']['requestBody']['content']['application/json'];
|
|
111819
|
+
type ExtractManyDocumentInBatchResponse = paths[typeof routeName$3s]['post']['responses'][202]['content']['application/json'];
|
|
111723
111820
|
interface ExtractManyDocumentInBatchProps {
|
|
111724
111821
|
body: ExtractManyDocumentInBatchBody;
|
|
111725
111822
|
}
|
|
111726
111823
|
declare const extractManyDocumentInBatch: (props: ExtractManyDocumentInBatchProps, wgApiClient: ClientType) => Promise<ExtractManyDocumentInBatchResponse>;
|
|
111727
111824
|
|
|
111728
|
-
declare const routeName$
|
|
111729
|
-
type GetDocumentExtractionBatchByIdPathParams = paths[typeof routeName$
|
|
111730
|
-
type GetDocumentExtractionBatchByIdResponse = paths[typeof routeName$
|
|
111731
|
-
type GetDocumentExtractionBatchByIdProps = paths[typeof routeName$
|
|
111825
|
+
declare const routeName$3r = "/v1/api/document-extractor/batches/{batch_id}";
|
|
111826
|
+
type GetDocumentExtractionBatchByIdPathParams = paths[typeof routeName$3r]['get']['parameters']['path'];
|
|
111827
|
+
type GetDocumentExtractionBatchByIdResponse = paths[typeof routeName$3r]['get']['responses'][200]['content']['application/json'];
|
|
111828
|
+
type GetDocumentExtractionBatchByIdProps = paths[typeof routeName$3r]['get']['parameters'];
|
|
111732
111829
|
declare const getDocumentExtractionBatchById: (props: GetDocumentExtractionBatchByIdProps, wgApiClient: ClientType) => Promise<GetDocumentExtractionBatchByIdResponse>;
|
|
111733
111830
|
|
|
111734
|
-
declare const routeName$
|
|
111735
|
-
type GetLinkOfDocumentPathParams = paths[typeof routeName$
|
|
111736
|
-
type GetLinkOfDocumentResponse = paths[typeof routeName$
|
|
111737
|
-
type GetLinkOfDocumentProps = paths[typeof routeName$
|
|
111831
|
+
declare const routeName$3q = "/v1/api/documents/{document_id}/link";
|
|
111832
|
+
type GetLinkOfDocumentPathParams = paths[typeof routeName$3q]['get']['parameters']['path'];
|
|
111833
|
+
type GetLinkOfDocumentResponse = paths[typeof routeName$3q]['get']['responses'][307]['content']['application/json'];
|
|
111834
|
+
type GetLinkOfDocumentProps = paths[typeof routeName$3q]['get']['parameters'];
|
|
111738
111835
|
declare const getLinkOfDocument: (props: GetLinkOfDocumentProps, wgApiClient: ClientType) => Promise<GetLinkOfDocumentResponse>;
|
|
111739
111836
|
|
|
111740
|
-
declare const routeName$
|
|
111741
|
-
type GetDocumentMetadataPathParams = paths[typeof routeName$
|
|
111742
|
-
type GetDocumentMetadataResponse = paths[typeof routeName$
|
|
111743
|
-
type GetDocumentMetadataProps = paths[typeof routeName$
|
|
111837
|
+
declare const routeName$3p = "/v1/api/documents/{document_id}";
|
|
111838
|
+
type GetDocumentMetadataPathParams = paths[typeof routeName$3p]['get']['parameters']['path'];
|
|
111839
|
+
type GetDocumentMetadataResponse = paths[typeof routeName$3p]['get']['responses'][200]['content']['application/json'];
|
|
111840
|
+
type GetDocumentMetadataProps = paths[typeof routeName$3p]['get']['parameters'];
|
|
111744
111841
|
declare const getDocumentMetadata: (props: GetDocumentMetadataProps, wgApiClient: ClientType) => Promise<GetDocumentMetadataResponse>;
|
|
111745
111842
|
|
|
111843
|
+
declare const routeName$3o = "/v1/api/emails/analyze";
|
|
111844
|
+
type AnalyzeEmailResponse = paths[typeof routeName$3o]['post']['responses'][201]['content']['application/json'];
|
|
111845
|
+
interface AnalyzeEmailProps {
|
|
111846
|
+
}
|
|
111847
|
+
declare const analyzeEmail: (props: AnalyzeEmailProps, wgApiClient: ClientType) => Promise<AnalyzeEmailResponse>;
|
|
111848
|
+
|
|
111746
111849
|
declare const routeName$3n = "/v1/api/people/search";
|
|
111747
111850
|
type SearchDirectorsByFirstAndLastNameQueryParams = paths[typeof routeName$3n]['get']['parameters']['query'];
|
|
111748
111851
|
type SearchDirectorsByFirstAndLastNameResponse = paths[typeof routeName$3n]['get']['responses'][200]['content']['application/json'];
|
|
@@ -113720,4 +113823,4 @@ type GetYellowhiveflowProductsResponse = paths[typeof routeName]['get']['respons
|
|
|
113720
113823
|
type GetYellowhiveflowProductsProps = paths[typeof routeName]['get']['parameters'];
|
|
113721
113824
|
declare const getYellowhiveflowProducts: (props: GetYellowhiveflowProductsProps, wgApiClient: ClientType) => Promise<GetYellowhiveflowProductsResponse>;
|
|
113722
113825
|
|
|
113723
|
-
export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, 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 CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, 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 CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivtiesAsCustomerBody, type CreatePartyActivtiesAsCustomerResponse, 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 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 DeletePartyActivtiesAsCustomerPathParams, type DeletePartyActivtiesAsCustomerResponse, 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 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 ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type 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 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 GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type 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 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 GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, 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 GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type 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 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 GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type 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 ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type 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 RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, 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 RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, 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 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 SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, 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 SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductTag, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentQueryModel, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartydocumentquerymodel, 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 SchemaAthoraFamilyPayload, 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 SchemaBase, 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 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 SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignCreateResponse, 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 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 SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, 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 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 SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type 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 SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, 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 SchemaExtractSingularDocumentParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaInsurancePolicy, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type 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 SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, 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 SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePackage, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, 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 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 SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalCoverageQueryModel, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPartyQueryModels, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, 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 SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, 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 SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, 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 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 SchemaPiaBeCar, type SchemaPiaBeCarPayload, type SchemaPiaBeDriver, type SchemaPiaContractConversionStatus, type SchemaPiaNlCar, type SchemaPiaNlCarPayload, type SchemaPiaNlDriver, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaRecalculateSimulationCmd, 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 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 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 SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, 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 SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, 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 SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarning, 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 SchemaWgPyModelsDomainInsuranceInsurancesAthoraFamilyFamily, 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 SchemaWgPyModelsDomainInsuranceInsurancesPiaBeDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsBrandClub, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCompanyLegalForm, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCountryOfRegistration, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsProfessionalUsagePurpose, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeProspectCompanyOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeProspectCustomerOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsBrandClub, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCarDemo, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCompanyLegalForm, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCountryOfRegistration, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsProfessionalUsagePurpose, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsSubjectToVat, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlProspectCompanyOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlProspectCustomerOwner, 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 SchemaWgPyModelsDomainWegroupEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainWegroupEnumsBrandClub, type SchemaWgPyModelsDomainWegroupEnumsCarDemo, 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 SchemaWgPyModelsDomainWegroupEnumsSubjectToVat, 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 SchemaWgsdkSmtClaim, 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 SchemaYellowHiveProduct, type SchemaYellowHiveProductsInConversationCmd, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, 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 UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, 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 UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivtiesAsCustomerBody, type UpdatePartyActivtiesAsCustomerPathParams, type UpdatePartyActivtiesAsCustomerResponse, 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 UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, 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 ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, answerAFlowDirectly, answerAFlowSession, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateQuotesV2, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivtiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivtiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, disable2FaByUser, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractManyDocumentInBatch, extractOffersForOneDocument, extractOneDocument, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaParties, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFlowInfoById, getFlowsInfo, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, 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, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importDiasPartyInWegroup, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveExportById, retrieveFlow, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendOfferToAnvaBySessionId, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivtiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateFasterforwardConnection, validatePromotions, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
|
|
113826
|
+
export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, 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 CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, 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 CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivtiesAsCustomerBody, type CreatePartyActivtiesAsCustomerResponse, 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 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 DeletePartyActivtiesAsCustomerPathParams, type DeletePartyActivtiesAsCustomerResponse, 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 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 ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type 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 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 GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type 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 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 GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, 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 GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type 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 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 GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type 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 ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type 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 RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, 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 RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, 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 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 SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, 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 SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductTag, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentQueryModel, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartydocumentquerymodel, 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 SchemaAthoraFamilyPayload, 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 SchemaBase, 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 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 SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignCreateResponse, 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 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 SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, 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 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 SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type 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 SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, 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 SchemaExtractSingularDocumentParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaInsurancePolicy, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type 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 SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, 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 SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePackage, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, 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 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 SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalCoverageQueryModel, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPartyQueryModels, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, 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 SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, 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 SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, 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 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 SchemaPiaBeCar, type SchemaPiaBeCarPayload, type SchemaPiaBeDriver, type SchemaPiaContractConversionStatus, type SchemaPiaNlCar, type SchemaPiaNlCarPayload, type SchemaPiaNlDriver, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaRecalculateSimulationCmd, 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 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 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 SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, 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 SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, 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 SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarning, 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 SchemaWgPyModelsDomainInsuranceInsurancesAthoraFamilyFamily, 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 SchemaWgPyModelsDomainInsuranceInsurancesPiaBeDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsBrandClub, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCompanyLegalForm, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsCountryOfRegistration, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeEnumsProfessionalUsagePurpose, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeProspectCompanyOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaBeProspectCustomerOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsBrandClub, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCarDemo, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCompanyLegalForm, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsCountryOfRegistration, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsProfessionalUsagePurpose, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlEnumsSubjectToVat, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlProspectCompanyOwner, type SchemaWgPyModelsDomainInsuranceInsurancesPiaNlProspectCustomerOwner, 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 SchemaWgPyModelsDomainWegroupEnumsAccreditedAppraiser, type SchemaWgPyModelsDomainWegroupEnumsBrandClub, type SchemaWgPyModelsDomainWegroupEnumsCarDemo, 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 SchemaWgPyModelsDomainWegroupEnumsSubjectToVat, 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 SchemaWgsdkSmtClaim, 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 SchemaYellowHiveProduct, type SchemaYellowHiveProductsInConversationCmd, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, 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 UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, 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 UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivtiesAsCustomerBody, type UpdatePartyActivtiesAsCustomerPathParams, type UpdatePartyActivtiesAsCustomerResponse, 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 UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, 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 ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, analyzeEmail, answerAFlowDirectly, answerAFlowSession, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateQuotesV2, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivtiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivtiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, disable2FaByUser, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractManyDocumentInBatch, extractOffersForOneDocument, extractOneDocument, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaParties, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFlowInfoById, getFlowsInfo, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, 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, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importDiasPartyInWegroup, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveExportById, retrieveFlow, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendOfferToAnvaBySessionId, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivtiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateFasterforwardConnection, validatePromotions, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
|