wg-api-sdk 4.31.36 → 4.31.37

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.
@@ -3021,6 +3021,26 @@ interface paths {
3021
3021
  patch?: never;
3022
3022
  trace?: never;
3023
3023
  };
3024
+ "/v1/api/connections/dias/parties/{dias_id}/documents": {
3025
+ parameters: {
3026
+ query?: never;
3027
+ header?: never;
3028
+ path?: never;
3029
+ cookie?: never;
3030
+ };
3031
+ get?: never;
3032
+ put?: never;
3033
+ /**
3034
+ * Upload Documents In Dias
3035
+ * @description Upload documents in DIAS
3036
+ */
3037
+ post: operations["upload_documents_in_dias_v1_api_connections_dias_parties__dias_id__documents_post"];
3038
+ delete?: never;
3039
+ options?: never;
3040
+ head?: never;
3041
+ patch?: never;
3042
+ trace?: never;
3043
+ };
3024
3044
  "/v1/api/connections/fasterforward/parties/{fasterforward_id}/documents": {
3025
3045
  parameters: {
3026
3046
  query?: never;
@@ -9697,7 +9717,7 @@ interface components {
9697
9717
  * Timestamp
9698
9718
  * Format: date-time
9699
9719
  * @description Timestamp of when the error occured
9700
- * @default 2026-04-04T11:41:45.022195
9720
+ * @default 2026-04-07T10:52:55.847947
9701
9721
  */
9702
9722
  timestamp: string;
9703
9723
  /**
@@ -53749,7 +53769,7 @@ interface components {
53749
53769
  /**
53750
53770
  * Quote Specifications
53751
53771
  * @default {
53752
- * "contract_commencement_date": "2026-04-04"
53772
+ * "contract_commencement_date": "2026-04-07"
53753
53773
  * }
53754
53774
  */
53755
53775
  quote_specifications: components["schemas"]["QuoteSpecification"];
@@ -56543,7 +56563,7 @@ interface components {
56543
56563
  * @description An enumeration.
56544
56564
  * @enum {string}
56545
56565
  */
56546
- PaymentMethod: "DIRECT_DEBIT" | "INVOICE";
56566
+ PaymentMethod: "TRANSFER" | "DIRECT_DEBIT" | "NONE";
56547
56567
  /**
56548
56568
  * ThirdPartyConstructionWorkInsuranceType
56549
56569
  * @description An enumeration.
@@ -64451,6 +64471,27 @@ interface components {
64451
64471
  /** Link */
64452
64472
  link: string;
64453
64473
  };
64474
+ /** upload_documents_in_dias_params */
64475
+ upload_documents_in_dias_params: {
64476
+ auth: components["schemas"]["Auth"];
64477
+ /** Party Ref */
64478
+ party_ref: string;
64479
+ data: components["schemas"]["DiasDocumentUploadCmd"];
64480
+ };
64481
+ /** DiasDocumentUploadCmd */
64482
+ DiasDocumentUploadCmd: {
64483
+ /** Documents */
64484
+ documents: components["schemas"]["DiasDocumentUploadItem"][];
64485
+ };
64486
+ /** DiasDocumentUploadItem */
64487
+ DiasDocumentUploadItem: {
64488
+ /** Filename */
64489
+ filename: string;
64490
+ /** Link */
64491
+ link: string;
64492
+ /** Description */
64493
+ description?: string;
64494
+ };
64454
64495
  /** FasterForwardSearchRelations */
64455
64496
  mercury__models__fasterforward__FasterForwardSearchRelations: {
64456
64497
  /** Items */
@@ -72527,6 +72568,9 @@ type SchemaCreateTaskInDiasParams = components['schemas']['create_task_in_dias_p
72527
72568
  type SchemaMercuryModelsMDiasTaskCmd = components['schemas']['mercury__models__m_dias__TaskCmd'];
72528
72569
  type SchemaMercuryModelsMDiasTaskPriority = components['schemas']['mercury__models__m_dias__TASK_PRIORITY'];
72529
72570
  type SchemaDiasTaskDocument = components['schemas']['DiasTaskDocument'];
72571
+ type SchemaUploadDocumentsInDiasParams = components['schemas']['upload_documents_in_dias_params'];
72572
+ type SchemaDiasDocumentUploadCmd = components['schemas']['DiasDocumentUploadCmd'];
72573
+ type SchemaDiasDocumentUploadItem = components['schemas']['DiasDocumentUploadItem'];
72530
72574
  type SchemaMercuryModelsFasterforwardFasterForwardSearchRelations = components['schemas']['mercury__models__fasterforward__FasterForwardSearchRelations'];
72531
72575
  type SchemaMercuryModelsFasterforwardFasterForwardSearchRelationsFasterForwardSearchRelations = components['schemas']['mercury__models__fasterforward__FasterForwardSearchRelations__FasterForwardSearchRelations'];
72532
72576
  type SchemaTeams = components['schemas']['Teams'];
@@ -88977,6 +89021,100 @@ interface operations {
88977
89021
  };
88978
89022
  };
88979
89023
  };
89024
+ upload_documents_in_dias_v1_api_connections_dias_parties__dias_id__documents_post: {
89025
+ parameters: {
89026
+ query?: {
89027
+ /**
89028
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
89029
+ * @example EN
89030
+ */
89031
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
89032
+ /**
89033
+ * @description Same as lang, but adds support to pass ?language as well
89034
+ * @example EN
89035
+ */
89036
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
89037
+ };
89038
+ header?: {
89039
+ /** @description Which release to target running in 'STAGING' environment. */
89040
+ "x-release"?: string;
89041
+ };
89042
+ path: {
89043
+ dias_id: string;
89044
+ };
89045
+ cookie?: never;
89046
+ };
89047
+ requestBody: {
89048
+ content: {
89049
+ "application/json": components["schemas"]["upload_documents_in_dias_params"]["data"];
89050
+ };
89051
+ };
89052
+ responses: {
89053
+ /** @description Successful Response */
89054
+ 201: {
89055
+ headers: {
89056
+ [name: string]: unknown;
89057
+ };
89058
+ content: {
89059
+ "application/json": components["schemas"]["StatusReply"];
89060
+ };
89061
+ };
89062
+ /** @description Bad Request */
89063
+ 400: {
89064
+ headers: {
89065
+ [name: string]: unknown;
89066
+ };
89067
+ content: {
89068
+ "application/json": components["schemas"]["Error_4XX"];
89069
+ };
89070
+ };
89071
+ /** @description Unauthorized */
89072
+ 401: {
89073
+ headers: {
89074
+ [name: string]: unknown;
89075
+ };
89076
+ content: {
89077
+ "application/json": components["schemas"]["Error_401"];
89078
+ };
89079
+ };
89080
+ /** @description Forbidden */
89081
+ 403: {
89082
+ headers: {
89083
+ [name: string]: unknown;
89084
+ };
89085
+ content: {
89086
+ "application/json": components["schemas"]["Error_403"];
89087
+ };
89088
+ };
89089
+ /** @description Unprocessable Content */
89090
+ 422: {
89091
+ headers: {
89092
+ [name: string]: unknown;
89093
+ };
89094
+ content: {
89095
+ "application/json": components["schemas"]["Error_422"];
89096
+ };
89097
+ };
89098
+ /** @description Too Many Requests */
89099
+ 429: {
89100
+ headers: {
89101
+ [name: string]: unknown;
89102
+ };
89103
+ content: {
89104
+ "application/json": components["schemas"]["Error_429"];
89105
+ };
89106
+ };
89107
+ /** @description Internal Server Error */
89108
+ 500: {
89109
+ headers: {
89110
+ [name: string]: unknown;
89111
+ };
89112
+ content: {
89113
+ "application/json": components["schemas"]["ServerError"];
89114
+ };
89115
+ };
89116
+ };
89117
+ };
88980
89118
  upload_documents_in_fasterforward_v1_api_connections_fasterforward_parties__fasterforward_id__documents_post: {
88981
89119
  parameters: {
88982
89120
  query?: {
@@ -121789,47 +121927,47 @@ type Middleware = Middleware$1;
121789
121927
  type ClientType = ReturnType<typeof createClient<paths>>;
121790
121928
  declare const wgApiClient: (options: ClientOptions) => ClientType;
121791
121929
 
121792
- declare const routeName$8i = "/v1/api/address/info/premium";
121793
- type GetAddressInfoQueryParams = paths[typeof routeName$8i]['get']['parameters']['query'];
121794
- type GetAddressInfoResponse = paths[typeof routeName$8i]['get']['responses'][200]['content']['application/json'];
121795
- type GetAddressInfoProps = paths[typeof routeName$8i]['get']['parameters'];
121930
+ declare const routeName$8j = "/v1/api/address/info/premium";
121931
+ type GetAddressInfoQueryParams = paths[typeof routeName$8j]['get']['parameters']['query'];
121932
+ type GetAddressInfoResponse = paths[typeof routeName$8j]['get']['responses'][200]['content']['application/json'];
121933
+ type GetAddressInfoProps = paths[typeof routeName$8j]['get']['parameters'];
121796
121934
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
121797
121935
 
121798
- declare const routeName$8h = "/v1/api/address/info/freemium";
121799
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$8h]['get']['parameters']['query'];
121800
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$8h]['get']['responses'][200]['content']['application/json'];
121801
- type GetAddressInfoFreemiumProps = paths[typeof routeName$8h]['get']['parameters'];
121936
+ declare const routeName$8i = "/v1/api/address/info/freemium";
121937
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$8i]['get']['parameters']['query'];
121938
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$8i]['get']['responses'][200]['content']['application/json'];
121939
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$8i]['get']['parameters'];
121802
121940
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
121803
121941
 
121804
- declare const routeName$8g = "/v1/api/weather/info";
121805
- type GetWeatherInfoQueryParams = paths[typeof routeName$8g]['get']['parameters']['query'];
121806
- type GetWeatherInfoResponse = paths[typeof routeName$8g]['get']['responses'][200]['content']['application/json'];
121807
- type GetWeatherInfoProps = paths[typeof routeName$8g]['get']['parameters'];
121942
+ declare const routeName$8h = "/v1/api/weather/info";
121943
+ type GetWeatherInfoQueryParams = paths[typeof routeName$8h]['get']['parameters']['query'];
121944
+ type GetWeatherInfoResponse = paths[typeof routeName$8h]['get']['responses'][200]['content']['application/json'];
121945
+ type GetWeatherInfoProps = paths[typeof routeName$8h]['get']['parameters'];
121808
121946
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
121809
121947
 
121810
- declare const routeName$8f = "/v1/api/address/streets";
121811
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$8f]['get']['parameters']['query'];
121812
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$8f]['get']['responses'][200]['content']['application/json'];
121813
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$8f]['get']['parameters'];
121948
+ declare const routeName$8g = "/v1/api/address/streets";
121949
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$8g]['get']['parameters']['query'];
121950
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$8g]['get']['responses'][200]['content']['application/json'];
121951
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$8g]['get']['parameters'];
121814
121952
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
121815
121953
 
121816
- declare const routeName$8e = "/v1/api/address/search";
121817
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$8e]['get']['parameters']['query'];
121818
- type SearchAddressesByCountryResponse = paths[typeof routeName$8e]['get']['responses'][200]['content']['application/json'];
121819
- type SearchAddressesByCountryProps = paths[typeof routeName$8e]['get']['parameters'];
121954
+ declare const routeName$8f = "/v1/api/address/search";
121955
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$8f]['get']['parameters']['query'];
121956
+ type SearchAddressesByCountryResponse = paths[typeof routeName$8f]['get']['responses'][200]['content']['application/json'];
121957
+ type SearchAddressesByCountryProps = paths[typeof routeName$8f]['get']['parameters'];
121820
121958
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
121821
121959
 
121822
- declare const routeName$8d = "/v1/api/address/cities";
121823
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$8d]['get']['parameters']['query'];
121824
- type SearchCitiesByCountryResponse = paths[typeof routeName$8d]['get']['responses'][200]['content']['application/json'];
121825
- type SearchCitiesByCountryProps = paths[typeof routeName$8d]['get']['parameters'];
121960
+ declare const routeName$8e = "/v1/api/address/cities";
121961
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$8e]['get']['parameters']['query'];
121962
+ type SearchCitiesByCountryResponse = paths[typeof routeName$8e]['get']['responses'][200]['content']['application/json'];
121963
+ type SearchCitiesByCountryProps = paths[typeof routeName$8e]['get']['parameters'];
121826
121964
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
121827
121965
 
121828
- declare const routeName$8c = "/v1/api/advisory-reports/{report_id}/acceptances";
121829
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$8c]['post']['requestBody']['content']['application/json'];
121830
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$8c]['post']['parameters']['path'];
121831
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$8c]['post']['parameters']['query'];
121832
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$8c]['post']['responses'][200]['content']['application/json'];
121966
+ declare const routeName$8d = "/v1/api/advisory-reports/{report_id}/acceptances";
121967
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$8d]['post']['requestBody']['content']['application/json'];
121968
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$8d]['post']['parameters']['path'];
121969
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$8d]['post']['parameters']['query'];
121970
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$8d]['post']['responses'][200]['content']['application/json'];
121833
121971
  interface AcceptOrRejectAnAdvisoryReportProps {
121834
121972
  body: AcceptOrRejectAnAdvisoryReportBody;
121835
121973
  params: {
@@ -121839,16 +121977,16 @@ interface AcceptOrRejectAnAdvisoryReportProps {
121839
121977
  }
121840
121978
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
121841
121979
 
121842
- declare const routeName$8b = "/v1/api/advisory-reports";
121843
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$8b]['get']['parameters']['query'];
121844
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$8b]['get']['responses'][200]['content']['application/json'];
121845
- type GetAllAdvisoryReportsProps = paths[typeof routeName$8b]['get']['parameters'];
121980
+ declare const routeName$8c = "/v1/api/advisory-reports";
121981
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$8c]['get']['parameters']['query'];
121982
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$8c]['get']['responses'][200]['content']['application/json'];
121983
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$8c]['get']['parameters'];
121846
121984
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
121847
121985
 
121848
- declare const routeName$8a = "/v1/api/advisory-reports";
121849
- type CreateAdvisoryReportBody = paths[typeof routeName$8a]['post']['requestBody']['content']['application/json'];
121850
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$8a]['post']['parameters']['query'];
121851
- type CreateAdvisoryReportResponse = paths[typeof routeName$8a]['post']['responses'][201]['content']['application/json'];
121986
+ declare const routeName$8b = "/v1/api/advisory-reports";
121987
+ type CreateAdvisoryReportBody = paths[typeof routeName$8b]['post']['requestBody']['content']['application/json'];
121988
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$8b]['post']['parameters']['query'];
121989
+ type CreateAdvisoryReportResponse = paths[typeof routeName$8b]['post']['responses'][201]['content']['application/json'];
121852
121990
  interface CreateAdvisoryReportProps {
121853
121991
  body: CreateAdvisoryReportBody;
121854
121992
  params: {
@@ -121857,11 +121995,11 @@ interface CreateAdvisoryReportProps {
121857
121995
  }
121858
121996
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
121859
121997
 
121860
- declare const routeName$89 = "/v1/api/advisory-reports/{report_id}/revisions";
121861
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$89]['post']['requestBody']['content']['application/json'];
121862
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$89]['post']['parameters']['path'];
121863
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$89]['post']['parameters']['query'];
121864
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$89]['post']['responses'][201]['content']['application/json'];
121998
+ declare const routeName$8a = "/v1/api/advisory-reports/{report_id}/revisions";
121999
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$8a]['post']['requestBody']['content']['application/json'];
122000
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$8a]['post']['parameters']['path'];
122001
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$8a]['post']['parameters']['query'];
122002
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$8a]['post']['responses'][201]['content']['application/json'];
121865
122003
  interface CreateAdvisoryReportRevisionProps {
121866
122004
  body: CreateAdvisoryReportRevisionBody;
121867
122005
  params: {
@@ -121871,11 +122009,11 @@ interface CreateAdvisoryReportRevisionProps {
121871
122009
  }
121872
122010
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
121873
122011
 
121874
- declare const routeName$88 = "/v2/api/advisory-reports/{report_id}/revisions";
121875
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$88]['post']['requestBody']['content']['application/json'];
121876
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$88]['post']['parameters']['path'];
121877
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$88]['post']['parameters']['query'];
121878
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$88]['post']['responses'][201]['content']['application/json'];
122012
+ declare const routeName$89 = "/v2/api/advisory-reports/{report_id}/revisions";
122013
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$89]['post']['requestBody']['content']['application/json'];
122014
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$89]['post']['parameters']['path'];
122015
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$89]['post']['parameters']['query'];
122016
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$89]['post']['responses'][201]['content']['application/json'];
121879
122017
  interface CreateAdvisoryReportRevisionV2Props {
121880
122018
  body: CreateAdvisoryReportRevisionV2Body;
121881
122019
  params: {
@@ -121885,18 +122023,18 @@ interface CreateAdvisoryReportRevisionV2Props {
121885
122023
  }
121886
122024
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
121887
122025
 
121888
- declare const routeName$87 = "/v1/api/advisory-reports/{report_id}/settings/steps";
121889
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$87]['get']['parameters']['path'];
121890
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$87]['get']['parameters']['query'];
121891
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$87]['get']['responses'][200]['content']['application/json'];
121892
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$87]['get']['parameters'];
122026
+ declare const routeName$88 = "/v1/api/advisory-reports/{report_id}/settings/steps";
122027
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$88]['get']['parameters']['path'];
122028
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$88]['get']['parameters']['query'];
122029
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$88]['get']['responses'][200]['content']['application/json'];
122030
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$88]['get']['parameters'];
121893
122031
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
121894
122032
 
121895
- declare const routeName$86 = "/v1/api/advisory-reports/{report_id}/settings/steps";
121896
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$86]['put']['requestBody']['content']['application/json'];
121897
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$86]['put']['parameters']['path'];
121898
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$86]['put']['parameters']['query'];
121899
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$86]['put']['responses'][200]['content']['application/json'];
122033
+ declare const routeName$87 = "/v1/api/advisory-reports/{report_id}/settings/steps";
122034
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$87]['put']['requestBody']['content']['application/json'];
122035
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$87]['put']['parameters']['path'];
122036
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$87]['put']['parameters']['query'];
122037
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$87]['put']['responses'][200]['content']['application/json'];
121900
122038
  interface CreateAdvisoryReportStepSettingsProps {
121901
122039
  body: CreateAdvisoryReportStepSettingsBody;
121902
122040
  params: {
@@ -121906,11 +122044,11 @@ interface CreateAdvisoryReportStepSettingsProps {
121906
122044
  }
121907
122045
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
121908
122046
 
121909
- declare const routeName$85 = "/v1/api/advisory-reports/{report_id}/insurance-policies";
121910
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$85]['put']['requestBody']['content']['application/json'];
121911
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$85]['put']['parameters']['path'];
121912
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$85]['put']['parameters']['query'];
121913
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$85]['put']['responses'][200]['content']['application/json'];
122047
+ declare const routeName$86 = "/v1/api/advisory-reports/{report_id}/insurance-policies";
122048
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$86]['put']['requestBody']['content']['application/json'];
122049
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$86]['put']['parameters']['path'];
122050
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$86]['put']['parameters']['query'];
122051
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$86]['put']['responses'][200]['content']['application/json'];
121914
122052
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
121915
122053
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
121916
122054
  params: {
@@ -121920,11 +122058,11 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
121920
122058
  }
121921
122059
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
121922
122060
 
121923
- declare const routeName$84 = "/v1/api/advisory-reports/{report_id}/policy-packages";
121924
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$84]['put']['requestBody']['content']['application/json'];
121925
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$84]['put']['parameters']['path'];
121926
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$84]['put']['parameters']['query'];
121927
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$84]['put']['responses'][200]['content']['application/json'];
122061
+ declare const routeName$85 = "/v1/api/advisory-reports/{report_id}/policy-packages";
122062
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$85]['put']['requestBody']['content']['application/json'];
122063
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$85]['put']['parameters']['path'];
122064
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$85]['put']['parameters']['query'];
122065
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$85]['put']['responses'][200]['content']['application/json'];
121928
122066
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
121929
122067
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
121930
122068
  params: {
@@ -121934,11 +122072,11 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
121934
122072
  }
121935
122073
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
121936
122074
 
121937
- declare const routeName$83 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
121938
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$83]['post']['requestBody']['content']['application/json'];
121939
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$83]['post']['parameters']['path'];
121940
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$83]['post']['parameters']['query'];
121941
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$83]['post']['responses'][201]['content']['application/json'];
122075
+ declare const routeName$84 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
122076
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$84]['post']['requestBody']['content']['application/json'];
122077
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$84]['post']['parameters']['path'];
122078
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$84]['post']['parameters']['query'];
122079
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$84]['post']['responses'][201]['content']['application/json'];
121942
122080
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
121943
122081
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
121944
122082
  params: {
@@ -121948,11 +122086,11 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
121948
122086
  }
121949
122087
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
121950
122088
 
121951
- declare const routeName$82 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
121952
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$82]['put']['requestBody']['content']['application/json'];
121953
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$82]['put']['parameters']['path'];
121954
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$82]['put']['parameters']['query'];
121955
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$82]['put']['responses'][201]['content']['application/json'];
122089
+ declare const routeName$83 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
122090
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$83]['put']['requestBody']['content']['application/json'];
122091
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$83]['put']['parameters']['path'];
122092
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$83]['put']['parameters']['query'];
122093
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$83]['put']['responses'][201]['content']['application/json'];
121956
122094
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
121957
122095
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
121958
122096
  params: {
@@ -121962,11 +122100,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
121962
122100
  }
121963
122101
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
121964
122102
 
121965
- declare const routeName$81 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
121966
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$81]['post']['requestBody']['content']['application/json'];
121967
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$81]['post']['parameters']['path'];
121968
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$81]['post']['parameters']['query'];
121969
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$81]['post']['responses'][201]['content']['application/json'];
122103
+ declare const routeName$82 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
122104
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$82]['post']['requestBody']['content']['application/json'];
122105
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$82]['post']['parameters']['path'];
122106
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$82]['post']['parameters']['query'];
122107
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$82]['post']['responses'][201]['content']['application/json'];
121970
122108
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
121971
122109
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
121972
122110
  params: {
@@ -121976,11 +122114,11 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
121976
122114
  }
121977
122115
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
121978
122116
 
121979
- declare const routeName$80 = "/v1/api/advisory-reports/{report_id}/risk-domains";
121980
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$80]['post']['requestBody']['content']['application/json'];
121981
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$80]['post']['parameters']['path'];
121982
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$80]['post']['parameters']['query'];
121983
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$80]['post']['responses'][201]['content']['application/json'];
122117
+ declare const routeName$81 = "/v1/api/advisory-reports/{report_id}/risk-domains";
122118
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$81]['post']['requestBody']['content']['application/json'];
122119
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$81]['post']['parameters']['path'];
122120
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$81]['post']['parameters']['query'];
122121
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$81]['post']['responses'][201]['content']['application/json'];
121984
122122
  interface CreateRiskDomainForAdvisoryReportByIdProps {
121985
122123
  body: CreateRiskDomainForAdvisoryReportByIdBody;
121986
122124
  params: {
@@ -121990,10 +122128,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
121990
122128
  }
121991
122129
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
121992
122130
 
121993
- declare const routeName$7$ = "/v2/api/advisory-reports/{report_id}";
121994
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$7$]['delete']['parameters']['path'];
121995
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7$]['delete']['parameters']['query'];
121996
- type DeleteAdvisoryReportResponse = paths[typeof routeName$7$]['delete']['responses'][200]['content']['application/json'];
122131
+ declare const routeName$80 = "/v2/api/advisory-reports/{report_id}";
122132
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$80]['delete']['parameters']['path'];
122133
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$80]['delete']['parameters']['query'];
122134
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$80]['delete']['responses'][200]['content']['application/json'];
121997
122135
  interface DeleteAdvisoryReportProps {
121998
122136
  params: {
121999
122137
  query: DeleteAdvisoryReportQueryParams;
@@ -122002,17 +122140,17 @@ interface DeleteAdvisoryReportProps {
122002
122140
  }
122003
122141
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
122004
122142
 
122005
- declare const routeName$7_ = "/v1/api/advisory-reports/{report_id}";
122006
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7_]['get']['parameters']['path'];
122007
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7_]['get']['parameters']['query'];
122008
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7_]['get']['responses'][200]['content']['application/json'];
122009
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7_]['get']['parameters'];
122143
+ declare const routeName$7$ = "/v1/api/advisory-reports/{report_id}";
122144
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7$]['get']['parameters']['path'];
122145
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7$]['get']['parameters']['query'];
122146
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7$]['get']['responses'][200]['content']['application/json'];
122147
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7$]['get']['parameters'];
122010
122148
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
122011
122149
 
122012
- declare const routeName$7Z = "/v1/api/advisory-reports/{report_id}";
122013
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7Z]['delete']['parameters']['path'];
122014
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7Z]['delete']['parameters']['query'];
122015
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7Z]['delete']['responses'][200]['content']['application/json'];
122150
+ declare const routeName$7_ = "/v1/api/advisory-reports/{report_id}";
122151
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7_]['delete']['parameters']['path'];
122152
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7_]['delete']['parameters']['query'];
122153
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7_]['delete']['responses'][200]['content']['application/json'];
122016
122154
  interface DeleteAdvisoryReportRevisionProps {
122017
122155
  params: {
122018
122156
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -122021,11 +122159,11 @@ interface DeleteAdvisoryReportRevisionProps {
122021
122159
  }
122022
122160
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
122023
122161
 
122024
- declare const routeName$7Y = "/v1/api/advisory-reports/{report_id}";
122025
- type UpdateAdvisoryReportBody = paths[typeof routeName$7Y]['patch']['requestBody']['content']['application/json'];
122026
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$7Y]['patch']['parameters']['path'];
122027
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7Y]['patch']['parameters']['query'];
122028
- type UpdateAdvisoryReportResponse = paths[typeof routeName$7Y]['patch']['responses'][200]['content']['application/json'];
122162
+ declare const routeName$7Z = "/v1/api/advisory-reports/{report_id}";
122163
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7Z]['patch']['requestBody']['content']['application/json'];
122164
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7Z]['patch']['parameters']['path'];
122165
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7Z]['patch']['parameters']['query'];
122166
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7Z]['patch']['responses'][200]['content']['application/json'];
122029
122167
  interface UpdateAdvisoryReportProps {
122030
122168
  body: UpdateAdvisoryReportBody;
122031
122169
  params: {
@@ -122035,10 +122173,10 @@ interface UpdateAdvisoryReportProps {
122035
122173
  }
122036
122174
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
122037
122175
 
122038
- declare const routeName$7X = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
122039
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7X]['delete']['parameters']['path'];
122040
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7X]['delete']['parameters']['query'];
122041
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7X]['delete']['responses'][200]['content']['application/json'];
122176
+ declare const routeName$7Y = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
122177
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7Y]['delete']['parameters']['path'];
122178
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7Y]['delete']['parameters']['query'];
122179
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7Y]['delete']['responses'][200]['content']['application/json'];
122042
122180
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
122043
122181
  params: {
122044
122182
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -122047,10 +122185,10 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
122047
122185
  }
122048
122186
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
122049
122187
 
122050
- declare const routeName$7W = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
122051
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7W]['delete']['parameters']['path'];
122052
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7W]['delete']['parameters']['query'];
122053
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7W]['delete']['responses'][200]['content']['application/json'];
122188
+ declare const routeName$7X = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
122189
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7X]['delete']['parameters']['path'];
122190
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7X]['delete']['parameters']['query'];
122191
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7X]['delete']['responses'][200]['content']['application/json'];
122054
122192
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
122055
122193
  params: {
122056
122194
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -122059,11 +122197,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
122059
122197
  }
122060
122198
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
122061
122199
 
122062
- declare const routeName$7V = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
122063
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7V]['patch']['requestBody']['content']['application/json'];
122064
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7V]['patch']['parameters']['path'];
122065
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7V]['patch']['parameters']['query'];
122066
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7V]['patch']['responses'][200]['content']['application/json'];
122200
+ declare const routeName$7W = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
122201
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7W]['patch']['requestBody']['content']['application/json'];
122202
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7W]['patch']['parameters']['path'];
122203
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7W]['patch']['parameters']['query'];
122204
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7W]['patch']['responses'][200]['content']['application/json'];
122067
122205
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
122068
122206
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
122069
122207
  params: {
@@ -122073,10 +122211,10 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
122073
122211
  }
122074
122212
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
122075
122213
 
122076
- declare const routeName$7U = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
122077
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7U]['delete']['parameters']['path'];
122078
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7U]['delete']['parameters']['query'];
122079
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7U]['delete']['responses'][200]['content']['application/json'];
122214
+ declare const routeName$7V = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
122215
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7V]['delete']['parameters']['path'];
122216
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7V]['delete']['parameters']['query'];
122217
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7V]['delete']['responses'][200]['content']['application/json'];
122080
122218
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
122081
122219
  params: {
122082
122220
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -122085,11 +122223,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
122085
122223
  }
122086
122224
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
122087
122225
 
122088
- declare const routeName$7T = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
122089
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7T]['patch']['requestBody']['content']['application/json'];
122090
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7T]['patch']['parameters']['path'];
122091
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7T]['patch']['parameters']['query'];
122092
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7T]['patch']['responses'][201]['content']['application/json'];
122226
+ declare const routeName$7U = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
122227
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7U]['patch']['requestBody']['content']['application/json'];
122228
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7U]['patch']['parameters']['path'];
122229
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7U]['patch']['parameters']['query'];
122230
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7U]['patch']['responses'][201]['content']['application/json'];
122093
122231
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
122094
122232
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
122095
122233
  params: {
@@ -122099,10 +122237,10 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
122099
122237
  }
122100
122238
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
122101
122239
 
122102
- declare const routeName$7S = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
122103
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7S]['delete']['parameters']['path'];
122104
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7S]['delete']['parameters']['query'];
122105
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7S]['delete']['responses'][200]['content']['application/json'];
122240
+ declare const routeName$7T = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
122241
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7T]['delete']['parameters']['path'];
122242
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7T]['delete']['parameters']['query'];
122243
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7T]['delete']['responses'][200]['content']['application/json'];
122106
122244
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
122107
122245
  params: {
122108
122246
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -122111,10 +122249,10 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
122111
122249
  }
122112
122250
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
122113
122251
 
122114
- declare const routeName$7R = "/v1/api/advisory-reports/{report_id}/docx";
122115
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7R]['post']['parameters']['path'];
122116
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7R]['post']['parameters']['query'];
122117
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7R]['post']['responses'][200]['content']['application/json'];
122252
+ declare const routeName$7S = "/v1/api/advisory-reports/{report_id}/docx";
122253
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7S]['post']['parameters']['path'];
122254
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7S]['post']['parameters']['query'];
122255
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7S]['post']['responses'][200]['content']['application/json'];
122118
122256
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
122119
122257
  params: {
122120
122258
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -122123,17 +122261,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
122123
122261
  }
122124
122262
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
122125
122263
 
122126
- declare const routeName$7Q = "/v1/api/advisory-reports/{report_id}/pdf";
122127
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7Q]['get']['parameters']['path'];
122128
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
122129
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7Q]['get']['responses'][307]['content']['application/json'];
122130
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7Q]['get']['parameters'];
122264
+ declare const routeName$7R = "/v1/api/advisory-reports/{report_id}/pdf";
122265
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7R]['get']['parameters']['path'];
122266
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7R]['get']['parameters']['query'];
122267
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7R]['get']['responses'][307]['content']['application/json'];
122268
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7R]['get']['parameters'];
122131
122269
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
122132
122270
 
122133
- declare const routeName$7P = "/v1/api/advisory-reports/{report_id}/pdf";
122134
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7P]['post']['parameters']['path'];
122135
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7P]['post']['parameters']['query'];
122136
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7P]['post']['responses'][200]['content']['application/json'];
122271
+ declare const routeName$7Q = "/v1/api/advisory-reports/{report_id}/pdf";
122272
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7Q]['post']['parameters']['path'];
122273
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7Q]['post']['parameters']['query'];
122274
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7Q]['post']['responses'][200]['content']['application/json'];
122137
122275
  interface GeneratePdfOfAdvisoryReportByIdProps {
122138
122276
  params: {
122139
122277
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -122142,9 +122280,9 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
122142
122280
  }
122143
122281
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
122144
122282
 
122145
- declare const routeName$7O = "/v1/api/advisory-reports/{report_id}/personalise-advices";
122146
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7O]['post']['parameters']['path'];
122147
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7O]['post']['responses'][200]['content']['application/json'];
122283
+ declare const routeName$7P = "/v1/api/advisory-reports/{report_id}/personalise-advices";
122284
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7P]['post']['parameters']['path'];
122285
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7P]['post']['responses'][200]['content']['application/json'];
122148
122286
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
122149
122287
  params: {
122150
122288
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -122152,10 +122290,10 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
122152
122290
  }
122153
122291
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
122154
122292
 
122155
- declare const routeName$7N = "/v1/api/advisory-report-front-page-pdf";
122156
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7N]['post']['requestBody']['content']['application/json'];
122157
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7N]['post']['parameters']['query'];
122158
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7N]['post']['responses'][201]['content']['application/json'];
122293
+ declare const routeName$7O = "/v1/api/advisory-report-front-page-pdf";
122294
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7O]['post']['requestBody']['content']['application/json'];
122295
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7O]['post']['parameters']['query'];
122296
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7O]['post']['responses'][201]['content']['application/json'];
122159
122297
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
122160
122298
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
122161
122299
  params: {
@@ -122164,25 +122302,25 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
122164
122302
  }
122165
122303
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
122166
122304
 
122167
- declare const routeName$7M = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
122168
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7M]['get']['parameters']['path'];
122169
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
122170
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
122171
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7M]['get']['parameters'];
122305
+ declare const routeName$7N = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
122306
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7N]['get']['parameters']['path'];
122307
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
122308
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
122309
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7N]['get']['parameters'];
122172
122310
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
122173
122311
 
122174
- declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/events";
122175
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7L]['get']['parameters']['path'];
122176
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7L]['get']['parameters']['query'];
122177
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7L]['get']['responses'][200]['content']['application/json'];
122178
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7L]['get']['parameters'];
122312
+ declare const routeName$7M = "/v1/api/advisory-reports/{report_id}/events";
122313
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7M]['get']['parameters']['path'];
122314
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
122315
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
122316
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7M]['get']['parameters'];
122179
122317
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
122180
122318
 
122181
- declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/conversations";
122182
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7K]['post']['requestBody']['content']['application/json'];
122183
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7K]['post']['parameters']['path'];
122184
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7K]['post']['parameters']['query'];
122185
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7K]['post']['responses'][201]['content']['application/json'];
122319
+ declare const routeName$7L = "/v1/api/advisory-reports/{report_id}/conversations";
122320
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7L]['post']['requestBody']['content']['application/json'];
122321
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7L]['post']['parameters']['path'];
122322
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7L]['post']['parameters']['query'];
122323
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7L]['post']['responses'][201]['content']['application/json'];
122186
122324
  interface LinkConversationToAdvisoryReportProps {
122187
122325
  body: LinkConversationToAdvisoryReportBody;
122188
122326
  params: {
@@ -122192,11 +122330,11 @@ interface LinkConversationToAdvisoryReportProps {
122192
122330
  }
122193
122331
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
122194
122332
 
122195
- declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
122196
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7J]['put']['requestBody']['content']['application/json'];
122197
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7J]['put']['parameters']['path'];
122198
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7J]['put']['parameters']['query'];
122199
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7J]['put']['responses'][200]['content']['application/json'];
122333
+ declare const routeName$7K = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
122334
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7K]['put']['requestBody']['content']['application/json'];
122335
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7K]['put']['parameters']['path'];
122336
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7K]['put']['parameters']['query'];
122337
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7K]['put']['responses'][200]['content']['application/json'];
122200
122338
  interface OrderInsurancePolciesOfAdvisoryReportProps {
122201
122339
  body: OrderInsurancePolciesOfAdvisoryReportBody;
122202
122340
  params: {
@@ -122206,11 +122344,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
122206
122344
  }
122207
122345
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
122208
122346
 
122209
- declare const routeName$7I = "/v1/api/advisory-reports/{report_id}/clauses";
122210
- type PutClausesForReportBody = paths[typeof routeName$7I]['put']['requestBody']['content']['application/json'];
122211
- type PutClausesForReportPathParams = paths[typeof routeName$7I]['put']['parameters']['path'];
122212
- type PutClausesForReportQueryParams = paths[typeof routeName$7I]['put']['parameters']['query'];
122213
- type PutClausesForReportResponse = paths[typeof routeName$7I]['put']['responses'][200]['content']['application/json'];
122347
+ declare const routeName$7J = "/v1/api/advisory-reports/{report_id}/clauses";
122348
+ type PutClausesForReportBody = paths[typeof routeName$7J]['put']['requestBody']['content']['application/json'];
122349
+ type PutClausesForReportPathParams = paths[typeof routeName$7J]['put']['parameters']['path'];
122350
+ type PutClausesForReportQueryParams = paths[typeof routeName$7J]['put']['parameters']['query'];
122351
+ type PutClausesForReportResponse = paths[typeof routeName$7J]['put']['responses'][200]['content']['application/json'];
122214
122352
  interface PutClausesForReportProps {
122215
122353
  body: PutClausesForReportBody;
122216
122354
  params: {
@@ -122220,11 +122358,11 @@ interface PutClausesForReportProps {
122220
122358
  }
122221
122359
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
122222
122360
 
122223
- declare const routeName$7H = "/v1/api/advisory-reports/{report_id}/email-inquiries";
122224
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
122225
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7H]['post']['parameters']['path'];
122226
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
122227
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7H]['post']['responses'][201]['content']['application/json'];
122361
+ declare const routeName$7I = "/v1/api/advisory-reports/{report_id}/email-inquiries";
122362
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$7I]['post']['requestBody']['content']['application/json'];
122363
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7I]['post']['parameters']['path'];
122364
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7I]['post']['parameters']['query'];
122365
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7I]['post']['responses'][201]['content']['application/json'];
122228
122366
  interface SendAdvisoryReportAsMailProps {
122229
122367
  body: SendAdvisoryReportAsMailBody;
122230
122368
  params: {
@@ -122234,15 +122372,15 @@ interface SendAdvisoryReportAsMailProps {
122234
122372
  }
122235
122373
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
122236
122374
 
122237
- declare const routeName$7G = "/v1/api/affiliations";
122238
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
122375
+ declare const routeName$7H = "/v1/api/affiliations";
122376
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7H]['get']['responses'][200]['content']['application/json'];
122239
122377
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
122240
122378
 
122241
- declare const routeName$7F = "/v1/api/anvaflows/{session_id}/calculate";
122242
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
122243
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
122244
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
122245
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7F]['post']['responses'][200]['content']['application/json'];
122379
+ declare const routeName$7G = "/v1/api/anvaflows/{session_id}/calculate";
122380
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
122381
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$7G]['post']['parameters']['path'];
122382
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
122383
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$7G]['post']['responses'][200]['content']['application/json'];
122246
122384
  interface CalculateAnvaquotesBySessionIdProps {
122247
122385
  body: CalculateAnvaquotesBySessionIdBody;
122248
122386
  params: {
@@ -122252,11 +122390,11 @@ interface CalculateAnvaquotesBySessionIdProps {
122252
122390
  }
122253
122391
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
122254
122392
 
122255
- declare const routeName$7E = "/v1/api/anvaflows/{session_id}/anva-party";
122256
- type CreateAnvaPartyViaConversationBody = paths[typeof routeName$7E]['post']['requestBody']['content']['application/json'];
122257
- type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
122258
- type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
122259
- type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$7E]['post']['responses'][201]['content']['application/json'];
122393
+ declare const routeName$7F = "/v1/api/anvaflows/{session_id}/anva-party";
122394
+ type CreateAnvaPartyViaConversationBody = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
122395
+ type CreateAnvaPartyViaConversationPathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
122396
+ type CreateAnvaPartyViaConversationQueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
122397
+ type CreateAnvaPartyViaConversationResponse = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
122260
122398
  interface CreateAnvaPartyViaConversationProps {
122261
122399
  body: CreateAnvaPartyViaConversationBody;
122262
122400
  params: {
@@ -122266,11 +122404,11 @@ interface CreateAnvaPartyViaConversationProps {
122266
122404
  }
122267
122405
  declare const createAnvaPartyViaConversation: (props: CreateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyViaConversationResponse>;
122268
122406
 
122269
- declare const routeName$7D = "/v1/api/anvaflows/{session_id}/anva-party";
122270
- type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$7D]['patch']['requestBody']['content']['application/json'];
122271
- type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$7D]['patch']['parameters']['path'];
122272
- type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$7D]['patch']['parameters']['query'];
122273
- type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$7D]['patch']['responses'][200]['content']['application/json'];
122407
+ declare const routeName$7E = "/v1/api/anvaflows/{session_id}/anva-party";
122408
+ type UpdateAnvaPartyViaConversationBody = paths[typeof routeName$7E]['patch']['requestBody']['content']['application/json'];
122409
+ type UpdateAnvaPartyViaConversationPathParams = paths[typeof routeName$7E]['patch']['parameters']['path'];
122410
+ type UpdateAnvaPartyViaConversationQueryParams = paths[typeof routeName$7E]['patch']['parameters']['query'];
122411
+ type UpdateAnvaPartyViaConversationResponse = paths[typeof routeName$7E]['patch']['responses'][200]['content']['application/json'];
122274
122412
  interface UpdateAnvaPartyViaConversationProps {
122275
122413
  body: UpdateAnvaPartyViaConversationBody;
122276
122414
  params: {
@@ -122280,16 +122418,16 @@ interface UpdateAnvaPartyViaConversationProps {
122280
122418
  }
122281
122419
  declare const updateAnvaPartyViaConversation: (props: UpdateAnvaPartyViaConversationProps, wgApiClient: ClientType) => Promise<UpdateAnvaPartyViaConversationResponse>;
122282
122420
 
122283
- declare const routeName$7C = "/v1/api/anvaflows/supported-tags";
122284
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7C]['get']['parameters']['query'];
122285
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7C]['get']['responses'][200]['content']['application/json'];
122286
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7C]['get']['parameters'];
122421
+ declare const routeName$7D = "/v1/api/anvaflows/supported-tags";
122422
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7D]['get']['parameters']['query'];
122423
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7D]['get']['responses'][200]['content']['application/json'];
122424
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7D]['get']['parameters'];
122287
122425
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
122288
122426
 
122289
- declare const routeName$7B = "/v1/api/anvaflows/supported-tags";
122290
- type CreateAnvaflowTagsBody = paths[typeof routeName$7B]['put']['requestBody']['content']['application/json'];
122291
- type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7B]['put']['parameters']['query'];
122292
- type CreateAnvaflowTagsResponse = paths[typeof routeName$7B]['put']['responses'][200]['content']['application/json'];
122427
+ declare const routeName$7C = "/v1/api/anvaflows/supported-tags";
122428
+ type CreateAnvaflowTagsBody = paths[typeof routeName$7C]['put']['requestBody']['content']['application/json'];
122429
+ type CreateAnvaflowTagsQueryParams = paths[typeof routeName$7C]['put']['parameters']['query'];
122430
+ type CreateAnvaflowTagsResponse = paths[typeof routeName$7C]['put']['responses'][200]['content']['application/json'];
122293
122431
  interface CreateAnvaflowTagsProps {
122294
122432
  body: CreateAnvaflowTagsBody;
122295
122433
  params: {
@@ -122298,10 +122436,10 @@ interface CreateAnvaflowTagsProps {
122298
122436
  }
122299
122437
  declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
122300
122438
 
122301
- declare const routeName$7A = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
122302
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$7A]['delete']['parameters']['path'];
122303
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$7A]['delete']['parameters']['query'];
122304
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$7A]['delete']['responses'][200]['content']['application/json'];
122439
+ declare const routeName$7B = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
122440
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$7B]['delete']['parameters']['path'];
122441
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$7B]['delete']['parameters']['query'];
122442
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$7B]['delete']['responses'][200]['content']['application/json'];
122305
122443
  interface DeleteAnvaClosingQuestionsProps {
122306
122444
  params: {
122307
122445
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -122310,11 +122448,11 @@ interface DeleteAnvaClosingQuestionsProps {
122310
122448
  }
122311
122449
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
122312
122450
 
122313
- declare const routeName$7z = "/v2/api/anvaflows/{session_id}/calculate";
122314
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$7z]['post']['requestBody']['content']['application/json'];
122315
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$7z]['post']['parameters']['path'];
122316
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7z]['post']['parameters']['query'];
122317
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$7z]['post']['responses'][202]['content']['application/json'];
122451
+ declare const routeName$7A = "/v2/api/anvaflows/{session_id}/calculate";
122452
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$7A]['post']['requestBody']['content']['application/json'];
122453
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$7A]['post']['parameters']['path'];
122454
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$7A]['post']['parameters']['query'];
122455
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$7A]['post']['responses'][202]['content']['application/json'];
122318
122456
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
122319
122457
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
122320
122458
  params: {
@@ -122324,11 +122462,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
122324
122462
  }
122325
122463
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
122326
122464
 
122327
- declare const routeName$7y = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
122328
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
122329
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
122330
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
122331
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$7y]['post']['responses'][202]['content']['application/json'];
122465
+ declare const routeName$7z = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
122466
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$7z]['post']['requestBody']['content']['application/json'];
122467
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$7z]['post']['parameters']['path'];
122468
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$7z]['post']['parameters']['query'];
122469
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$7z]['post']['responses'][202]['content']['application/json'];
122332
122470
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
122333
122471
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
122334
122472
  params: {
@@ -122338,10 +122476,10 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
122338
122476
  }
122339
122477
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
122340
122478
 
122341
- declare const routeName$7x = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
122342
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
122343
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
122344
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$7x]['post']['responses'][202]['content']['application/json'];
122479
+ declare const routeName$7y = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
122480
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
122481
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
122482
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$7y]['post']['responses'][202]['content']['application/json'];
122345
122483
  interface EnqueueSendOfferToAnvaBySessionIdProps {
122346
122484
  params: {
122347
122485
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -122350,16 +122488,16 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
122350
122488
  }
122351
122489
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
122352
122490
 
122353
- declare const routeName$7w = "/v1/api/anvaflows/closing-questions";
122354
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$7w]['get']['parameters']['query'];
122355
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$7w]['get']['responses'][200]['content']['application/json'];
122356
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$7w]['get']['parameters'];
122491
+ declare const routeName$7x = "/v1/api/anvaflows/closing-questions";
122492
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$7x]['get']['parameters']['query'];
122493
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$7x]['get']['responses'][200]['content']['application/json'];
122494
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$7x]['get']['parameters'];
122357
122495
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
122358
122496
 
122359
- declare const routeName$7v = "/v1/api/anvaflows/closing-questions";
122360
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$7v]['put']['requestBody']['content']['application/json'];
122361
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$7v]['put']['parameters']['query'];
122362
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$7v]['put']['responses'][200]['content']['application/json'];
122497
+ declare const routeName$7w = "/v1/api/anvaflows/closing-questions";
122498
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$7w]['put']['requestBody']['content']['application/json'];
122499
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$7w]['put']['parameters']['query'];
122500
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$7w]['put']['responses'][200]['content']['application/json'];
122363
122501
  interface UpsertAnvaClosingQuestionsProps {
122364
122502
  body: UpsertAnvaClosingQuestionsBody;
122365
122503
  params: {
@@ -122368,37 +122506,37 @@ interface UpsertAnvaClosingQuestionsProps {
122368
122506
  }
122369
122507
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
122370
122508
 
122371
- declare const routeName$7u = "/v1/api/anvaflows/{session_id}/collection-methods";
122372
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$7u]['get']['parameters']['path'];
122373
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
122374
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
122375
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$7u]['get']['parameters'];
122509
+ declare const routeName$7v = "/v1/api/anvaflows/{session_id}/collection-methods";
122510
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$7v]['get']['parameters']['path'];
122511
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$7v]['get']['parameters']['query'];
122512
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$7v]['get']['responses'][200]['content']['application/json'];
122513
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$7v]['get']['parameters'];
122376
122514
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
122377
122515
 
122378
- declare const routeName$7t = "/v1/api/anvaflows/labels";
122379
- type GetAnvaLabelsQueryParams = paths[typeof routeName$7t]['get']['parameters']['query'];
122380
- type GetAnvaLabelsResponse = paths[typeof routeName$7t]['get']['responses'][200]['content']['application/json'];
122381
- type GetAnvaLabelsProps = paths[typeof routeName$7t]['get']['parameters'];
122516
+ declare const routeName$7u = "/v1/api/anvaflows/labels";
122517
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
122518
+ type GetAnvaLabelsResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
122519
+ type GetAnvaLabelsProps = paths[typeof routeName$7u]['get']['parameters'];
122382
122520
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
122383
122521
 
122384
- declare const routeName$7s = "/v1/api/anvaflows/mutation-reasons";
122385
- type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
122386
- type GetAnvaMutationReasonsResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
122387
- type GetAnvaMutationReasonsProps = paths[typeof routeName$7s]['get']['parameters'];
122522
+ declare const routeName$7t = "/v1/api/anvaflows/mutation-reasons";
122523
+ type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$7t]['get']['parameters']['query'];
122524
+ type GetAnvaMutationReasonsResponse = paths[typeof routeName$7t]['get']['responses'][200]['content']['application/json'];
122525
+ type GetAnvaMutationReasonsProps = paths[typeof routeName$7t]['get']['parameters'];
122388
122526
  declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
122389
122527
 
122390
- declare const routeName$7r = "/v1/api/anvaproducts/{anva_product_id}";
122391
- type GetAnvaproductByIdPathParams = paths[typeof routeName$7r]['get']['parameters']['path'];
122392
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$7r]['get']['parameters']['query'];
122393
- type GetAnvaproductByIdResponse = paths[typeof routeName$7r]['get']['responses'][200]['content']['application/json'];
122394
- type GetAnvaproductByIdProps = paths[typeof routeName$7r]['get']['parameters'];
122528
+ declare const routeName$7s = "/v1/api/anvaproducts/{anva_product_id}";
122529
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$7s]['get']['parameters']['path'];
122530
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
122531
+ type GetAnvaproductByIdResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
122532
+ type GetAnvaproductByIdProps = paths[typeof routeName$7s]['get']['parameters'];
122395
122533
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
122396
122534
 
122397
- declare const routeName$7q = "/v1/api/anvaproducts/{anva_product_id}";
122398
- type PatchAnvaproductByIdBody = paths[typeof routeName$7q]['patch']['requestBody']['content']['application/json'];
122399
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$7q]['patch']['parameters']['path'];
122400
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$7q]['patch']['parameters']['query'];
122401
- type PatchAnvaproductByIdResponse = paths[typeof routeName$7q]['patch']['responses'][200]['content']['application/json'];
122535
+ declare const routeName$7r = "/v1/api/anvaproducts/{anva_product_id}";
122536
+ type PatchAnvaproductByIdBody = paths[typeof routeName$7r]['patch']['requestBody']['content']['application/json'];
122537
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$7r]['patch']['parameters']['path'];
122538
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$7r]['patch']['parameters']['query'];
122539
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$7r]['patch']['responses'][200]['content']['application/json'];
122402
122540
  interface PatchAnvaproductByIdProps {
122403
122541
  body: PatchAnvaproductByIdBody;
122404
122542
  params: {
@@ -122408,40 +122546,40 @@ interface PatchAnvaproductByIdProps {
122408
122546
  }
122409
122547
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
122410
122548
 
122411
- declare const routeName$7p = "/v1/api/anvaproducts";
122412
- type GetAnvaproductsQueryParams = paths[typeof routeName$7p]['get']['parameters']['query'];
122413
- type GetAnvaproductsResponse = paths[typeof routeName$7p]['get']['responses'][200]['content']['application/json'];
122414
- type GetAnvaproductsProps = paths[typeof routeName$7p]['get']['parameters'];
122549
+ declare const routeName$7q = "/v1/api/anvaproducts";
122550
+ type GetAnvaproductsQueryParams = paths[typeof routeName$7q]['get']['parameters']['query'];
122551
+ type GetAnvaproductsResponse = paths[typeof routeName$7q]['get']['responses'][200]['content']['application/json'];
122552
+ type GetAnvaproductsProps = paths[typeof routeName$7q]['get']['parameters'];
122415
122553
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
122416
122554
 
122417
- declare const routeName$7o = "/v1/api/anvaflows/supported-coverages";
122418
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
122419
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
122420
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7o]['get']['parameters'];
122555
+ declare const routeName$7p = "/v1/api/anvaflows/supported-coverages";
122556
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$7p]['get']['parameters']['query'];
122557
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$7p]['get']['responses'][200]['content']['application/json'];
122558
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$7p]['get']['parameters'];
122421
122559
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
122422
122560
 
122423
- declare const routeName$7n = "/v1/api/anvaflows/supported-adn-coverages";
122424
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7n]['get']['parameters']['query'];
122425
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7n]['get']['responses'][200]['content']['application/json'];
122426
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7n]['get']['parameters'];
122561
+ declare const routeName$7o = "/v1/api/anvaflows/supported-adn-coverages";
122562
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
122563
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
122564
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$7o]['get']['parameters'];
122427
122565
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
122428
122566
 
122429
- declare const routeName$7m = "/v1/api/anvaflows/supported-insurance-companies";
122430
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7m]['get']['parameters']['query'];
122431
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7m]['get']['responses'][200]['content']['application/json'];
122432
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7m]['get']['parameters'];
122567
+ declare const routeName$7n = "/v1/api/anvaflows/supported-insurance-companies";
122568
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$7n]['get']['parameters']['query'];
122569
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$7n]['get']['responses'][200]['content']['application/json'];
122570
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$7n]['get']['parameters'];
122433
122571
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
122434
122572
 
122435
- declare const routeName$7l = "/v1/api/anvaflows/supported-insurances";
122436
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
122437
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
122438
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7l]['get']['parameters'];
122573
+ declare const routeName$7m = "/v1/api/anvaflows/supported-insurances";
122574
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7m]['get']['parameters']['query'];
122575
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7m]['get']['responses'][200]['content']['application/json'];
122576
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7m]['get']['parameters'];
122439
122577
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
122440
122578
 
122441
- declare const routeName$7k = "/v1/api/anvaproducts/import";
122442
- type ImportAnvaproductBody = paths[typeof routeName$7k]['post']['requestBody']['content']['application/json'];
122443
- type ImportAnvaproductQueryParams = paths[typeof routeName$7k]['post']['parameters']['query'];
122444
- type ImportAnvaproductResponse = paths[typeof routeName$7k]['post']['responses'][200]['content']['application/json'];
122579
+ declare const routeName$7l = "/v1/api/anvaproducts/import";
122580
+ type ImportAnvaproductBody = paths[typeof routeName$7l]['post']['requestBody']['content']['application/json'];
122581
+ type ImportAnvaproductQueryParams = paths[typeof routeName$7l]['post']['parameters']['query'];
122582
+ type ImportAnvaproductResponse = paths[typeof routeName$7l]['post']['responses'][200]['content']['application/json'];
122445
122583
  interface ImportAnvaproductProps {
122446
122584
  body: ImportAnvaproductBody;
122447
122585
  params: {
@@ -122450,11 +122588,11 @@ interface ImportAnvaproductProps {
122450
122588
  }
122451
122589
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
122452
122590
 
122453
- declare const routeName$7j = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
122454
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$7j]['patch']['requestBody']['content']['application/json'];
122455
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$7j]['patch']['parameters']['path'];
122456
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$7j]['patch']['parameters']['query'];
122457
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$7j]['patch']['responses'][200]['content']['application/json'];
122591
+ declare const routeName$7k = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
122592
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$7k]['patch']['requestBody']['content']['application/json'];
122593
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$7k]['patch']['parameters']['path'];
122594
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$7k]['patch']['parameters']['query'];
122595
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$7k]['patch']['responses'][200]['content']['application/json'];
122458
122596
  interface PatchAnvaproductCoverageByIdProps {
122459
122597
  body: PatchAnvaproductCoverageByIdBody;
122460
122598
  params: {
@@ -122464,11 +122602,11 @@ interface PatchAnvaproductCoverageByIdProps {
122464
122602
  }
122465
122603
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
122466
122604
 
122467
- declare const routeName$7i = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
122468
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$7i]['post']['requestBody']['content']['application/json'];
122469
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
122470
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
122471
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$7i]['post']['responses'][200]['content']['application/json'];
122605
+ declare const routeName$7j = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
122606
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$7j]['post']['requestBody']['content']['application/json'];
122607
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$7j]['post']['parameters']['path'];
122608
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$7j]['post']['parameters']['query'];
122609
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$7j]['post']['responses'][200]['content']['application/json'];
122472
122610
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
122473
122611
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
122474
122612
  params: {
@@ -122478,11 +122616,11 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
122478
122616
  }
122479
122617
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
122480
122618
 
122481
- declare const routeName$7h = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
122482
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$7h]['post']['requestBody']['content']['application/json'];
122483
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$7h]['post']['parameters']['path'];
122484
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$7h]['post']['parameters']['query'];
122485
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$7h]['post']['responses'][200]['content']['application/json'];
122619
+ declare const routeName$7i = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
122620
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$7i]['post']['requestBody']['content']['application/json'];
122621
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
122622
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
122623
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$7i]['post']['responses'][200]['content']['application/json'];
122486
122624
  interface RecalculateSimulationBySessionIdProps {
122487
122625
  body: RecalculateSimulationBySessionIdBody;
122488
122626
  params: {
@@ -122492,18 +122630,18 @@ interface RecalculateSimulationBySessionIdProps {
122492
122630
  }
122493
122631
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
122494
122632
 
122495
- declare const routeName$7g = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
122496
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$7g]['get']['parameters']['path'];
122497
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$7g]['get']['parameters']['query'];
122498
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$7g]['get']['responses'][200]['content']['application/json'];
122499
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$7g]['get']['parameters'];
122633
+ declare const routeName$7h = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
122634
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$7h]['get']['parameters']['path'];
122635
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
122636
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
122637
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$7h]['get']['parameters'];
122500
122638
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
122501
122639
 
122502
- declare const routeName$7f = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
122503
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$7f]['put']['requestBody']['content']['application/json'];
122504
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$7f]['put']['parameters']['path'];
122505
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$7f]['put']['parameters']['query'];
122506
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$7f]['put']['responses'][200]['content']['application/json'];
122640
+ declare const routeName$7g = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
122641
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$7g]['put']['requestBody']['content']['application/json'];
122642
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$7g]['put']['parameters']['path'];
122643
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$7g]['put']['parameters']['query'];
122644
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$7g]['put']['responses'][200]['content']['application/json'];
122507
122645
  interface UpdateAnvaflowsQuestionnaireProps {
122508
122646
  body: UpdateAnvaflowsQuestionnaireBody;
122509
122647
  params: {
@@ -122513,11 +122651,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
122513
122651
  }
122514
122652
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
122515
122653
 
122516
- declare const routeName$7e = "/v1/api/anvaflows/{session_id}/send-offer-mail";
122517
- type SendOfferMailBySessionIdBody = paths[typeof routeName$7e]['post']['requestBody']['content']['application/json'];
122518
- type SendOfferMailBySessionIdPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
122519
- type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
122520
- type SendOfferMailBySessionIdResponse = paths[typeof routeName$7e]['post']['responses'][201]['content']['application/json'];
122654
+ declare const routeName$7f = "/v1/api/anvaflows/{session_id}/send-offer-mail";
122655
+ type SendOfferMailBySessionIdBody = paths[typeof routeName$7f]['post']['requestBody']['content']['application/json'];
122656
+ type SendOfferMailBySessionIdPathParams = paths[typeof routeName$7f]['post']['parameters']['path'];
122657
+ type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$7f]['post']['parameters']['query'];
122658
+ type SendOfferMailBySessionIdResponse = paths[typeof routeName$7f]['post']['responses'][201]['content']['application/json'];
122521
122659
  interface SendOfferMailBySessionIdProps {
122522
122660
  body: SendOfferMailBySessionIdBody;
122523
122661
  params: {
@@ -122527,10 +122665,10 @@ interface SendOfferMailBySessionIdProps {
122527
122665
  }
122528
122666
  declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
122529
122667
 
122530
- declare const routeName$7d = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
122531
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$7d]['post']['parameters']['path'];
122532
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$7d]['post']['parameters']['query'];
122533
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$7d]['post']['responses'][201]['content']['application/json'];
122668
+ declare const routeName$7e = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
122669
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
122670
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
122671
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$7e]['post']['responses'][201]['content']['application/json'];
122534
122672
  interface SendOfferToAnvaBySessionIdProps {
122535
122673
  params: {
122536
122674
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -122539,10 +122677,10 @@ interface SendOfferToAnvaBySessionIdProps {
122539
122677
  }
122540
122678
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
122541
122679
 
122542
- declare const routeName$7c = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
122543
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$7c]['post']['requestBody']['content']['application/json'];
122544
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$7c]['post']['parameters']['query'];
122545
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$7c]['post']['responses'][200]['content']['application/json'];
122680
+ declare const routeName$7d = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
122681
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$7d]['post']['requestBody']['content']['application/json'];
122682
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$7d]['post']['parameters']['query'];
122683
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$7d]['post']['responses'][200]['content']['application/json'];
122546
122684
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
122547
122685
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
122548
122686
  params: {
@@ -122551,11 +122689,11 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
122551
122689
  }
122552
122690
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
122553
122691
 
122554
- declare const routeName$7b = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
122555
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$7b]['post']['requestBody']['content']['application/json'];
122556
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$7b]['post']['parameters']['path'];
122557
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$7b]['post']['parameters']['query'];
122558
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$7b]['post']['responses'][200]['content']['application/json'];
122692
+ declare const routeName$7c = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
122693
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$7c]['post']['requestBody']['content']['application/json'];
122694
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$7c]['post']['parameters']['path'];
122695
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$7c]['post']['parameters']['query'];
122696
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$7c]['post']['responses'][200]['content']['application/json'];
122559
122697
  interface ValidateAnvaflowsQuestionnaireProps {
122560
122698
  body: ValidateAnvaflowsQuestionnaireBody;
122561
122699
  params: {
@@ -122565,28 +122703,28 @@ interface ValidateAnvaflowsQuestionnaireProps {
122565
122703
  }
122566
122704
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
122567
122705
 
122568
- declare const routeName$7a = "/v1/api/anva-producers/{anva_producer_id}";
122569
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$7a]['get']['parameters']['path'];
122570
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
122571
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$7a]['get']['parameters'];
122706
+ declare const routeName$7b = "/v1/api/anva-producers/{anva_producer_id}";
122707
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$7b]['get']['parameters']['path'];
122708
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$7b]['get']['responses'][200]['content']['application/json'];
122709
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$7b]['get']['parameters'];
122572
122710
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
122573
122711
 
122574
- declare const routeName$79 = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
122575
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$79]['get']['parameters']['path'];
122576
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
122577
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$79]['get']['parameters'];
122712
+ declare const routeName$7a = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
122713
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$7a]['get']['parameters']['path'];
122714
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
122715
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$7a]['get']['parameters'];
122578
122716
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
122579
122717
 
122580
- declare const routeName$78 = "/v1/api/brokers/{broker_id}/integrations";
122581
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$78]['get']['parameters']['path'];
122582
- type GetBrokerIntegrationsResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
122583
- type GetBrokerIntegrationsProps = paths[typeof routeName$78]['get']['parameters'];
122718
+ declare const routeName$79 = "/v1/api/brokers/{broker_id}/integrations";
122719
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$79]['get']['parameters']['path'];
122720
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
122721
+ type GetBrokerIntegrationsProps = paths[typeof routeName$79]['get']['parameters'];
122584
122722
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
122585
122723
 
122586
- declare const routeName$77 = "/v1/api/brokers/{broker_id}/integrations";
122587
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$77]['patch']['requestBody']['content']['application/json'];
122588
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$77]['patch']['parameters']['path'];
122589
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$77]['patch']['responses'][200]['content']['application/json'];
122724
+ declare const routeName$78 = "/v1/api/brokers/{broker_id}/integrations";
122725
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$78]['patch']['requestBody']['content']['application/json'];
122726
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$78]['patch']['parameters']['path'];
122727
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$78]['patch']['responses'][200]['content']['application/json'];
122590
122728
  interface UpdateBrokerIntegrationsProps {
122591
122729
  body: UpdateBrokerIntegrationsBody;
122592
122730
  params: {
@@ -122595,27 +122733,27 @@ interface UpdateBrokerIntegrationsProps {
122595
122733
  }
122596
122734
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
122597
122735
 
122598
- declare const routeName$76 = "/v1/api/brokers/me";
122599
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
122736
+ declare const routeName$77 = "/v1/api/brokers/me";
122737
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
122600
122738
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
122601
122739
 
122602
- declare const routeName$75 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
122603
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$75]['get']['parameters']['path'];
122604
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$75]['get']['parameters']['query'];
122605
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$75]['get']['responses'][200]['content']['application/json'];
122606
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$75]['get']['parameters'];
122740
+ declare const routeName$76 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
122741
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$76]['get']['parameters']['path'];
122742
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$76]['get']['parameters']['query'];
122743
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
122744
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$76]['get']['parameters'];
122607
122745
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
122608
122746
 
122609
- declare const routeName$74 = "/v1/api/brokers/{broker_id}";
122610
- type GetTheBrokerByIdPathParams = paths[typeof routeName$74]['get']['parameters']['path'];
122611
- type GetTheBrokerByIdResponse = paths[typeof routeName$74]['get']['responses'][200]['content']['application/json'];
122612
- type GetTheBrokerByIdProps = paths[typeof routeName$74]['get']['parameters'];
122747
+ declare const routeName$75 = "/v1/api/brokers/{broker_id}";
122748
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$75]['get']['parameters']['path'];
122749
+ type GetTheBrokerByIdResponse = paths[typeof routeName$75]['get']['responses'][200]['content']['application/json'];
122750
+ type GetTheBrokerByIdProps = paths[typeof routeName$75]['get']['parameters'];
122613
122751
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
122614
122752
 
122615
- declare const routeName$73 = "/v1/api/brokers/{broker_id}";
122616
- type UpdateBrokerByBrokerBody = paths[typeof routeName$73]['patch']['requestBody']['content']['application/json'];
122617
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$73]['patch']['parameters']['path'];
122618
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$73]['patch']['responses'][200]['content']['application/json'];
122753
+ declare const routeName$74 = "/v1/api/brokers/{broker_id}";
122754
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$74]['patch']['requestBody']['content']['application/json'];
122755
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$74]['patch']['parameters']['path'];
122756
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$74]['patch']['responses'][200]['content']['application/json'];
122619
122757
  interface UpdateBrokerByBrokerProps {
122620
122758
  body: UpdateBrokerByBrokerBody;
122621
122759
  params: {
@@ -122624,16 +122762,16 @@ interface UpdateBrokerByBrokerProps {
122624
122762
  }
122625
122763
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
122626
122764
 
122627
- declare const routeName$72 = "/v1/api/campaigns";
122628
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
122629
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
122630
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$72]['get']['parameters'];
122765
+ declare const routeName$73 = "/v1/api/campaigns";
122766
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
122767
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
122768
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$73]['get']['parameters'];
122631
122769
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
122632
122770
 
122633
- declare const routeName$71 = "/v1/api/campaigns";
122634
- type CreateCampaignBody = paths[typeof routeName$71]['post']['requestBody']['content']['application/json'];
122635
- type CreateCampaignQueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
122636
- type CreateCampaignResponse = paths[typeof routeName$71]['post']['responses'][201]['content']['application/json'];
122771
+ declare const routeName$72 = "/v1/api/campaigns";
122772
+ type CreateCampaignBody = paths[typeof routeName$72]['post']['requestBody']['content']['application/json'];
122773
+ type CreateCampaignQueryParams = paths[typeof routeName$72]['post']['parameters']['query'];
122774
+ type CreateCampaignResponse = paths[typeof routeName$72]['post']['responses'][201]['content']['application/json'];
122637
122775
  interface CreateCampaignProps {
122638
122776
  body: CreateCampaignBody;
122639
122777
  params: {
@@ -122642,10 +122780,10 @@ interface CreateCampaignProps {
122642
122780
  }
122643
122781
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
122644
122782
 
122645
- declare const routeName$70 = "/v1/api/campaigns/dns-prefixes/generate";
122646
- type GenerateDnsPrefixBody = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
122647
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
122648
- type GenerateDnsPrefixResponse = paths[typeof routeName$70]['post']['responses'][200]['content']['application/json'];
122783
+ declare const routeName$71 = "/v1/api/campaigns/dns-prefixes/generate";
122784
+ type GenerateDnsPrefixBody = paths[typeof routeName$71]['post']['requestBody']['content']['application/json'];
122785
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
122786
+ type GenerateDnsPrefixResponse = paths[typeof routeName$71]['post']['responses'][200]['content']['application/json'];
122649
122787
  interface GenerateDnsPrefixProps {
122650
122788
  body: GenerateDnsPrefixBody;
122651
122789
  params: {
@@ -122654,24 +122792,24 @@ interface GenerateDnsPrefixProps {
122654
122792
  }
122655
122793
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
122656
122794
 
122657
- declare const routeName$6$ = "/v1/api/campaign-templates";
122658
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6$]['get']['parameters']['query'];
122659
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$6$]['get']['responses'][200]['content']['application/json'];
122660
- type GetAllCampaignTemplatesProps = paths[typeof routeName$6$]['get']['parameters'];
122795
+ declare const routeName$70 = "/v1/api/campaign-templates";
122796
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$70]['get']['parameters']['query'];
122797
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$70]['get']['responses'][200]['content']['application/json'];
122798
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$70]['get']['parameters'];
122661
122799
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
122662
122800
 
122663
- declare const routeName$6_ = "/v1/api/campaigns/{campaign_id}";
122664
- type GetCampaignByIdPathParams = paths[typeof routeName$6_]['get']['parameters']['path'];
122665
- type GetCampaignByIdQueryParams = paths[typeof routeName$6_]['get']['parameters']['query'];
122666
- type GetCampaignByIdResponse = paths[typeof routeName$6_]['get']['responses'][200]['content']['application/json'];
122667
- type GetCampaignByIdProps = paths[typeof routeName$6_]['get']['parameters'];
122801
+ declare const routeName$6$ = "/v1/api/campaigns/{campaign_id}";
122802
+ type GetCampaignByIdPathParams = paths[typeof routeName$6$]['get']['parameters']['path'];
122803
+ type GetCampaignByIdQueryParams = paths[typeof routeName$6$]['get']['parameters']['query'];
122804
+ type GetCampaignByIdResponse = paths[typeof routeName$6$]['get']['responses'][200]['content']['application/json'];
122805
+ type GetCampaignByIdProps = paths[typeof routeName$6$]['get']['parameters'];
122668
122806
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
122669
122807
 
122670
- declare const routeName$6Z = "/v1/api/campaigns/{campaign_id}";
122671
- type UpdateCampaignBody = paths[typeof routeName$6Z]['patch']['requestBody']['content']['application/json'];
122672
- type UpdateCampaignPathParams = paths[typeof routeName$6Z]['patch']['parameters']['path'];
122673
- type UpdateCampaignQueryParams = paths[typeof routeName$6Z]['patch']['parameters']['query'];
122674
- type UpdateCampaignResponse = paths[typeof routeName$6Z]['patch']['responses'][200]['content']['application/json'];
122808
+ declare const routeName$6_ = "/v1/api/campaigns/{campaign_id}";
122809
+ type UpdateCampaignBody = paths[typeof routeName$6_]['patch']['requestBody']['content']['application/json'];
122810
+ type UpdateCampaignPathParams = paths[typeof routeName$6_]['patch']['parameters']['path'];
122811
+ type UpdateCampaignQueryParams = paths[typeof routeName$6_]['patch']['parameters']['query'];
122812
+ type UpdateCampaignResponse = paths[typeof routeName$6_]['patch']['responses'][200]['content']['application/json'];
122675
122813
  interface UpdateCampaignProps {
122676
122814
  body: UpdateCampaignBody;
122677
122815
  params: {
@@ -122681,28 +122819,28 @@ interface UpdateCampaignProps {
122681
122819
  }
122682
122820
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
122683
122821
 
122684
- declare const routeName$6Y = "/v1/api/distributions/campaign-settings";
122685
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
122686
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
122687
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6Y]['get']['parameters'];
122822
+ declare const routeName$6Z = "/v1/api/distributions/campaign-settings";
122823
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6Z]['get']['parameters']['query'];
122824
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6Z]['get']['responses'][200]['content']['application/json'];
122825
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6Z]['get']['parameters'];
122688
122826
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
122689
122827
 
122690
- declare const routeName$6X = "/v1/api/mail-templates/campaign-target";
122691
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
122692
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
122693
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6X]['get']['parameters'];
122828
+ declare const routeName$6Y = "/v1/api/mail-templates/campaign-target";
122829
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
122830
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
122831
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6Y]['get']['parameters'];
122694
122832
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
122695
122833
 
122696
- declare const routeName$6W = "/v1/api/campaigns/{campaign_id}/metrics";
122697
- type GetMetricsByCampaignPathParams = paths[typeof routeName$6W]['get']['parameters']['path'];
122698
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$6W]['get']['parameters']['query'];
122699
- type GetMetricsByCampaignResponse = paths[typeof routeName$6W]['get']['responses'][200]['content']['application/json'];
122700
- type GetMetricsByCampaignProps = paths[typeof routeName$6W]['get']['parameters'];
122834
+ declare const routeName$6X = "/v1/api/campaigns/{campaign_id}/metrics";
122835
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$6X]['get']['parameters']['path'];
122836
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
122837
+ type GetMetricsByCampaignResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
122838
+ type GetMetricsByCampaignProps = paths[typeof routeName$6X]['get']['parameters'];
122701
122839
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
122702
122840
 
122703
- declare const routeName$6V = "/v1/api/campaigns/example-mails";
122704
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6V]['post']['parameters']['query'];
122705
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6V]['post']['responses'][201]['content']['application/json'];
122841
+ declare const routeName$6W = "/v1/api/campaigns/example-mails";
122842
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6W]['post']['parameters']['query'];
122843
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6W]['post']['responses'][201]['content']['application/json'];
122706
122844
  interface SendExampleCampaignTargetMailProps {
122707
122845
  params: {
122708
122846
  query: SendExampleCampaignTargetMailQueryParams;
@@ -122710,10 +122848,10 @@ interface SendExampleCampaignTargetMailProps {
122710
122848
  }
122711
122849
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
122712
122850
 
122713
- declare const routeName$6U = "/v1/api/campaigns/{campaign_id}/targets";
122714
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6U]['patch']['parameters']['path'];
122715
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6U]['patch']['parameters']['query'];
122716
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$6U]['patch']['responses'][200]['content']['application/json'];
122851
+ declare const routeName$6V = "/v1/api/campaigns/{campaign_id}/targets";
122852
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6V]['patch']['parameters']['path'];
122853
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6V]['patch']['parameters']['query'];
122854
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$6V]['patch']['responses'][200]['content']['application/json'];
122717
122855
  interface UpdateTargetsByCampaignProps {
122718
122856
  params: {
122719
122857
  query: UpdateTargetsByCampaignQueryParams;
@@ -122722,17 +122860,17 @@ interface UpdateTargetsByCampaignProps {
122722
122860
  }
122723
122861
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
122724
122862
 
122725
- declare const routeName$6T = "/v1/api/claims/{claim_id}/report";
122726
- type ClaimReportByIdPathParams = paths[typeof routeName$6T]['get']['parameters']['path'];
122727
- type ClaimReportByIdQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
122728
- type ClaimReportByIdResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
122729
- type ClaimReportByIdProps = paths[typeof routeName$6T]['get']['parameters'];
122863
+ declare const routeName$6U = "/v1/api/claims/{claim_id}/report";
122864
+ type ClaimReportByIdPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
122865
+ type ClaimReportByIdQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
122866
+ type ClaimReportByIdResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
122867
+ type ClaimReportByIdProps = paths[typeof routeName$6U]['get']['parameters'];
122730
122868
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
122731
122869
 
122732
- declare const routeName$6S = "/v1/api/claims/{claim_id}/request_update";
122733
- type ClaimRequestUpdatePathParams = paths[typeof routeName$6S]['post']['parameters']['path'];
122734
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$6S]['post']['parameters']['query'];
122735
- type ClaimRequestUpdateResponse = paths[typeof routeName$6S]['post']['responses'][200]['content']['application/json'];
122870
+ declare const routeName$6T = "/v1/api/claims/{claim_id}/request_update";
122871
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$6T]['post']['parameters']['path'];
122872
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$6T]['post']['parameters']['query'];
122873
+ type ClaimRequestUpdateResponse = paths[typeof routeName$6T]['post']['responses'][200]['content']['application/json'];
122736
122874
  interface ClaimRequestUpdateProps {
122737
122875
  params: {
122738
122876
  query: ClaimRequestUpdateQueryParams;
@@ -122741,15 +122879,15 @@ interface ClaimRequestUpdateProps {
122741
122879
  }
122742
122880
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
122743
122881
 
122744
- declare const routeName$6R = "/v1/api/claims";
122745
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
122746
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
122747
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$6R]['get']['parameters'];
122882
+ declare const routeName$6S = "/v1/api/claims";
122883
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
122884
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
122885
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$6S]['get']['parameters'];
122748
122886
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
122749
122887
 
122750
- declare const routeName$6Q = "/v1/api/claims";
122751
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6Q]['post']['parameters']['query'];
122752
- type CreateClaimAsBrokerResponse = paths[typeof routeName$6Q]['post']['responses'][201]['content']['application/json'];
122888
+ declare const routeName$6R = "/v1/api/claims";
122889
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
122890
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$6R]['post']['responses'][201]['content']['application/json'];
122753
122891
  interface CreateClaimAsBrokerProps {
122754
122892
  params: {
122755
122893
  query: CreateClaimAsBrokerQueryParams;
@@ -122757,10 +122895,10 @@ interface CreateClaimAsBrokerProps {
122757
122895
  }
122758
122896
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
122759
122897
 
122760
- declare const routeName$6P = "/v1/api/distributions/{distribution_id}/claims";
122761
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$6P]['post']['parameters']['path'];
122762
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
122763
- type CreateClaimAsCustomerResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
122898
+ declare const routeName$6Q = "/v1/api/distributions/{distribution_id}/claims";
122899
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$6Q]['post']['parameters']['path'];
122900
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6Q]['post']['parameters']['query'];
122901
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$6Q]['post']['responses'][201]['content']['application/json'];
122764
122902
  interface CreateClaimAsCustomerProps {
122765
122903
  params: {
122766
122904
  query: CreateClaimAsCustomerQueryParams;
@@ -122769,10 +122907,10 @@ interface CreateClaimAsCustomerProps {
122769
122907
  }
122770
122908
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
122771
122909
 
122772
- declare const routeName$6O = "/v1/api/claims/{claim_id}/documents";
122773
- type CreateDocumentForClaimPathParams = paths[typeof routeName$6O]['post']['parameters']['path'];
122774
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$6O]['post']['parameters']['query'];
122775
- type CreateDocumentForClaimResponse = paths[typeof routeName$6O]['post']['responses'][201]['content']['application/json'];
122910
+ declare const routeName$6P = "/v1/api/claims/{claim_id}/documents";
122911
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$6P]['post']['parameters']['path'];
122912
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
122913
+ type CreateDocumentForClaimResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
122776
122914
  interface CreateDocumentForClaimProps {
122777
122915
  params: {
122778
122916
  query: CreateDocumentForClaimQueryParams;
@@ -122781,10 +122919,10 @@ interface CreateDocumentForClaimProps {
122781
122919
  }
122782
122920
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
122783
122921
 
122784
- declare const routeName$6N = "/v1/api/claims/customer/token/{token}/documents";
122785
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$6N]['post']['parameters']['path'];
122786
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$6N]['post']['parameters']['query'];
122787
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$6N]['post']['responses'][200]['content']['application/json'];
122922
+ declare const routeName$6O = "/v1/api/claims/customer/token/{token}/documents";
122923
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$6O]['post']['parameters']['path'];
122924
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$6O]['post']['parameters']['query'];
122925
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$6O]['post']['responses'][200]['content']['application/json'];
122788
122926
  interface CreateDocumentForClaimAsCustomerProps {
122789
122927
  params: {
122790
122928
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -122793,10 +122931,10 @@ interface CreateDocumentForClaimAsCustomerProps {
122793
122931
  }
122794
122932
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
122795
122933
 
122796
- declare const routeName$6M = "/v1/api/claims/{claim_id}/entities";
122797
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$6M]['post']['parameters']['path'];
122798
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$6M]['post']['parameters']['query'];
122799
- type CreateEntityAsBrokerResponse = paths[typeof routeName$6M]['post']['responses'][201]['content']['application/json'];
122934
+ declare const routeName$6N = "/v1/api/claims/{claim_id}/entities";
122935
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$6N]['post']['parameters']['path'];
122936
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$6N]['post']['parameters']['query'];
122937
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$6N]['post']['responses'][201]['content']['application/json'];
122800
122938
  interface CreateEntityAsBrokerProps {
122801
122939
  params: {
122802
122940
  query: CreateEntityAsBrokerQueryParams;
@@ -122805,10 +122943,10 @@ interface CreateEntityAsBrokerProps {
122805
122943
  }
122806
122944
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
122807
122945
 
122808
- declare const routeName$6L = "/v1/api/claims/customer/token/{token}/entities";
122809
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6L]['post']['parameters']['path'];
122810
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6L]['post']['parameters']['query'];
122811
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6L]['post']['responses'][201]['content']['application/json'];
122946
+ declare const routeName$6M = "/v1/api/claims/customer/token/{token}/entities";
122947
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6M]['post']['parameters']['path'];
122948
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6M]['post']['parameters']['query'];
122949
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6M]['post']['responses'][201]['content']['application/json'];
122812
122950
  interface CreateEntityAsCustomerWithTokenProps {
122813
122951
  params: {
122814
122952
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -122817,10 +122955,10 @@ interface CreateEntityAsCustomerWithTokenProps {
122817
122955
  }
122818
122956
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
122819
122957
 
122820
- declare const routeName$6K = "/v1/api/claims/{claim_id}/lock";
122821
- type CreateLockForClaimPathParams = paths[typeof routeName$6K]['post']['parameters']['path'];
122822
- type CreateLockForClaimQueryParams = paths[typeof routeName$6K]['post']['parameters']['query'];
122823
- type CreateLockForClaimResponse = paths[typeof routeName$6K]['post']['responses'][201]['content']['application/json'];
122958
+ declare const routeName$6L = "/v1/api/claims/{claim_id}/lock";
122959
+ type CreateLockForClaimPathParams = paths[typeof routeName$6L]['post']['parameters']['path'];
122960
+ type CreateLockForClaimQueryParams = paths[typeof routeName$6L]['post']['parameters']['query'];
122961
+ type CreateLockForClaimResponse = paths[typeof routeName$6L]['post']['responses'][201]['content']['application/json'];
122824
122962
  interface CreateLockForClaimProps {
122825
122963
  params: {
122826
122964
  query: CreateLockForClaimQueryParams;
@@ -122829,10 +122967,10 @@ interface CreateLockForClaimProps {
122829
122967
  }
122830
122968
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
122831
122969
 
122832
- declare const routeName$6J = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
122833
- type CreateNoteOnEventPathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
122834
- type CreateNoteOnEventQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
122835
- type CreateNoteOnEventResponse = paths[typeof routeName$6J]['post']['responses'][201]['content']['application/json'];
122970
+ declare const routeName$6K = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
122971
+ type CreateNoteOnEventPathParams = paths[typeof routeName$6K]['post']['parameters']['path'];
122972
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$6K]['post']['parameters']['query'];
122973
+ type CreateNoteOnEventResponse = paths[typeof routeName$6K]['post']['responses'][201]['content']['application/json'];
122836
122974
  interface CreateNoteOnEventProps {
122837
122975
  params: {
122838
122976
  query: CreateNoteOnEventQueryParams;
@@ -122841,10 +122979,10 @@ interface CreateNoteOnEventProps {
122841
122979
  }
122842
122980
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
122843
122981
 
122844
- declare const routeName$6I = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
122845
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
122846
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
122847
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
122982
+ declare const routeName$6J = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
122983
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
122984
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
122985
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$6J]['post']['responses'][200]['content']['application/json'];
122848
122986
  interface CreateNoteOnEventAsCustomerProps {
122849
122987
  params: {
122850
122988
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -122853,10 +122991,10 @@ interface CreateNoteOnEventAsCustomerProps {
122853
122991
  }
122854
122992
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
122855
122993
 
122856
- declare const routeName$6H = "/v1/api/claims/customer/upload/{claim_doc_category}";
122857
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6H]['post']['parameters']['path'];
122858
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
122859
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6H]['post']['responses'][200]['content']['application/json'];
122994
+ declare const routeName$6I = "/v1/api/claims/customer/upload/{claim_doc_category}";
122995
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
122996
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
122997
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
122860
122998
  interface CreateUploadLinkAsCustomerProps {
122861
122999
  params: {
122862
123000
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -122865,17 +123003,17 @@ interface CreateUploadLinkAsCustomerProps {
122865
123003
  }
122866
123004
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
122867
123005
 
122868
- declare const routeName$6G = "/v1/api/claims/{claim_id}";
122869
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6G]['get']['parameters']['path'];
122870
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
122871
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
122872
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$6G]['get']['parameters'];
123006
+ declare const routeName$6H = "/v1/api/claims/{claim_id}";
123007
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6H]['get']['parameters']['path'];
123008
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6H]['get']['parameters']['query'];
123009
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
123010
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$6H]['get']['parameters'];
122873
123011
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
122874
123012
 
122875
- declare const routeName$6F = "/v1/api/claims/{claim_id}";
122876
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6F]['delete']['parameters']['path'];
122877
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6F]['delete']['parameters']['query'];
122878
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6F]['delete']['responses'][200]['content']['application/json'];
123013
+ declare const routeName$6G = "/v1/api/claims/{claim_id}";
123014
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6G]['delete']['parameters']['path'];
123015
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6G]['delete']['parameters']['query'];
123016
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6G]['delete']['responses'][200]['content']['application/json'];
122879
123017
  interface DeleteClaimAsBrokerByIdProps {
122880
123018
  params: {
122881
123019
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -122884,10 +123022,10 @@ interface DeleteClaimAsBrokerByIdProps {
122884
123022
  }
122885
123023
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
122886
123024
 
122887
- declare const routeName$6E = "/v1/api/claims/{claim_id}";
122888
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6E]['patch']['parameters']['path'];
122889
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6E]['patch']['parameters']['query'];
122890
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6E]['patch']['responses'][200]['content']['application/json'];
123025
+ declare const routeName$6F = "/v1/api/claims/{claim_id}";
123026
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6F]['patch']['parameters']['path'];
123027
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6F]['patch']['parameters']['query'];
123028
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6F]['patch']['responses'][200]['content']['application/json'];
122891
123029
  interface UpdateClaimAsBrokerByIdProps {
122892
123030
  params: {
122893
123031
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -122896,17 +123034,17 @@ interface UpdateClaimAsBrokerByIdProps {
122896
123034
  }
122897
123035
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
122898
123036
 
122899
- declare const routeName$6D = "/v1/api/claims/{claim_id}/documents/{document_id}";
122900
- type DownloadDocumentByIdPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
122901
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
122902
- type DownloadDocumentByIdResponse = paths[typeof routeName$6D]['get']['responses'][307]['content']['application/json'];
122903
- type DownloadDocumentByIdProps = paths[typeof routeName$6D]['get']['parameters'];
123037
+ declare const routeName$6E = "/v1/api/claims/{claim_id}/documents/{document_id}";
123038
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
123039
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
123040
+ type DownloadDocumentByIdResponse = paths[typeof routeName$6E]['get']['responses'][307]['content']['application/json'];
123041
+ type DownloadDocumentByIdProps = paths[typeof routeName$6E]['get']['parameters'];
122904
123042
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
122905
123043
 
122906
- declare const routeName$6C = "/v1/api/claims/{claim_id}/documents/{document_id}";
122907
- type DeleteDocumentByIdPathParams = paths[typeof routeName$6C]['delete']['parameters']['path'];
122908
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$6C]['delete']['parameters']['query'];
122909
- type DeleteDocumentByIdResponse = paths[typeof routeName$6C]['delete']['responses'][200]['content']['application/json'];
123044
+ declare const routeName$6D = "/v1/api/claims/{claim_id}/documents/{document_id}";
123045
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$6D]['delete']['parameters']['path'];
123046
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$6D]['delete']['parameters']['query'];
123047
+ type DeleteDocumentByIdResponse = paths[typeof routeName$6D]['delete']['responses'][200]['content']['application/json'];
122910
123048
  interface DeleteDocumentByIdProps {
122911
123049
  params: {
122912
123050
  query: DeleteDocumentByIdQueryParams;
@@ -122915,10 +123053,10 @@ interface DeleteDocumentByIdProps {
122915
123053
  }
122916
123054
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
122917
123055
 
122918
- declare const routeName$6B = "/v1/api/claims/{claim_id}/documents/{document_id}";
122919
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6B]['patch']['parameters']['path'];
122920
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6B]['patch']['parameters']['query'];
122921
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6B]['patch']['responses'][200]['content']['application/json'];
123056
+ declare const routeName$6C = "/v1/api/claims/{claim_id}/documents/{document_id}";
123057
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6C]['patch']['parameters']['path'];
123058
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6C]['patch']['parameters']['query'];
123059
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6C]['patch']['responses'][200]['content']['application/json'];
122922
123060
  interface UpdateDocumentMetadataByIdProps {
122923
123061
  params: {
122924
123062
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -122927,10 +123065,10 @@ interface UpdateDocumentMetadataByIdProps {
122927
123065
  }
122928
123066
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
122929
123067
 
122930
- declare const routeName$6A = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
122931
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6A]['delete']['parameters']['path'];
122932
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6A]['delete']['parameters']['query'];
122933
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$6A]['delete']['responses'][200]['content']['application/json'];
123068
+ declare const routeName$6B = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
123069
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6B]['delete']['parameters']['path'];
123070
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6B]['delete']['parameters']['query'];
123071
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$6B]['delete']['responses'][200]['content']['application/json'];
122934
123072
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
122935
123073
  params: {
122936
123074
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -122939,10 +123077,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
122939
123077
  }
122940
123078
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
122941
123079
 
122942
- declare const routeName$6z = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
122943
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6z]['patch']['parameters']['path'];
122944
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6z]['patch']['parameters']['query'];
122945
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$6z]['patch']['responses'][200]['content']['application/json'];
123080
+ declare const routeName$6A = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
123081
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6A]['patch']['parameters']['path'];
123082
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6A]['patch']['parameters']['query'];
123083
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$6A]['patch']['responses'][200]['content']['application/json'];
122946
123084
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
122947
123085
  params: {
122948
123086
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -122951,10 +123089,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
122951
123089
  }
122952
123090
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
122953
123091
 
122954
- declare const routeName$6y = "/v1/api/claims/{claim_id}/entities/{entity_id}";
122955
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$6y]['delete']['parameters']['path'];
122956
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$6y]['delete']['parameters']['query'];
122957
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$6y]['delete']['responses'][200]['content']['application/json'];
123092
+ declare const routeName$6z = "/v1/api/claims/{claim_id}/entities/{entity_id}";
123093
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$6z]['delete']['parameters']['path'];
123094
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$6z]['delete']['parameters']['query'];
123095
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$6z]['delete']['responses'][200]['content']['application/json'];
122958
123096
  interface DeleteEntityAsBrokerByIdProps {
122959
123097
  params: {
122960
123098
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -122963,10 +123101,10 @@ interface DeleteEntityAsBrokerByIdProps {
122963
123101
  }
122964
123102
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
122965
123103
 
122966
- declare const routeName$6x = "/v1/api/claims/{claim_id}/entities/{entity_id}";
122967
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$6x]['patch']['parameters']['path'];
122968
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$6x]['patch']['parameters']['query'];
122969
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$6x]['patch']['responses'][200]['content']['application/json'];
123104
+ declare const routeName$6y = "/v1/api/claims/{claim_id}/entities/{entity_id}";
123105
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$6y]['patch']['parameters']['path'];
123106
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$6y]['patch']['parameters']['query'];
123107
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$6y]['patch']['responses'][200]['content']['application/json'];
122970
123108
  interface UpdateEntityAsBrokerByIdProps {
122971
123109
  params: {
122972
123110
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -122975,10 +123113,10 @@ interface UpdateEntityAsBrokerByIdProps {
122975
123113
  }
122976
123114
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
122977
123115
 
122978
- declare const routeName$6w = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
122979
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6w]['delete']['parameters']['path'];
122980
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6w]['delete']['parameters']['query'];
122981
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6w]['delete']['responses'][200]['content']['application/json'];
123116
+ declare const routeName$6x = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
123117
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$6x]['delete']['parameters']['path'];
123118
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$6x]['delete']['parameters']['query'];
123119
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$6x]['delete']['responses'][200]['content']['application/json'];
122982
123120
  interface DeleteEntityByIdAsCustomerWithTokenProps {
122983
123121
  params: {
122984
123122
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -122987,10 +123125,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
122987
123125
  }
122988
123126
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
122989
123127
 
122990
- declare const routeName$6v = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
122991
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6v]['patch']['parameters']['path'];
122992
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6v]['patch']['parameters']['query'];
122993
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6v]['patch']['responses'][200]['content']['application/json'];
123128
+ declare const routeName$6w = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
123129
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6w]['patch']['parameters']['path'];
123130
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6w]['patch']['parameters']['query'];
123131
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6w]['patch']['responses'][200]['content']['application/json'];
122994
123132
  interface UpdateEntityAsCustomerWithTokenProps {
122995
123133
  params: {
122996
123134
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -122999,10 +123137,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
122999
123137
  }
123000
123138
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
123001
123139
 
123002
- declare const routeName$6u = "/v1/api/claims/notes/{note_id}";
123003
- type DeleteNotePathParams = paths[typeof routeName$6u]['delete']['parameters']['path'];
123004
- type DeleteNoteQueryParams = paths[typeof routeName$6u]['delete']['parameters']['query'];
123005
- type DeleteNoteResponse = paths[typeof routeName$6u]['delete']['responses'][200]['content']['application/json'];
123140
+ declare const routeName$6v = "/v1/api/claims/notes/{note_id}";
123141
+ type DeleteNotePathParams = paths[typeof routeName$6v]['delete']['parameters']['path'];
123142
+ type DeleteNoteQueryParams = paths[typeof routeName$6v]['delete']['parameters']['query'];
123143
+ type DeleteNoteResponse = paths[typeof routeName$6v]['delete']['responses'][200]['content']['application/json'];
123006
123144
  interface DeleteNoteProps {
123007
123145
  params: {
123008
123146
  query: DeleteNoteQueryParams;
@@ -123011,10 +123149,10 @@ interface DeleteNoteProps {
123011
123149
  }
123012
123150
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
123013
123151
 
123014
- declare const routeName$6t = "/v1/api/claims/notes/{note_id}";
123015
- type UpdateNotePathParams = paths[typeof routeName$6t]['patch']['parameters']['path'];
123016
- type UpdateNoteQueryParams = paths[typeof routeName$6t]['patch']['parameters']['query'];
123017
- type UpdateNoteResponse = paths[typeof routeName$6t]['patch']['responses'][200]['content']['application/json'];
123152
+ declare const routeName$6u = "/v1/api/claims/notes/{note_id}";
123153
+ type UpdateNotePathParams = paths[typeof routeName$6u]['patch']['parameters']['path'];
123154
+ type UpdateNoteQueryParams = paths[typeof routeName$6u]['patch']['parameters']['query'];
123155
+ type UpdateNoteResponse = paths[typeof routeName$6u]['patch']['responses'][200]['content']['application/json'];
123018
123156
  interface UpdateNoteProps {
123019
123157
  params: {
123020
123158
  query: UpdateNoteQueryParams;
@@ -123023,9 +123161,9 @@ interface UpdateNoteProps {
123023
123161
  }
123024
123162
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
123025
123163
 
123026
- declare const routeName$6s = "/v1/api/claims/generate/token";
123027
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6s]['post']['parameters']['query'];
123028
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6s]['post']['responses'][201]['content']['application/json'];
123164
+ declare const routeName$6t = "/v1/api/claims/generate/token";
123165
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$6t]['post']['parameters']['query'];
123166
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$6t]['post']['responses'][201]['content']['application/json'];
123029
123167
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
123030
123168
  params: {
123031
123169
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -123033,21 +123171,21 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
123033
123171
  }
123034
123172
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
123035
123173
 
123036
- declare const routeName$6r = "/v1/api/claims/categories/CAR";
123037
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$6r]['get']['responses'][200]['content']['application/json'];
123174
+ declare const routeName$6s = "/v1/api/claims/categories/CAR";
123175
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$6s]['get']['responses'][200]['content']['application/json'];
123038
123176
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
123039
123177
 
123040
- declare const routeName$6q = "/v1/api/claims/customer/token/{token}";
123041
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6q]['get']['parameters']['path'];
123042
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6q]['get']['parameters']['query'];
123043
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6q]['get']['responses'][200]['content']['application/json'];
123044
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6q]['get']['parameters'];
123178
+ declare const routeName$6r = "/v1/api/claims/customer/token/{token}";
123179
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6r]['get']['parameters']['path'];
123180
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6r]['get']['parameters']['query'];
123181
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6r]['get']['responses'][200]['content']['application/json'];
123182
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6r]['get']['parameters'];
123045
123183
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
123046
123184
 
123047
- declare const routeName$6p = "/v1/api/claims/customer/token/{token}";
123048
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6p]['patch']['parameters']['path'];
123049
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6p]['patch']['parameters']['query'];
123050
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6p]['patch']['responses'][200]['content']['application/json'];
123185
+ declare const routeName$6q = "/v1/api/claims/customer/token/{token}";
123186
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6q]['patch']['parameters']['path'];
123187
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6q]['patch']['parameters']['query'];
123188
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6q]['patch']['responses'][200]['content']['application/json'];
123051
123189
  interface UpdateClaimAsCustomerWithTokenProps {
123052
123190
  params: {
123053
123191
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -123056,31 +123194,31 @@ interface UpdateClaimAsCustomerWithTokenProps {
123056
123194
  }
123057
123195
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
123058
123196
 
123059
- declare const routeName$6o = "/v1/api/claims/{claim_id}/events";
123060
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$6o]['get']['parameters']['path'];
123061
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$6o]['get']['parameters']['query'];
123062
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
123063
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$6o]['get']['parameters'];
123197
+ declare const routeName$6p = "/v1/api/claims/{claim_id}/events";
123198
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$6p]['get']['parameters']['path'];
123199
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$6p]['get']['parameters']['query'];
123200
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$6p]['get']['responses'][200]['content']['application/json'];
123201
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$6p]['get']['parameters'];
123064
123202
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
123065
123203
 
123066
- declare const routeName$6n = "/v1/api/claims/customer/token/{token}/events";
123067
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$6n]['get']['parameters']['path'];
123068
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$6n]['get']['parameters']['query'];
123069
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
123070
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$6n]['get']['parameters'];
123204
+ declare const routeName$6o = "/v1/api/claims/customer/token/{token}/events";
123205
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$6o]['get']['parameters']['path'];
123206
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$6o]['get']['parameters']['query'];
123207
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
123208
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$6o]['get']['parameters'];
123071
123209
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
123072
123210
 
123073
- declare const routeName$6m = "/v1/api/claims/info/{claim_type}/{claim_category}";
123074
- type GetInfoForClaimPathParams = paths[typeof routeName$6m]['get']['parameters']['path'];
123075
- type GetInfoForClaimQueryParams = paths[typeof routeName$6m]['get']['parameters']['query'];
123076
- type GetInfoForClaimResponse = paths[typeof routeName$6m]['get']['responses'][200]['content']['application/json'];
123077
- type GetInfoForClaimProps = paths[typeof routeName$6m]['get']['parameters'];
123211
+ declare const routeName$6n = "/v1/api/claims/info/{claim_type}/{claim_category}";
123212
+ type GetInfoForClaimPathParams = paths[typeof routeName$6n]['get']['parameters']['path'];
123213
+ type GetInfoForClaimQueryParams = paths[typeof routeName$6n]['get']['parameters']['query'];
123214
+ type GetInfoForClaimResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
123215
+ type GetInfoForClaimProps = paths[typeof routeName$6n]['get']['parameters'];
123078
123216
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
123079
123217
 
123080
- declare const routeName$6l = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
123081
- type SendClaimToKeypointPathParams = paths[typeof routeName$6l]['post']['parameters']['path'];
123082
- type SendClaimToKeypointQueryParams = paths[typeof routeName$6l]['post']['parameters']['query'];
123083
- type SendClaimToKeypointResponse = paths[typeof routeName$6l]['post']['responses'][201]['content']['application/json'];
123218
+ declare const routeName$6m = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
123219
+ type SendClaimToKeypointPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
123220
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
123221
+ type SendClaimToKeypointResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
123084
123222
  interface SendClaimToKeypointProps {
123085
123223
  params: {
123086
123224
  query: SendClaimToKeypointQueryParams;
@@ -123089,10 +123227,10 @@ interface SendClaimToKeypointProps {
123089
123227
  }
123090
123228
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
123091
123229
 
123092
- declare const routeName$6k = "/v1/api/claims/{claim_id}/report/email";
123093
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$6k]['post']['parameters']['path'];
123094
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$6k]['post']['parameters']['query'];
123095
- type SendMailClaimReportByIdResponse = paths[typeof routeName$6k]['post']['responses'][200]['content']['application/json'];
123230
+ declare const routeName$6l = "/v1/api/claims/{claim_id}/report/email";
123231
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$6l]['post']['parameters']['path'];
123232
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$6l]['post']['parameters']['query'];
123233
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$6l]['post']['responses'][200]['content']['application/json'];
123096
123234
  interface SendMailClaimReportByIdProps {
123097
123235
  params: {
123098
123236
  query: SendMailClaimReportByIdQueryParams;
@@ -123101,10 +123239,10 @@ interface SendMailClaimReportByIdProps {
123101
123239
  }
123102
123240
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
123103
123241
 
123104
- declare const routeName$6j = "/v1/api/claims/{claim_id}/customer/followup-page/email";
123105
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$6j]['post']['parameters']['path'];
123106
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$6j]['post']['parameters']['query'];
123107
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$6j]['post']['responses'][200]['content']['application/json'];
123242
+ declare const routeName$6k = "/v1/api/claims/{claim_id}/customer/followup-page/email";
123243
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$6k]['post']['parameters']['path'];
123244
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$6k]['post']['parameters']['query'];
123245
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$6k]['post']['responses'][200]['content']['application/json'];
123108
123246
  interface SendMailFollowupPageToCustomerProps {
123109
123247
  params: {
123110
123248
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -123113,10 +123251,10 @@ interface SendMailFollowupPageToCustomerProps {
123113
123251
  }
123114
123252
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
123115
123253
 
123116
- declare const routeName$6i = "/v1/api/claims/{claim_id}/unlock";
123117
- type UnlockClaimPathParams = paths[typeof routeName$6i]['post']['parameters']['path'];
123118
- type UnlockClaimQueryParams = paths[typeof routeName$6i]['post']['parameters']['query'];
123119
- type UnlockClaimResponse = paths[typeof routeName$6i]['post']['responses'][200]['content']['application/json'];
123254
+ declare const routeName$6j = "/v1/api/claims/{claim_id}/unlock";
123255
+ type UnlockClaimPathParams = paths[typeof routeName$6j]['post']['parameters']['path'];
123256
+ type UnlockClaimQueryParams = paths[typeof routeName$6j]['post']['parameters']['query'];
123257
+ type UnlockClaimResponse = paths[typeof routeName$6j]['post']['responses'][200]['content']['application/json'];
123120
123258
  interface UnlockClaimProps {
123121
123259
  params: {
123122
123260
  query: UnlockClaimQueryParams;
@@ -123125,10 +123263,10 @@ interface UnlockClaimProps {
123125
123263
  }
123126
123264
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
123127
123265
 
123128
- declare const routeName$6h = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
123129
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6h]['put']['parameters']['path'];
123130
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6h]['put']['parameters']['query'];
123131
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$6h]['put']['responses'][200]['content']['application/json'];
123266
+ declare const routeName$6i = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
123267
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6i]['put']['parameters']['path'];
123268
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6i]['put']['parameters']['query'];
123269
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$6i]['put']['responses'][200]['content']['application/json'];
123132
123270
  interface UpdateDeclarationRemarkProps {
123133
123271
  params: {
123134
123272
  query: UpdateDeclarationRemarkQueryParams;
@@ -123137,10 +123275,10 @@ interface UpdateDeclarationRemarkProps {
123137
123275
  }
123138
123276
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
123139
123277
 
123140
- declare const routeName$6g = "/v1/api/claims/upload/{claim_doc_category}";
123141
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
123142
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
123143
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6g]['post']['responses'][200]['content']['application/json'];
123278
+ declare const routeName$6h = "/v1/api/claims/upload/{claim_doc_category}";
123279
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$6h]['post']['parameters']['path'];
123280
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$6h]['post']['parameters']['query'];
123281
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$6h]['post']['responses'][200]['content']['application/json'];
123144
123282
  interface UploadClaimDocumentAsBrokerProps {
123145
123283
  params: {
123146
123284
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -123149,10 +123287,10 @@ interface UploadClaimDocumentAsBrokerProps {
123149
123287
  }
123150
123288
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
123151
123289
 
123152
- declare const routeName$6f = "/v1/api/claims/{claim_id}/validate";
123153
- type ValidateClaimPathParams = paths[typeof routeName$6f]['post']['parameters']['path'];
123154
- type ValidateClaimQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
123155
- type ValidateClaimResponse = paths[typeof routeName$6f]['post']['responses'][200]['content']['application/json'];
123290
+ declare const routeName$6g = "/v1/api/claims/{claim_id}/validate";
123291
+ type ValidateClaimPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
123292
+ type ValidateClaimQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
123293
+ type ValidateClaimResponse = paths[typeof routeName$6g]['post']['responses'][200]['content']['application/json'];
123156
123294
  interface ValidateClaimProps {
123157
123295
  params: {
123158
123296
  query: ValidateClaimQueryParams;
@@ -123161,10 +123299,10 @@ interface ValidateClaimProps {
123161
123299
  }
123162
123300
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
123163
123301
 
123164
- declare const routeName$6e = "/v1/api/connections/outlook/sync/activate";
123165
- type ActivateOutlookConnectionSyncBody = paths[typeof routeName$6e]['post']['requestBody']['content']['application/json'];
123166
- type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
123167
- type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$6e]['post']['responses'][200]['content']['application/json'];
123302
+ declare const routeName$6f = "/v1/api/connections/outlook/sync/activate";
123303
+ type ActivateOutlookConnectionSyncBody = paths[typeof routeName$6f]['post']['requestBody']['content']['application/json'];
123304
+ type ActivateOutlookConnectionSyncQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
123305
+ type ActivateOutlookConnectionSyncResponse = paths[typeof routeName$6f]['post']['responses'][200]['content']['application/json'];
123168
123306
  interface ActivateOutlookConnectionSyncProps {
123169
123307
  body: ActivateOutlookConnectionSyncBody;
123170
123308
  params: {
@@ -123173,11 +123311,11 @@ interface ActivateOutlookConnectionSyncProps {
123173
123311
  }
123174
123312
  declare const activateOutlookConnectionSync: (props: ActivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<ActivateOutlookConnectionSyncResponse>;
123175
123313
 
123176
- declare const routeName$6d = "/v1/api/connections/anva/parties/{anva_party_id}/tasks";
123177
- type CreateAnvaTaskBody = paths[typeof routeName$6d]['post']['requestBody']['content']['application/json'];
123178
- type CreateAnvaTaskPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
123179
- type CreateAnvaTaskQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
123180
- type CreateAnvaTaskResponse = paths[typeof routeName$6d]['post']['responses'][201]['content']['application/json'];
123314
+ declare const routeName$6e = "/v1/api/connections/anva/parties/{anva_party_id}/tasks";
123315
+ type CreateAnvaTaskBody = paths[typeof routeName$6e]['post']['requestBody']['content']['application/json'];
123316
+ type CreateAnvaTaskPathParams = paths[typeof routeName$6e]['post']['parameters']['path'];
123317
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
123318
+ type CreateAnvaTaskResponse = paths[typeof routeName$6e]['post']['responses'][201]['content']['application/json'];
123181
123319
  interface CreateAnvaTaskProps {
123182
123320
  body: CreateAnvaTaskBody;
123183
123321
  params: {
@@ -123187,11 +123325,11 @@ interface CreateAnvaTaskProps {
123187
123325
  }
123188
123326
  declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
123189
123327
 
123190
- declare const routeName$6c = "/v1/api/connections/assu/parties/{assu_id}/tasks";
123191
- type CreateAssuTaskBody = paths[typeof routeName$6c]['post']['requestBody']['content']['application/json'];
123192
- type CreateAssuTaskPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
123193
- type CreateAssuTaskQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
123194
- type CreateAssuTaskResponse = paths[typeof routeName$6c]['post']['responses'][201]['content']['application/json'];
123328
+ declare const routeName$6d = "/v1/api/connections/assu/parties/{assu_id}/tasks";
123329
+ type CreateAssuTaskBody = paths[typeof routeName$6d]['post']['requestBody']['content']['application/json'];
123330
+ type CreateAssuTaskPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
123331
+ type CreateAssuTaskQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
123332
+ type CreateAssuTaskResponse = paths[typeof routeName$6d]['post']['responses'][201]['content']['application/json'];
123195
123333
  interface CreateAssuTaskProps {
123196
123334
  body: CreateAssuTaskBody;
123197
123335
  params: {
@@ -123201,10 +123339,10 @@ interface CreateAssuTaskProps {
123201
123339
  }
123202
123340
  declare const createAssuTask: (props: CreateAssuTaskProps, wgApiClient: ClientType) => Promise<CreateAssuTaskResponse>;
123203
123341
 
123204
- declare const routeName$6b = "/v1/api/brokers/{broker_id}/connections/{key}";
123205
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$6b]['post']['requestBody']['content']['application/json'];
123206
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$6b]['post']['parameters']['path'];
123207
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
123342
+ declare const routeName$6c = "/v1/api/brokers/{broker_id}/connections/{key}";
123343
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$6c]['post']['requestBody']['content']['application/json'];
123344
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
123345
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$6c]['post']['responses'][201]['content']['application/json'];
123208
123346
  interface CreateBrokerConnectionsByIdProps {
123209
123347
  body: CreateBrokerConnectionsByIdBody;
123210
123348
  params: {
@@ -123213,9 +123351,9 @@ interface CreateBrokerConnectionsByIdProps {
123213
123351
  }
123214
123352
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
123215
123353
 
123216
- declare const routeName$6a = "/v1/api/brokers/{broker_id}/connections/{key}";
123217
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$6a]['delete']['parameters']['path'];
123218
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$6a]['delete']['responses'][200]['content']['application/json'];
123354
+ declare const routeName$6b = "/v1/api/brokers/{broker_id}/connections/{key}";
123355
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$6b]['delete']['parameters']['path'];
123356
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$6b]['delete']['responses'][200]['content']['application/json'];
123219
123357
  interface DeleteBrokerConnectionByKeyProps {
123220
123358
  params: {
123221
123359
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -123223,10 +123361,10 @@ interface DeleteBrokerConnectionByKeyProps {
123223
123361
  }
123224
123362
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
123225
123363
 
123226
- declare const routeName$69 = "/v1/api/brokers/{broker_id}/connections/{key}";
123227
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$69]['patch']['requestBody']['content']['application/json'];
123228
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$69]['patch']['parameters']['path'];
123229
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$69]['patch']['responses'][200]['content']['application/json'];
123364
+ declare const routeName$6a = "/v1/api/brokers/{broker_id}/connections/{key}";
123365
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$6a]['patch']['requestBody']['content']['application/json'];
123366
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$6a]['patch']['parameters']['path'];
123367
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$6a]['patch']['responses'][200]['content']['application/json'];
123230
123368
  interface UpdateBrokerConnectionByKeyProps {
123231
123369
  body: UpdateBrokerConnectionByKeyBody;
123232
123370
  params: {
@@ -123235,11 +123373,11 @@ interface UpdateBrokerConnectionByKeyProps {
123235
123373
  }
123236
123374
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
123237
123375
 
123238
- declare const routeName$68 = "/v1/api/connections/dias/parties/{dias_id}/tasks";
123239
- type CreateDiasTaskBody = paths[typeof routeName$68]['post']['requestBody']['content']['application/json'];
123240
- type CreateDiasTaskPathParams = paths[typeof routeName$68]['post']['parameters']['path'];
123241
- type CreateDiasTaskQueryParams = paths[typeof routeName$68]['post']['parameters']['query'];
123242
- type CreateDiasTaskResponse = paths[typeof routeName$68]['post']['responses'][201]['content']['application/json'];
123376
+ declare const routeName$69 = "/v1/api/connections/dias/parties/{dias_id}/tasks";
123377
+ type CreateDiasTaskBody = paths[typeof routeName$69]['post']['requestBody']['content']['application/json'];
123378
+ type CreateDiasTaskPathParams = paths[typeof routeName$69]['post']['parameters']['path'];
123379
+ type CreateDiasTaskQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
123380
+ type CreateDiasTaskResponse = paths[typeof routeName$69]['post']['responses'][201]['content']['application/json'];
123243
123381
  interface CreateDiasTaskProps {
123244
123382
  body: CreateDiasTaskBody;
123245
123383
  params: {
@@ -123249,10 +123387,10 @@ interface CreateDiasTaskProps {
123249
123387
  }
123250
123388
  declare const createDiasTask: (props: CreateDiasTaskProps, wgApiClient: ClientType) => Promise<CreateDiasTaskResponse>;
123251
123389
 
123252
- declare const routeName$67 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123253
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$67]['post']['requestBody']['content']['application/json'];
123254
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$67]['post']['parameters']['path'];
123255
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$67]['post']['responses'][201]['content']['application/json'];
123390
+ declare const routeName$68 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123391
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$68]['post']['requestBody']['content']['application/json'];
123392
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$68]['post']['parameters']['path'];
123393
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$68]['post']['responses'][201]['content']['application/json'];
123256
123394
  interface CreateDistributionConnectionByIdProps {
123257
123395
  body: CreateDistributionConnectionByIdBody;
123258
123396
  params: {
@@ -123261,9 +123399,9 @@ interface CreateDistributionConnectionByIdProps {
123261
123399
  }
123262
123400
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
123263
123401
 
123264
- declare const routeName$66 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123265
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$66]['delete']['parameters']['path'];
123266
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$66]['delete']['responses'][200]['content']['application/json'];
123402
+ declare const routeName$67 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123403
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$67]['delete']['parameters']['path'];
123404
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$67]['delete']['responses'][200]['content']['application/json'];
123267
123405
  interface DeleteDistributionConnectionByKeyProps {
123268
123406
  params: {
123269
123407
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -123271,10 +123409,10 @@ interface DeleteDistributionConnectionByKeyProps {
123271
123409
  }
123272
123410
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
123273
123411
 
123274
- declare const routeName$65 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123275
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$65]['patch']['requestBody']['content']['application/json'];
123276
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$65]['patch']['parameters']['path'];
123277
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$65]['patch']['responses'][200]['content']['application/json'];
123412
+ declare const routeName$66 = "/v1/api/distributions/{distribution_id}/connections/{key}";
123413
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$66]['patch']['requestBody']['content']['application/json'];
123414
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$66]['patch']['parameters']['path'];
123415
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$66]['patch']['responses'][200]['content']['application/json'];
123278
123416
  interface UpdateDistributionConnectionByKeyProps {
123279
123417
  body: UpdateDistributionConnectionByKeyBody;
123280
123418
  params: {
@@ -123283,11 +123421,11 @@ interface UpdateDistributionConnectionByKeyProps {
123283
123421
  }
123284
123422
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
123285
123423
 
123286
- declare const routeName$64 = "/v1/api/connections/fasterforward/parties/{fasterforward_id}/tasks";
123287
- type CreateFasterforwardTaskBody = paths[typeof routeName$64]['post']['requestBody']['content']['application/json'];
123288
- type CreateFasterforwardTaskPathParams = paths[typeof routeName$64]['post']['parameters']['path'];
123289
- type CreateFasterforwardTaskQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
123290
- type CreateFasterforwardTaskResponse = paths[typeof routeName$64]['post']['responses'][201]['content']['application/json'];
123424
+ declare const routeName$65 = "/v1/api/connections/fasterforward/parties/{fasterforward_id}/tasks";
123425
+ type CreateFasterforwardTaskBody = paths[typeof routeName$65]['post']['requestBody']['content']['application/json'];
123426
+ type CreateFasterforwardTaskPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
123427
+ type CreateFasterforwardTaskQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
123428
+ type CreateFasterforwardTaskResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
123291
123429
  interface CreateFasterforwardTaskProps {
123292
123430
  body: CreateFasterforwardTaskBody;
123293
123431
  params: {
@@ -123297,10 +123435,10 @@ interface CreateFasterforwardTaskProps {
123297
123435
  }
123298
123436
  declare const createFasterforwardTask: (props: CreateFasterforwardTaskProps, wgApiClient: ClientType) => Promise<CreateFasterforwardTaskResponse>;
123299
123437
 
123300
- declare const routeName$63 = "/v1/api/connections/outlook/sync/deactivate";
123301
- type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$63]['post']['requestBody']['content']['application/json'];
123302
- type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
123303
- type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$63]['post']['responses'][200]['content']['application/json'];
123438
+ declare const routeName$64 = "/v1/api/connections/outlook/sync/deactivate";
123439
+ type DeactivateOutlookConnectionSyncBody = paths[typeof routeName$64]['post']['requestBody']['content']['application/json'];
123440
+ type DeactivateOutlookConnectionSyncQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
123441
+ type DeactivateOutlookConnectionSyncResponse = paths[typeof routeName$64]['post']['responses'][200]['content']['application/json'];
123304
123442
  interface DeactivateOutlookConnectionSyncProps {
123305
123443
  body: DeactivateOutlookConnectionSyncBody;
123306
123444
  params: {
@@ -123309,9 +123447,9 @@ interface DeactivateOutlookConnectionSyncProps {
123309
123447
  }
123310
123448
  declare const deactivateOutlookConnectionSync: (props: DeactivateOutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<DeactivateOutlookConnectionSyncResponse>;
123311
123449
 
123312
- declare const routeName$62 = "/v1/api/integrations/anva/validate";
123313
- type DeprecatedValidateAnvaConnectionQueryParams = paths[typeof routeName$62]['post']['parameters']['query'];
123314
- type DeprecatedValidateAnvaConnectionResponse = paths[typeof routeName$62]['post']['responses'][200]['content']['application/json'];
123450
+ declare const routeName$63 = "/v1/api/integrations/anva/validate";
123451
+ type DeprecatedValidateAnvaConnectionQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
123452
+ type DeprecatedValidateAnvaConnectionResponse = paths[typeof routeName$63]['post']['responses'][200]['content']['application/json'];
123315
123453
  interface DeprecatedValidateAnvaConnectionProps {
123316
123454
  params: {
123317
123455
  query: DeprecatedValidateAnvaConnectionQueryParams;
@@ -123319,175 +123457,175 @@ interface DeprecatedValidateAnvaConnectionProps {
123319
123457
  }
123320
123458
  declare const deprecatedValidateAnvaConnection: (props: DeprecatedValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<DeprecatedValidateAnvaConnectionResponse>;
123321
123459
 
123322
- declare const routeName$61 = "/v1/api/connections/anva/agents";
123323
- type GetAnvaAgentsQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
123324
- type GetAnvaAgentsResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
123325
- type GetAnvaAgentsProps = paths[typeof routeName$61]['get']['parameters'];
123460
+ declare const routeName$62 = "/v1/api/connections/anva/agents";
123461
+ type GetAnvaAgentsQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
123462
+ type GetAnvaAgentsResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
123463
+ type GetAnvaAgentsProps = paths[typeof routeName$62]['get']['parameters'];
123326
123464
  declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
123327
123465
 
123328
- declare const routeName$60 = "/v1/api/connections/anva/employees";
123329
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
123330
- type GetAnvaEmployeesResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
123331
- type GetAnvaEmployeesProps = paths[typeof routeName$60]['get']['parameters'];
123466
+ declare const routeName$61 = "/v1/api/connections/anva/employees";
123467
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
123468
+ type GetAnvaEmployeesResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
123469
+ type GetAnvaEmployeesProps = paths[typeof routeName$61]['get']['parameters'];
123332
123470
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
123333
123471
 
123334
- declare const routeName$5$ = "/v1/api/connections/anva/parties";
123335
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
123336
- type GetAnvaPartiesResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
123337
- type GetAnvaPartiesProps = paths[typeof routeName$5$]['get']['parameters'];
123472
+ declare const routeName$60 = "/v1/api/connections/anva/parties";
123473
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
123474
+ type GetAnvaPartiesResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
123475
+ type GetAnvaPartiesProps = paths[typeof routeName$60]['get']['parameters'];
123338
123476
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
123339
123477
 
123340
- declare const routeName$5_ = "/v1/api/connections/anva/products";
123341
- type GetAnvaProductsQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
123342
- type GetAnvaProductsResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
123343
- type GetAnvaProductsProps = paths[typeof routeName$5_]['get']['parameters'];
123478
+ declare const routeName$5$ = "/v1/api/connections/anva/products";
123479
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
123480
+ type GetAnvaProductsResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
123481
+ type GetAnvaProductsProps = paths[typeof routeName$5$]['get']['parameters'];
123344
123482
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
123345
123483
 
123346
- declare const routeName$5Z = "/v1/api/connections/assu/employees";
123347
- type GetAssuEmployeesQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
123348
- type GetAssuEmployeesResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
123349
- type GetAssuEmployeesProps = paths[typeof routeName$5Z]['get']['parameters'];
123484
+ declare const routeName$5_ = "/v1/api/connections/assu/employees";
123485
+ type GetAssuEmployeesQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
123486
+ type GetAssuEmployeesResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
123487
+ type GetAssuEmployeesProps = paths[typeof routeName$5_]['get']['parameters'];
123350
123488
  declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
123351
123489
 
123352
- declare const routeName$5Y = "/v1/api/brokers/{broker_id}/connections";
123353
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5Y]['get']['parameters']['path'];
123354
- type GetBrokerConnectionsByIdQueryParams = paths[typeof routeName$5Y]['get']['parameters']['query'];
123355
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5Y]['get']['responses'][200]['content']['application/json'];
123356
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5Y]['get']['parameters'];
123490
+ declare const routeName$5Z = "/v1/api/brokers/{broker_id}/connections";
123491
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5Z]['get']['parameters']['path'];
123492
+ type GetBrokerConnectionsByIdQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
123493
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
123494
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5Z]['get']['parameters'];
123357
123495
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
123358
123496
 
123359
- declare const routeName$5X = "/v1/api/connections/dias/afdbranches";
123360
- type GetDiasAfdbranchesResponse = paths[typeof routeName$5X]['get']['responses'][200]['content']['application/json'];
123497
+ declare const routeName$5Y = "/v1/api/connections/dias/afdbranches";
123498
+ type GetDiasAfdbranchesResponse = paths[typeof routeName$5Y]['get']['responses'][200]['content']['application/json'];
123361
123499
  declare const getDiasAfdbranches: (wgApiClient: ClientType) => Promise<GetDiasAfdbranchesResponse>;
123362
123500
 
123363
- declare const routeName$5W = "/v1/api/connections/dias/employees";
123364
- type GetDiasEmployeesQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
123365
- type GetDiasEmployeesResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
123366
- type GetDiasEmployeesProps = paths[typeof routeName$5W]['get']['parameters'];
123501
+ declare const routeName$5X = "/v1/api/connections/dias/employees";
123502
+ type GetDiasEmployeesQueryParams = paths[typeof routeName$5X]['get']['parameters']['query'];
123503
+ type GetDiasEmployeesResponse = paths[typeof routeName$5X]['get']['responses'][200]['content']['application/json'];
123504
+ type GetDiasEmployeesProps = paths[typeof routeName$5X]['get']['parameters'];
123367
123505
  declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
123368
123506
 
123369
- declare const routeName$5V = "/v1/api/connections/dias/parties";
123370
- type GetDiasPartiesQueryParams = paths[typeof routeName$5V]['get']['parameters']['query'];
123371
- type GetDiasPartiesResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
123372
- type GetDiasPartiesProps = paths[typeof routeName$5V]['get']['parameters'];
123507
+ declare const routeName$5W = "/v1/api/connections/dias/parties";
123508
+ type GetDiasPartiesQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
123509
+ type GetDiasPartiesResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
123510
+ type GetDiasPartiesProps = paths[typeof routeName$5W]['get']['parameters'];
123373
123511
  declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
123374
123512
 
123375
- declare const routeName$5U = "/v1/api/connections/dias/party-salutations";
123376
- type GetDiasPartySalutationsResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
123513
+ declare const routeName$5V = "/v1/api/connections/dias/party-salutations";
123514
+ type GetDiasPartySalutationsResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
123377
123515
  declare const getDiasPartySalutations: (wgApiClient: ClientType) => Promise<GetDiasPartySalutationsResponse>;
123378
123516
 
123379
- declare const routeName$5T = "/v1/api/connections/dias/party-titles";
123380
- type GetDiasPartyTitlesResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
123517
+ declare const routeName$5U = "/v1/api/connections/dias/party-titles";
123518
+ type GetDiasPartyTitlesResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
123381
123519
  declare const getDiasPartyTitles: (wgApiClient: ClientType) => Promise<GetDiasPartyTitlesResponse>;
123382
123520
 
123383
- declare const routeName$5S = "/v1/api/connections/dias/products";
123384
- type GetDiasProductsQueryParams = paths[typeof routeName$5S]['get']['parameters']['query'];
123385
- type GetDiasProductsResponse = paths[typeof routeName$5S]['get']['responses'][200]['content']['application/json'];
123386
- type GetDiasProductsProps = paths[typeof routeName$5S]['get']['parameters'];
123521
+ declare const routeName$5T = "/v1/api/connections/dias/products";
123522
+ type GetDiasProductsQueryParams = paths[typeof routeName$5T]['get']['parameters']['query'];
123523
+ type GetDiasProductsResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
123524
+ type GetDiasProductsProps = paths[typeof routeName$5T]['get']['parameters'];
123387
123525
  declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
123388
123526
 
123389
- declare const routeName$5R = "/v1/api/distributions/{distribution_id}/connections";
123390
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5R]['get']['parameters']['path'];
123391
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5R]['get']['parameters']['query'];
123392
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5R]['get']['responses'][200]['content']['application/json'];
123393
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5R]['get']['parameters'];
123527
+ declare const routeName$5S = "/v1/api/distributions/{distribution_id}/connections";
123528
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5S]['get']['parameters']['path'];
123529
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5S]['get']['parameters']['query'];
123530
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5S]['get']['responses'][200]['content']['application/json'];
123531
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5S]['get']['parameters'];
123394
123532
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
123395
123533
 
123396
- declare const routeName$5Q = "/v1/api/connections/fasterforward/employees";
123397
- type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5Q]['get']['parameters']['query'];
123398
- type GetFasterforwardEmployeesResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
123399
- type GetFasterforwardEmployeesProps = paths[typeof routeName$5Q]['get']['parameters'];
123534
+ declare const routeName$5R = "/v1/api/connections/fasterforward/employees";
123535
+ type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5R]['get']['parameters']['query'];
123536
+ type GetFasterforwardEmployeesResponse = paths[typeof routeName$5R]['get']['responses'][200]['content']['application/json'];
123537
+ type GetFasterforwardEmployeesProps = paths[typeof routeName$5R]['get']['parameters'];
123400
123538
  declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
123401
123539
 
123402
- declare const routeName$5P = "/v1/api/connections/fasterforward/teams";
123403
- type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5P]['get']['parameters']['query'];
123404
- type GetFasterforwardTeamsResponse = paths[typeof routeName$5P]['get']['responses'][200]['content']['application/json'];
123405
- type GetFasterforwardTeamsProps = paths[typeof routeName$5P]['get']['parameters'];
123540
+ declare const routeName$5Q = "/v1/api/connections/fasterforward/teams";
123541
+ type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5Q]['get']['parameters']['query'];
123542
+ type GetFasterforwardTeamsResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
123543
+ type GetFasterforwardTeamsProps = paths[typeof routeName$5Q]['get']['parameters'];
123406
123544
  declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
123407
123545
 
123408
- declare const routeName$5O = "/v1/api/connections/outlook";
123409
- type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5O]['get']['parameters']['query'];
123410
- type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5O]['get']['responses'][200]['content']['application/json'];
123411
- type GetOutlookConnectionDetailsProps = paths[typeof routeName$5O]['get']['parameters'];
123546
+ declare const routeName$5P = "/v1/api/connections/outlook";
123547
+ type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5P]['get']['parameters']['query'];
123548
+ type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5P]['get']['responses'][200]['content']['application/json'];
123549
+ type GetOutlookConnectionDetailsProps = paths[typeof routeName$5P]['get']['parameters'];
123412
123550
  declare const getOutlookConnectionDetails: (props: GetOutlookConnectionDetailsProps, wgApiClient: ClientType) => Promise<GetOutlookConnectionDetailsResponse>;
123413
123551
 
123414
- declare const routeName$5N = "/v1/api/connections/outlook/mails/{id}";
123415
- type GetOutlookMailByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
123416
- type GetOutlookMailByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
123417
- type GetOutlookMailByIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
123418
- type GetOutlookMailByIdProps = paths[typeof routeName$5N]['get']['parameters'];
123552
+ declare const routeName$5O = "/v1/api/connections/outlook/mails/{id}";
123553
+ type GetOutlookMailByIdPathParams = paths[typeof routeName$5O]['get']['parameters']['path'];
123554
+ type GetOutlookMailByIdQueryParams = paths[typeof routeName$5O]['get']['parameters']['query'];
123555
+ type GetOutlookMailByIdResponse = paths[typeof routeName$5O]['get']['responses'][200]['content']['application/json'];
123556
+ type GetOutlookMailByIdProps = paths[typeof routeName$5O]['get']['parameters'];
123419
123557
  declare const getOutlookMailById: (props: GetOutlookMailByIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByIdResponse>;
123420
123558
 
123421
- declare const routeName$5M = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
123422
- type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5M]['get']['parameters']['path'];
123423
- type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
123424
- type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
123425
- type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5M]['get']['parameters'];
123559
+ declare const routeName$5N = "/v1/api/connections/outlook/mails-by-outlook-message-id/{id}";
123560
+ type GetOutlookMailByOutlookMessageIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
123561
+ type GetOutlookMailByOutlookMessageIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
123562
+ type GetOutlookMailByOutlookMessageIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
123563
+ type GetOutlookMailByOutlookMessageIdProps = paths[typeof routeName$5N]['get']['parameters'];
123426
123564
  declare const getOutlookMailByOutlookMessageId: (props: GetOutlookMailByOutlookMessageIdProps, wgApiClient: ClientType) => Promise<GetOutlookMailByOutlookMessageIdResponse>;
123427
123565
 
123428
- declare const routeName$5L = "/v1/api/connections/outlook/mailfolders";
123429
- type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
123430
- type GetOutlookMailfoldersResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
123431
- type GetOutlookMailfoldersProps = paths[typeof routeName$5L]['get']['parameters'];
123566
+ declare const routeName$5M = "/v1/api/connections/outlook/mailfolders";
123567
+ type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
123568
+ type GetOutlookMailfoldersResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
123569
+ type GetOutlookMailfoldersProps = paths[typeof routeName$5M]['get']['parameters'];
123432
123570
  declare const getOutlookMailfolders: (props: GetOutlookMailfoldersProps, wgApiClient: ClientType) => Promise<GetOutlookMailfoldersResponse>;
123433
123571
 
123434
- declare const routeName$5K = "/v1/api/connections/outlook/mails";
123435
- type GetOutlookMailsQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
123436
- type GetOutlookMailsResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
123437
- type GetOutlookMailsProps = paths[typeof routeName$5K]['get']['parameters'];
123572
+ declare const routeName$5L = "/v1/api/connections/outlook/mails";
123573
+ type GetOutlookMailsQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
123574
+ type GetOutlookMailsResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
123575
+ type GetOutlookMailsProps = paths[typeof routeName$5L]['get']['parameters'];
123438
123576
  declare const getOutlookMails: (props: GetOutlookMailsProps, wgApiClient: ClientType) => Promise<GetOutlookMailsResponse>;
123439
123577
 
123440
- declare const routeName$5J = "/v1/api/connections/anva/documents/import";
123441
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
123442
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5J]['get']['responses'][307]['content']['application/json'];
123443
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5J]['get']['parameters'];
123578
+ declare const routeName$5K = "/v1/api/connections/anva/documents/import";
123579
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
123580
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5K]['get']['responses'][307]['content']['application/json'];
123581
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5K]['get']['parameters'];
123444
123582
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
123445
123583
 
123446
- declare const routeName$5I = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
123447
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5I]['get']['parameters']['path'];
123448
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5I]['get']['parameters']['query'];
123449
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5I]['get']['responses'][307]['content']['application/json'];
123450
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5I]['get']['parameters'];
123584
+ declare const routeName$5J = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
123585
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5J]['get']['parameters']['path'];
123586
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
123587
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5J]['get']['responses'][307]['content']['application/json'];
123588
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5J]['get']['parameters'];
123451
123589
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
123452
123590
 
123453
- declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
123454
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
123455
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
123456
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5H]['get']['responses'][307]['content']['application/json'];
123457
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5H]['get']['parameters'];
123591
+ declare const routeName$5I = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
123592
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5I]['get']['parameters']['path'];
123593
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5I]['get']['parameters']['query'];
123594
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5I]['get']['responses'][307]['content']['application/json'];
123595
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5I]['get']['parameters'];
123458
123596
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
123459
123597
 
123460
- declare const routeName$5G = "/v1/api/connections/anva/parties/{anva_id}/import";
123461
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
123462
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
123463
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][201]['content']['application/json'];
123464
- type ImportAnvaPartyInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
123598
+ declare const routeName$5H = "/v1/api/connections/anva/parties/{anva_id}/import";
123599
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
123600
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
123601
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5H]['get']['responses'][201]['content']['application/json'];
123602
+ type ImportAnvaPartyInWegroupProps = paths[typeof routeName$5H]['get']['parameters'];
123465
123603
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
123466
123604
 
123467
- declare const routeName$5F = "/v1/api/connections/assu/parties/{assu_id}/import";
123468
- type ImportAssuPartyInWegroupPathParams = paths[typeof routeName$5F]['get']['parameters']['path'];
123469
- type ImportAssuPartyInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
123470
- type ImportAssuPartyInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][201]['content']['application/json'];
123471
- type ImportAssuPartyInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
123605
+ declare const routeName$5G = "/v1/api/connections/assu/parties/{assu_id}/import";
123606
+ type ImportAssuPartyInWegroupPathParams = paths[typeof routeName$5G]['get']['parameters']['path'];
123607
+ type ImportAssuPartyInWegroupQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
123608
+ type ImportAssuPartyInWegroupResponse = paths[typeof routeName$5G]['get']['responses'][201]['content']['application/json'];
123609
+ type ImportAssuPartyInWegroupProps = paths[typeof routeName$5G]['get']['parameters'];
123472
123610
  declare const importAssuPartyInWegroup: (props: ImportAssuPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAssuPartyInWegroupResponse>;
123473
123611
 
123474
- declare const routeName$5E = "/v1/api/connections/dias/parties/{dias_id}/import";
123475
- type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5E]['get']['parameters']['path'];
123476
- type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
123477
- type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5E]['get']['responses'][201]['content']['application/json'];
123478
- type ImportDiasPartyInWegroupProps = paths[typeof routeName$5E]['get']['parameters'];
123612
+ declare const routeName$5F = "/v1/api/connections/dias/parties/{dias_id}/import";
123613
+ type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5F]['get']['parameters']['path'];
123614
+ type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
123615
+ type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5F]['get']['responses'][201]['content']['application/json'];
123616
+ type ImportDiasPartyInWegroupProps = paths[typeof routeName$5F]['get']['parameters'];
123479
123617
  declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
123480
123618
 
123481
- declare const routeName$5D = "/v1/api/connections/fasterforward/parties/{fasterforward_id}/import";
123482
- type ImportFasterforwardPartyInWegroupPathParams = paths[typeof routeName$5D]['get']['parameters']['path'];
123483
- type ImportFasterforwardPartyInWegroupQueryParams = paths[typeof routeName$5D]['get']['parameters']['query'];
123484
- type ImportFasterforwardPartyInWegroupResponse = paths[typeof routeName$5D]['get']['responses'][201]['content']['application/json'];
123485
- type ImportFasterforwardPartyInWegroupProps = paths[typeof routeName$5D]['get']['parameters'];
123619
+ declare const routeName$5E = "/v1/api/connections/fasterforward/parties/{fasterforward_id}/import";
123620
+ type ImportFasterforwardPartyInWegroupPathParams = paths[typeof routeName$5E]['get']['parameters']['path'];
123621
+ type ImportFasterforwardPartyInWegroupQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
123622
+ type ImportFasterforwardPartyInWegroupResponse = paths[typeof routeName$5E]['get']['responses'][201]['content']['application/json'];
123623
+ type ImportFasterforwardPartyInWegroupProps = paths[typeof routeName$5E]['get']['parameters'];
123486
123624
  declare const importFasterforwardPartyInWegroup: (props: ImportFasterforwardPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportFasterforwardPartyInWegroupResponse>;
123487
123625
 
123488
- declare const routeName$5C = "/v1/api/connections/outlook/sync";
123489
- type OutlookConnectionSyncQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
123490
- type OutlookConnectionSyncResponse = paths[typeof routeName$5C]['post']['responses'][200]['content']['application/json'];
123626
+ declare const routeName$5D = "/v1/api/connections/outlook/sync";
123627
+ type OutlookConnectionSyncQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
123628
+ type OutlookConnectionSyncResponse = paths[typeof routeName$5D]['post']['responses'][200]['content']['application/json'];
123491
123629
  interface OutlookConnectionSyncProps {
123492
123630
  params: {
123493
123631
  query: OutlookConnectionSyncQueryParams;
@@ -123495,23 +123633,23 @@ interface OutlookConnectionSyncProps {
123495
123633
  }
123496
123634
  declare const outlookConnectionSync: (props: OutlookConnectionSyncProps, wgApiClient: ClientType) => Promise<OutlookConnectionSyncResponse>;
123497
123635
 
123498
- declare const routeName$5B = "/v1/api/connections/assu/parties";
123499
- type SearchAssuPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
123500
- type SearchAssuPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
123501
- type SearchAssuPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
123636
+ declare const routeName$5C = "/v1/api/connections/assu/parties";
123637
+ type SearchAssuPartiesQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
123638
+ type SearchAssuPartiesResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
123639
+ type SearchAssuPartiesProps = paths[typeof routeName$5C]['get']['parameters'];
123502
123640
  declare const searchAssuParties: (props: SearchAssuPartiesProps, wgApiClient: ClientType) => Promise<SearchAssuPartiesResponse>;
123503
123641
 
123504
- declare const routeName$5A = "/v1/api/connections/fasterforward/parties";
123505
- type SearchFasterforwardPartiesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
123506
- type SearchFasterforwardPartiesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
123507
- type SearchFasterforwardPartiesProps = paths[typeof routeName$5A]['get']['parameters'];
123642
+ declare const routeName$5B = "/v1/api/connections/fasterforward/parties";
123643
+ type SearchFasterforwardPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
123644
+ type SearchFasterforwardPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
123645
+ type SearchFasterforwardPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
123508
123646
  declare const searchFasterforwardParties: (props: SearchFasterforwardPartiesProps, wgApiClient: ClientType) => Promise<SearchFasterforwardPartiesResponse>;
123509
123647
 
123510
- declare const routeName$5z = "/v1/api/connections/anva/parties/{anva_party_id}/documents";
123511
- type UploadDocumentsInAnvaBody = paths[typeof routeName$5z]['post']['requestBody']['content']['application/json'];
123512
- type UploadDocumentsInAnvaPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
123513
- type UploadDocumentsInAnvaQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
123514
- type UploadDocumentsInAnvaResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
123648
+ declare const routeName$5A = "/v1/api/connections/anva/parties/{anva_party_id}/documents";
123649
+ type UploadDocumentsInAnvaBody = paths[typeof routeName$5A]['post']['requestBody']['content']['application/json'];
123650
+ type UploadDocumentsInAnvaPathParams = paths[typeof routeName$5A]['post']['parameters']['path'];
123651
+ type UploadDocumentsInAnvaQueryParams = paths[typeof routeName$5A]['post']['parameters']['query'];
123652
+ type UploadDocumentsInAnvaResponse = paths[typeof routeName$5A]['post']['responses'][201]['content']['application/json'];
123515
123653
  interface UploadDocumentsInAnvaProps {
123516
123654
  body: UploadDocumentsInAnvaBody;
123517
123655
  params: {
@@ -123521,11 +123659,11 @@ interface UploadDocumentsInAnvaProps {
123521
123659
  }
123522
123660
  declare const uploadDocumentsInAnva: (props: UploadDocumentsInAnvaProps, wgApiClient: ClientType) => Promise<UploadDocumentsInAnvaResponse>;
123523
123661
 
123524
- declare const routeName$5y = "/v1/api/connections/assu/parties/{assu_id}/documents";
123525
- type UploadDocumentsInAssuBody = paths[typeof routeName$5y]['post']['requestBody']['content']['application/json'];
123526
- type UploadDocumentsInAssuPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
123527
- type UploadDocumentsInAssuQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
123528
- type UploadDocumentsInAssuResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
123662
+ declare const routeName$5z = "/v1/api/connections/assu/parties/{assu_id}/documents";
123663
+ type UploadDocumentsInAssuBody = paths[typeof routeName$5z]['post']['requestBody']['content']['application/json'];
123664
+ type UploadDocumentsInAssuPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
123665
+ type UploadDocumentsInAssuQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
123666
+ type UploadDocumentsInAssuResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
123529
123667
  interface UploadDocumentsInAssuProps {
123530
123668
  body: UploadDocumentsInAssuBody;
123531
123669
  params: {
@@ -123535,6 +123673,20 @@ interface UploadDocumentsInAssuProps {
123535
123673
  }
123536
123674
  declare const uploadDocumentsInAssu: (props: UploadDocumentsInAssuProps, wgApiClient: ClientType) => Promise<UploadDocumentsInAssuResponse>;
123537
123675
 
123676
+ declare const routeName$5y = "/v1/api/connections/dias/parties/{dias_id}/documents";
123677
+ type UploadDocumentsInDiasBody = paths[typeof routeName$5y]['post']['requestBody']['content']['application/json'];
123678
+ type UploadDocumentsInDiasPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
123679
+ type UploadDocumentsInDiasQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
123680
+ type UploadDocumentsInDiasResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
123681
+ interface UploadDocumentsInDiasProps {
123682
+ body: UploadDocumentsInDiasBody;
123683
+ params: {
123684
+ query: UploadDocumentsInDiasQueryParams;
123685
+ path: UploadDocumentsInDiasPathParams;
123686
+ };
123687
+ }
123688
+ declare const uploadDocumentsInDias: (props: UploadDocumentsInDiasProps, wgApiClient: ClientType) => Promise<UploadDocumentsInDiasResponse>;
123689
+
123538
123690
  declare const routeName$5x = "/v1/api/connections/fasterforward/parties/{fasterforward_id}/documents";
123539
123691
  type UploadDocumentsInFasterforwardBody = paths[typeof routeName$5x]['post']['requestBody']['content']['application/json'];
123540
123692
  type UploadDocumentsInFasterforwardPathParams = paths[typeof routeName$5x]['post']['parameters']['path'];
@@ -126795,4 +126947,4 @@ interface ValidateYellowhiveQuestionnaireProps {
126795
126947
  }
126796
126948
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
126797
126949
 
126798
- export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateAssuTaskBody, type CreateAssuTaskPathParams, type CreateAssuTaskQueryParams, type CreateAssuTaskResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDiasTaskBody, type CreateDiasTaskPathParams, type CreateDiasTaskQueryParams, type CreateDiasTaskResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateFasterforwardTaskBody, type CreateFasterforwardTaskPathParams, type CreateFasterforwardTaskQueryParams, type CreateFasterforwardTaskResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeactivateOutlookConnectionSyncBody, type DeactivateOutlookConnectionSyncQueryParams, type DeactivateOutlookConnectionSyncResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type 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 ExportPartyToAnvaPathParams, type ExportPartyToAnvaQueryParams, type ExportPartyToAnvaResponse, type ExportPartyToAssuPathParams, type ExportPartyToAssuQueryParams, type ExportPartyToAssuResponse, type ExportPartyToDiasPathParams, type ExportPartyToDiasQueryParams, type ExportPartyToDiasResponse, type ExportPartyToFasterforwardPathParams, type ExportPartyToFasterforwardQueryParams, type ExportPartyToFasterforwardResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateConceptReplyBody, type GenerateConceptReplyPathParams, type GenerateConceptReplyQueryParams, type GenerateConceptReplyResponse, type GenerateDiasOfferDocumentBySessionIdPathParams, type GenerateDiasOfferDocumentBySessionIdQueryParams, type GenerateDiasOfferDocumentBySessionIdResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdQueryParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasPartySalutationsResponse, type GetDiasPartyTitlesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowInsurancesQueryParams, type GetDiasflowInsurancesResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type 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 GetOnesuranceDataByPartyIdPathParams, type GetOnesuranceDataByPartyIdQueryParams, type GetOnesuranceDataByPartyIdResponse, type GetOnesuranceRecommendationsByEmailIdPathParams, type GetOnesuranceRecommendationsByEmailIdQueryParams, type GetOnesuranceRecommendationsByEmailIdResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetSystemCampaignsByPartyPathParams, type GetSystemCampaignsByPartyQueryParams, type GetSystemCampaignsByPartyResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportAssuPartyInWegroupPathParams, type ImportAssuPartyInWegroupQueryParams, type ImportAssuPartyInWegroupResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type ImportFasterforwardPartyInWegroupPathParams, type ImportFasterforwardPartyInWegroupQueryParams, type ImportFasterforwardPartyInWegroupResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OutlookConnectionSyncQueryParams, type OutlookConnectionSyncResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentTaskCmd, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaDocumentUploadCmd, type SchemaAnvaExportReply, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCommandsExternalref, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAssuDocumentUploadCmd, type SchemaAssuTaskCmd, type SchemaAssuTaskDocument, type SchemaAssuTaskPriority, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaigns, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type 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 SchemaConceptReplyGeneratedResponse, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReply, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateTaskInAssuParams, type SchemaCreateTaskInDiasParams, type SchemaCreateTaskInFasterforwardParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeactivateOutlookSyncCmd, type SchemaDeactivateOutlookSyncParams, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasClosingQuestion, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageCombination, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntity, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasOfferDocumentResponse, type SchemaDiasOfferMailCmd, type SchemaDiasOfferMailResponse, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDiasSaluation, type SchemaDiasSendOfferInsurancePolicy, type SchemaDiasSendOfferPolicyPackage, type SchemaDiasTaskDocument, type SchemaDiasTitle, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailUpdateByEmailIdCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFasterForwardDocumentUploadCmd, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasInsurancePackageInsurancePolicy, type SchemaFlowsModelsDiasDiasOfferDocument, type SchemaFlowsModelsDiasDiasOfferMailCmdDiasOfferDocument, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateConceptReplyCmd, type SchemaGenerateConceptReplyParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendDiasOfferMailParams, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsAssuDocumentUploadCmd, type SchemaMercuryModelsFasterforwardDocumentUploadCmd, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelationsFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardListItem, type SchemaMercuryModelsFasterforwardTaskCmd, type SchemaMercuryModelsFasterforwardTaskPriority, type SchemaMercuryModelsMDiasTaskCmd, type SchemaMercuryModelsMDiasTaskPriority, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasInsuranceQueryModel, type SchemaMultiDiasPartySaluationQueryModel, type SchemaMultiDiasPartyTitleQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOnesuranceAction, type SchemaOnesuranceActionType, type SchemaOnesuranceAdvice, type SchemaOnesuranceAdviceLevel, type SchemaOnesuranceAdviceType, type SchemaOnesuranceExplanationData, type SchemaOnesuranceIntent, type SchemaOnesurancePartyData, type SchemaOnesuranceProduct, type SchemaOnesuranceQuickFeedback, type SchemaOnesuranceRecommendation, type SchemaOnesuranceRecommendationType, type SchemaOnesuranceRecommendations, type SchemaOnesuranceRelationDetails, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type 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 SchemaPartiesSearchCmd, type SchemaPartiesSearchItem, type SchemaPartiesSearchResponse, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSearchPartiesParams, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type 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 SchemaSystemCampaignType, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephonenrCategory, type SchemaTelephonenrCategory_2, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateEmailByIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadDocumentsInAnvaParams, type SchemaUploadDocumentsInAssuParams, type SchemaUploadDocumentsInFasterforwardParams, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchAssuPartiesQueryParams, type SearchAssuPartiesResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchFasterforwardPartiesQueryParams, type SearchFasterforwardPartiesResponse, type SearchPartiesBody, type SearchPartiesQueryParams, type SearchPartiesResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendDiasOfferMailBySessionIdBody, type SendDiasOfferMailBySessionIdPathParams, type SendDiasOfferMailBySessionIdQueryParams, type SendDiasOfferMailBySessionIdResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnalyzedEmailIdBody, type UpdateAnalyzedEmailIdPathParams, type UpdateAnalyzedEmailIdQueryParams, type UpdateAnalyzedEmailIdResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UploadDocumentsInAnvaBody, type UploadDocumentsInAnvaPathParams, type UploadDocumentsInAnvaQueryParams, type UploadDocumentsInAnvaResponse, type UploadDocumentsInAssuBody, type UploadDocumentsInAssuPathParams, type UploadDocumentsInAssuQueryParams, type UploadDocumentsInAssuResponse, type UploadDocumentsInFasterforwardBody, type UploadDocumentsInFasterforwardPathParams, type UploadDocumentsInFasterforwardQueryParams, type UploadDocumentsInFasterforwardResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createAssuTask, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDiasTask, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createFasterforwardTask, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deactivateOutlookConnectionSync, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportPartyToAnva, exportPartyToAssu, exportPartyToDias, exportPartyToFasterforward, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateConceptReply, generateDiasOfferDocumentBySessionId, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasPartySalutations, getDiasPartyTitles, getDiasProducts, getDiasflowInsurances, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, 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, getOnesuranceDataByPartyId, getOnesuranceRecommendationsByEmailId, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getSystemCampaignsByParty, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importAssuPartyInWegroup, importDiasPartyInWegroup, importDiasflowProduct, importFasterforwardPartyInWegroup, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, outlookConnectionSync, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchAssuParties, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchFasterforwardParties, searchParties, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendDiasOfferMailBySessionId, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnalyzedEmailId, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, uploadDocumentsInAnva, uploadDocumentsInAssu, uploadDocumentsInFasterforward, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
126950
+ export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type ActivateOutlookConnectionSyncBody, type ActivateOutlookConnectionSyncQueryParams, type ActivateOutlookConnectionSyncResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyViaConversationBody, type CreateAnvaPartyViaConversationPathParams, type CreateAnvaPartyViaConversationQueryParams, type CreateAnvaPartyViaConversationResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateAssuTaskBody, type CreateAssuTaskPathParams, type CreateAssuTaskQueryParams, type CreateAssuTaskResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasPartyViaConversationBody, type CreateDiasPartyViaConversationPathParams, type CreateDiasPartyViaConversationQueryParams, type CreateDiasPartyViaConversationResponse, type CreateDiasTaskBody, type CreateDiasTaskPathParams, type CreateDiasTaskQueryParams, type CreateDiasTaskResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateFasterforwardTaskBody, type CreateFasterforwardTaskPathParams, type CreateFasterforwardTaskQueryParams, type CreateFasterforwardTaskResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeactivateOutlookConnectionSyncBody, type DeactivateOutlookConnectionSyncQueryParams, type DeactivateOutlookConnectionSyncResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type DeprecatedValidateAnvaConnectionQueryParams, type DeprecatedValidateAnvaConnectionResponse, type 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 ExportPartyToAnvaPathParams, type ExportPartyToAnvaQueryParams, type ExportPartyToAnvaResponse, type ExportPartyToAssuPathParams, type ExportPartyToAssuQueryParams, type ExportPartyToAssuResponse, type ExportPartyToDiasPathParams, type ExportPartyToDiasQueryParams, type ExportPartyToDiasResponse, type ExportPartyToFasterforwardPathParams, type ExportPartyToFasterforwardQueryParams, type ExportPartyToFasterforwardResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateConceptReplyBody, type GenerateConceptReplyPathParams, type GenerateConceptReplyQueryParams, type GenerateConceptReplyResponse, type GenerateDiasOfferDocumentBySessionIdPathParams, type GenerateDiasOfferDocumentBySessionIdQueryParams, type GenerateDiasOfferDocumentBySessionIdResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdQueryParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasPartySalutationsResponse, type GetDiasPartyTitlesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowInsurancesQueryParams, type GetDiasflowInsurancesResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type 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 GetOnesuranceDataByPartyIdPathParams, type GetOnesuranceDataByPartyIdQueryParams, type GetOnesuranceDataByPartyIdResponse, type GetOnesuranceRecommendationsByEmailIdPathParams, type GetOnesuranceRecommendationsByEmailIdQueryParams, type GetOnesuranceRecommendationsByEmailIdResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailByIdPathParams, type GetOutlookMailByIdQueryParams, type GetOutlookMailByIdResponse, type GetOutlookMailByOutlookMessageIdPathParams, type GetOutlookMailByOutlookMessageIdQueryParams, type GetOutlookMailByOutlookMessageIdResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetSystemCampaignsByPartyPathParams, type GetSystemCampaignsByPartyQueryParams, type GetSystemCampaignsByPartyResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportAssuPartyInWegroupPathParams, type ImportAssuPartyInWegroupQueryParams, type ImportAssuPartyInWegroupResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type ImportFasterforwardPartyInWegroupPathParams, type ImportFasterforwardPartyInWegroupQueryParams, type ImportFasterforwardPartyInWegroupResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OutlookConnectionSyncQueryParams, type OutlookConnectionSyncResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivateOutlookSyncCmd, type SchemaActivateOutlookSyncParams, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentTaskCmd, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaDocumentUploadCmd, type SchemaAnvaExportReply, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCommandsExternalref, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppModelsUploadExternalRef, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAssuDocumentUploadCmd, type SchemaAssuTaskCmd, type SchemaAssuTaskDocument, type SchemaAssuTaskPriority, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookMailFolderSyncDetails, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaigns, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type 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 SchemaConceptReplyGeneratedResponse, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasPartyCompanyCmd, type SchemaCreateDiasPartyCompanyRegistration, type SchemaCreateDiasPartyCustomerCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReply, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateTaskInAssuParams, type SchemaCreateTaskInDiasParams, type SchemaCreateTaskInFasterforwardParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeactivateOutlookSyncCmd, type SchemaDeactivateOutlookSyncParams, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasClosingQuestion, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageCombination, type SchemaDiasCoverageUpdateCmd, type SchemaDiasDocumentUploadCmd, type SchemaDiasDocumentUploadItem, type SchemaDiasEntity, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasOfferDocumentResponse, type SchemaDiasOfferMailCmd, type SchemaDiasOfferMailResponse, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDiasSaluation, type SchemaDiasSendOfferInsurancePolicy, type SchemaDiasSendOfferPolicyPackage, type SchemaDiasTaskDocument, type SchemaDiasTitle, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailUpdateByEmailIdCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFasterForwardDocumentUploadCmd, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaInsurancePackageInsurancePolicy, type SchemaFlowsModelsAnvaAnvaPartyBaseAddress, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaAnvaQuotePossiblePackage, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasInsurancePackageInsurancePolicy, type SchemaFlowsModelsDiasDiasOfferDocument, type SchemaFlowsModelsDiasDiasOfferMailCmdDiasOfferDocument, type SchemaFlowsModelsDiasDiasPartyBaseAddress, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDiasQuotePossiblePackage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateConceptReplyCmd, type SchemaGenerateConceptReplyParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendDiasOfferMailParams, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaPartyParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsAssuDocumentUploadCmd, type SchemaMercuryModelsFasterforwardDocumentUploadCmd, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardFasterForwardSearchRelationsFasterForwardSearchRelations, type SchemaMercuryModelsFasterforwardListItem, type SchemaMercuryModelsFasterforwardTaskCmd, type SchemaMercuryModelsFasterforwardTaskPriority, type SchemaMercuryModelsMDiasTaskCmd, type SchemaMercuryModelsMDiasTaskPriority, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMicrosoftOutlookMailFolder, type SchemaMicrosoftOutlookMailFolders, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasInsuranceQueryModel, type SchemaMultiDiasPartySaluationQueryModel, type SchemaMultiDiasPartyTitleQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOnesuranceAction, type SchemaOnesuranceActionType, type SchemaOnesuranceAdvice, type SchemaOnesuranceAdviceLevel, type SchemaOnesuranceAdviceType, type SchemaOnesuranceExplanationData, type SchemaOnesuranceIntent, type SchemaOnesurancePartyData, type SchemaOnesuranceProduct, type SchemaOnesuranceQuickFeedback, type SchemaOnesuranceRecommendation, type SchemaOnesuranceRecommendationType, type SchemaOnesuranceRecommendations, type SchemaOnesuranceRelationDetails, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type 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 SchemaPartiesSearchCmd, type SchemaPartiesSearchItem, type SchemaPartiesSearchResponse, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSearchPartiesParams, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type 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 SchemaSystemCampaignType, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephonenrCategory, type SchemaTelephonenrCategory_2, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateAnvaPartyCompanyCmd, type SchemaUpdateAnvaPartyCustomerCmd, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateEmailByIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadDocumentsInAnvaParams, type SchemaUploadDocumentsInAssuParams, type SchemaUploadDocumentsInDiasParams, type SchemaUploadDocumentsInFasterforwardParams, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchAssuPartiesQueryParams, type SearchAssuPartiesResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchFasterforwardPartiesQueryParams, type SearchFasterforwardPartiesResponse, type SearchPartiesBody, type SearchPartiesQueryParams, type SearchPartiesResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendDiasOfferMailBySessionIdBody, type SendDiasOfferMailBySessionIdPathParams, type SendDiasOfferMailBySessionIdQueryParams, type SendDiasOfferMailBySessionIdResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnalyzedEmailIdBody, type UpdateAnalyzedEmailIdPathParams, type UpdateAnalyzedEmailIdQueryParams, type UpdateAnalyzedEmailIdResponse, type UpdateAnvaPartyViaConversationBody, type UpdateAnvaPartyViaConversationPathParams, type UpdateAnvaPartyViaConversationQueryParams, type UpdateAnvaPartyViaConversationResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UploadDocumentsInAnvaBody, type UploadDocumentsInAnvaPathParams, type UploadDocumentsInAnvaQueryParams, type UploadDocumentsInAnvaResponse, type UploadDocumentsInAssuBody, type UploadDocumentsInAssuPathParams, type UploadDocumentsInAssuQueryParams, type UploadDocumentsInAssuResponse, type UploadDocumentsInDiasBody, type UploadDocumentsInDiasPathParams, type UploadDocumentsInDiasQueryParams, type UploadDocumentsInDiasResponse, type UploadDocumentsInFasterforwardBody, type UploadDocumentsInFasterforwardPathParams, type UploadDocumentsInFasterforwardQueryParams, type UploadDocumentsInFasterforwardResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, activateOutlookConnectionSync, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaPartyViaConversation, createAnvaTask, createAnvaflowTags, createAssuTask, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasPartyViaConversation, createDiasTask, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createFasterforwardTask, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deactivateOutlookConnectionSync, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, deprecatedValidateAnvaConnection, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportPartyToAnva, exportPartyToAssu, exportPartyToDias, exportPartyToFasterforward, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateConceptReply, generateDiasOfferDocumentBySessionId, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasPartySalutations, getDiasPartyTitles, getDiasProducts, getDiasflowInsurances, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, 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, getOnesuranceDataByPartyId, getOnesuranceRecommendationsByEmailId, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailById, getOutlookMailByOutlookMessageId, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getSystemCampaignsByParty, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importAssuPartyInWegroup, importDiasPartyInWegroup, importDiasflowProduct, importFasterforwardPartyInWegroup, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, outlookConnectionSync, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchAssuParties, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchFasterforwardParties, searchParties, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendDiasOfferMailBySessionId, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnalyzedEmailId, updateAnvaPartyViaConversation, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, uploadDocumentsInAnva, uploadDocumentsInAssu, uploadDocumentsInDias, uploadDocumentsInFasterforward, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };