wg-api-sdk 4.30.273 → 4.30.274

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.
@@ -3709,6 +3709,23 @@ interface paths {
3709
3709
  patch?: never;
3710
3710
  trace?: never;
3711
3711
  };
3712
+ "/v1/api/diasflows/supported-insurances": {
3713
+ parameters: {
3714
+ query?: never;
3715
+ header?: never;
3716
+ path?: never;
3717
+ cookie?: never;
3718
+ };
3719
+ /** Get Diasflow Insurances */
3720
+ get: operations["get_diasflow_insurances_v1_api_diasflows_supported_insurances_get"];
3721
+ put?: never;
3722
+ post?: never;
3723
+ delete?: never;
3724
+ options?: never;
3725
+ head?: never;
3726
+ patch?: never;
3727
+ trace?: never;
3728
+ };
3712
3729
  "/v1/api/diasflows/products": {
3713
3730
  parameters: {
3714
3731
  query?: never;
@@ -9265,7 +9282,7 @@ interface components {
9265
9282
  * Timestamp
9266
9283
  * Format: date-time
9267
9284
  * @description Timestamp of when the error occured
9268
- * @default 2026-02-26T13:30:05.114008
9285
+ * @default 2026-02-26T15:49:13.183753
9269
9286
  */
9270
9287
  timestamp: string;
9271
9288
  /**
@@ -64917,8 +64934,6 @@ interface components {
64917
64934
  };
64918
64935
  /** DiasInsuranceCompany */
64919
64936
  DiasInsuranceCompany: {
64920
- /** Id */
64921
- id: number;
64922
64937
  /** Dias Id */
64923
64938
  dias_id: number;
64924
64939
  /** Name */
@@ -64926,8 +64941,6 @@ interface components {
64926
64941
  };
64927
64942
  /** DiasInsurance */
64928
64943
  DiasInsurance: {
64929
- /** Id */
64930
- id: number;
64931
64944
  /** Name */
64932
64945
  name: string;
64933
64946
  /** Branch */
@@ -66525,6 +66538,13 @@ interface components {
66525
66538
  offer: components["schemas"]["YellowHiveProductQuestionnaire"];
66526
66539
  contract: components["schemas"]["YellowHiveProductQuestionnaire"];
66527
66540
  };
66541
+ /** MultiDiasInsuranceQueryModel */
66542
+ MultiDiasInsuranceQueryModel: {
66543
+ /** Items */
66544
+ items: components["schemas"]["DiasInsurance"][];
66545
+ /** Count */
66546
+ count: number;
66547
+ };
66528
66548
  /** MultiDiasProductQueryModel */
66529
66549
  MultiDiasProductQueryModel: {
66530
66550
  /** Items */
@@ -72549,6 +72569,7 @@ type SchemaYellowHiveProductQuestionnairesUpdateCmd = components['schemas']['Yel
72549
72569
  type SchemaYellowHiveProductQuestionnaire = components['schemas']['YellowHiveProductQuestionnaire'];
72550
72570
  type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams = components['schemas']['handle_validate_yellowhive_questionnaires_by_product_id_params'];
72551
72571
  type SchemaYellowHiveProductQuestionnairesValidateCmd = components['schemas']['YellowHiveProductQuestionnairesValidateCmd'];
72572
+ type SchemaMultiDiasInsuranceQueryModel = components['schemas']['MultiDiasInsuranceQueryModel'];
72552
72573
  type SchemaMultiDiasProductQueryModel = components['schemas']['MultiDiasProductQueryModel'];
72553
72574
  type SchemaDiasProduct = components['schemas']['DiasProduct'];
72554
72575
  type SchemaDiasCoverage = components['schemas']['DiasCoverage'];
@@ -92767,6 +92788,95 @@ interface operations {
92767
92788
  };
92768
92789
  };
92769
92790
  };
92791
+ get_diasflow_insurances_v1_api_diasflows_supported_insurances_get: {
92792
+ parameters: {
92793
+ query?: {
92794
+ party_type?: "CUSTOMER" | "COMPANY";
92795
+ /**
92796
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
92797
+ * @example EN
92798
+ */
92799
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
92800
+ /**
92801
+ * @description Same as lang, but adds support to pass ?language as well
92802
+ * @example EN
92803
+ */
92804
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
92805
+ };
92806
+ header?: {
92807
+ /** @description Which release to target running in 'STAGING' environment. */
92808
+ "x-release"?: string;
92809
+ };
92810
+ path?: never;
92811
+ cookie?: never;
92812
+ };
92813
+ requestBody?: never;
92814
+ responses: {
92815
+ /** @description Successful Response */
92816
+ 200: {
92817
+ headers: {
92818
+ [name: string]: unknown;
92819
+ };
92820
+ content: {
92821
+ "application/json": components["schemas"]["MultiDiasInsuranceQueryModel"];
92822
+ };
92823
+ };
92824
+ /** @description Bad Request */
92825
+ 400: {
92826
+ headers: {
92827
+ [name: string]: unknown;
92828
+ };
92829
+ content: {
92830
+ "application/json": components["schemas"]["Error_4XX"];
92831
+ };
92832
+ };
92833
+ /** @description Unauthorized */
92834
+ 401: {
92835
+ headers: {
92836
+ [name: string]: unknown;
92837
+ };
92838
+ content: {
92839
+ "application/json": components["schemas"]["Error_401"];
92840
+ };
92841
+ };
92842
+ /** @description Forbidden */
92843
+ 403: {
92844
+ headers: {
92845
+ [name: string]: unknown;
92846
+ };
92847
+ content: {
92848
+ "application/json": components["schemas"]["Error_403"];
92849
+ };
92850
+ };
92851
+ /** @description Unprocessable Content */
92852
+ 422: {
92853
+ headers: {
92854
+ [name: string]: unknown;
92855
+ };
92856
+ content: {
92857
+ "application/json": components["schemas"]["Error_422"];
92858
+ };
92859
+ };
92860
+ /** @description Too Many Requests */
92861
+ 429: {
92862
+ headers: {
92863
+ [name: string]: unknown;
92864
+ };
92865
+ content: {
92866
+ "application/json": components["schemas"]["Error_429"];
92867
+ };
92868
+ };
92869
+ /** @description Internal Server Error */
92870
+ 500: {
92871
+ headers: {
92872
+ [name: string]: unknown;
92873
+ };
92874
+ content: {
92875
+ "application/json": components["schemas"]["ServerError"];
92876
+ };
92877
+ };
92878
+ };
92879
+ };
92770
92880
  get_diasflow_products_v1_api_diasflows_products_get: {
92771
92881
  parameters: {
92772
92882
  query?: {
@@ -119585,52 +119695,52 @@ type Middleware = Middleware$1;
119585
119695
  type ClientType = ReturnType<typeof createClient<paths>>;
119586
119696
  declare const wgApiClient: (options: ClientOptions) => ClientType;
119587
119697
 
119588
- declare const routeName$7X = "/v1/api/weather/info";
119589
- type GetWeatherInfoQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
119590
- type GetWeatherInfoResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
119591
- type GetWeatherInfoProps = paths[typeof routeName$7X]['get']['parameters'];
119698
+ declare const routeName$7Y = "/v1/api/weather/info";
119699
+ type GetWeatherInfoQueryParams = paths[typeof routeName$7Y]['get']['parameters']['query'];
119700
+ type GetWeatherInfoResponse = paths[typeof routeName$7Y]['get']['responses'][200]['content']['application/json'];
119701
+ type GetWeatherInfoProps = paths[typeof routeName$7Y]['get']['parameters'];
119592
119702
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
119593
119703
 
119594
- declare const routeName$7W = "/v1/api/address/cities";
119595
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
119596
- type SearchCitiesByCountryResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
119597
- type SearchCitiesByCountryProps = paths[typeof routeName$7W]['get']['parameters'];
119704
+ declare const routeName$7X = "/v1/api/address/cities";
119705
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$7X]['get']['parameters']['query'];
119706
+ type SearchCitiesByCountryResponse = paths[typeof routeName$7X]['get']['responses'][200]['content']['application/json'];
119707
+ type SearchCitiesByCountryProps = paths[typeof routeName$7X]['get']['parameters'];
119598
119708
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
119599
119709
 
119600
- declare const routeName$7V = "/v1/api/address/streets";
119601
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7V]['get']['parameters']['query'];
119602
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
119603
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7V]['get']['parameters'];
119710
+ declare const routeName$7W = "/v1/api/address/streets";
119711
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7W]['get']['parameters']['query'];
119712
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7W]['get']['responses'][200]['content']['application/json'];
119713
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7W]['get']['parameters'];
119604
119714
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
119605
119715
 
119606
- declare const routeName$7U = "/v1/api/address/search";
119607
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$7U]['get']['parameters']['query'];
119608
- type SearchAddressesByCountryResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
119609
- type SearchAddressesByCountryProps = paths[typeof routeName$7U]['get']['parameters'];
119716
+ declare const routeName$7V = "/v1/api/address/search";
119717
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$7V]['get']['parameters']['query'];
119718
+ type SearchAddressesByCountryResponse = paths[typeof routeName$7V]['get']['responses'][200]['content']['application/json'];
119719
+ type SearchAddressesByCountryProps = paths[typeof routeName$7V]['get']['parameters'];
119610
119720
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
119611
119721
 
119612
- declare const routeName$7T = "/v1/api/address/info/premium";
119613
- type GetAddressInfoQueryParams = paths[typeof routeName$7T]['get']['parameters']['query'];
119614
- type GetAddressInfoResponse = paths[typeof routeName$7T]['get']['responses'][200]['content']['application/json'];
119615
- type GetAddressInfoProps = paths[typeof routeName$7T]['get']['parameters'];
119722
+ declare const routeName$7U = "/v1/api/address/info/premium";
119723
+ type GetAddressInfoQueryParams = paths[typeof routeName$7U]['get']['parameters']['query'];
119724
+ type GetAddressInfoResponse = paths[typeof routeName$7U]['get']['responses'][200]['content']['application/json'];
119725
+ type GetAddressInfoProps = paths[typeof routeName$7U]['get']['parameters'];
119616
119726
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
119617
119727
 
119618
- declare const routeName$7S = "/v1/api/address/info/freemium";
119619
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7S]['get']['parameters']['query'];
119620
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$7S]['get']['responses'][200]['content']['application/json'];
119621
- type GetAddressInfoFreemiumProps = paths[typeof routeName$7S]['get']['parameters'];
119728
+ declare const routeName$7T = "/v1/api/address/info/freemium";
119729
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7T]['get']['parameters']['query'];
119730
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$7T]['get']['responses'][200]['content']['application/json'];
119731
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$7T]['get']['parameters'];
119622
119732
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
119623
119733
 
119624
- declare const routeName$7R = "/v1/api/advisory-reports";
119625
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7R]['get']['parameters']['query'];
119626
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$7R]['get']['responses'][200]['content']['application/json'];
119627
- type GetAllAdvisoryReportsProps = paths[typeof routeName$7R]['get']['parameters'];
119734
+ declare const routeName$7S = "/v1/api/advisory-reports";
119735
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7S]['get']['parameters']['query'];
119736
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$7S]['get']['responses'][200]['content']['application/json'];
119737
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$7S]['get']['parameters'];
119628
119738
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
119629
119739
 
119630
- declare const routeName$7Q = "/v1/api/advisory-reports";
119631
- type CreateAdvisoryReportBody = paths[typeof routeName$7Q]['post']['requestBody']['content']['application/json'];
119632
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$7Q]['post']['parameters']['query'];
119633
- type CreateAdvisoryReportResponse = paths[typeof routeName$7Q]['post']['responses'][201]['content']['application/json'];
119740
+ declare const routeName$7R = "/v1/api/advisory-reports";
119741
+ type CreateAdvisoryReportBody = paths[typeof routeName$7R]['post']['requestBody']['content']['application/json'];
119742
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
119743
+ type CreateAdvisoryReportResponse = paths[typeof routeName$7R]['post']['responses'][201]['content']['application/json'];
119634
119744
  interface CreateAdvisoryReportProps {
119635
119745
  body: CreateAdvisoryReportBody;
119636
119746
  params: {
@@ -119639,17 +119749,17 @@ interface CreateAdvisoryReportProps {
119639
119749
  }
119640
119750
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
119641
119751
 
119642
- declare const routeName$7P = "/v1/api/advisory-reports/{report_id}";
119643
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7P]['get']['parameters']['path'];
119644
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7P]['get']['parameters']['query'];
119645
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7P]['get']['responses'][200]['content']['application/json'];
119646
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7P]['get']['parameters'];
119752
+ declare const routeName$7Q = "/v1/api/advisory-reports/{report_id}";
119753
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7Q]['get']['parameters']['path'];
119754
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
119755
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
119756
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7Q]['get']['parameters'];
119647
119757
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
119648
119758
 
119649
- declare const routeName$7O = "/v1/api/advisory-reports/{report_id}";
119650
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7O]['delete']['parameters']['path'];
119651
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7O]['delete']['parameters']['query'];
119652
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7O]['delete']['responses'][200]['content']['application/json'];
119759
+ declare const routeName$7P = "/v1/api/advisory-reports/{report_id}";
119760
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7P]['delete']['parameters']['path'];
119761
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7P]['delete']['parameters']['query'];
119762
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7P]['delete']['responses'][200]['content']['application/json'];
119653
119763
  interface DeleteAdvisoryReportRevisionProps {
119654
119764
  params: {
119655
119765
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -119658,11 +119768,11 @@ interface DeleteAdvisoryReportRevisionProps {
119658
119768
  }
119659
119769
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
119660
119770
 
119661
- declare const routeName$7N = "/v1/api/advisory-reports/{report_id}";
119662
- type UpdateAdvisoryReportBody = paths[typeof routeName$7N]['patch']['requestBody']['content']['application/json'];
119663
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$7N]['patch']['parameters']['path'];
119664
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7N]['patch']['parameters']['query'];
119665
- type UpdateAdvisoryReportResponse = paths[typeof routeName$7N]['patch']['responses'][200]['content']['application/json'];
119771
+ declare const routeName$7O = "/v1/api/advisory-reports/{report_id}";
119772
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7O]['patch']['requestBody']['content']['application/json'];
119773
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7O]['patch']['parameters']['path'];
119774
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7O]['patch']['parameters']['query'];
119775
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7O]['patch']['responses'][200]['content']['application/json'];
119666
119776
  interface UpdateAdvisoryReportProps {
119667
119777
  body: UpdateAdvisoryReportBody;
119668
119778
  params: {
@@ -119672,18 +119782,18 @@ interface UpdateAdvisoryReportProps {
119672
119782
  }
119673
119783
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
119674
119784
 
119675
- declare const routeName$7M = "/v1/api/advisory-reports/{report_id}/events";
119676
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7M]['get']['parameters']['path'];
119677
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
119678
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
119679
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7M]['get']['parameters'];
119785
+ declare const routeName$7N = "/v1/api/advisory-reports/{report_id}/events";
119786
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7N]['get']['parameters']['path'];
119787
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
119788
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
119789
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7N]['get']['parameters'];
119680
119790
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
119681
119791
 
119682
- declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/email-inquiries";
119683
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$7L]['post']['requestBody']['content']['application/json'];
119684
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7L]['post']['parameters']['path'];
119685
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7L]['post']['parameters']['query'];
119686
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7L]['post']['responses'][201]['content']['application/json'];
119792
+ declare const routeName$7M = "/v1/api/advisory-reports/{report_id}/email-inquiries";
119793
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$7M]['post']['requestBody']['content']['application/json'];
119794
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7M]['post']['parameters']['path'];
119795
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7M]['post']['parameters']['query'];
119796
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7M]['post']['responses'][201]['content']['application/json'];
119687
119797
  interface SendAdvisoryReportAsMailProps {
119688
119798
  body: SendAdvisoryReportAsMailBody;
119689
119799
  params: {
@@ -119693,10 +119803,10 @@ interface SendAdvisoryReportAsMailProps {
119693
119803
  }
119694
119804
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
119695
119805
 
119696
- declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/docx";
119697
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7K]['post']['parameters']['path'];
119698
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7K]['post']['parameters']['query'];
119699
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7K]['post']['responses'][200]['content']['application/json'];
119806
+ declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/docx";
119807
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7L]['post']['parameters']['path'];
119808
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7L]['post']['parameters']['query'];
119809
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7L]['post']['responses'][200]['content']['application/json'];
119700
119810
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
119701
119811
  params: {
119702
119812
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -119705,17 +119815,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
119705
119815
  }
119706
119816
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
119707
119817
 
119708
- declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/pdf";
119709
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7J]['get']['parameters']['path'];
119710
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7J]['get']['parameters']['query'];
119711
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7J]['get']['responses'][307]['content']['application/json'];
119712
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7J]['get']['parameters'];
119818
+ declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/pdf";
119819
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7K]['get']['parameters']['path'];
119820
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
119821
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7K]['get']['responses'][307]['content']['application/json'];
119822
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7K]['get']['parameters'];
119713
119823
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
119714
119824
 
119715
- declare const routeName$7I = "/v1/api/advisory-reports/{report_id}/pdf";
119716
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7I]['post']['parameters']['path'];
119717
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7I]['post']['parameters']['query'];
119718
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7I]['post']['responses'][200]['content']['application/json'];
119825
+ declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/pdf";
119826
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7J]['post']['parameters']['path'];
119827
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7J]['post']['parameters']['query'];
119828
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7J]['post']['responses'][200]['content']['application/json'];
119719
119829
  interface GeneratePdfOfAdvisoryReportByIdProps {
119720
119830
  params: {
119721
119831
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -119724,10 +119834,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
119724
119834
  }
119725
119835
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
119726
119836
 
119727
- declare const routeName$7H = "/v1/api/advisory-report-front-page-pdf";
119728
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
119729
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
119730
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7H]['post']['responses'][201]['content']['application/json'];
119837
+ declare const routeName$7I = "/v1/api/advisory-report-front-page-pdf";
119838
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7I]['post']['requestBody']['content']['application/json'];
119839
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7I]['post']['parameters']['query'];
119840
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7I]['post']['responses'][201]['content']['application/json'];
119731
119841
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
119732
119842
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
119733
119843
  params: {
@@ -119736,11 +119846,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
119736
119846
  }
119737
119847
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
119738
119848
 
119739
- declare const routeName$7G = "/v1/api/advisory-reports/{report_id}/acceptances";
119740
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
119741
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7G]['post']['parameters']['path'];
119742
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
119743
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7G]['post']['responses'][200]['content']['application/json'];
119849
+ declare const routeName$7H = "/v1/api/advisory-reports/{report_id}/acceptances";
119850
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
119851
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7H]['post']['parameters']['path'];
119852
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
119853
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7H]['post']['responses'][200]['content']['application/json'];
119744
119854
  interface AcceptOrRejectAnAdvisoryReportProps {
119745
119855
  body: AcceptOrRejectAnAdvisoryReportBody;
119746
119856
  params: {
@@ -119750,11 +119860,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
119750
119860
  }
119751
119861
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
119752
119862
 
119753
- declare const routeName$7F = "/v1/api/advisory-reports/{report_id}/conversations";
119754
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
119755
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
119756
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
119757
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
119863
+ declare const routeName$7G = "/v1/api/advisory-reports/{report_id}/conversations";
119864
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
119865
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7G]['post']['parameters']['path'];
119866
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
119867
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7G]['post']['responses'][201]['content']['application/json'];
119758
119868
  interface LinkConversationToAdvisoryReportProps {
119759
119869
  body: LinkConversationToAdvisoryReportBody;
119760
119870
  params: {
@@ -119764,11 +119874,11 @@ interface LinkConversationToAdvisoryReportProps {
119764
119874
  }
119765
119875
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
119766
119876
 
119767
- declare const routeName$7E = "/v2/api/advisory-reports/{report_id}/revisions";
119768
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7E]['post']['requestBody']['content']['application/json'];
119769
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
119770
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
119771
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7E]['post']['responses'][201]['content']['application/json'];
119877
+ declare const routeName$7F = "/v2/api/advisory-reports/{report_id}/revisions";
119878
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
119879
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
119880
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
119881
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
119772
119882
  interface CreateAdvisoryReportRevisionV2Props {
119773
119883
  body: CreateAdvisoryReportRevisionV2Body;
119774
119884
  params: {
@@ -119778,11 +119888,11 @@ interface CreateAdvisoryReportRevisionV2Props {
119778
119888
  }
119779
119889
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
119780
119890
 
119781
- declare const routeName$7D = "/v1/api/advisory-reports/{report_id}/revisions";
119782
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7D]['post']['requestBody']['content']['application/json'];
119783
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7D]['post']['parameters']['path'];
119784
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7D]['post']['parameters']['query'];
119785
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7D]['post']['responses'][201]['content']['application/json'];
119891
+ declare const routeName$7E = "/v1/api/advisory-reports/{report_id}/revisions";
119892
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7E]['post']['requestBody']['content']['application/json'];
119893
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
119894
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
119895
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7E]['post']['responses'][201]['content']['application/json'];
119786
119896
  interface CreateAdvisoryReportRevisionProps {
119787
119897
  body: CreateAdvisoryReportRevisionBody;
119788
119898
  params: {
@@ -119792,10 +119902,10 @@ interface CreateAdvisoryReportRevisionProps {
119792
119902
  }
119793
119903
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
119794
119904
 
119795
- declare const routeName$7C = "/v2/api/advisory-reports/{report_id}";
119796
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$7C]['delete']['parameters']['path'];
119797
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7C]['delete']['parameters']['query'];
119798
- type DeleteAdvisoryReportResponse = paths[typeof routeName$7C]['delete']['responses'][200]['content']['application/json'];
119905
+ declare const routeName$7D = "/v2/api/advisory-reports/{report_id}";
119906
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$7D]['delete']['parameters']['path'];
119907
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7D]['delete']['parameters']['query'];
119908
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$7D]['delete']['responses'][200]['content']['application/json'];
119799
119909
  interface DeleteAdvisoryReportProps {
119800
119910
  params: {
119801
119911
  query: DeleteAdvisoryReportQueryParams;
@@ -119804,11 +119914,11 @@ interface DeleteAdvisoryReportProps {
119804
119914
  }
119805
119915
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
119806
119916
 
119807
- declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/clauses";
119808
- type PutClausesForReportBody = paths[typeof routeName$7B]['put']['requestBody']['content']['application/json'];
119809
- type PutClausesForReportPathParams = paths[typeof routeName$7B]['put']['parameters']['path'];
119810
- type PutClausesForReportQueryParams = paths[typeof routeName$7B]['put']['parameters']['query'];
119811
- type PutClausesForReportResponse = paths[typeof routeName$7B]['put']['responses'][200]['content']['application/json'];
119917
+ declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/clauses";
119918
+ type PutClausesForReportBody = paths[typeof routeName$7C]['put']['requestBody']['content']['application/json'];
119919
+ type PutClausesForReportPathParams = paths[typeof routeName$7C]['put']['parameters']['path'];
119920
+ type PutClausesForReportQueryParams = paths[typeof routeName$7C]['put']['parameters']['query'];
119921
+ type PutClausesForReportResponse = paths[typeof routeName$7C]['put']['responses'][200]['content']['application/json'];
119812
119922
  interface PutClausesForReportProps {
119813
119923
  body: PutClausesForReportBody;
119814
119924
  params: {
@@ -119818,9 +119928,9 @@ interface PutClausesForReportProps {
119818
119928
  }
119819
119929
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
119820
119930
 
119821
- declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/personalise-advices";
119822
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7A]['post']['parameters']['path'];
119823
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7A]['post']['responses'][200]['content']['application/json'];
119931
+ declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/personalise-advices";
119932
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7B]['post']['parameters']['path'];
119933
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7B]['post']['responses'][200]['content']['application/json'];
119824
119934
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
119825
119935
  params: {
119826
119936
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -119828,18 +119938,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
119828
119938
  }
119829
119939
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
119830
119940
 
119831
- declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/settings/steps";
119832
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7z]['get']['parameters']['path'];
119833
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7z]['get']['parameters']['query'];
119834
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7z]['get']['responses'][200]['content']['application/json'];
119835
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7z]['get']['parameters'];
119941
+ declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/settings/steps";
119942
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7A]['get']['parameters']['path'];
119943
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7A]['get']['parameters']['query'];
119944
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7A]['get']['responses'][200]['content']['application/json'];
119945
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7A]['get']['parameters'];
119836
119946
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
119837
119947
 
119838
- declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/settings/steps";
119839
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7y]['put']['requestBody']['content']['application/json'];
119840
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7y]['put']['parameters']['path'];
119841
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7y]['put']['parameters']['query'];
119842
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7y]['put']['responses'][200]['content']['application/json'];
119948
+ declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/settings/steps";
119949
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7z]['put']['requestBody']['content']['application/json'];
119950
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7z]['put']['parameters']['path'];
119951
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7z]['put']['parameters']['query'];
119952
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7z]['put']['responses'][200]['content']['application/json'];
119843
119953
  interface CreateAdvisoryReportStepSettingsProps {
119844
119954
  body: CreateAdvisoryReportStepSettingsBody;
119845
119955
  params: {
@@ -119849,11 +119959,11 @@ interface CreateAdvisoryReportStepSettingsProps {
119849
119959
  }
119850
119960
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
119851
119961
 
119852
- declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/risk-domains";
119853
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7x]['post']['requestBody']['content']['application/json'];
119854
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
119855
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
119856
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7x]['post']['responses'][201]['content']['application/json'];
119962
+ declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/risk-domains";
119963
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
119964
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
119965
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
119966
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
119857
119967
  interface CreateRiskDomainForAdvisoryReportByIdProps {
119858
119968
  body: CreateRiskDomainForAdvisoryReportByIdBody;
119859
119969
  params: {
@@ -119863,10 +119973,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
119863
119973
  }
119864
119974
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
119865
119975
 
119866
- declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
119867
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7w]['delete']['parameters']['path'];
119868
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7w]['delete']['parameters']['query'];
119869
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7w]['delete']['responses'][200]['content']['application/json'];
119976
+ declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
119977
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7x]['delete']['parameters']['path'];
119978
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7x]['delete']['parameters']['query'];
119979
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7x]['delete']['responses'][200]['content']['application/json'];
119870
119980
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
119871
119981
  params: {
119872
119982
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -119875,11 +119985,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
119875
119985
  }
119876
119986
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
119877
119987
 
119878
- declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
119879
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7v]['post']['requestBody']['content']['application/json'];
119880
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
119881
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
119882
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7v]['post']['responses'][201]['content']['application/json'];
119988
+ declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
119989
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
119990
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
119991
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
119992
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
119883
119993
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
119884
119994
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
119885
119995
  params: {
@@ -119889,10 +119999,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
119889
119999
  }
119890
120000
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
119891
120001
 
119892
- declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
119893
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7u]['delete']['parameters']['path'];
119894
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7u]['delete']['parameters']['query'];
119895
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7u]['delete']['responses'][200]['content']['application/json'];
120002
+ declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
120003
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7v]['delete']['parameters']['path'];
120004
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7v]['delete']['parameters']['query'];
120005
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7v]['delete']['responses'][200]['content']['application/json'];
119896
120006
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
119897
120007
  params: {
119898
120008
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -119901,11 +120011,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
119901
120011
  }
119902
120012
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
119903
120013
 
119904
- declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
119905
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7t]['patch']['requestBody']['content']['application/json'];
119906
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7t]['patch']['parameters']['path'];
119907
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7t]['patch']['parameters']['query'];
119908
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7t]['patch']['responses'][201]['content']['application/json'];
120014
+ declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
120015
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7u]['patch']['requestBody']['content']['application/json'];
120016
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7u]['patch']['parameters']['path'];
120017
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7u]['patch']['parameters']['query'];
120018
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7u]['patch']['responses'][201]['content']['application/json'];
119909
120019
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
119910
120020
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
119911
120021
  params: {
@@ -119915,11 +120025,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
119915
120025
  }
119916
120026
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
119917
120027
 
119918
- declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
119919
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7s]['put']['requestBody']['content']['application/json'];
119920
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7s]['put']['parameters']['path'];
119921
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7s]['put']['parameters']['query'];
119922
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7s]['put']['responses'][201]['content']['application/json'];
120028
+ declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
120029
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7t]['put']['requestBody']['content']['application/json'];
120030
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7t]['put']['parameters']['path'];
120031
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7t]['put']['parameters']['query'];
120032
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7t]['put']['responses'][201]['content']['application/json'];
119923
120033
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
119924
120034
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
119925
120035
  params: {
@@ -119929,11 +120039,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
119929
120039
  }
119930
120040
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
119931
120041
 
119932
- declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
119933
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7r]['post']['requestBody']['content']['application/json'];
119934
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7r]['post']['parameters']['path'];
119935
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7r]['post']['parameters']['query'];
119936
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7r]['post']['responses'][201]['content']['application/json'];
120042
+ declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
120043
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7s]['post']['requestBody']['content']['application/json'];
120044
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7s]['post']['parameters']['path'];
120045
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7s]['post']['parameters']['query'];
120046
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7s]['post']['responses'][201]['content']['application/json'];
119937
120047
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
119938
120048
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
119939
120049
  params: {
@@ -119943,10 +120053,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
119943
120053
  }
119944
120054
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
119945
120055
 
119946
- declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
119947
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7q]['delete']['parameters']['path'];
119948
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7q]['delete']['parameters']['query'];
119949
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7q]['delete']['responses'][200]['content']['application/json'];
120056
+ declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
120057
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7r]['delete']['parameters']['path'];
120058
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7r]['delete']['parameters']['query'];
120059
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7r]['delete']['responses'][200]['content']['application/json'];
119950
120060
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
119951
120061
  params: {
119952
120062
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -119955,11 +120065,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
119955
120065
  }
119956
120066
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
119957
120067
 
119958
- declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
119959
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7p]['patch']['requestBody']['content']['application/json'];
119960
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7p]['patch']['parameters']['path'];
119961
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7p]['patch']['parameters']['query'];
119962
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7p]['patch']['responses'][200]['content']['application/json'];
120068
+ declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
120069
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7q]['patch']['requestBody']['content']['application/json'];
120070
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7q]['patch']['parameters']['path'];
120071
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7q]['patch']['parameters']['query'];
120072
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7q]['patch']['responses'][200]['content']['application/json'];
119963
120073
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
119964
120074
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
119965
120075
  params: {
@@ -119969,11 +120079,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
119969
120079
  }
119970
120080
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
119971
120081
 
119972
- declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/insurance-policies";
119973
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7o]['put']['requestBody']['content']['application/json'];
119974
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['put']['parameters']['path'];
119975
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['put']['parameters']['query'];
119976
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['put']['responses'][200]['content']['application/json'];
120082
+ declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/insurance-policies";
120083
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7p]['put']['requestBody']['content']['application/json'];
120084
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7p]['put']['parameters']['path'];
120085
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7p]['put']['parameters']['query'];
120086
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7p]['put']['responses'][200]['content']['application/json'];
119977
120087
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
119978
120088
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
119979
120089
  params: {
@@ -119983,10 +120093,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
119983
120093
  }
119984
120094
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
119985
120095
 
119986
- declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
119987
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7n]['delete']['parameters']['path'];
119988
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7n]['delete']['parameters']['query'];
119989
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7n]['delete']['responses'][200]['content']['application/json'];
120096
+ declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
120097
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['delete']['parameters']['path'];
120098
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['delete']['parameters']['query'];
120099
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['delete']['responses'][200]['content']['application/json'];
119990
120100
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
119991
120101
  params: {
119992
120102
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -119995,11 +120105,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
119995
120105
  }
119996
120106
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
119997
120107
 
119998
- declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
119999
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7m]['put']['requestBody']['content']['application/json'];
120000
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7m]['put']['parameters']['path'];
120001
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7m]['put']['parameters']['query'];
120002
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7m]['put']['responses'][200]['content']['application/json'];
120108
+ declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
120109
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7n]['put']['requestBody']['content']['application/json'];
120110
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7n]['put']['parameters']['path'];
120111
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7n]['put']['parameters']['query'];
120112
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7n]['put']['responses'][200]['content']['application/json'];
120003
120113
  interface OrderInsurancePolciesOfAdvisoryReportProps {
120004
120114
  body: OrderInsurancePolciesOfAdvisoryReportBody;
120005
120115
  params: {
@@ -120009,11 +120119,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
120009
120119
  }
120010
120120
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
120011
120121
 
120012
- declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/policy-packages";
120013
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7l]['put']['requestBody']['content']['application/json'];
120014
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7l]['put']['parameters']['path'];
120015
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7l]['put']['parameters']['query'];
120016
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7l]['put']['responses'][200]['content']['application/json'];
120122
+ declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/policy-packages";
120123
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7m]['put']['requestBody']['content']['application/json'];
120124
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['put']['parameters']['path'];
120125
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['put']['parameters']['query'];
120126
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['put']['responses'][200]['content']['application/json'];
120017
120127
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
120018
120128
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
120019
120129
  params: {
@@ -120023,39 +120133,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
120023
120133
  }
120024
120134
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
120025
120135
 
120026
- declare const routeName$7k = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
120027
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7k]['get']['parameters']['path'];
120028
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7k]['get']['parameters']['query'];
120029
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
120030
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7k]['get']['parameters'];
120136
+ declare const routeName$7l = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
120137
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
120138
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
120139
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
120140
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7l]['get']['parameters'];
120031
120141
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
120032
120142
 
120033
- declare const routeName$7j = "/v1/api/affiliations";
120034
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
120143
+ declare const routeName$7k = "/v1/api/affiliations";
120144
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
120035
120145
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
120036
120146
 
120037
- declare const routeName$7i = "/v1/api/anvaflows/labels";
120038
- type GetAnvaLabelsQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
120039
- type GetAnvaLabelsResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
120040
- type GetAnvaLabelsProps = paths[typeof routeName$7i]['get']['parameters'];
120147
+ declare const routeName$7j = "/v1/api/anvaflows/labels";
120148
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
120149
+ type GetAnvaLabelsResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
120150
+ type GetAnvaLabelsProps = paths[typeof routeName$7j]['get']['parameters'];
120041
120151
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
120042
120152
 
120043
- declare const routeName$7h = "/v1/api/anvaflows/supported-insurances";
120044
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
120045
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
120046
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7h]['get']['parameters'];
120153
+ declare const routeName$7i = "/v1/api/anvaflows/supported-insurances";
120154
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
120155
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
120156
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7i]['get']['parameters'];
120047
120157
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
120048
120158
 
120049
- declare const routeName$7g = "/v1/api/anvaflows/supported-tags";
120050
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7g]['get']['parameters']['query'];
120051
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7g]['get']['responses'][200]['content']['application/json'];
120052
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7g]['get']['parameters'];
120159
+ declare const routeName$7h = "/v1/api/anvaflows/supported-tags";
120160
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
120161
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
120162
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7h]['get']['parameters'];
120053
120163
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
120054
120164
 
120055
- declare const routeName$7f = "/v1/api/anvaflows/supported-tags";
120056
- type CreateAnvaflowTagsBody = paths[typeof routeName$7f]['put']['requestBody']['content']['application/json'];
120057
- type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7f]['put']['parameters']['query'];
120058
- type CreateAnvaflowTagsResponse = paths[typeof routeName$7f]['put']['responses'][200]['content']['application/json'];
120165
+ declare const routeName$7g = "/v1/api/anvaflows/supported-tags";
120166
+ type CreateAnvaflowTagsBody = paths[typeof routeName$7g]['put']['requestBody']['content']['application/json'];
120167
+ type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7g]['put']['parameters']['query'];
120168
+ type CreateAnvaflowTagsResponse = paths[typeof routeName$7g]['put']['responses'][200]['content']['application/json'];
120059
120169
  interface CreateAnvaflowTagsProps {
120060
120170
  body: CreateAnvaflowTagsBody;
120061
120171
  params: {
@@ -120064,35 +120174,35 @@ interface CreateAnvaflowTagsProps {
120064
120174
  }
120065
120175
  declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
120066
120176
 
120067
- declare const routeName$7e = "/v1/api/anvaflows/supported-coverages";
120068
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
120069
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
120070
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7e]['get']['parameters'];
120177
+ declare const routeName$7f = "/v1/api/anvaflows/supported-coverages";
120178
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7f]['get']['parameters']['query'];
120179
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7f]['get']['responses'][200]['content']['application/json'];
120180
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7f]['get']['parameters'];
120071
120181
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
120072
120182
 
120073
- declare const routeName$7d = "/v1/api/anvaflows/supported-adn-coverages";
120074
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
120075
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
120076
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7d]['get']['parameters'];
120183
+ declare const routeName$7e = "/v1/api/anvaflows/supported-adn-coverages";
120184
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
120185
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
120186
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7e]['get']['parameters'];
120077
120187
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
120078
120188
 
120079
- declare const routeName$7c = "/v1/api/anvaflows/supported-insurance-companies";
120080
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
120081
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
120082
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7c]['get']['parameters'];
120189
+ declare const routeName$7d = "/v1/api/anvaflows/supported-insurance-companies";
120190
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
120191
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
120192
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7d]['get']['parameters'];
120083
120193
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
120084
120194
 
120085
- declare const routeName$7b = "/v1/api/anvaflows/mutation-reasons";
120086
- type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7b]['get']['parameters']['query'];
120087
- type GetAnvaMutationReasonsResponse = paths[typeof routeName$7b]['get']['responses'][200]['content']['application/json'];
120088
- type GetAnvaMutationReasonsProps = paths[typeof routeName$7b]['get']['parameters'];
120195
+ declare const routeName$7c = "/v1/api/anvaflows/mutation-reasons";
120196
+ type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
120197
+ type GetAnvaMutationReasonsResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
120198
+ type GetAnvaMutationReasonsProps = paths[typeof routeName$7c]['get']['parameters'];
120089
120199
  declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
120090
120200
 
120091
- declare const routeName$7a = "/v1/api/anvaflows/{session_id}/calculate";
120092
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7a]['post']['requestBody']['content']['application/json'];
120093
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7a]['post']['parameters']['path'];
120094
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7a]['post']['parameters']['query'];
120095
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7a]['post']['responses'][200]['content']['application/json'];
120201
+ declare const routeName$7b = "/v1/api/anvaflows/{session_id}/calculate";
120202
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7b]['post']['requestBody']['content']['application/json'];
120203
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7b]['post']['parameters']['path'];
120204
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7b]['post']['parameters']['query'];
120205
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7b]['post']['responses'][200]['content']['application/json'];
120096
120206
  interface CalculateAnvaquotesBySessionIdProps {
120097
120207
  body: CalculateAnvaquotesBySessionIdBody;
120098
120208
  params: {
@@ -120102,11 +120212,11 @@ interface CalculateAnvaquotesBySessionIdProps {
120102
120212
  }
120103
120213
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
120104
120214
 
120105
- declare const routeName$79 = "/v2/api/anvaflows/{session_id}/calculate";
120106
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$79]['post']['requestBody']['content']['application/json'];
120107
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$79]['post']['parameters']['path'];
120108
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$79]['post']['parameters']['query'];
120109
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$79]['post']['responses'][202]['content']['application/json'];
120215
+ declare const routeName$7a = "/v2/api/anvaflows/{session_id}/calculate";
120216
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$7a]['post']['requestBody']['content']['application/json'];
120217
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$7a]['post']['parameters']['path'];
120218
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7a]['post']['parameters']['query'];
120219
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$7a]['post']['responses'][202]['content']['application/json'];
120110
120220
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
120111
120221
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
120112
120222
  params: {
@@ -120116,11 +120226,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
120116
120226
  }
120117
120227
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
120118
120228
 
120119
- declare const routeName$78 = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
120120
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$78]['post']['requestBody']['content']['application/json'];
120121
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
120122
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$78]['post']['parameters']['query'];
120123
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$78]['post']['responses'][200]['content']['application/json'];
120229
+ declare const routeName$79 = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
120230
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$79]['post']['requestBody']['content']['application/json'];
120231
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$79]['post']['parameters']['path'];
120232
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$79]['post']['parameters']['query'];
120233
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$79]['post']['responses'][200]['content']['application/json'];
120124
120234
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
120125
120235
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
120126
120236
  params: {
@@ -120130,10 +120240,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
120130
120240
  }
120131
120241
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
120132
120242
 
120133
- declare const routeName$77 = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
120134
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
120135
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
120136
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$77]['post']['responses'][201]['content']['application/json'];
120243
+ declare const routeName$78 = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
120244
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
120245
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$78]['post']['parameters']['query'];
120246
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$78]['post']['responses'][201]['content']['application/json'];
120137
120247
  interface SendOfferToAnvaBySessionIdProps {
120138
120248
  params: {
120139
120249
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -120142,10 +120252,10 @@ interface SendOfferToAnvaBySessionIdProps {
120142
120252
  }
120143
120253
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
120144
120254
 
120145
- declare const routeName$76 = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
120146
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
120147
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
120148
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$76]['post']['responses'][202]['content']['application/json'];
120255
+ declare const routeName$77 = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
120256
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
120257
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
120258
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$77]['post']['responses'][202]['content']['application/json'];
120149
120259
  interface EnqueueSendOfferToAnvaBySessionIdProps {
120150
120260
  params: {
120151
120261
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -120154,11 +120264,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
120154
120264
  }
120155
120265
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
120156
120266
 
120157
- declare const routeName$75 = "/v1/api/anvaflows/{session_id}/send-offer-mail";
120158
- type SendOfferMailBySessionIdBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
120159
- type SendOfferMailBySessionIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
120160
- type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
120161
- type SendOfferMailBySessionIdResponse = paths[typeof routeName$75]['post']['responses'][201]['content']['application/json'];
120267
+ declare const routeName$76 = "/v1/api/anvaflows/{session_id}/send-offer-mail";
120268
+ type SendOfferMailBySessionIdBody = paths[typeof routeName$76]['post']['requestBody']['content']['application/json'];
120269
+ type SendOfferMailBySessionIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
120270
+ type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
120271
+ type SendOfferMailBySessionIdResponse = paths[typeof routeName$76]['post']['responses'][201]['content']['application/json'];
120162
120272
  interface SendOfferMailBySessionIdProps {
120163
120273
  body: SendOfferMailBySessionIdBody;
120164
120274
  params: {
@@ -120168,11 +120278,11 @@ interface SendOfferMailBySessionIdProps {
120168
120278
  }
120169
120279
  declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
120170
120280
 
120171
- declare const routeName$74 = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
120172
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
120173
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
120174
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
120175
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$74]['post']['responses'][202]['content']['application/json'];
120281
+ declare const routeName$75 = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
120282
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
120283
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
120284
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
120285
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$75]['post']['responses'][202]['content']['application/json'];
120176
120286
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
120177
120287
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
120178
120288
  params: {
@@ -120182,11 +120292,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
120182
120292
  }
120183
120293
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
120184
120294
 
120185
- declare const routeName$73 = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
120186
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$73]['post']['requestBody']['content']['application/json'];
120187
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$73]['post']['parameters']['path'];
120188
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$73]['post']['parameters']['query'];
120189
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$73]['post']['responses'][200]['content']['application/json'];
120295
+ declare const routeName$74 = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
120296
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
120297
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
120298
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
120299
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$74]['post']['responses'][200]['content']['application/json'];
120190
120300
  interface RecalculateSimulationBySessionIdProps {
120191
120301
  body: RecalculateSimulationBySessionIdBody;
120192
120302
  params: {
@@ -120196,23 +120306,23 @@ interface RecalculateSimulationBySessionIdProps {
120196
120306
  }
120197
120307
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
120198
120308
 
120199
- declare const routeName$72 = "/v1/api/anvaflows/{session_id}/collection-methods";
120200
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$72]['get']['parameters']['path'];
120201
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
120202
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
120203
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$72]['get']['parameters'];
120309
+ declare const routeName$73 = "/v1/api/anvaflows/{session_id}/collection-methods";
120310
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$73]['get']['parameters']['path'];
120311
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
120312
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
120313
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$73]['get']['parameters'];
120204
120314
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
120205
120315
 
120206
- declare const routeName$71 = "/v1/api/anvaflows/closing-questions";
120207
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$71]['get']['parameters']['query'];
120208
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$71]['get']['responses'][200]['content']['application/json'];
120209
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$71]['get']['parameters'];
120316
+ declare const routeName$72 = "/v1/api/anvaflows/closing-questions";
120317
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
120318
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
120319
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$72]['get']['parameters'];
120210
120320
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
120211
120321
 
120212
- declare const routeName$70 = "/v1/api/anvaflows/closing-questions";
120213
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$70]['put']['requestBody']['content']['application/json'];
120214
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$70]['put']['parameters']['query'];
120215
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$70]['put']['responses'][200]['content']['application/json'];
120322
+ declare const routeName$71 = "/v1/api/anvaflows/closing-questions";
120323
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$71]['put']['requestBody']['content']['application/json'];
120324
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$71]['put']['parameters']['query'];
120325
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$71]['put']['responses'][200]['content']['application/json'];
120216
120326
  interface UpsertAnvaClosingQuestionsProps {
120217
120327
  body: UpsertAnvaClosingQuestionsBody;
120218
120328
  params: {
@@ -120221,10 +120331,10 @@ interface UpsertAnvaClosingQuestionsProps {
120221
120331
  }
120222
120332
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
120223
120333
 
120224
- declare const routeName$6$ = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
120225
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6$]['delete']['parameters']['path'];
120226
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6$]['delete']['parameters']['query'];
120227
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6$]['delete']['responses'][200]['content']['application/json'];
120334
+ declare const routeName$70 = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
120335
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$70]['delete']['parameters']['path'];
120336
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$70]['delete']['parameters']['query'];
120337
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$70]['delete']['responses'][200]['content']['application/json'];
120228
120338
  interface DeleteAnvaClosingQuestionsProps {
120229
120339
  params: {
120230
120340
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -120233,11 +120343,11 @@ interface DeleteAnvaClosingQuestionsProps {
120233
120343
  }
120234
120344
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
120235
120345
 
120236
- declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/anva-party";
120237
- type CreateAnvaPartyViaConversationBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
120238
- type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
120239
- type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
120240
- type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$6_]['post']['responses'][201]['content']['application/json'];
120346
+ declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/anva-party";
120347
+ type CreateAnvaPartyViaConversationBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
120348
+ type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
120349
+ type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
120350
+ type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
120241
120351
  interface CreateAnvaPartyViaConversationProps {
120242
120352
  body: CreateAnvaPartyViaConversationBody;
120243
120353
  params: {
@@ -120247,11 +120357,11 @@ interface CreateAnvaPartyViaConversationProps {
120247
120357
  }
120248
120358
  declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
120249
120359
 
120250
- declare const routeName$6Z = "/v1/api/anvaflows/{session_id}/anva-party";
120251
- type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$6Z]['patch']['requestBody']['content']['application/json'];
120252
- type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$6Z]['patch']['parameters']['path'];
120253
- type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6Z]['patch']['parameters']['query'];
120254
- type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$6Z]['patch']['responses'][200]['content']['application/json'];
120360
+ declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/anva-party";
120361
+ type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$6_]['patch']['requestBody']['content']['application/json'];
120362
+ type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$6_]['patch']['parameters']['path'];
120363
+ type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$6_]['patch']['parameters']['query'];
120364
+ type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$6_]['patch']['responses'][200]['content']['application/json'];
120255
120365
  interface UpdateAnvaPartyViaConversationProps {
120256
120366
  body: UpdateAnvaPartyViaConversationBody;
120257
120367
  params: {
@@ -120261,16 +120371,16 @@ interface UpdateAnvaPartyViaConversationProps {
120261
120371
  }
120262
120372
  declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
120263
120373
 
120264
- declare const routeName$6Y = "/v1/api/anvaproducts";
120265
- type GetAnvaproductsQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
120266
- type GetAnvaproductsResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
120267
- type GetAnvaproductsProps = paths[typeof routeName$6Y]['get']['parameters'];
120374
+ declare const routeName$6Z = "/v1/api/anvaproducts";
120375
+ type GetAnvaproductsQueryParams = paths[typeof routeName$6Z]['get']['parameters']['query'];
120376
+ type GetAnvaproductsResponse = paths[typeof routeName$6Z]['get']['responses'][200]['content']['application/json'];
120377
+ type GetAnvaproductsProps = paths[typeof routeName$6Z]['get']['parameters'];
120268
120378
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
120269
120379
 
120270
- declare const routeName$6X = "/v1/api/anvaproducts/import";
120271
- type ImportAnvaproductBody = paths[typeof routeName$6X]['post']['requestBody']['content']['application/json'];
120272
- type ImportAnvaproductQueryParams = paths[typeof routeName$6X]['post']['parameters']['query'];
120273
- type ImportAnvaproductResponse = paths[typeof routeName$6X]['post']['responses'][200]['content']['application/json'];
120380
+ declare const routeName$6Y = "/v1/api/anvaproducts/import";
120381
+ type ImportAnvaproductBody = paths[typeof routeName$6Y]['post']['requestBody']['content']['application/json'];
120382
+ type ImportAnvaproductQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
120383
+ type ImportAnvaproductResponse = paths[typeof routeName$6Y]['post']['responses'][200]['content']['application/json'];
120274
120384
  interface ImportAnvaproductProps {
120275
120385
  body: ImportAnvaproductBody;
120276
120386
  params: {
@@ -120279,18 +120389,18 @@ interface ImportAnvaproductProps {
120279
120389
  }
120280
120390
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
120281
120391
 
120282
- declare const routeName$6W = "/v1/api/anvaproducts/{anva_product_id}";
120283
- type GetAnvaproductByIdPathParams = paths[typeof routeName$6W]['get']['parameters']['path'];
120284
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$6W]['get']['parameters']['query'];
120285
- type GetAnvaproductByIdResponse = paths[typeof routeName$6W]['get']['responses'][200]['content']['application/json'];
120286
- type GetAnvaproductByIdProps = paths[typeof routeName$6W]['get']['parameters'];
120392
+ declare const routeName$6X = "/v1/api/anvaproducts/{anva_product_id}";
120393
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$6X]['get']['parameters']['path'];
120394
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
120395
+ type GetAnvaproductByIdResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
120396
+ type GetAnvaproductByIdProps = paths[typeof routeName$6X]['get']['parameters'];
120287
120397
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
120288
120398
 
120289
- declare const routeName$6V = "/v1/api/anvaproducts/{anva_product_id}";
120290
- type PatchAnvaproductByIdBody = paths[typeof routeName$6V]['patch']['requestBody']['content']['application/json'];
120291
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$6V]['patch']['parameters']['path'];
120292
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6V]['patch']['parameters']['query'];
120293
- type PatchAnvaproductByIdResponse = paths[typeof routeName$6V]['patch']['responses'][200]['content']['application/json'];
120399
+ declare const routeName$6W = "/v1/api/anvaproducts/{anva_product_id}";
120400
+ type PatchAnvaproductByIdBody = paths[typeof routeName$6W]['patch']['requestBody']['content']['application/json'];
120401
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$6W]['patch']['parameters']['path'];
120402
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6W]['patch']['parameters']['query'];
120403
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$6W]['patch']['responses'][200]['content']['application/json'];
120294
120404
  interface PatchAnvaproductByIdProps {
120295
120405
  body: PatchAnvaproductByIdBody;
120296
120406
  params: {
@@ -120300,11 +120410,11 @@ interface PatchAnvaproductByIdProps {
120300
120410
  }
120301
120411
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
120302
120412
 
120303
- declare const routeName$6U = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
120304
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6U]['patch']['requestBody']['content']['application/json'];
120305
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6U]['patch']['parameters']['path'];
120306
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6U]['patch']['parameters']['query'];
120307
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6U]['patch']['responses'][200]['content']['application/json'];
120413
+ declare const routeName$6V = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
120414
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6V]['patch']['requestBody']['content']['application/json'];
120415
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6V]['patch']['parameters']['path'];
120416
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6V]['patch']['parameters']['query'];
120417
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6V]['patch']['responses'][200]['content']['application/json'];
120308
120418
  interface PatchAnvaproductCoverageByIdProps {
120309
120419
  body: PatchAnvaproductCoverageByIdBody;
120310
120420
  params: {
@@ -120314,18 +120424,18 @@ interface PatchAnvaproductCoverageByIdProps {
120314
120424
  }
120315
120425
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
120316
120426
 
120317
- declare const routeName$6T = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
120318
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6T]['get']['parameters']['path'];
120319
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
120320
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
120321
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6T]['get']['parameters'];
120427
+ declare const routeName$6U = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
120428
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
120429
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
120430
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
120431
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6U]['get']['parameters'];
120322
120432
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
120323
120433
 
120324
- declare const routeName$6S = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
120325
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6S]['put']['requestBody']['content']['application/json'];
120326
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6S]['put']['parameters']['path'];
120327
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6S]['put']['parameters']['query'];
120328
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6S]['put']['responses'][200]['content']['application/json'];
120434
+ declare const routeName$6T = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
120435
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6T]['put']['requestBody']['content']['application/json'];
120436
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6T]['put']['parameters']['path'];
120437
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6T]['put']['parameters']['query'];
120438
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6T]['put']['responses'][200]['content']['application/json'];
120329
120439
  interface UpdateAnvaflowsQuestionnaireProps {
120330
120440
  body: UpdateAnvaflowsQuestionnaireBody;
120331
120441
  params: {
@@ -120335,11 +120445,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
120335
120445
  }
120336
120446
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
120337
120447
 
120338
- declare const routeName$6R = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
120339
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
120340
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6R]['post']['parameters']['path'];
120341
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
120342
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6R]['post']['responses'][200]['content']['application/json'];
120448
+ declare const routeName$6S = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
120449
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6S]['post']['requestBody']['content']['application/json'];
120450
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6S]['post']['parameters']['path'];
120451
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6S]['post']['parameters']['query'];
120452
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6S]['post']['responses'][200]['content']['application/json'];
120343
120453
  interface ValidateAnvaflowsQuestionnaireProps {
120344
120454
  body: ValidateAnvaflowsQuestionnaireBody;
120345
120455
  params: {
@@ -120349,10 +120459,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
120349
120459
  }
120350
120460
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
120351
120461
 
120352
- declare const routeName$6Q = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
120353
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6Q]['post']['requestBody']['content']['application/json'];
120354
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6Q]['post']['parameters']['query'];
120355
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6Q]['post']['responses'][200]['content']['application/json'];
120462
+ declare const routeName$6R = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
120463
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
120464
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
120465
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6R]['post']['responses'][200]['content']['application/json'];
120356
120466
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
120357
120467
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
120358
120468
  params: {
@@ -120361,20 +120471,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
120361
120471
  }
120362
120472
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
120363
120473
 
120364
- declare const routeName$6P = "/v1/api/brokers/me";
120365
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
120474
+ declare const routeName$6Q = "/v1/api/brokers/me";
120475
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
120366
120476
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
120367
120477
 
120368
- declare const routeName$6O = "/v1/api/brokers/{broker_id}";
120369
- type GetTheBrokerByIdPathParams = paths[typeof routeName$6O]['get']['parameters']['path'];
120370
- type GetTheBrokerByIdResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
120371
- type GetTheBrokerByIdProps = paths[typeof routeName$6O]['get']['parameters'];
120478
+ declare const routeName$6P = "/v1/api/brokers/{broker_id}";
120479
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$6P]['get']['parameters']['path'];
120480
+ type GetTheBrokerByIdResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
120481
+ type GetTheBrokerByIdProps = paths[typeof routeName$6P]['get']['parameters'];
120372
120482
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
120373
120483
 
120374
- declare const routeName$6N = "/v1/api/brokers/{broker_id}";
120375
- type UpdateBrokerByBrokerBody = paths[typeof routeName$6N]['patch']['requestBody']['content']['application/json'];
120376
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6N]['patch']['parameters']['path'];
120377
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$6N]['patch']['responses'][200]['content']['application/json'];
120484
+ declare const routeName$6O = "/v1/api/brokers/{broker_id}";
120485
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$6O]['patch']['requestBody']['content']['application/json'];
120486
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6O]['patch']['parameters']['path'];
120487
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$6O]['patch']['responses'][200]['content']['application/json'];
120378
120488
  interface UpdateBrokerByBrokerProps {
120379
120489
  body: UpdateBrokerByBrokerBody;
120380
120490
  params: {
@@ -120383,16 +120493,16 @@ interface UpdateBrokerByBrokerProps {
120383
120493
  }
120384
120494
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
120385
120495
 
120386
- declare const routeName$6M = "/v1/api/brokers/{broker_id}/integrations";
120387
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$6M]['get']['parameters']['path'];
120388
- type GetBrokerIntegrationsResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
120389
- type GetBrokerIntegrationsProps = paths[typeof routeName$6M]['get']['parameters'];
120496
+ declare const routeName$6N = "/v1/api/brokers/{broker_id}/integrations";
120497
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$6N]['get']['parameters']['path'];
120498
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
120499
+ type GetBrokerIntegrationsProps = paths[typeof routeName$6N]['get']['parameters'];
120390
120500
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
120391
120501
 
120392
- declare const routeName$6L = "/v1/api/brokers/{broker_id}/integrations";
120393
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$6L]['patch']['requestBody']['content']['application/json'];
120394
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6L]['patch']['parameters']['path'];
120395
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6L]['patch']['responses'][200]['content']['application/json'];
120502
+ declare const routeName$6M = "/v1/api/brokers/{broker_id}/integrations";
120503
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$6M]['patch']['requestBody']['content']['application/json'];
120504
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6M]['patch']['parameters']['path'];
120505
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6M]['patch']['responses'][200]['content']['application/json'];
120396
120506
  interface UpdateBrokerIntegrationsProps {
120397
120507
  body: UpdateBrokerIntegrationsBody;
120398
120508
  params: {
@@ -120401,37 +120511,37 @@ interface UpdateBrokerIntegrationsProps {
120401
120511
  }
120402
120512
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
120403
120513
 
120404
- declare const routeName$6K = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
120405
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
120406
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
120407
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6K]['get']['parameters'];
120514
+ declare const routeName$6L = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
120515
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
120516
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
120517
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6L]['get']['parameters'];
120408
120518
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
120409
120519
 
120410
- declare const routeName$6J = "/v1/api/anva-producers/{anva_producer_id}";
120411
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
120412
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
120413
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6J]['get']['parameters'];
120520
+ declare const routeName$6K = "/v1/api/anva-producers/{anva_producer_id}";
120521
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
120522
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
120523
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6K]['get']['parameters'];
120414
120524
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
120415
120525
 
120416
- declare const routeName$6I = "/v1/api/brokers/{broker_id}/checklists/onboarding";
120417
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6I]['get']['parameters']['path'];
120418
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6I]['get']['parameters']['query'];
120419
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
120420
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6I]['get']['parameters'];
120526
+ declare const routeName$6J = "/v1/api/brokers/{broker_id}/checklists/onboarding";
120527
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
120528
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6J]['get']['parameters']['query'];
120529
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
120530
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6J]['get']['parameters'];
120421
120531
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
120422
120532
 
120423
- declare const routeName$6H = "/v1/api/campaigns/{campaign_id}";
120424
- type GetCampaignByIdPathParams = paths[typeof routeName$6H]['get']['parameters']['path'];
120425
- type GetCampaignByIdQueryParams = paths[typeof routeName$6H]['get']['parameters']['query'];
120426
- type GetCampaignByIdResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
120427
- type GetCampaignByIdProps = paths[typeof routeName$6H]['get']['parameters'];
120533
+ declare const routeName$6I = "/v1/api/campaigns/{campaign_id}";
120534
+ type GetCampaignByIdPathParams = paths[typeof routeName$6I]['get']['parameters']['path'];
120535
+ type GetCampaignByIdQueryParams = paths[typeof routeName$6I]['get']['parameters']['query'];
120536
+ type GetCampaignByIdResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
120537
+ type GetCampaignByIdProps = paths[typeof routeName$6I]['get']['parameters'];
120428
120538
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
120429
120539
 
120430
- declare const routeName$6G = "/v1/api/campaigns/{campaign_id}";
120431
- type UpdateCampaignBody = paths[typeof routeName$6G]['patch']['requestBody']['content']['application/json'];
120432
- type UpdateCampaignPathParams = paths[typeof routeName$6G]['patch']['parameters']['path'];
120433
- type UpdateCampaignQueryParams = paths[typeof routeName$6G]['patch']['parameters']['query'];
120434
- type UpdateCampaignResponse = paths[typeof routeName$6G]['patch']['responses'][200]['content']['application/json'];
120540
+ declare const routeName$6H = "/v1/api/campaigns/{campaign_id}";
120541
+ type UpdateCampaignBody = paths[typeof routeName$6H]['patch']['requestBody']['content']['application/json'];
120542
+ type UpdateCampaignPathParams = paths[typeof routeName$6H]['patch']['parameters']['path'];
120543
+ type UpdateCampaignQueryParams = paths[typeof routeName$6H]['patch']['parameters']['query'];
120544
+ type UpdateCampaignResponse = paths[typeof routeName$6H]['patch']['responses'][200]['content']['application/json'];
120435
120545
  interface UpdateCampaignProps {
120436
120546
  body: UpdateCampaignBody;
120437
120547
  params: {
@@ -120441,16 +120551,16 @@ interface UpdateCampaignProps {
120441
120551
  }
120442
120552
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
120443
120553
 
120444
- declare const routeName$6F = "/v1/api/campaigns";
120445
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6F]['get']['parameters']['query'];
120446
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
120447
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$6F]['get']['parameters'];
120554
+ declare const routeName$6G = "/v1/api/campaigns";
120555
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
120556
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
120557
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$6G]['get']['parameters'];
120448
120558
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
120449
120559
 
120450
- declare const routeName$6E = "/v1/api/campaigns";
120451
- type CreateCampaignBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
120452
- type CreateCampaignQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
120453
- type CreateCampaignResponse = paths[typeof routeName$6E]['post']['responses'][201]['content']['application/json'];
120560
+ declare const routeName$6F = "/v1/api/campaigns";
120561
+ type CreateCampaignBody = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
120562
+ type CreateCampaignQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
120563
+ type CreateCampaignResponse = paths[typeof routeName$6F]['post']['responses'][201]['content']['application/json'];
120454
120564
  interface CreateCampaignProps {
120455
120565
  body: CreateCampaignBody;
120456
120566
  params: {
@@ -120459,17 +120569,17 @@ interface CreateCampaignProps {
120459
120569
  }
120460
120570
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
120461
120571
 
120462
- declare const routeName$6D = "/v1/api/campaigns/{campaign_id}/metrics";
120463
- type GetMetricsByCampaignPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
120464
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
120465
- type GetMetricsByCampaignResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
120466
- type GetMetricsByCampaignProps = paths[typeof routeName$6D]['get']['parameters'];
120572
+ declare const routeName$6E = "/v1/api/campaigns/{campaign_id}/metrics";
120573
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
120574
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
120575
+ type GetMetricsByCampaignResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
120576
+ type GetMetricsByCampaignProps = paths[typeof routeName$6E]['get']['parameters'];
120467
120577
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
120468
120578
 
120469
- declare const routeName$6C = "/v1/api/campaigns/{campaign_id}/targets";
120470
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6C]['patch']['parameters']['path'];
120471
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6C]['patch']['parameters']['query'];
120472
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$6C]['patch']['responses'][200]['content']['application/json'];
120579
+ declare const routeName$6D = "/v1/api/campaigns/{campaign_id}/targets";
120580
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6D]['patch']['parameters']['path'];
120581
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6D]['patch']['parameters']['query'];
120582
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$6D]['patch']['responses'][200]['content']['application/json'];
120473
120583
  interface UpdateTargetsByCampaignProps {
120474
120584
  params: {
120475
120585
  query: UpdateTargetsByCampaignQueryParams;
@@ -120478,15 +120588,15 @@ interface UpdateTargetsByCampaignProps {
120478
120588
  }
120479
120589
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
120480
120590
 
120481
- declare const routeName$6B = "/v1/api/campaign-templates";
120482
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6B]['get']['parameters']['query'];
120483
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$6B]['get']['responses'][200]['content']['application/json'];
120484
- type GetAllCampaignTemplatesProps = paths[typeof routeName$6B]['get']['parameters'];
120591
+ declare const routeName$6C = "/v1/api/campaign-templates";
120592
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
120593
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
120594
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$6C]['get']['parameters'];
120485
120595
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
120486
120596
 
120487
- declare const routeName$6A = "/v1/api/campaigns/example-mails";
120488
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6A]['post']['parameters']['query'];
120489
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6A]['post']['responses'][201]['content']['application/json'];
120597
+ declare const routeName$6B = "/v1/api/campaigns/example-mails";
120598
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
120599
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6B]['post']['responses'][201]['content']['application/json'];
120490
120600
  interface SendExampleCampaignTargetMailProps {
120491
120601
  params: {
120492
120602
  query: SendExampleCampaignTargetMailQueryParams;
@@ -120494,16 +120604,16 @@ interface SendExampleCampaignTargetMailProps {
120494
120604
  }
120495
120605
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
120496
120606
 
120497
- declare const routeName$6z = "/v1/api/distributions/campaign-settings";
120498
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6z]['get']['parameters']['query'];
120499
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6z]['get']['responses'][200]['content']['application/json'];
120500
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6z]['get']['parameters'];
120607
+ declare const routeName$6A = "/v1/api/distributions/campaign-settings";
120608
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
120609
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
120610
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6A]['get']['parameters'];
120501
120611
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
120502
120612
 
120503
- declare const routeName$6y = "/v1/api/campaigns/dns-prefixes/generate";
120504
- type GenerateDnsPrefixBody = paths[typeof routeName$6y]['post']['requestBody']['content']['application/json'];
120505
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$6y]['post']['parameters']['query'];
120506
- type GenerateDnsPrefixResponse = paths[typeof routeName$6y]['post']['responses'][200]['content']['application/json'];
120613
+ declare const routeName$6z = "/v1/api/campaigns/dns-prefixes/generate";
120614
+ type GenerateDnsPrefixBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
120615
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
120616
+ type GenerateDnsPrefixResponse = paths[typeof routeName$6z]['post']['responses'][200]['content']['application/json'];
120507
120617
  interface GenerateDnsPrefixProps {
120508
120618
  body: GenerateDnsPrefixBody;
120509
120619
  params: {
@@ -120512,16 +120622,16 @@ interface GenerateDnsPrefixProps {
120512
120622
  }
120513
120623
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
120514
120624
 
120515
- declare const routeName$6x = "/v1/api/mail-templates/campaign-target";
120516
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
120517
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6x]['get']['responses'][200]['content']['application/json'];
120518
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6x]['get']['parameters'];
120625
+ declare const routeName$6y = "/v1/api/mail-templates/campaign-target";
120626
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
120627
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
120628
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6y]['get']['parameters'];
120519
120629
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
120520
120630
 
120521
- declare const routeName$6w = "/v1/api/distributions/{distribution_id}/claims";
120522
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
120523
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
120524
- type CreateClaimAsCustomerResponse = paths[typeof routeName$6w]['post']['responses'][201]['content']['application/json'];
120631
+ declare const routeName$6x = "/v1/api/distributions/{distribution_id}/claims";
120632
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$6x]['post']['parameters']['path'];
120633
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
120634
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$6x]['post']['responses'][201]['content']['application/json'];
120525
120635
  interface CreateClaimAsCustomerProps {
120526
120636
  params: {
120527
120637
  query: CreateClaimAsCustomerQueryParams;
@@ -120530,15 +120640,15 @@ interface CreateClaimAsCustomerProps {
120530
120640
  }
120531
120641
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
120532
120642
 
120533
- declare const routeName$6v = "/v1/api/claims";
120534
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6v]['get']['parameters']['query'];
120535
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6v]['get']['responses'][200]['content']['application/json'];
120536
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$6v]['get']['parameters'];
120643
+ declare const routeName$6w = "/v1/api/claims";
120644
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
120645
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
120646
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$6w]['get']['parameters'];
120537
120647
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
120538
120648
 
120539
- declare const routeName$6u = "/v1/api/claims";
120540
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6u]['post']['parameters']['query'];
120541
- type CreateClaimAsBrokerResponse = paths[typeof routeName$6u]['post']['responses'][201]['content']['application/json'];
120649
+ declare const routeName$6v = "/v1/api/claims";
120650
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
120651
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$6v]['post']['responses'][201]['content']['application/json'];
120542
120652
  interface CreateClaimAsBrokerProps {
120543
120653
  params: {
120544
120654
  query: CreateClaimAsBrokerQueryParams;
@@ -120546,17 +120656,17 @@ interface CreateClaimAsBrokerProps {
120546
120656
  }
120547
120657
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
120548
120658
 
120549
- declare const routeName$6t = "/v1/api/claims/{claim_id}";
120550
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6t]['get']['parameters']['path'];
120551
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
120552
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
120553
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$6t]['get']['parameters'];
120659
+ declare const routeName$6u = "/v1/api/claims/{claim_id}";
120660
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6u]['get']['parameters']['path'];
120661
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
120662
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
120663
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$6u]['get']['parameters'];
120554
120664
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
120555
120665
 
120556
- declare const routeName$6s = "/v1/api/claims/{claim_id}";
120557
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6s]['delete']['parameters']['path'];
120558
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6s]['delete']['parameters']['query'];
120559
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6s]['delete']['responses'][200]['content']['application/json'];
120666
+ declare const routeName$6t = "/v1/api/claims/{claim_id}";
120667
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6t]['delete']['parameters']['path'];
120668
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6t]['delete']['parameters']['query'];
120669
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6t]['delete']['responses'][200]['content']['application/json'];
120560
120670
  interface DeleteClaimAsBrokerByIdProps {
120561
120671
  params: {
120562
120672
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -120565,10 +120675,10 @@ interface DeleteClaimAsBrokerByIdProps {
120565
120675
  }
120566
120676
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
120567
120677
 
120568
- declare const routeName$6r = "/v1/api/claims/{claim_id}";
120569
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6r]['patch']['parameters']['path'];
120570
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6r]['patch']['parameters']['query'];
120571
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6r]['patch']['responses'][200]['content']['application/json'];
120678
+ declare const routeName$6s = "/v1/api/claims/{claim_id}";
120679
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6s]['patch']['parameters']['path'];
120680
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6s]['patch']['parameters']['query'];
120681
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6s]['patch']['responses'][200]['content']['application/json'];
120572
120682
  interface UpdateClaimAsBrokerByIdProps {
120573
120683
  params: {
120574
120684
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -120577,10 +120687,10 @@ interface UpdateClaimAsBrokerByIdProps {
120577
120687
  }
120578
120688
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
120579
120689
 
120580
- declare const routeName$6q = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
120581
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6q]['put']['parameters']['path'];
120582
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6q]['put']['parameters']['query'];
120583
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$6q]['put']['responses'][200]['content']['application/json'];
120690
+ declare const routeName$6r = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
120691
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6r]['put']['parameters']['path'];
120692
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6r]['put']['parameters']['query'];
120693
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$6r]['put']['responses'][200]['content']['application/json'];
120584
120694
  interface UpdateDeclarationRemarkProps {
120585
120695
  params: {
120586
120696
  query: UpdateDeclarationRemarkQueryParams;
@@ -120589,10 +120699,10 @@ interface UpdateDeclarationRemarkProps {
120589
120699
  }
120590
120700
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
120591
120701
 
120592
- declare const routeName$6p = "/v1/api/claims/{claim_id}/lock";
120593
- type CreateLockForClaimPathParams = paths[typeof routeName$6p]['post']['parameters']['path'];
120594
- type CreateLockForClaimQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
120595
- type CreateLockForClaimResponse = paths[typeof routeName$6p]['post']['responses'][201]['content']['application/json'];
120702
+ declare const routeName$6q = "/v1/api/claims/{claim_id}/lock";
120703
+ type CreateLockForClaimPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
120704
+ type CreateLockForClaimQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
120705
+ type CreateLockForClaimResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
120596
120706
  interface CreateLockForClaimProps {
120597
120707
  params: {
120598
120708
  query: CreateLockForClaimQueryParams;
@@ -120601,10 +120711,10 @@ interface CreateLockForClaimProps {
120601
120711
  }
120602
120712
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
120603
120713
 
120604
- declare const routeName$6o = "/v1/api/claims/{claim_id}/unlock";
120605
- type UnlockClaimPathParams = paths[typeof routeName$6o]['post']['parameters']['path'];
120606
- type UnlockClaimQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
120607
- type UnlockClaimResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
120714
+ declare const routeName$6p = "/v1/api/claims/{claim_id}/unlock";
120715
+ type UnlockClaimPathParams = paths[typeof routeName$6p]['post']['parameters']['path'];
120716
+ type UnlockClaimQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
120717
+ type UnlockClaimResponse = paths[typeof routeName$6p]['post']['responses'][200]['content']['application/json'];
120608
120718
  interface UnlockClaimProps {
120609
120719
  params: {
120610
120720
  query: UnlockClaimQueryParams;
@@ -120613,10 +120723,10 @@ interface UnlockClaimProps {
120613
120723
  }
120614
120724
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
120615
120725
 
120616
- declare const routeName$6n = "/v1/api/claims/{claim_id}/request_update";
120617
- type ClaimRequestUpdatePathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
120618
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
120619
- type ClaimRequestUpdateResponse = paths[typeof routeName$6n]['post']['responses'][200]['content']['application/json'];
120726
+ declare const routeName$6o = "/v1/api/claims/{claim_id}/request_update";
120727
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$6o]['post']['parameters']['path'];
120728
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
120729
+ type ClaimRequestUpdateResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
120620
120730
  interface ClaimRequestUpdateProps {
120621
120731
  params: {
120622
120732
  query: ClaimRequestUpdateQueryParams;
@@ -120625,10 +120735,10 @@ interface ClaimRequestUpdateProps {
120625
120735
  }
120626
120736
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
120627
120737
 
120628
- declare const routeName$6m = "/v1/api/claims/{claim_id}/validate";
120629
- type ValidateClaimPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
120630
- type ValidateClaimQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
120631
- type ValidateClaimResponse = paths[typeof routeName$6m]['post']['responses'][200]['content']['application/json'];
120738
+ declare const routeName$6n = "/v1/api/claims/{claim_id}/validate";
120739
+ type ValidateClaimPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
120740
+ type ValidateClaimQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
120741
+ type ValidateClaimResponse = paths[typeof routeName$6n]['post']['responses'][200]['content']['application/json'];
120632
120742
  interface ValidateClaimProps {
120633
120743
  params: {
120634
120744
  query: ValidateClaimQueryParams;
@@ -120637,10 +120747,10 @@ interface ValidateClaimProps {
120637
120747
  }
120638
120748
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
120639
120749
 
120640
- declare const routeName$6l = "/v1/api/claims/{claim_id}/documents";
120641
- type CreateDocumentForClaimPathParams = paths[typeof routeName$6l]['post']['parameters']['path'];
120642
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$6l]['post']['parameters']['query'];
120643
- type CreateDocumentForClaimResponse = paths[typeof routeName$6l]['post']['responses'][201]['content']['application/json'];
120750
+ declare const routeName$6m = "/v1/api/claims/{claim_id}/documents";
120751
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
120752
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
120753
+ type CreateDocumentForClaimResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
120644
120754
  interface CreateDocumentForClaimProps {
120645
120755
  params: {
120646
120756
  query: CreateDocumentForClaimQueryParams;
@@ -120649,17 +120759,17 @@ interface CreateDocumentForClaimProps {
120649
120759
  }
120650
120760
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
120651
120761
 
120652
- declare const routeName$6k = "/v1/api/claims/{claim_id}/documents/{document_id}";
120653
- type DownloadDocumentByIdPathParams = paths[typeof routeName$6k]['get']['parameters']['path'];
120654
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$6k]['get']['parameters']['query'];
120655
- type DownloadDocumentByIdResponse = paths[typeof routeName$6k]['get']['responses'][307]['content']['application/json'];
120656
- type DownloadDocumentByIdProps = paths[typeof routeName$6k]['get']['parameters'];
120762
+ declare const routeName$6l = "/v1/api/claims/{claim_id}/documents/{document_id}";
120763
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$6l]['get']['parameters']['path'];
120764
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$6l]['get']['parameters']['query'];
120765
+ type DownloadDocumentByIdResponse = paths[typeof routeName$6l]['get']['responses'][307]['content']['application/json'];
120766
+ type DownloadDocumentByIdProps = paths[typeof routeName$6l]['get']['parameters'];
120657
120767
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
120658
120768
 
120659
- declare const routeName$6j = "/v1/api/claims/{claim_id}/documents/{document_id}";
120660
- type DeleteDocumentByIdPathParams = paths[typeof routeName$6j]['delete']['parameters']['path'];
120661
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$6j]['delete']['parameters']['query'];
120662
- type DeleteDocumentByIdResponse = paths[typeof routeName$6j]['delete']['responses'][200]['content']['application/json'];
120769
+ declare const routeName$6k = "/v1/api/claims/{claim_id}/documents/{document_id}";
120770
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$6k]['delete']['parameters']['path'];
120771
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$6k]['delete']['parameters']['query'];
120772
+ type DeleteDocumentByIdResponse = paths[typeof routeName$6k]['delete']['responses'][200]['content']['application/json'];
120663
120773
  interface DeleteDocumentByIdProps {
120664
120774
  params: {
120665
120775
  query: DeleteDocumentByIdQueryParams;
@@ -120668,10 +120778,10 @@ interface DeleteDocumentByIdProps {
120668
120778
  }
120669
120779
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
120670
120780
 
120671
- declare const routeName$6i = "/v1/api/claims/{claim_id}/documents/{document_id}";
120672
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6i]['patch']['parameters']['path'];
120673
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6i]['patch']['parameters']['query'];
120674
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6i]['patch']['responses'][200]['content']['application/json'];
120781
+ declare const routeName$6j = "/v1/api/claims/{claim_id}/documents/{document_id}";
120782
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6j]['patch']['parameters']['path'];
120783
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6j]['patch']['parameters']['query'];
120784
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6j]['patch']['responses'][200]['content']['application/json'];
120675
120785
  interface UpdateDocumentMetadataByIdProps {
120676
120786
  params: {
120677
120787
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -120680,17 +120790,17 @@ interface UpdateDocumentMetadataByIdProps {
120680
120790
  }
120681
120791
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
120682
120792
 
120683
- declare const routeName$6h = "/v1/api/claims/customer/token/{token}";
120684
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6h]['get']['parameters']['path'];
120685
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6h]['get']['parameters']['query'];
120686
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6h]['get']['responses'][200]['content']['application/json'];
120687
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6h]['get']['parameters'];
120793
+ declare const routeName$6i = "/v1/api/claims/customer/token/{token}";
120794
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6i]['get']['parameters']['path'];
120795
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6i]['get']['parameters']['query'];
120796
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
120797
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6i]['get']['parameters'];
120688
120798
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
120689
120799
 
120690
- declare const routeName$6g = "/v1/api/claims/customer/token/{token}";
120691
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6g]['patch']['parameters']['path'];
120692
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6g]['patch']['parameters']['query'];
120693
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6g]['patch']['responses'][200]['content']['application/json'];
120800
+ declare const routeName$6h = "/v1/api/claims/customer/token/{token}";
120801
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6h]['patch']['parameters']['path'];
120802
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6h]['patch']['parameters']['query'];
120803
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6h]['patch']['responses'][200]['content']['application/json'];
120694
120804
  interface UpdateClaimAsCustomerWithTokenProps {
120695
120805
  params: {
120696
120806
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -120699,10 +120809,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
120699
120809
  }
120700
120810
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
120701
120811
 
120702
- declare const routeName$6f = "/v1/api/claims/customer/token/{token}/entities";
120703
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6f]['post']['parameters']['path'];
120704
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
120705
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6f]['post']['responses'][201]['content']['application/json'];
120812
+ declare const routeName$6g = "/v1/api/claims/customer/token/{token}/entities";
120813
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
120814
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
120815
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
120706
120816
  interface CreateEntityAsCustomerWithTokenProps {
120707
120817
  params: {
120708
120818
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -120711,10 +120821,10 @@ interface CreateEntityAsCustomerWithTokenProps {
120711
120821
  }
120712
120822
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
120713
120823
 
120714
- declare const routeName$6e = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
120715
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6e]['delete']['parameters']['path'];
120716
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6e]['delete']['parameters']['query'];
120717
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6e]['delete']['responses'][200]['content']['application/json'];
120824
+ declare const routeName$6f = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
120825
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6f]['delete']['parameters']['path'];
120826
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6f]['delete']['parameters']['query'];
120827
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6f]['delete']['responses'][200]['content']['application/json'];
120718
120828
  interface DeleteEntityByIdAsCustomerWithTokenProps {
120719
120829
  params: {
120720
120830
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -120723,10 +120833,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
120723
120833
  }
120724
120834
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
120725
120835
 
120726
- declare const routeName$6d = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
120727
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6d]['patch']['parameters']['path'];
120728
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6d]['patch']['parameters']['query'];
120729
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6d]['patch']['responses'][200]['content']['application/json'];
120836
+ declare const routeName$6e = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
120837
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6e]['patch']['parameters']['path'];
120838
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6e]['patch']['parameters']['query'];
120839
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6e]['patch']['responses'][200]['content']['application/json'];
120730
120840
  interface UpdateEntityAsCustomerWithTokenProps {
120731
120841
  params: {
120732
120842
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -120735,10 +120845,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
120735
120845
  }
120736
120846
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
120737
120847
 
120738
- declare const routeName$6c = "/v1/api/claims/upload/{claim_doc_category}";
120739
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
120740
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
120741
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
120848
+ declare const routeName$6d = "/v1/api/claims/upload/{claim_doc_category}";
120849
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
120850
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
120851
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6d]['post']['responses'][200]['content']['application/json'];
120742
120852
  interface UploadClaimDocumentAsBrokerProps {
120743
120853
  params: {
120744
120854
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -120747,10 +120857,10 @@ interface UploadClaimDocumentAsBrokerProps {
120747
120857
  }
120748
120858
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
120749
120859
 
120750
- declare const routeName$6b = "/v1/api/claims/customer/upload/{claim_doc_category}";
120751
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6b]['post']['parameters']['path'];
120752
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
120753
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6b]['post']['responses'][200]['content']['application/json'];
120860
+ declare const routeName$6c = "/v1/api/claims/customer/upload/{claim_doc_category}";
120861
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
120862
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
120863
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
120754
120864
  interface CreateUploadLinkAsCustomerProps {
120755
120865
  params: {
120756
120866
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -120759,9 +120869,9 @@ interface CreateUploadLinkAsCustomerProps {
120759
120869
  }
120760
120870
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
120761
120871
 
120762
- declare const routeName$6a = "/v1/api/claims/generate/token";
120763
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6a]['post']['parameters']['query'];
120764
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6a]['post']['responses'][201]['content']['application/json'];
120872
+ declare const routeName$6b = "/v1/api/claims/generate/token";
120873
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
120874
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
120765
120875
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
120766
120876
  params: {
120767
120877
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -120769,17 +120879,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
120769
120879
  }
120770
120880
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
120771
120881
 
120772
- declare const routeName$69 = "/v1/api/claims/customer/token/{token}/events";
120773
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
120774
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
120775
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
120776
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$69]['get']['parameters'];
120882
+ declare const routeName$6a = "/v1/api/claims/customer/token/{token}/events";
120883
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
120884
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$6a]['get']['parameters']['query'];
120885
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
120886
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$6a]['get']['parameters'];
120777
120887
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
120778
120888
 
120779
- declare const routeName$68 = "/v1/api/claims/customer/token/{token}/documents";
120780
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$68]['post']['parameters']['path'];
120781
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$68]['post']['parameters']['query'];
120782
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$68]['post']['responses'][200]['content']['application/json'];
120889
+ declare const routeName$69 = "/v1/api/claims/customer/token/{token}/documents";
120890
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$69]['post']['parameters']['path'];
120891
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
120892
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$69]['post']['responses'][200]['content']['application/json'];
120783
120893
  interface CreateDocumentForClaimAsCustomerProps {
120784
120894
  params: {
120785
120895
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -120788,10 +120898,10 @@ interface CreateDocumentForClaimAsCustomerProps {
120788
120898
  }
120789
120899
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
120790
120900
 
120791
- declare const routeName$67 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
120792
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$67]['delete']['parameters']['path'];
120793
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['delete']['parameters']['query'];
120794
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$67]['delete']['responses'][200]['content']['application/json'];
120901
+ declare const routeName$68 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
120902
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$68]['delete']['parameters']['path'];
120903
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['delete']['parameters']['query'];
120904
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$68]['delete']['responses'][200]['content']['application/json'];
120795
120905
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
120796
120906
  params: {
120797
120907
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -120800,10 +120910,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
120800
120910
  }
120801
120911
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
120802
120912
 
120803
- declare const routeName$66 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
120804
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$66]['patch']['parameters']['path'];
120805
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$66]['patch']['parameters']['query'];
120806
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$66]['patch']['responses'][200]['content']['application/json'];
120913
+ declare const routeName$67 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
120914
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
120915
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['patch']['parameters']['query'];
120916
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
120807
120917
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
120808
120918
  params: {
120809
120919
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -120812,10 +120922,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
120812
120922
  }
120813
120923
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
120814
120924
 
120815
- declare const routeName$65 = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
120816
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
120817
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
120818
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$65]['post']['responses'][200]['content']['application/json'];
120925
+ declare const routeName$66 = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
120926
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
120927
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
120928
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$66]['post']['responses'][200]['content']['application/json'];
120819
120929
  interface CreateNoteOnEventAsCustomerProps {
120820
120930
  params: {
120821
120931
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -120824,10 +120934,10 @@ interface CreateNoteOnEventAsCustomerProps {
120824
120934
  }
120825
120935
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
120826
120936
 
120827
- declare const routeName$64 = "/v1/api/claims/{claim_id}/entities";
120828
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$64]['post']['parameters']['path'];
120829
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
120830
- type CreateEntityAsBrokerResponse = paths[typeof routeName$64]['post']['responses'][201]['content']['application/json'];
120937
+ declare const routeName$65 = "/v1/api/claims/{claim_id}/entities";
120938
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
120939
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
120940
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
120831
120941
  interface CreateEntityAsBrokerProps {
120832
120942
  params: {
120833
120943
  query: CreateEntityAsBrokerQueryParams;
@@ -120836,10 +120946,10 @@ interface CreateEntityAsBrokerProps {
120836
120946
  }
120837
120947
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
120838
120948
 
120839
- declare const routeName$63 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
120840
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$63]['delete']['parameters']['path'];
120841
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$63]['delete']['parameters']['query'];
120842
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$63]['delete']['responses'][200]['content']['application/json'];
120949
+ declare const routeName$64 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
120950
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
120951
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
120952
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
120843
120953
  interface DeleteEntityAsBrokerByIdProps {
120844
120954
  params: {
120845
120955
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -120848,10 +120958,10 @@ interface DeleteEntityAsBrokerByIdProps {
120848
120958
  }
120849
120959
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
120850
120960
 
120851
- declare const routeName$62 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
120852
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$62]['patch']['parameters']['path'];
120853
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$62]['patch']['parameters']['query'];
120854
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$62]['patch']['responses'][200]['content']['application/json'];
120961
+ declare const routeName$63 = "/v1/api/claims/{claim_id}/entities/{entity_id}";
120962
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$63]['patch']['parameters']['path'];
120963
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$63]['patch']['parameters']['query'];
120964
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$63]['patch']['responses'][200]['content']['application/json'];
120855
120965
  interface UpdateEntityAsBrokerByIdProps {
120856
120966
  params: {
120857
120967
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -120860,17 +120970,17 @@ interface UpdateEntityAsBrokerByIdProps {
120860
120970
  }
120861
120971
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
120862
120972
 
120863
- declare const routeName$61 = "/v1/api/claims/{claim_id}/events";
120864
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$61]['get']['parameters']['path'];
120865
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
120866
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
120867
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$61]['get']['parameters'];
120973
+ declare const routeName$62 = "/v1/api/claims/{claim_id}/events";
120974
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$62]['get']['parameters']['path'];
120975
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
120976
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
120977
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$62]['get']['parameters'];
120868
120978
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
120869
120979
 
120870
- declare const routeName$60 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
120871
- type SendClaimToKeypointPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
120872
- type SendClaimToKeypointQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
120873
- type SendClaimToKeypointResponse = paths[typeof routeName$60]['post']['responses'][201]['content']['application/json'];
120980
+ declare const routeName$61 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
120981
+ type SendClaimToKeypointPathParams = paths[typeof routeName$61]['post']['parameters']['path'];
120982
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
120983
+ type SendClaimToKeypointResponse = paths[typeof routeName$61]['post']['responses'][201]['content']['application/json'];
120874
120984
  interface SendClaimToKeypointProps {
120875
120985
  params: {
120876
120986
  query: SendClaimToKeypointQueryParams;
@@ -120879,10 +120989,10 @@ interface SendClaimToKeypointProps {
120879
120989
  }
120880
120990
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
120881
120991
 
120882
- declare const routeName$5$ = "/v1/api/claims/{claim_id}/customer/followup-page/email";
120883
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5$]['post']['parameters']['path'];
120884
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5$]['post']['parameters']['query'];
120885
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5$]['post']['responses'][200]['content']['application/json'];
120992
+ declare const routeName$60 = "/v1/api/claims/{claim_id}/customer/followup-page/email";
120993
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
120994
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
120995
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$60]['post']['responses'][200]['content']['application/json'];
120886
120996
  interface SendMailFollowupPageToCustomerProps {
120887
120997
  params: {
120888
120998
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -120891,21 +121001,21 @@ interface SendMailFollowupPageToCustomerProps {
120891
121001
  }
120892
121002
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
120893
121003
 
120894
- declare const routeName$5_ = "/v1/api/claims/categories/CAR";
120895
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
121004
+ declare const routeName$5$ = "/v1/api/claims/categories/CAR";
121005
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
120896
121006
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
120897
121007
 
120898
- declare const routeName$5Z = "/v1/api/claims/info/{claim_type}/{claim_category}";
120899
- type GetInfoForClaimPathParams = paths[typeof routeName$5Z]['get']['parameters']['path'];
120900
- type GetInfoForClaimQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
120901
- type GetInfoForClaimResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
120902
- type GetInfoForClaimProps = paths[typeof routeName$5Z]['get']['parameters'];
121008
+ declare const routeName$5_ = "/v1/api/claims/info/{claim_type}/{claim_category}";
121009
+ type GetInfoForClaimPathParams = paths[typeof routeName$5_]['get']['parameters']['path'];
121010
+ type GetInfoForClaimQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
121011
+ type GetInfoForClaimResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
121012
+ type GetInfoForClaimProps = paths[typeof routeName$5_]['get']['parameters'];
120903
121013
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
120904
121014
 
120905
- declare const routeName$5Y = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
120906
- type CreateNoteOnEventPathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
120907
- type CreateNoteOnEventQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
120908
- type CreateNoteOnEventResponse = paths[typeof routeName$5Y]['post']['responses'][201]['content']['application/json'];
121015
+ declare const routeName$5Z = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
121016
+ type CreateNoteOnEventPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
121017
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
121018
+ type CreateNoteOnEventResponse = paths[typeof routeName$5Z]['post']['responses'][201]['content']['application/json'];
120909
121019
  interface CreateNoteOnEventProps {
120910
121020
  params: {
120911
121021
  query: CreateNoteOnEventQueryParams;
@@ -120914,10 +121024,10 @@ interface CreateNoteOnEventProps {
120914
121024
  }
120915
121025
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
120916
121026
 
120917
- declare const routeName$5X = "/v1/api/claims/notes/{note_id}";
120918
- type DeleteNotePathParams = paths[typeof routeName$5X]['delete']['parameters']['path'];
120919
- type DeleteNoteQueryParams = paths[typeof routeName$5X]['delete']['parameters']['query'];
120920
- type DeleteNoteResponse = paths[typeof routeName$5X]['delete']['responses'][200]['content']['application/json'];
121027
+ declare const routeName$5Y = "/v1/api/claims/notes/{note_id}";
121028
+ type DeleteNotePathParams = paths[typeof routeName$5Y]['delete']['parameters']['path'];
121029
+ type DeleteNoteQueryParams = paths[typeof routeName$5Y]['delete']['parameters']['query'];
121030
+ type DeleteNoteResponse = paths[typeof routeName$5Y]['delete']['responses'][200]['content']['application/json'];
120921
121031
  interface DeleteNoteProps {
120922
121032
  params: {
120923
121033
  query: DeleteNoteQueryParams;
@@ -120926,10 +121036,10 @@ interface DeleteNoteProps {
120926
121036
  }
120927
121037
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
120928
121038
 
120929
- declare const routeName$5W = "/v1/api/claims/notes/{note_id}";
120930
- type UpdateNotePathParams = paths[typeof routeName$5W]['patch']['parameters']['path'];
120931
- type UpdateNoteQueryParams = paths[typeof routeName$5W]['patch']['parameters']['query'];
120932
- type UpdateNoteResponse = paths[typeof routeName$5W]['patch']['responses'][200]['content']['application/json'];
121039
+ declare const routeName$5X = "/v1/api/claims/notes/{note_id}";
121040
+ type UpdateNotePathParams = paths[typeof routeName$5X]['patch']['parameters']['path'];
121041
+ type UpdateNoteQueryParams = paths[typeof routeName$5X]['patch']['parameters']['query'];
121042
+ type UpdateNoteResponse = paths[typeof routeName$5X]['patch']['responses'][200]['content']['application/json'];
120933
121043
  interface UpdateNoteProps {
120934
121044
  params: {
120935
121045
  query: UpdateNoteQueryParams;
@@ -120938,17 +121048,17 @@ interface UpdateNoteProps {
120938
121048
  }
120939
121049
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
120940
121050
 
120941
- declare const routeName$5V = "/v1/api/claims/{claim_id}/report";
120942
- type ClaimReportByIdPathParams = paths[typeof routeName$5V]['get']['parameters']['path'];
120943
- type ClaimReportByIdQueryParams = paths[typeof routeName$5V]['get']['parameters']['query'];
120944
- type ClaimReportByIdResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
120945
- type ClaimReportByIdProps = paths[typeof routeName$5V]['get']['parameters'];
121051
+ declare const routeName$5W = "/v1/api/claims/{claim_id}/report";
121052
+ type ClaimReportByIdPathParams = paths[typeof routeName$5W]['get']['parameters']['path'];
121053
+ type ClaimReportByIdQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
121054
+ type ClaimReportByIdResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
121055
+ type ClaimReportByIdProps = paths[typeof routeName$5W]['get']['parameters'];
120946
121056
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
120947
121057
 
120948
- declare const routeName$5U = "/v1/api/claims/{claim_id}/report/email";
120949
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$5U]['post']['parameters']['path'];
120950
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5U]['post']['parameters']['query'];
120951
- type SendMailClaimReportByIdResponse = paths[typeof routeName$5U]['post']['responses'][200]['content']['application/json'];
121058
+ declare const routeName$5V = "/v1/api/claims/{claim_id}/report/email";
121059
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$5V]['post']['parameters']['path'];
121060
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5V]['post']['parameters']['query'];
121061
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$5V]['post']['responses'][200]['content']['application/json'];
120952
121062
  interface SendMailClaimReportByIdProps {
120953
121063
  params: {
120954
121064
  query: SendMailClaimReportByIdQueryParams;
@@ -120957,16 +121067,16 @@ interface SendMailClaimReportByIdProps {
120957
121067
  }
120958
121068
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
120959
121069
 
120960
- declare const routeName$5T = "/v1/api/brokers/{broker_id}/connections";
120961
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
120962
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
120963
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5T]['get']['parameters'];
121070
+ declare const routeName$5U = "/v1/api/brokers/{broker_id}/connections";
121071
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5U]['get']['parameters']['path'];
121072
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
121073
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5U]['get']['parameters'];
120964
121074
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
120965
121075
 
120966
- declare const routeName$5S = "/v1/api/brokers/{broker_id}/connections/{key}";
120967
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5S]['post']['requestBody']['content']['application/json'];
120968
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
120969
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5S]['post']['responses'][201]['content']['application/json'];
121076
+ declare const routeName$5T = "/v1/api/brokers/{broker_id}/connections/{key}";
121077
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5T]['post']['requestBody']['content']['application/json'];
121078
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
121079
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5T]['post']['responses'][201]['content']['application/json'];
120970
121080
  interface CreateBrokerConnectionsByIdProps {
120971
121081
  body: CreateBrokerConnectionsByIdBody;
120972
121082
  params: {
@@ -120975,9 +121085,9 @@ interface CreateBrokerConnectionsByIdProps {
120975
121085
  }
120976
121086
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
120977
121087
 
120978
- declare const routeName$5R = "/v1/api/brokers/{broker_id}/connections/{key}";
120979
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5R]['delete']['parameters']['path'];
120980
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5R]['delete']['responses'][200]['content']['application/json'];
121088
+ declare const routeName$5S = "/v1/api/brokers/{broker_id}/connections/{key}";
121089
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5S]['delete']['parameters']['path'];
121090
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5S]['delete']['responses'][200]['content']['application/json'];
120981
121091
  interface DeleteBrokerConnectionByKeyProps {
120982
121092
  params: {
120983
121093
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -120985,10 +121095,10 @@ interface DeleteBrokerConnectionByKeyProps {
120985
121095
  }
120986
121096
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
120987
121097
 
120988
- declare const routeName$5Q = "/v1/api/brokers/{broker_id}/connections/{key}";
120989
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5Q]['patch']['requestBody']['content']['application/json'];
120990
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5Q]['patch']['parameters']['path'];
120991
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5Q]['patch']['responses'][200]['content']['application/json'];
121098
+ declare const routeName$5R = "/v1/api/brokers/{broker_id}/connections/{key}";
121099
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5R]['patch']['requestBody']['content']['application/json'];
121100
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5R]['patch']['parameters']['path'];
121101
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5R]['patch']['responses'][200]['content']['application/json'];
120992
121102
  interface UpdateBrokerConnectionByKeyProps {
120993
121103
  body: UpdateBrokerConnectionByKeyBody;
120994
121104
  params: {
@@ -120997,10 +121107,10 @@ interface UpdateBrokerConnectionByKeyProps {
120997
121107
  }
120998
121108
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
120999
121109
 
121000
- declare const routeName$5P = "/v1/api/distributions/{distribution_id}/connections/{key}";
121001
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$5P]['post']['requestBody']['content']['application/json'];
121002
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5P]['post']['parameters']['path'];
121003
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5P]['post']['responses'][201]['content']['application/json'];
121110
+ declare const routeName$5Q = "/v1/api/distributions/{distribution_id}/connections/{key}";
121111
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$5Q]['post']['requestBody']['content']['application/json'];
121112
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
121113
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5Q]['post']['responses'][201]['content']['application/json'];
121004
121114
  interface CreateDistributionConnectionByIdProps {
121005
121115
  body: CreateDistributionConnectionByIdBody;
121006
121116
  params: {
@@ -121009,9 +121119,9 @@ interface CreateDistributionConnectionByIdProps {
121009
121119
  }
121010
121120
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
121011
121121
 
121012
- declare const routeName$5O = "/v1/api/distributions/{distribution_id}/connections/{key}";
121013
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5O]['delete']['parameters']['path'];
121014
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5O]['delete']['responses'][200]['content']['application/json'];
121122
+ declare const routeName$5P = "/v1/api/distributions/{distribution_id}/connections/{key}";
121123
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5P]['delete']['parameters']['path'];
121124
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5P]['delete']['responses'][200]['content']['application/json'];
121015
121125
  interface DeleteDistributionConnectionByKeyProps {
121016
121126
  params: {
121017
121127
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -121019,10 +121129,10 @@ interface DeleteDistributionConnectionByKeyProps {
121019
121129
  }
121020
121130
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
121021
121131
 
121022
- declare const routeName$5N = "/v1/api/distributions/{distribution_id}/connections/{key}";
121023
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5N]['patch']['requestBody']['content']['application/json'];
121024
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5N]['patch']['parameters']['path'];
121025
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5N]['patch']['responses'][200]['content']['application/json'];
121132
+ declare const routeName$5O = "/v1/api/distributions/{distribution_id}/connections/{key}";
121133
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5O]['patch']['requestBody']['content']['application/json'];
121134
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5O]['patch']['parameters']['path'];
121135
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5O]['patch']['responses'][200]['content']['application/json'];
121026
121136
  interface UpdateDistributionConnectionByKeyProps {
121027
121137
  body: UpdateDistributionConnectionByKeyBody;
121028
121138
  params: {
@@ -121031,41 +121141,41 @@ interface UpdateDistributionConnectionByKeyProps {
121031
121141
  }
121032
121142
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
121033
121143
 
121034
- declare const routeName$5M = "/v1/api/distributions/{distribution_id}/connections";
121035
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5M]['get']['parameters']['path'];
121036
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
121037
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
121038
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5M]['get']['parameters'];
121144
+ declare const routeName$5N = "/v1/api/distributions/{distribution_id}/connections";
121145
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
121146
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
121147
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
121148
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5N]['get']['parameters'];
121039
121149
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
121040
121150
 
121041
- declare const routeName$5L = "/v1/api/connections/anva/parties";
121042
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
121043
- type GetAnvaPartiesResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
121044
- type GetAnvaPartiesProps = paths[typeof routeName$5L]['get']['parameters'];
121151
+ declare const routeName$5M = "/v1/api/connections/anva/parties";
121152
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
121153
+ type GetAnvaPartiesResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
121154
+ type GetAnvaPartiesProps = paths[typeof routeName$5M]['get']['parameters'];
121045
121155
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
121046
121156
 
121047
- declare const routeName$5K = "/v1/api/connections/anva/employees";
121048
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
121049
- type GetAnvaEmployeesResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
121050
- type GetAnvaEmployeesProps = paths[typeof routeName$5K]['get']['parameters'];
121157
+ declare const routeName$5L = "/v1/api/connections/anva/employees";
121158
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
121159
+ type GetAnvaEmployeesResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
121160
+ type GetAnvaEmployeesProps = paths[typeof routeName$5L]['get']['parameters'];
121051
121161
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
121052
121162
 
121053
- declare const routeName$5J = "/v1/api/connections/anva/agents";
121054
- type GetAnvaAgentsQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
121055
- type GetAnvaAgentsResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
121056
- type GetAnvaAgentsProps = paths[typeof routeName$5J]['get']['parameters'];
121163
+ declare const routeName$5K = "/v1/api/connections/anva/agents";
121164
+ type GetAnvaAgentsQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
121165
+ type GetAnvaAgentsResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
121166
+ type GetAnvaAgentsProps = paths[typeof routeName$5K]['get']['parameters'];
121057
121167
  declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
121058
121168
 
121059
- declare const routeName$5I = "/v1/api/connections/anva/products";
121060
- type GetAnvaProductsQueryParams = paths[typeof routeName$5I]['get']['parameters']['query'];
121061
- type GetAnvaProductsResponse = paths[typeof routeName$5I]['get']['responses'][200]['content']['application/json'];
121062
- type GetAnvaProductsProps = paths[typeof routeName$5I]['get']['parameters'];
121169
+ declare const routeName$5J = "/v1/api/connections/anva/products";
121170
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
121171
+ type GetAnvaProductsResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
121172
+ type GetAnvaProductsProps = paths[typeof routeName$5J]['get']['parameters'];
121063
121173
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
121064
121174
 
121065
- declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_id}/imports";
121066
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5H]['post']['parameters']['path'];
121067
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5H]['post']['parameters']['query'];
121068
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5H]['post']['responses'][201]['content']['application/json'];
121175
+ declare const routeName$5I = "/v1/api/connections/anva/parties/{anva_id}/imports";
121176
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5I]['post']['parameters']['path'];
121177
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5I]['post']['parameters']['query'];
121178
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5I]['post']['responses'][201]['content']['application/json'];
121069
121179
  interface ImportAnvaPartyInWegroupProps {
121070
121180
  params: {
121071
121181
  query: ImportAnvaPartyInWegroupQueryParams;
@@ -121074,31 +121184,31 @@ interface ImportAnvaPartyInWegroupProps {
121074
121184
  }
121075
121185
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
121076
121186
 
121077
- declare const routeName$5G = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
121078
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
121079
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
121080
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][307]['content']['application/json'];
121081
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
121187
+ declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
121188
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
121189
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
121190
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5H]['get']['responses'][307]['content']['application/json'];
121191
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5H]['get']['parameters'];
121082
121192
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
121083
121193
 
121084
- declare const routeName$5F = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
121085
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5F]['get']['parameters']['path'];
121086
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
121087
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][307]['content']['application/json'];
121088
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
121194
+ declare const routeName$5G = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
121195
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
121196
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
121197
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][307]['content']['application/json'];
121198
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
121089
121199
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
121090
121200
 
121091
- declare const routeName$5E = "/v1/api/connections/anva/documents/import";
121092
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
121093
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5E]['get']['responses'][307]['content']['application/json'];
121094
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5E]['get']['parameters'];
121201
+ declare const routeName$5F = "/v1/api/connections/anva/documents/import";
121202
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
121203
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][307]['content']['application/json'];
121204
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
121095
121205
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
121096
121206
 
121097
- declare const routeName$5D = "/v1/api/connections/anva/parties/{anva_party_id}/task";
121098
- type CreateAnvaTaskBody = paths[typeof routeName$5D]['post']['requestBody']['content']['application/json'];
121099
- type CreateAnvaTaskPathParams = paths[typeof routeName$5D]['post']['parameters']['path'];
121100
- type CreateAnvaTaskQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
121101
- type CreateAnvaTaskResponse = paths[typeof routeName$5D]['post']['responses'][201]['content']['application/json'];
121207
+ declare const routeName$5E = "/v1/api/connections/anva/parties/{anva_party_id}/task";
121208
+ type CreateAnvaTaskBody = paths[typeof routeName$5E]['post']['requestBody']['content']['application/json'];
121209
+ type CreateAnvaTaskPathParams = paths[typeof routeName$5E]['post']['parameters']['path'];
121210
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$5E]['post']['parameters']['query'];
121211
+ type CreateAnvaTaskResponse = paths[typeof routeName$5E]['post']['responses'][201]['content']['application/json'];
121102
121212
  interface CreateAnvaTaskProps {
121103
121213
  body: CreateAnvaTaskBody;
121104
121214
  params: {
@@ -121108,9 +121218,9 @@ interface CreateAnvaTaskProps {
121108
121218
  }
121109
121219
  declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
121110
121220
 
121111
- declare const routeName$5C = "/v1/api/connections/anva/validate";
121112
- type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
121113
- type ValidateAnvaConnectionResponse = paths[typeof routeName$5C]['post']['responses'][200]['content']['application/json'];
121221
+ declare const routeName$5D = "/v1/api/connections/anva/validate";
121222
+ type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
121223
+ type ValidateAnvaConnectionResponse = paths[typeof routeName$5D]['post']['responses'][200]['content']['application/json'];
121114
121224
  interface ValidateAnvaConnectionProps {
121115
121225
  params: {
121116
121226
  query: ValidateAnvaConnectionQueryParams;
@@ -121118,9 +121228,9 @@ interface ValidateAnvaConnectionProps {
121118
121228
  }
121119
121229
  declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
121120
121230
 
121121
- declare const routeName$5B = "/v1/api/connections/anva_dwh/validate";
121122
- type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5B]['post']['parameters']['query'];
121123
- type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5B]['post']['responses'][200]['content']['application/json'];
121231
+ declare const routeName$5C = "/v1/api/connections/anva_dwh/validate";
121232
+ type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
121233
+ type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5C]['post']['responses'][200]['content']['application/json'];
121124
121234
  interface ValidateAnvaDwhConnectionProps {
121125
121235
  params: {
121126
121236
  query: ValidateAnvaDwhConnectionQueryParams;
@@ -121128,22 +121238,22 @@ interface ValidateAnvaDwhConnectionProps {
121128
121238
  }
121129
121239
  declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
121130
121240
 
121131
- declare const routeName$5A = "/v1/api/connections/dias/parties";
121132
- type GetDiasPartiesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
121133
- type GetDiasPartiesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
121134
- type GetDiasPartiesProps = paths[typeof routeName$5A]['get']['parameters'];
121241
+ declare const routeName$5B = "/v1/api/connections/dias/parties";
121242
+ type GetDiasPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
121243
+ type GetDiasPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
121244
+ type GetDiasPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
121135
121245
  declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
121136
121246
 
121137
- declare const routeName$5z = "/v1/api/connections/dias/employees";
121138
- type GetDiasEmployeesQueryParams = paths[typeof routeName$5z]['get']['parameters']['query'];
121139
- type GetDiasEmployeesResponse = paths[typeof routeName$5z]['get']['responses'][200]['content']['application/json'];
121140
- type GetDiasEmployeesProps = paths[typeof routeName$5z]['get']['parameters'];
121247
+ declare const routeName$5A = "/v1/api/connections/dias/employees";
121248
+ type GetDiasEmployeesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
121249
+ type GetDiasEmployeesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
121250
+ type GetDiasEmployeesProps = paths[typeof routeName$5A]['get']['parameters'];
121141
121251
  declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
121142
121252
 
121143
- declare const routeName$5y = "/v1/api/connections/dias/parties/{dias_id}/imports";
121144
- type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
121145
- type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
121146
- type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
121253
+ declare const routeName$5z = "/v1/api/connections/dias/parties/{dias_id}/imports";
121254
+ type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
121255
+ type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
121256
+ type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
121147
121257
  interface ImportDiasPartyInWegroupProps {
121148
121258
  params: {
121149
121259
  query: ImportDiasPartyInWegroupQueryParams;
@@ -121152,37 +121262,37 @@ interface ImportDiasPartyInWegroupProps {
121152
121262
  }
121153
121263
  declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
121154
121264
 
121155
- declare const routeName$5x = "/v1/api/connections/dias/products";
121156
- type GetDiasProductsQueryParams = paths[typeof routeName$5x]['get']['parameters']['query'];
121157
- type GetDiasProductsResponse = paths[typeof routeName$5x]['get']['responses'][200]['content']['application/json'];
121158
- type GetDiasProductsProps = paths[typeof routeName$5x]['get']['parameters'];
121265
+ declare const routeName$5y = "/v1/api/connections/dias/products";
121266
+ type GetDiasProductsQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
121267
+ type GetDiasProductsResponse = paths[typeof routeName$5y]['get']['responses'][200]['content']['application/json'];
121268
+ type GetDiasProductsProps = paths[typeof routeName$5y]['get']['parameters'];
121159
121269
  declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
121160
121270
 
121161
- declare const routeName$5w = "/v1/api/connections/dias/afdbranches";
121162
- type GetDiasAfdbranchesResponse = paths[typeof routeName$5w]['get']['responses'][200]['content']['application/json'];
121271
+ declare const routeName$5x = "/v1/api/connections/dias/afdbranches";
121272
+ type GetDiasAfdbranchesResponse = paths[typeof routeName$5x]['get']['responses'][200]['content']['application/json'];
121163
121273
  declare const getDiasAfdbranches: (wgApiClient: ClientType) => Promise<GetDiasAfdbranchesResponse>;
121164
121274
 
121165
- declare const routeName$5v = "/v1/api/connections/fasterforward/employees";
121166
- type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
121167
- type GetFasterforwardEmployeesResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
121168
- type GetFasterforwardEmployeesProps = paths[typeof routeName$5v]['get']['parameters'];
121275
+ declare const routeName$5w = "/v1/api/connections/fasterforward/employees";
121276
+ type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
121277
+ type GetFasterforwardEmployeesResponse = paths[typeof routeName$5w]['get']['responses'][200]['content']['application/json'];
121278
+ type GetFasterforwardEmployeesProps = paths[typeof routeName$5w]['get']['parameters'];
121169
121279
  declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
121170
121280
 
121171
- declare const routeName$5u = "/v1/api/connections/assu/employees";
121172
- type GetAssuEmployeesQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
121173
- type GetAssuEmployeesResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
121174
- type GetAssuEmployeesProps = paths[typeof routeName$5u]['get']['parameters'];
121281
+ declare const routeName$5v = "/v1/api/connections/assu/employees";
121282
+ type GetAssuEmployeesQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
121283
+ type GetAssuEmployeesResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
121284
+ type GetAssuEmployeesProps = paths[typeof routeName$5v]['get']['parameters'];
121175
121285
  declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
121176
121286
 
121177
- declare const routeName$5t = "/v1/api/connections/fasterforward/teams";
121178
- type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5t]['get']['parameters']['query'];
121179
- type GetFasterforwardTeamsResponse = paths[typeof routeName$5t]['get']['responses'][200]['content']['application/json'];
121180
- type GetFasterforwardTeamsProps = paths[typeof routeName$5t]['get']['parameters'];
121287
+ declare const routeName$5u = "/v1/api/connections/fasterforward/teams";
121288
+ type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
121289
+ type GetFasterforwardTeamsResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
121290
+ type GetFasterforwardTeamsProps = paths[typeof routeName$5u]['get']['parameters'];
121181
121291
  declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
121182
121292
 
121183
- declare const routeName$5s = "/v1/api/connections/fasterforward/validate";
121184
- type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
121185
- type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5s]['post']['responses'][200]['content']['application/json'];
121293
+ declare const routeName$5t = "/v1/api/connections/fasterforward/validate";
121294
+ type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
121295
+ type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
121186
121296
  interface ValidateFasterforwardConnectionProps {
121187
121297
  params: {
121188
121298
  query: ValidateFasterforwardConnectionQueryParams;
@@ -121190,42 +121300,42 @@ interface ValidateFasterforwardConnectionProps {
121190
121300
  }
121191
121301
  declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
121192
121302
 
121193
- declare const routeName$5r = "/v1/api/connections/outlook/mails";
121194
- type GetOutlookMailsQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
121195
- type GetOutlookMailsResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
121196
- type GetOutlookMailsProps = paths[typeof routeName$5r]['get']['parameters'];
121303
+ declare const routeName$5s = "/v1/api/connections/outlook/mails";
121304
+ type GetOutlookMailsQueryParams = paths[typeof routeName$5s]['get']['parameters']['query'];
121305
+ type GetOutlookMailsResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
121306
+ type GetOutlookMailsProps = paths[typeof routeName$5s]['get']['parameters'];
121197
121307
  declare const getOutlookMails: (props: GetOutlookMailsProps, wgApiClient: ClientType) => Promise<GetOutlookMailsResponse>;
121198
121308
 
121199
- declare const routeName$5q = "/v1/api/connections/outlook/mails/{id}";
121200
- type GetOutlookMailByIdPathParams = paths[typeof routeName$5q]['get']['parameters']['path'];
121201
- type GetOutlookMailByIdQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
121202
- type GetOutlookMailByIdResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
121203
- type GetOutlookMailByIdProps = paths[typeof routeName$5q]['get']['parameters'];
121309
+ declare const routeName$5r = "/v1/api/connections/outlook/mails/{id}";
121310
+ type GetOutlookMailByIdPathParams = paths[typeof routeName$5r]['get']['parameters']['path'];
121311
+ type GetOutlookMailByIdQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
121312
+ type GetOutlookMailByIdResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
121313
+ type GetOutlookMailByIdProps = paths[typeof routeName$5r]['get']['parameters'];
121204
121314
  declare const getOutlookMailById: (props: GetOutlookMailByIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByIdResponse>;
121205
121315
 
121206
- declare const routeName$5p = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
121207
- type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5p]['get']['parameters']['path'];
121208
- type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
121209
- type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
121210
- type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5p]['get']['parameters'];
121316
+ declare const routeName$5q = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
121317
+ type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5q]['get']['parameters']['path'];
121318
+ type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
121319
+ type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
121320
+ type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5q]['get']['parameters'];
121211
121321
  declare const getOutlookMailByOutlookMessageId: (props: GetOutlookMailByOutlookMessageIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByOutlookMessageIdResponse>;
121212
121322
 
121213
- declare const routeName$5o = "/v1/api/connections/outlook/mailfolders";
121214
- type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
121215
- type GetOutlookMailfoldersResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
121216
- type GetOutlookMailfoldersProps = paths[typeof routeName$5o]['get']['parameters'];
121323
+ declare const routeName$5p = "/v1/api/connections/outlook/mailfolders";
121324
+ type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
121325
+ type GetOutlookMailfoldersResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
121326
+ type GetOutlookMailfoldersProps = paths[typeof routeName$5p]['get']['parameters'];
121217
121327
  declare const getOutlookMailfolders: (props: GetOutlookMailfoldersProps, wgApiClient: ClientType) => Promise<GetOutlookMailfoldersResponse>;
121218
121328
 
121219
- declare const routeName$5n = "/v1/api/connections/outlook";
121220
- type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5n]['get']['parameters']['query'];
121221
- type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5n]['get']['responses'][200]['content']['application/json'];
121222
- type GetOutlookConnectionDetailsProps = paths[typeof routeName$5n]['get']['parameters'];
121329
+ declare const routeName$5o = "/v1/api/connections/outlook";
121330
+ type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
121331
+ type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
121332
+ type GetOutlookConnectionDetailsProps = paths[typeof routeName$5o]['get']['parameters'];
121223
121333
  declare const getOutlookConnectionDetails: (props: GetOutlookConnectionDetailsProps, wgApiClient: ClientType) => Promise<GetOutlookConnectionDetailsResponse>;
121224
121334
 
121225
- declare const routeName$5m = "/v1/api/connections/outlook/sync/activate";
121226
- type ActivateOutlookConnectionSyncBody = paths[typeof routeName$5m]['post']['requestBody']['content']['application/json'];
121227
- type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5m]['post']['parameters']['query'];
121228
- type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$5m]['post']['responses'][200]['content']['application/json'];
121335
+ declare const routeName$5n = "/v1/api/connections/outlook/sync/activate";
121336
+ type ActivateOutlookConnectionSyncBody = paths[typeof routeName$5n]['post']['requestBody']['content']['application/json'];
121337
+ type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5n]['post']['parameters']['query'];
121338
+ type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$5n]['post']['responses'][200]['content']['application/json'];
121229
121339
  interface ActivateOutlookConnectionSyncProps {
121230
121340
  body: ActivateOutlookConnectionSyncBody;
121231
121341
  params: {
@@ -121234,10 +121344,10 @@ interface ActivateOutlookConnectionSyncProps {
121234
121344
  }
121235
121345
  declare const activateOutlookConnectionSync: (props: ActivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<ActivateOutlookConnectionSyncResponse>;
121236
121346
 
121237
- declare const routeName$5l = "/v1/api/connections/outlook/sync/deactivate";
121238
- type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$5l]['post']['requestBody']['content']['application/json'];
121239
- type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5l]['post']['parameters']['query'];
121240
- type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$5l]['post']['responses'][200]['content']['application/json'];
121347
+ declare const routeName$5m = "/v1/api/connections/outlook/sync/deactivate";
121348
+ type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$5m]['post']['requestBody']['content']['application/json'];
121349
+ type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$5m]['post']['parameters']['query'];
121350
+ type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$5m]['post']['responses'][200]['content']['application/json'];
121241
121351
  interface DeactivateOutlookConnectionSyncProps {
121242
121352
  body: DeactivateOutlookConnectionSyncBody;
121243
121353
  params: {
@@ -121246,9 +121356,9 @@ interface DeactivateOutlookConnectionSyncProps {
121246
121356
  }
121247
121357
  declare const deactivateOutlookConnectionSync: (props: DeactivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<DeactivateOutlookConnectionSyncResponse>;
121248
121358
 
121249
- declare const routeName$5k = "/v1/api/connections/outlook/sync";
121250
- type OutlookConnectionSyncQueryParams = paths[typeof routeName$5k]['post']['parameters']['query'];
121251
- type OutlookConnectionSyncResponse = paths[typeof routeName$5k]['post']['responses'][200]['content']['application/json'];
121359
+ declare const routeName$5l = "/v1/api/connections/outlook/sync";
121360
+ type OutlookConnectionSyncQueryParams = paths[typeof routeName$5l]['post']['parameters']['query'];
121361
+ type OutlookConnectionSyncResponse = paths[typeof routeName$5l]['post']['responses'][200]['content']['application/json'];
121252
121362
  interface OutlookConnectionSyncProps {
121253
121363
  params: {
121254
121364
  query: OutlookConnectionSyncQueryParams;
@@ -121256,16 +121366,16 @@ interface OutlookConnectionSyncProps {
121256
121366
  }
121257
121367
  declare const outlookConnectionSync: (props: OutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<OutlookConnectionSyncResponse>;
121258
121368
 
121259
- declare const routeName$5j = "/v1/api/integrations/anva/parties";
121260
- type DeprecatedGetAnvaPartiesQueryParams = paths[typeof routeName$5j]['get']['parameters']['query'];
121261
- type DeprecatedGetAnvaPartiesResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
121262
- type DeprecatedGetAnvaPartiesProps = paths[typeof routeName$5j]['get']['parameters'];
121369
+ declare const routeName$5k = "/v1/api/integrations/anva/parties";
121370
+ type DeprecatedGetAnvaPartiesQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
121371
+ type DeprecatedGetAnvaPartiesResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
121372
+ type DeprecatedGetAnvaPartiesProps = paths[typeof routeName$5k]['get']['parameters'];
121263
121373
  declare const deprecatedGetAnvaParties: (props: DeprecatedGetAnvaPartiesProps, wgApiClient: ClientType) => Promise<DeprecatedGetAnvaPartiesResponse>;
121264
121374
 
121265
- declare const routeName$5i = "/v1/api/integrations/anva/parties/{anva_id}/imports";
121266
- type DeprecatedImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5i]['post']['parameters']['path'];
121267
- type DeprecatedImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5i]['post']['parameters']['query'];
121268
- type DeprecatedImportAnvaPartyInWegroupResponse = paths[typeof routeName$5i]['post']['responses'][201]['content']['application/json'];
121375
+ declare const routeName$5j = "/v1/api/integrations/anva/parties/{anva_id}/imports";
121376
+ type DeprecatedImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5j]['post']['parameters']['path'];
121377
+ type DeprecatedImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5j]['post']['parameters']['query'];
121378
+ type DeprecatedImportAnvaPartyInWegroupResponse = paths[typeof routeName$5j]['post']['responses'][201]['content']['application/json'];
121269
121379
  interface DeprecatedImportAnvaPartyInWegroupProps {
121270
121380
  params: {
121271
121381
  query: DeprecatedImportAnvaPartyInWegroupQueryParams;
@@ -121274,9 +121384,9 @@ interface DeprecatedImportAnvaPartyInWegroupProps {
121274
121384
  }
121275
121385
  declare const deprecatedImportAnvaPartyInWegroup: (props: DeprecatedImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<DeprecatedImportAnvaPartyInWegroupResponse>;
121276
121386
 
121277
- declare const routeName$5h = "/v1/api/integrations/anva/validate";
121278
- type DeprecatedValidateAnvaConnectionQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
121279
- type DeprecatedValidateAnvaConnectionResponse = paths[typeof routeName$5h]['post']['responses'][200]['content']['application/json'];
121387
+ declare const routeName$5i = "/v1/api/integrations/anva/validate";
121388
+ type DeprecatedValidateAnvaConnectionQueryParams = paths[typeof routeName$5i]['post']['parameters']['query'];
121389
+ type DeprecatedValidateAnvaConnectionResponse = paths[typeof routeName$5i]['post']['responses'][200]['content']['application/json'];
121280
121390
  interface DeprecatedValidateAnvaConnectionProps {
121281
121391
  params: {
121282
121392
  query: DeprecatedValidateAnvaConnectionQueryParams;
@@ -121284,11 +121394,11 @@ interface DeprecatedValidateAnvaConnectionProps {
121284
121394
  }
121285
121395
  declare const deprecatedValidateAnvaConnection: (props: DeprecatedValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<DeprecatedValidateAnvaConnectionResponse>;
121286
121396
 
121287
- declare const routeName$5g = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
121288
- type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$5g]['post']['requestBody']['content']['application/json'];
121289
- type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$5g]['post']['parameters']['path'];
121290
- type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$5g]['post']['parameters']['query'];
121291
- type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$5g]['post']['responses'][200]['content']['application/json'];
121397
+ declare const routeName$5h = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
121398
+ type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$5h]['post']['requestBody']['content']['application/json'];
121399
+ type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$5h]['post']['parameters']['path'];
121400
+ type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
121401
+ type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$5h]['post']['responses'][200]['content']['application/json'];
121292
121402
  interface GenerateQuestionsToPrefillByCarProps {
121293
121403
  body: GenerateQuestionsToPrefillByCarBody;
121294
121404
  params: {
@@ -121298,11 +121408,11 @@ interface GenerateQuestionsToPrefillByCarProps {
121298
121408
  }
121299
121409
  declare const generateQuestionsToPrefillByCar: (props: GenerateQuestionsToPrefillByCarProps, wgApiClient: ClientType) => Promise<GenerateQuestionsToPrefillByCarResponse>;
121300
121410
 
121301
- declare const routeName$5f = "/v1/api/flows/{flow_id}/conversations";
121302
- type CreateConversationBody = paths[typeof routeName$5f]['post']['requestBody']['content']['application/json'];
121303
- type CreateConversationPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
121304
- type CreateConversationQueryParams = paths[typeof routeName$5f]['post']['parameters']['query'];
121305
- type CreateConversationResponse = paths[typeof routeName$5f]['post']['responses'][201]['content']['application/json'];
121411
+ declare const routeName$5g = "/v1/api/flows/{flow_id}/conversations";
121412
+ type CreateConversationBody = paths[typeof routeName$5g]['post']['requestBody']['content']['application/json'];
121413
+ type CreateConversationPathParams = paths[typeof routeName$5g]['post']['parameters']['path'];
121414
+ type CreateConversationQueryParams = paths[typeof routeName$5g]['post']['parameters']['query'];
121415
+ type CreateConversationResponse = paths[typeof routeName$5g]['post']['responses'][201]['content']['application/json'];
121306
121416
  interface CreateConversationProps {
121307
121417
  body: CreateConversationBody;
121308
121418
  params: {
@@ -121312,11 +121422,11 @@ interface CreateConversationProps {
121312
121422
  }
121313
121423
  declare const createConversation: (props: CreateConversationProps, wgApiClient: ClientType) => Promise<CreateConversationResponse>;
121314
121424
 
121315
- declare const routeName$5e = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
121316
- type AnswerAFlowSessionBody = paths[typeof routeName$5e]['post']['requestBody']['content']['application/json'];
121317
- type AnswerAFlowSessionPathParams = paths[typeof routeName$5e]['post']['parameters']['path'];
121318
- type AnswerAFlowSessionQueryParams = paths[typeof routeName$5e]['post']['parameters']['query'];
121319
- type AnswerAFlowSessionResponse = paths[typeof routeName$5e]['post']['responses'][200]['content']['application/json'];
121425
+ declare const routeName$5f = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
121426
+ type AnswerAFlowSessionBody = paths[typeof routeName$5f]['post']['requestBody']['content']['application/json'];
121427
+ type AnswerAFlowSessionPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
121428
+ type AnswerAFlowSessionQueryParams = paths[typeof routeName$5f]['post']['parameters']['query'];
121429
+ type AnswerAFlowSessionResponse = paths[typeof routeName$5f]['post']['responses'][200]['content']['application/json'];
121320
121430
  interface AnswerAFlowSessionProps {
121321
121431
  body: AnswerAFlowSessionBody;
121322
121432
  params: {
@@ -121326,28 +121436,28 @@ interface AnswerAFlowSessionProps {
121326
121436
  }
121327
121437
  declare const answerAFlowSession: (props: AnswerAFlowSessionProps, wgApiClient: ClientType) => Promise<AnswerAFlowSessionResponse>;
121328
121438
 
121329
- declare const routeName$5d = "/v1/api/conversations";
121330
- type GetAllConversationsQueryParams = paths[typeof routeName$5d]['get']['parameters']['query'];
121331
- type GetAllConversationsResponse = paths[typeof routeName$5d]['get']['responses'][200]['content']['application/json'];
121332
- type GetAllConversationsProps = paths[typeof routeName$5d]['get']['parameters'];
121439
+ declare const routeName$5e = "/v1/api/conversations";
121440
+ type GetAllConversationsQueryParams = paths[typeof routeName$5e]['get']['parameters']['query'];
121441
+ type GetAllConversationsResponse = paths[typeof routeName$5e]['get']['responses'][200]['content']['application/json'];
121442
+ type GetAllConversationsProps = paths[typeof routeName$5e]['get']['parameters'];
121333
121443
  declare const getAllConversations: (props: GetAllConversationsProps, wgApiClient: ClientType) => Promise<GetAllConversationsResponse>;
121334
121444
 
121335
- declare const routeName$5c = "/v1/api/conversations-filters/origin";
121336
- type GetConversationsOriginFilterQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
121337
- type GetConversationsOriginFilterResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
121338
- type GetConversationsOriginFilterProps = paths[typeof routeName$5c]['get']['parameters'];
121445
+ declare const routeName$5d = "/v1/api/conversations-filters/origin";
121446
+ type GetConversationsOriginFilterQueryParams = paths[typeof routeName$5d]['get']['parameters']['query'];
121447
+ type GetConversationsOriginFilterResponse = paths[typeof routeName$5d]['get']['responses'][200]['content']['application/json'];
121448
+ type GetConversationsOriginFilterProps = paths[typeof routeName$5d]['get']['parameters'];
121339
121449
  declare const getConversationsOriginFilter: (props: GetConversationsOriginFilterProps, wgApiClient: ClientType) => Promise<GetConversationsOriginFilterResponse>;
121340
121450
 
121341
- declare const routeName$5b = "/v1/api/conversations/{session_id}";
121342
- type GetConversationByIdPathParams = paths[typeof routeName$5b]['get']['parameters']['path'];
121343
- type GetConversationByIdQueryParams = paths[typeof routeName$5b]['get']['parameters']['query'];
121344
- type GetConversationByIdResponse = paths[typeof routeName$5b]['get']['responses'][200]['content']['application/json'];
121345
- type GetConversationByIdProps = paths[typeof routeName$5b]['get']['parameters'];
121451
+ declare const routeName$5c = "/v1/api/conversations/{session_id}";
121452
+ type GetConversationByIdPathParams = paths[typeof routeName$5c]['get']['parameters']['path'];
121453
+ type GetConversationByIdQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
121454
+ type GetConversationByIdResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
121455
+ type GetConversationByIdProps = paths[typeof routeName$5c]['get']['parameters'];
121346
121456
  declare const getConversationById: (props: GetConversationByIdProps, wgApiClient: ClientType) => Promise<GetConversationByIdResponse>;
121347
121457
 
121348
- declare const routeName$5a = "/v1/api/conversations/{session_id}";
121349
- type DeleteSessionBySessionIdPathParams = paths[typeof routeName$5a]['delete']['parameters']['path'];
121350
- type DeleteSessionBySessionIdResponse = paths[typeof routeName$5a]['delete']['responses'][200]['content']['application/json'];
121458
+ declare const routeName$5b = "/v1/api/conversations/{session_id}";
121459
+ type DeleteSessionBySessionIdPathParams = paths[typeof routeName$5b]['delete']['parameters']['path'];
121460
+ type DeleteSessionBySessionIdResponse = paths[typeof routeName$5b]['delete']['responses'][200]['content']['application/json'];
121351
121461
  interface DeleteSessionBySessionIdProps {
121352
121462
  params: {
121353
121463
  path: DeleteSessionBySessionIdPathParams;
@@ -121355,10 +121465,10 @@ interface DeleteSessionBySessionIdProps {
121355
121465
  }
121356
121466
  declare const deleteSessionBySessionId: (props: DeleteSessionBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteSessionBySessionIdResponse>;
121357
121467
 
121358
- declare const routeName$59 = "/v1/api/conversations/{session_id}";
121359
- type UpdateConversationByIdBody = paths[typeof routeName$59]['patch']['requestBody']['content']['application/json'];
121360
- type UpdateConversationByIdPathParams = paths[typeof routeName$59]['patch']['parameters']['path'];
121361
- type UpdateConversationByIdResponse = paths[typeof routeName$59]['patch']['responses'][200]['content']['application/json'];
121468
+ declare const routeName$5a = "/v1/api/conversations/{session_id}";
121469
+ type UpdateConversationByIdBody = paths[typeof routeName$5a]['patch']['requestBody']['content']['application/json'];
121470
+ type UpdateConversationByIdPathParams = paths[typeof routeName$5a]['patch']['parameters']['path'];
121471
+ type UpdateConversationByIdResponse = paths[typeof routeName$5a]['patch']['responses'][200]['content']['application/json'];
121362
121472
  interface UpdateConversationByIdProps {
121363
121473
  body: UpdateConversationByIdBody;
121364
121474
  params: {
@@ -121367,16 +121477,16 @@ interface UpdateConversationByIdProps {
121367
121477
  }
121368
121478
  declare const updateConversationById: (props: UpdateConversationByIdProps, wgApiClient: ClientType) => Promise<UpdateConversationByIdResponse>;
121369
121479
 
121370
- declare const routeName$58 = "/v1/api/conversations/{session_id}/sessions";
121371
- type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$58]['get']['parameters']['path'];
121372
- type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$58]['get']['parameters']['query'];
121373
- type GetAllSessionsBySessionIdResponse = paths[typeof routeName$58]['get']['responses'][200]['content']['application/json'];
121374
- type GetAllSessionsBySessionIdProps = paths[typeof routeName$58]['get']['parameters'];
121480
+ declare const routeName$59 = "/v1/api/conversations/{session_id}/sessions";
121481
+ type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$59]['get']['parameters']['path'];
121482
+ type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$59]['get']['parameters']['query'];
121483
+ type GetAllSessionsBySessionIdResponse = paths[typeof routeName$59]['get']['responses'][200]['content']['application/json'];
121484
+ type GetAllSessionsBySessionIdProps = paths[typeof routeName$59]['get']['parameters'];
121375
121485
  declare const getAllSessionsBySessionId: (props: GetAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<GetAllSessionsBySessionIdResponse>;
121376
121486
 
121377
- declare const routeName$57 = "/v1/api/conversations/{session_id}/sessions";
121378
- type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$57]['delete']['parameters']['path'];
121379
- type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$57]['delete']['responses'][200]['content']['application/json'];
121487
+ declare const routeName$58 = "/v1/api/conversations/{session_id}/sessions";
121488
+ type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$58]['delete']['parameters']['path'];
121489
+ type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$58]['delete']['responses'][200]['content']['application/json'];
121380
121490
  interface DeleteAllSessionsBySessionIdProps {
121381
121491
  params: {
121382
121492
  path: DeleteAllSessionsBySessionIdPathParams;
@@ -121384,10 +121494,10 @@ interface DeleteAllSessionsBySessionIdProps {
121384
121494
  }
121385
121495
  declare const deleteAllSessionsBySessionId: (props: DeleteAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteAllSessionsBySessionIdResponse>;
121386
121496
 
121387
- declare const routeName$56 = "/v1/api/conversations/{session_id}/entities/{entity_id}";
121388
- type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$56]['delete']['parameters']['path'];
121389
- type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$56]['delete']['parameters']['query'];
121390
- type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$56]['delete']['responses'][200]['content']['application/json'];
121497
+ declare const routeName$57 = "/v1/api/conversations/{session_id}/entities/{entity_id}";
121498
+ type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$57]['delete']['parameters']['path'];
121499
+ type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$57]['delete']['parameters']['query'];
121500
+ type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$57]['delete']['responses'][200]['content']['application/json'];
121391
121501
  interface DeleteEntityBySessionIdAndFlowIdProps {
121392
121502
  params: {
121393
121503
  query: DeleteEntityBySessionIdAndFlowIdQueryParams;
@@ -121396,10 +121506,10 @@ interface DeleteEntityBySessionIdAndFlowIdProps {
121396
121506
  }
121397
121507
  declare const deleteEntityBySessionIdAndFlowId: (props: DeleteEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeleteEntityBySessionIdAndFlowIdResponse>;
121398
121508
 
121399
- declare const routeName$55 = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
121400
- type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$55]['delete']['parameters']['path'];
121401
- type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$55]['delete']['parameters']['query'];
121402
- type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$55]['delete']['responses'][200]['content']['application/json'];
121509
+ declare const routeName$56 = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
121510
+ type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$56]['delete']['parameters']['path'];
121511
+ type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$56]['delete']['parameters']['query'];
121512
+ type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$56]['delete']['responses'][200]['content']['application/json'];
121403
121513
  interface DeletePartyEntityBySessionIdAndFlowIdProps {
121404
121514
  params: {
121405
121515
  query: DeletePartyEntityBySessionIdAndFlowIdQueryParams;
@@ -121408,10 +121518,10 @@ interface DeletePartyEntityBySessionIdAndFlowIdProps {
121408
121518
  }
121409
121519
  declare const deletePartyEntityBySessionIdAndFlowId: (props: DeletePartyEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeletePartyEntityBySessionIdAndFlowIdResponse>;
121410
121520
 
121411
- declare const routeName$54 = "/v1/api/conversations/{session_id}/complete";
121412
- type MarkConversationAsCompletedByIdBody = paths[typeof routeName$54]['post']['requestBody']['content']['application/json'];
121413
- type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$54]['post']['parameters']['path'];
121414
- type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$54]['post']['responses'][200]['content']['application/json'];
121521
+ declare const routeName$55 = "/v1/api/conversations/{session_id}/complete";
121522
+ type MarkConversationAsCompletedByIdBody = paths[typeof routeName$55]['post']['requestBody']['content']['application/json'];
121523
+ type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$55]['post']['parameters']['path'];
121524
+ type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$55]['post']['responses'][200]['content']['application/json'];
121415
121525
  interface MarkConversationAsCompletedByIdProps {
121416
121526
  body: MarkConversationAsCompletedByIdBody;
121417
121527
  params: {
@@ -121420,9 +121530,9 @@ interface MarkConversationAsCompletedByIdProps {
121420
121530
  }
121421
121531
  declare const markConversationAsCompletedById: (props: MarkConversationAsCompletedByIdProps, wgApiClient: ClientType) => Promise<MarkConversationAsCompletedByIdResponse>;
121422
121532
 
121423
- declare const routeName$53 = "/v1/api/conversations/{session_id}/reminders";
121424
- type CreateConversationReminderPathParams = paths[typeof routeName$53]['post']['parameters']['path'];
121425
- type CreateConversationReminderResponse = paths[typeof routeName$53]['post']['responses'][200]['content']['application/json'];
121533
+ declare const routeName$54 = "/v1/api/conversations/{session_id}/reminders";
121534
+ type CreateConversationReminderPathParams = paths[typeof routeName$54]['post']['parameters']['path'];
121535
+ type CreateConversationReminderResponse = paths[typeof routeName$54]['post']['responses'][200]['content']['application/json'];
121426
121536
  interface CreateConversationReminderProps {
121427
121537
  params: {
121428
121538
  path: CreateConversationReminderPathParams;
@@ -121430,11 +121540,11 @@ interface CreateConversationReminderProps {
121430
121540
  }
121431
121541
  declare const createConversationReminder: (props: CreateConversationReminderProps, wgApiClient: ClientType) => Promise<CreateConversationReminderResponse>;
121432
121542
 
121433
- declare const routeName$52 = "/v1/api/conversations/{session_id}/pdf";
121434
- type GetConversationReportPdfByIdBody = paths[typeof routeName$52]['post']['requestBody']['content']['application/json'];
121435
- type GetConversationReportPdfByIdPathParams = paths[typeof routeName$52]['post']['parameters']['path'];
121436
- type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$52]['post']['parameters']['query'];
121437
- type GetConversationReportPdfByIdResponse = paths[typeof routeName$52]['post']['responses'][200]['content']['application/json'];
121543
+ declare const routeName$53 = "/v1/api/conversations/{session_id}/pdf";
121544
+ type GetConversationReportPdfByIdBody = paths[typeof routeName$53]['post']['requestBody']['content']['application/json'];
121545
+ type GetConversationReportPdfByIdPathParams = paths[typeof routeName$53]['post']['parameters']['path'];
121546
+ type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$53]['post']['parameters']['query'];
121547
+ type GetConversationReportPdfByIdResponse = paths[typeof routeName$53]['post']['responses'][200]['content']['application/json'];
121438
121548
  interface GetConversationReportPdfByIdProps {
121439
121549
  body: GetConversationReportPdfByIdBody;
121440
121550
  params: {
@@ -121444,10 +121554,10 @@ interface GetConversationReportPdfByIdProps {
121444
121554
  }
121445
121555
  declare const getConversationReportPdfById: (props: GetConversationReportPdfByIdProps, wgApiClient: ClientType) => Promise<GetConversationReportPdfByIdResponse>;
121446
121556
 
121447
- declare const routeName$51 = "/v1/api/conversations/{session_id}/feedback";
121448
- type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$51]['post']['parameters']['path'];
121449
- type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$51]['post']['parameters']['query'];
121450
- type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$51]['post']['responses'][201]['content']['application/json'];
121557
+ declare const routeName$52 = "/v1/api/conversations/{session_id}/feedback";
121558
+ type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$52]['post']['parameters']['path'];
121559
+ type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$52]['post']['parameters']['query'];
121560
+ type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$52]['post']['responses'][201]['content']['application/json'];
121451
121561
  interface GiveFeedbackOnConversationByIdProps {
121452
121562
  params: {
121453
121563
  query: GiveFeedbackOnConversationByIdQueryParams;
@@ -121456,27 +121566,27 @@ interface GiveFeedbackOnConversationByIdProps {
121456
121566
  }
121457
121567
  declare const giveFeedbackOnConversationById: (props: GiveFeedbackOnConversationByIdProps, wgApiClient: ClientType) => Promise<GiveFeedbackOnConversationByIdResponse>;
121458
121568
 
121459
- declare const routeName$50 = "/v1/api/conversations/{session_id}/chat";
121460
- type GetChatBySessionIdPathParams = paths[typeof routeName$50]['get']['parameters']['path'];
121461
- type GetChatBySessionIdResponse = paths[typeof routeName$50]['get']['responses'][200]['content']['application/json'];
121462
- type GetChatBySessionIdProps = paths[typeof routeName$50]['get']['parameters'];
121569
+ declare const routeName$51 = "/v1/api/conversations/{session_id}/chat";
121570
+ type GetChatBySessionIdPathParams = paths[typeof routeName$51]['get']['parameters']['path'];
121571
+ type GetChatBySessionIdResponse = paths[typeof routeName$51]['get']['responses'][200]['content']['application/json'];
121572
+ type GetChatBySessionIdProps = paths[typeof routeName$51]['get']['parameters'];
121463
121573
  declare const getChatBySessionId: (props: GetChatBySessionIdProps, wgApiClient: ClientType) => Promise<GetChatBySessionIdResponse>;
121464
121574
 
121465
- declare const routeName$4$ = "/v2/api/conversations/{session_id}/chat-summary";
121466
- type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4$]['get']['parameters']['path'];
121467
- type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4$]['get']['parameters']['query'];
121468
- type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4$]['get']['responses'][200]['content']['application/json'];
121469
- type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4$]['get']['parameters'];
121575
+ declare const routeName$50 = "/v2/api/conversations/{session_id}/chat-summary";
121576
+ type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$50]['get']['parameters']['path'];
121577
+ type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$50]['get']['parameters']['query'];
121578
+ type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$50]['get']['responses'][200]['content']['application/json'];
121579
+ type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$50]['get']['parameters'];
121470
121580
  declare const getChatSummaryV2BySessionId: (props: GetChatSummaryV2BySessionIdProps, wgApiClient: ClientType) => Promise<GetChatSummaryV2BySessionIdResponse>;
121471
121581
 
121472
- declare const routeName$4_ = "/v1/api/customers/me/parties";
121473
- type GetPartiesLinkedToUserResponse = paths[typeof routeName$4_]['get']['responses'][200]['content']['application/json'];
121582
+ declare const routeName$4$ = "/v1/api/customers/me/parties";
121583
+ type GetPartiesLinkedToUserResponse = paths[typeof routeName$4$]['get']['responses'][200]['content']['application/json'];
121474
121584
  declare const getPartiesLinkedToUser: (wgApiClient: ClientType) => Promise<GetPartiesLinkedToUserResponse>;
121475
121585
 
121476
- declare const routeName$4Z = "/v1/api/parties/{party_id}/customer-invitations";
121477
- type InviteUserToPartyBody = paths[typeof routeName$4Z]['post']['requestBody']['content']['application/json'];
121478
- type InviteUserToPartyPathParams = paths[typeof routeName$4Z]['post']['parameters']['path'];
121479
- type InviteUserToPartyResponse = paths[typeof routeName$4Z]['post']['responses'][200]['content']['application/json'];
121586
+ declare const routeName$4_ = "/v1/api/parties/{party_id}/customer-invitations";
121587
+ type InviteUserToPartyBody = paths[typeof routeName$4_]['post']['requestBody']['content']['application/json'];
121588
+ type InviteUserToPartyPathParams = paths[typeof routeName$4_]['post']['parameters']['path'];
121589
+ type InviteUserToPartyResponse = paths[typeof routeName$4_]['post']['responses'][200]['content']['application/json'];
121480
121590
  interface InviteUserToPartyProps {
121481
121591
  body: InviteUserToPartyBody;
121482
121592
  params: {
@@ -121485,31 +121595,31 @@ interface InviteUserToPartyProps {
121485
121595
  }
121486
121596
  declare const inviteUserToParty: (props: InviteUserToPartyProps, wgApiClient: ClientType) => Promise<InviteUserToPartyResponse>;
121487
121597
 
121488
- declare const routeName$4Y = "/v1/api/parties/{party_id}/checkup";
121489
- type GetCheckupByPartyIdPathParams = paths[typeof routeName$4Y]['get']['parameters']['path'];
121490
- type GetCheckupByPartyIdResponse = paths[typeof routeName$4Y]['get']['responses'][200]['content']['application/json'];
121491
- type GetCheckupByPartyIdProps = paths[typeof routeName$4Y]['get']['parameters'];
121598
+ declare const routeName$4Z = "/v1/api/parties/{party_id}/checkup";
121599
+ type GetCheckupByPartyIdPathParams = paths[typeof routeName$4Z]['get']['parameters']['path'];
121600
+ type GetCheckupByPartyIdResponse = paths[typeof routeName$4Z]['get']['responses'][200]['content']['application/json'];
121601
+ type GetCheckupByPartyIdProps = paths[typeof routeName$4Z]['get']['parameters'];
121492
121602
  declare const getCheckupByPartyId: (props: GetCheckupByPartyIdProps, wgApiClient: ClientType) => Promise<GetCheckupByPartyIdResponse>;
121493
121603
 
121494
- declare const routeName$4X = "/v1/api/parties/link-users";
121495
- type LinkPartyToUserBody = paths[typeof routeName$4X]['post']['requestBody']['content']['application/json'];
121496
- type LinkPartyToUserResponse = paths[typeof routeName$4X]['post']['responses'][200]['content']['application/json'];
121604
+ declare const routeName$4Y = "/v1/api/parties/link-users";
121605
+ type LinkPartyToUserBody = paths[typeof routeName$4Y]['post']['requestBody']['content']['application/json'];
121606
+ type LinkPartyToUserResponse = paths[typeof routeName$4Y]['post']['responses'][200]['content']['application/json'];
121497
121607
  interface LinkPartyToUserProps {
121498
121608
  body: LinkPartyToUserBody;
121499
121609
  }
121500
121610
  declare const linkPartyToUser: (props: LinkPartyToUserProps, wgApiClient: ClientType) => Promise<LinkPartyToUserResponse>;
121501
121611
 
121502
- declare const routeName$4W = "/v1/api/parties/delink-users";
121503
- type DelinkPartyToUserBody = paths[typeof routeName$4W]['post']['requestBody']['content']['application/json'];
121504
- type DelinkPartyToUserResponse = paths[typeof routeName$4W]['post']['responses'][200]['content']['application/json'];
121612
+ declare const routeName$4X = "/v1/api/parties/delink-users";
121613
+ type DelinkPartyToUserBody = paths[typeof routeName$4X]['post']['requestBody']['content']['application/json'];
121614
+ type DelinkPartyToUserResponse = paths[typeof routeName$4X]['post']['responses'][200]['content']['application/json'];
121505
121615
  interface DelinkPartyToUserProps {
121506
121616
  body: DelinkPartyToUserBody;
121507
121617
  }
121508
121618
  declare const delinkPartyToUser: (props: DelinkPartyToUserProps, wgApiClient: ClientType) => Promise<DelinkPartyToUserResponse>;
121509
121619
 
121510
- declare const routeName$4V = "/v1/api/customers/{user_id}/password-reset";
121511
- type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4V]['post']['parameters']['path'];
121512
- type SendPasswordResetToCustomerResponse = paths[typeof routeName$4V]['post']['responses'][200]['content']['application/json'];
121620
+ declare const routeName$4W = "/v1/api/customers/{user_id}/password-reset";
121621
+ type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4W]['post']['parameters']['path'];
121622
+ type SendPasswordResetToCustomerResponse = paths[typeof routeName$4W]['post']['responses'][200]['content']['application/json'];
121513
121623
  interface SendPasswordResetToCustomerProps {
121514
121624
  params: {
121515
121625
  path: SendPasswordResetToCustomerPathParams;
@@ -121517,9 +121627,9 @@ interface SendPasswordResetToCustomerProps {
121517
121627
  }
121518
121628
  declare const sendPasswordResetToCustomer: (props: SendPasswordResetToCustomerProps, wgApiClient: ClientType) => Promise<SendPasswordResetToCustomerResponse>;
121519
121629
 
121520
- declare const routeName$4U = "/v1/api/customers/{user_id}/2fa";
121521
- type Disable2FaForCustomerPathParams = paths[typeof routeName$4U]['delete']['parameters']['path'];
121522
- type Disable2FaForCustomerResponse = paths[typeof routeName$4U]['delete']['responses'][200]['content']['application/json'];
121630
+ declare const routeName$4V = "/v1/api/customers/{user_id}/2fa";
121631
+ type Disable2FaForCustomerPathParams = paths[typeof routeName$4V]['delete']['parameters']['path'];
121632
+ type Disable2FaForCustomerResponse = paths[typeof routeName$4V]['delete']['responses'][200]['content']['application/json'];
121523
121633
  interface Disable2FaForCustomerProps {
121524
121634
  params: {
121525
121635
  path: Disable2FaForCustomerPathParams;
@@ -121527,106 +121637,106 @@ interface Disable2FaForCustomerProps {
121527
121637
  }
121528
121638
  declare const disable2FaForCustomer: (props: Disable2FaForCustomerProps, wgApiClient: ClientType) => Promise<Disable2FaForCustomerResponse>;
121529
121639
 
121530
- declare const routeName$4T = "/v1/api/customers/me/insurance-policies";
121531
- type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4T]['get']['parameters']['query'];
121532
- type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4T]['get']['responses'][200]['content']['application/json'];
121533
- type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4T]['get']['parameters'];
121640
+ declare const routeName$4U = "/v1/api/customers/me/insurance-policies";
121641
+ type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4U]['get']['parameters']['query'];
121642
+ type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4U]['get']['responses'][200]['content']['application/json'];
121643
+ type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4U]['get']['parameters'];
121534
121644
  declare const getInsurancePoliciesAsCustomer: (props: GetInsurancePoliciesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesAsCustomerResponse>;
121535
121645
 
121536
- declare const routeName$4S = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
121537
- type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4S]['get']['parameters']['path'];
121538
- type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4S]['get']['responses'][200]['content']['application/json'];
121539
- type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4S]['get']['parameters'];
121646
+ declare const routeName$4T = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
121647
+ type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4T]['get']['parameters']['path'];
121648
+ type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4T]['get']['responses'][200]['content']['application/json'];
121649
+ type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4T]['get']['parameters'];
121540
121650
  declare const getInsurancePolicyByIdAsCustomer: (props: GetInsurancePolicyByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdAsCustomerResponse>;
121541
121651
 
121542
- declare const routeName$4R = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}/finconnect/link";
121543
- type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams = paths[typeof routeName$4R]['get']['parameters']['path'];
121544
- type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams = paths[typeof routeName$4R]['get']['parameters']['query'];
121545
- type GetFinconnectLinkForInsurancePolicyAsCustomerResponse = paths[typeof routeName$4R]['get']['responses'][200]['content']['application/json'];
121546
- type GetFinconnectLinkForInsurancePolicyAsCustomerProps = paths[typeof routeName$4R]['get']['parameters'];
121652
+ declare const routeName$4S = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}/finconnect/link";
121653
+ type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams = paths[typeof routeName$4S]['get']['parameters']['path'];
121654
+ type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams = paths[typeof routeName$4S]['get']['parameters']['query'];
121655
+ type GetFinconnectLinkForInsurancePolicyAsCustomerResponse = paths[typeof routeName$4S]['get']['responses'][200]['content']['application/json'];
121656
+ type GetFinconnectLinkForInsurancePolicyAsCustomerProps = paths[typeof routeName$4S]['get']['parameters'];
121547
121657
  declare const getFinconnectLinkForInsurancePolicyAsCustomer: (props: GetFinconnectLinkForInsurancePolicyAsCustomerProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkForInsurancePolicyAsCustomerResponse>;
121548
121658
 
121549
- declare const routeName$4Q = "/v1/api/customers/me/anva-inquiry";
121550
- type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4Q]['post']['requestBody']['content']['application/json'];
121551
- type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4Q]['post']['responses'][201]['content']['application/json'];
121659
+ declare const routeName$4R = "/v1/api/customers/me/anva-inquiry";
121660
+ type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4R]['post']['requestBody']['content']['application/json'];
121661
+ type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4R]['post']['responses'][201]['content']['application/json'];
121552
121662
  interface SendAnvaInquiryAsCustomerProps {
121553
121663
  body: SendAnvaInquiryAsCustomerBody;
121554
121664
  }
121555
121665
  declare const sendAnvaInquiryAsCustomer: (props: SendAnvaInquiryAsCustomerProps, wgApiClient: ClientType) => Promise<SendAnvaInquiryAsCustomerResponse>;
121556
121666
 
121557
- declare const routeName$4P = "/v1/api/customers/me/policy-packages";
121558
- type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4P]['get']['parameters']['query'];
121559
- type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4P]['get']['responses'][200]['content']['application/json'];
121560
- type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4P]['get']['parameters'];
121667
+ declare const routeName$4Q = "/v1/api/customers/me/policy-packages";
121668
+ type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4Q]['get']['parameters']['query'];
121669
+ type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4Q]['get']['responses'][200]['content']['application/json'];
121670
+ type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4Q]['get']['parameters'];
121561
121671
  declare const getPolicyPackagesAsCustomer: (props: GetPolicyPackagesAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesAsCustomerResponse>;
121562
121672
 
121563
- declare const routeName$4O = "/v1/api/customers/me/policy-packages/{policy_package_id}";
121564
- type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4O]['get']['parameters']['path'];
121565
- type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4O]['get']['responses'][200]['content']['application/json'];
121566
- type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4O]['get']['parameters'];
121673
+ declare const routeName$4P = "/v1/api/customers/me/policy-packages/{policy_package_id}";
121674
+ type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4P]['get']['parameters']['path'];
121675
+ type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4P]['get']['responses'][200]['content']['application/json'];
121676
+ type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4P]['get']['parameters'];
121567
121677
  declare const getPolicyPackageByIdAsCustomer: (props: GetPolicyPackageByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdAsCustomerResponse>;
121568
121678
 
121569
- declare const routeName$4N = "/v1/api/customers/me/current-account-insights";
121570
- type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4N]['get']['parameters']['query'];
121571
- type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4N]['get']['responses'][200]['content']['application/json'];
121572
- type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4N]['get']['parameters'];
121679
+ declare const routeName$4O = "/v1/api/customers/me/current-account-insights";
121680
+ type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4O]['get']['parameters']['query'];
121681
+ type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4O]['get']['responses'][200]['content']['application/json'];
121682
+ type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4O]['get']['parameters'];
121573
121683
  declare const getCurrentAccountInsightsAsCustomer: (props: GetCurrentAccountInsightsAsCustomerProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsCustomerResponse>;
121574
121684
 
121575
- declare const routeName$4M = "/v1/api/customers/me/invoices";
121576
- type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4M]['get']['parameters']['query'];
121577
- type GetInvoicesAsCustomerResponse = paths[typeof routeName$4M]['get']['responses'][200]['content']['application/json'];
121578
- type GetInvoicesAsCustomerProps = paths[typeof routeName$4M]['get']['parameters'];
121685
+ declare const routeName$4N = "/v1/api/customers/me/invoices";
121686
+ type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4N]['get']['parameters']['query'];
121687
+ type GetInvoicesAsCustomerResponse = paths[typeof routeName$4N]['get']['responses'][200]['content']['application/json'];
121688
+ type GetInvoicesAsCustomerProps = paths[typeof routeName$4N]['get']['parameters'];
121579
121689
  declare const getInvoicesAsCustomer: (props: GetInvoicesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoicesAsCustomerResponse>;
121580
121690
 
121581
- declare const routeName$4L = "/v1/api/customers/me/invoices/{invoice_id}";
121582
- type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4L]['get']['parameters']['path'];
121583
- type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
121584
- type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4L]['get']['parameters'];
121691
+ declare const routeName$4M = "/v1/api/customers/me/invoices/{invoice_id}";
121692
+ type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4M]['get']['parameters']['path'];
121693
+ type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4M]['get']['responses'][200]['content']['application/json'];
121694
+ type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4M]['get']['parameters'];
121585
121695
  declare const getInvoiceByIdAsCustomer: (props: GetInvoiceByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoiceByIdAsCustomerResponse>;
121586
121696
 
121587
- declare const routeName$4K = "/v1/api/customers/me/claims";
121588
- type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4K]['get']['parameters']['query'];
121589
- type GetClaimsAsCustomerResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
121590
- type GetClaimsAsCustomerProps = paths[typeof routeName$4K]['get']['parameters'];
121697
+ declare const routeName$4L = "/v1/api/customers/me/claims";
121698
+ type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4L]['get']['parameters']['query'];
121699
+ type GetClaimsAsCustomerResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
121700
+ type GetClaimsAsCustomerProps = paths[typeof routeName$4L]['get']['parameters'];
121591
121701
  declare const getClaimsAsCustomer: (props: GetClaimsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimsAsCustomerResponse>;
121592
121702
 
121593
- declare const routeName$4J = "/v1/api/customers/me/claims/{claim_id}";
121594
- type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4J]['get']['parameters']['path'];
121595
- type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
121596
- type GetClaimByIdAsCustomerProps = paths[typeof routeName$4J]['get']['parameters'];
121703
+ declare const routeName$4K = "/v1/api/customers/me/claims/{claim_id}";
121704
+ type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4K]['get']['parameters']['path'];
121705
+ type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
121706
+ type GetClaimByIdAsCustomerProps = paths[typeof routeName$4K]['get']['parameters'];
121597
121707
  declare const getClaimByIdAsCustomer: (props: GetClaimByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimByIdAsCustomerResponse>;
121598
121708
 
121599
- declare const routeName$4I = "/v1/api/customers/me/documents";
121600
- type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4I]['get']['parameters']['query'];
121601
- type GetDocumentsAsCustomerResponse = paths[typeof routeName$4I]['get']['responses'][200]['content']['application/json'];
121602
- type GetDocumentsAsCustomerProps = paths[typeof routeName$4I]['get']['parameters'];
121709
+ declare const routeName$4J = "/v1/api/customers/me/documents";
121710
+ type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4J]['get']['parameters']['query'];
121711
+ type GetDocumentsAsCustomerResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
121712
+ type GetDocumentsAsCustomerProps = paths[typeof routeName$4J]['get']['parameters'];
121603
121713
  declare const getDocumentsAsCustomer: (props: GetDocumentsAsCustomerProps, wgApiClient: ClientType) => Promise<GetDocumentsAsCustomerResponse>;
121604
121714
 
121605
- declare const routeName$4H = "/v1/api/customers/me/finconnect/link";
121606
- type GetFinconnectLinkAsCustomerQueryParams = paths[typeof routeName$4H]['get']['parameters']['query'];
121607
- type GetFinconnectLinkAsCustomerResponse = paths[typeof routeName$4H]['get']['responses'][200]['content']['application/json'];
121608
- type GetFinconnectLinkAsCustomerProps = paths[typeof routeName$4H]['get']['parameters'];
121715
+ declare const routeName$4I = "/v1/api/customers/me/finconnect/link";
121716
+ type GetFinconnectLinkAsCustomerQueryParams = paths[typeof routeName$4I]['get']['parameters']['query'];
121717
+ type GetFinconnectLinkAsCustomerResponse = paths[typeof routeName$4I]['get']['responses'][200]['content']['application/json'];
121718
+ type GetFinconnectLinkAsCustomerProps = paths[typeof routeName$4I]['get']['parameters'];
121609
121719
  declare const getFinconnectLinkAsCustomer: (props: GetFinconnectLinkAsCustomerProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkAsCustomerResponse>;
121610
121720
 
121611
- declare const routeName$4G = "/v1/api/parties/me";
121612
- type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4G]['patch']['requestBody']['content']['application/json'];
121613
- type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4G]['patch']['responses'][200]['content']['application/json'];
121721
+ declare const routeName$4H = "/v1/api/parties/me";
121722
+ type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4H]['patch']['requestBody']['content']['application/json'];
121723
+ type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4H]['patch']['responses'][200]['content']['application/json'];
121614
121724
  interface PatchOwnPartyAsCustomerProps {
121615
121725
  body: PatchOwnPartyAsCustomerBody;
121616
121726
  }
121617
121727
  declare const patchOwnPartyAsCustomer: (props: PatchOwnPartyAsCustomerProps, wgApiClient: ClientType) => Promise<PatchOwnPartyAsCustomerResponse>;
121618
121728
 
121619
- declare const routeName$4F = "/v1/api/parties/me/activities";
121620
- type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4F]['post']['requestBody']['content']['application/json'];
121621
- type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4F]['post']['responses'][201]['content']['application/json'];
121729
+ declare const routeName$4G = "/v1/api/parties/me/activities";
121730
+ type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4G]['post']['requestBody']['content']['application/json'];
121731
+ type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4G]['post']['responses'][201]['content']['application/json'];
121622
121732
  interface CreatePartyActivitiesAsCustomerProps {
121623
121733
  body: CreatePartyActivitiesAsCustomerBody;
121624
121734
  }
121625
121735
  declare const createPartyActivitiesAsCustomer: (props: CreatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<CreatePartyActivitiesAsCustomerResponse>;
121626
121736
 
121627
- declare const routeName$4E = "/v1/api/parties/me/activities/{activity_id}";
121628
- type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4E]['delete']['parameters']['path'];
121629
- type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4E]['delete']['responses'][200]['content']['application/json'];
121737
+ declare const routeName$4F = "/v1/api/parties/me/activities/{activity_id}";
121738
+ type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4F]['delete']['parameters']['path'];
121739
+ type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4F]['delete']['responses'][200]['content']['application/json'];
121630
121740
  interface DeletePartyActivitiesAsCustomerProps {
121631
121741
  params: {
121632
121742
  path: DeletePartyActivitiesAsCustomerPathParams;
@@ -121634,10 +121744,10 @@ interface DeletePartyActivitiesAsCustomerProps {
121634
121744
  }
121635
121745
  declare const deletePartyActivitiesAsCustomer: (props: DeletePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<DeletePartyActivitiesAsCustomerResponse>;
121636
121746
 
121637
- declare const routeName$4D = "/v1/api/parties/me/activities/{activity_id}";
121638
- type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4D]['patch']['requestBody']['content']['application/json'];
121639
- type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4D]['patch']['parameters']['path'];
121640
- type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4D]['patch']['responses'][200]['content']['application/json'];
121747
+ declare const routeName$4E = "/v1/api/parties/me/activities/{activity_id}";
121748
+ type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4E]['patch']['requestBody']['content']['application/json'];
121749
+ type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4E]['patch']['parameters']['path'];
121750
+ type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4E]['patch']['responses'][200]['content']['application/json'];
121641
121751
  interface UpdatePartyActivitiesAsCustomerProps {
121642
121752
  body: UpdatePartyActivitiesAsCustomerBody;
121643
121753
  params: {
@@ -121646,29 +121756,29 @@ interface UpdatePartyActivitiesAsCustomerProps {
121646
121756
  }
121647
121757
  declare const updatePartyActivitiesAsCustomer: (props: UpdatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<UpdatePartyActivitiesAsCustomerResponse>;
121648
121758
 
121649
- declare const routeName$4C = "/v1/api/parties/{party_id}/customers";
121650
- type GetCustomersByPartyPathParams = paths[typeof routeName$4C]['get']['parameters']['path'];
121651
- type GetCustomersByPartyQueryParams = paths[typeof routeName$4C]['get']['parameters']['query'];
121652
- type GetCustomersByPartyResponse = paths[typeof routeName$4C]['get']['responses'][200]['content']['application/json'];
121653
- type GetCustomersByPartyProps = paths[typeof routeName$4C]['get']['parameters'];
121759
+ declare const routeName$4D = "/v1/api/parties/{party_id}/customers";
121760
+ type GetCustomersByPartyPathParams = paths[typeof routeName$4D]['get']['parameters']['path'];
121761
+ type GetCustomersByPartyQueryParams = paths[typeof routeName$4D]['get']['parameters']['query'];
121762
+ type GetCustomersByPartyResponse = paths[typeof routeName$4D]['get']['responses'][200]['content']['application/json'];
121763
+ type GetCustomersByPartyProps = paths[typeof routeName$4D]['get']['parameters'];
121654
121764
  declare const getCustomersByParty: (props: GetCustomersByPartyProps, wgApiClient: ClientType) => Promise<GetCustomersByPartyResponse>;
121655
121765
 
121656
- declare const routeName$4B = "/v1/api/customers/{user_id}/parties";
121657
- type GetPartiesByCustomerPathParams = paths[typeof routeName$4B]['get']['parameters']['path'];
121658
- type GetPartiesByCustomerQueryParams = paths[typeof routeName$4B]['get']['parameters']['query'];
121659
- type GetPartiesByCustomerResponse = paths[typeof routeName$4B]['get']['responses'][200]['content']['application/json'];
121660
- type GetPartiesByCustomerProps = paths[typeof routeName$4B]['get']['parameters'];
121766
+ declare const routeName$4C = "/v1/api/customers/{user_id}/parties";
121767
+ type GetPartiesByCustomerPathParams = paths[typeof routeName$4C]['get']['parameters']['path'];
121768
+ type GetPartiesByCustomerQueryParams = paths[typeof routeName$4C]['get']['parameters']['query'];
121769
+ type GetPartiesByCustomerResponse = paths[typeof routeName$4C]['get']['responses'][200]['content']['application/json'];
121770
+ type GetPartiesByCustomerProps = paths[typeof routeName$4C]['get']['parameters'];
121661
121771
  declare const getPartiesByCustomer: (props: GetPartiesByCustomerProps, wgApiClient: ClientType) => Promise<GetPartiesByCustomerResponse>;
121662
121772
 
121663
- declare const routeName$4A = "/v1/api/customers";
121664
- type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4A]['get']['parameters']['query'];
121665
- type GetAllCustomersByDistributionResponse = paths[typeof routeName$4A]['get']['responses'][200]['content']['application/json'];
121666
- type GetAllCustomersByDistributionProps = paths[typeof routeName$4A]['get']['parameters'];
121773
+ declare const routeName$4B = "/v1/api/customers";
121774
+ type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4B]['get']['parameters']['query'];
121775
+ type GetAllCustomersByDistributionResponse = paths[typeof routeName$4B]['get']['responses'][200]['content']['application/json'];
121776
+ type GetAllCustomersByDistributionProps = paths[typeof routeName$4B]['get']['parameters'];
121667
121777
  declare const getAllCustomersByDistribution: (props: GetAllCustomersByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCustomersByDistributionResponse>;
121668
121778
 
121669
- declare const routeName$4z = "/v1/api/customers/{user_id}/parties/{party_id}/block";
121670
- type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4z]['post']['parameters']['path'];
121671
- type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4z]['post']['responses'][200]['content']['application/json'];
121779
+ declare const routeName$4A = "/v1/api/customers/{user_id}/parties/{party_id}/block";
121780
+ type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4A]['post']['parameters']['path'];
121781
+ type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4A]['post']['responses'][200]['content']['application/json'];
121672
121782
  interface BlockCustomerFromAccessingPartyProps {
121673
121783
  params: {
121674
121784
  path: BlockCustomerFromAccessingPartyPathParams;
@@ -121676,9 +121786,9 @@ interface BlockCustomerFromAccessingPartyProps {
121676
121786
  }
121677
121787
  declare const blockCustomerFromAccessingParty: (props: BlockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<BlockCustomerFromAccessingPartyResponse>;
121678
121788
 
121679
- declare const routeName$4y = "/v1/api/customers/{user_id}/parties/{party_id}/block";
121680
- type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4y]['delete']['parameters']['path'];
121681
- type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4y]['delete']['responses'][200]['content']['application/json'];
121789
+ declare const routeName$4z = "/v1/api/customers/{user_id}/parties/{party_id}/block";
121790
+ type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4z]['delete']['parameters']['path'];
121791
+ type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4z]['delete']['responses'][200]['content']['application/json'];
121682
121792
  interface UnblockCustomerFromAccessingPartyProps {
121683
121793
  params: {
121684
121794
  path: UnblockCustomerFromAccessingPartyPathParams;
@@ -121686,6 +121796,12 @@ interface UnblockCustomerFromAccessingPartyProps {
121686
121796
  }
121687
121797
  declare const unblockCustomerFromAccessingParty: (props: UnblockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<UnblockCustomerFromAccessingPartyResponse>;
121688
121798
 
121799
+ declare const routeName$4y = "/v1/api/diasflows/supported-insurances";
121800
+ type GetDiasflowInsurancesQueryParams = paths[typeof routeName$4y]['get']['parameters']['query'];
121801
+ type GetDiasflowInsurancesResponse = paths[typeof routeName$4y]['get']['responses'][200]['content']['application/json'];
121802
+ type GetDiasflowInsurancesProps = paths[typeof routeName$4y]['get']['parameters'];
121803
+ declare const getDiasflowInsurances: (props: GetDiasflowInsurancesProps, wgApiClient: ClientType) => Promise<GetDiasflowInsurancesResponse>;
121804
+
121689
121805
  declare const routeName$4x = "/v1/api/diasflows/products";
121690
121806
  type GetDiasflowProductsQueryParams = paths[typeof routeName$4x]['get']['parameters']['query'];
121691
121807
  type GetDiasflowProductsResponse = paths[typeof routeName$4x]['get']['responses'][200]['content']['application/json'];
@@ -124359,4 +124475,4 @@ interface ValidateYellowhiveQuestionnaireProps {
124359
124475
  }
124360
124476
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
124361
124477
 
124362
- export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeactivateOutlookConnectionSyncBody, type DeactivateOutlookConnectionSyncQueryParams, type DeactivateOutlookConnectionSyncResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedGetAnvaPartiesQueryParams, type DeprecatedGetAnvaPartiesResponse, type DeprecatedImportAnvaPartyInWegroupPathParams, type DeprecatedImportAnvaPartyInWegroupQueryParams, type DeprecatedImportAnvaPartyInWegroupResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OutlookConnectionSyncQueryParams, type OutlookConnectionSyncResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeactivateOutlookSyncCmd, type SchemaDeactivateOutlookSyncParams, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasClosingQuestion, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookConnectionDetails, type SchemaOutlookEmail, type SchemaOutlookEmailItem, type SchemaOutlookEmails, type SchemaOutlookMailHeader, type SchemaOutlookMailRecepient, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deactivateOutlookConnectionSync, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedGetAnvaParties, deprecatedImportAnvaPartyInWegroup, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, outlookConnectionSync, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
124478
+ export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeactivateOutlookConnectionSyncBody, type DeactivateOutlookConnectionSyncQueryParams, type DeactivateOutlookConnectionSyncResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedGetAnvaPartiesQueryParams, type DeprecatedGetAnvaPartiesResponse, type DeprecatedImportAnvaPartyInWegroupPathParams, type DeprecatedImportAnvaPartyInWegroupQueryParams, type DeprecatedImportAnvaPartyInWegroupResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowInsurancesQueryParams, type GetDiasflowInsurancesResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OutlookConnectionSyncQueryParams, type OutlookConnectionSyncResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeactivateOutlookSyncCmd, type SchemaDeactivateOutlookSyncParams, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasClosingQuestion, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasInsuranceQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookConnectionDetails, type SchemaOutlookEmail, type SchemaOutlookEmailItem, type SchemaOutlookEmails, type SchemaOutlookMailHeader, type SchemaOutlookMailRecepient, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deactivateOutlookConnectionSync, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedGetAnvaParties, deprecatedImportAnvaPartyInWegroup, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowInsurances, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, outlookConnectionSync, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };