wg-api-sdk 4.30.250 → 4.30.251

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.
@@ -3704,6 +3704,23 @@ interface paths {
3704
3704
  patch?: never;
3705
3705
  trace?: never;
3706
3706
  };
3707
+ "/v1/api/diasflows/conversations/{session_id}/contact-person": {
3708
+ parameters: {
3709
+ query?: never;
3710
+ header?: never;
3711
+ path?: never;
3712
+ cookie?: never;
3713
+ };
3714
+ get?: never;
3715
+ put?: never;
3716
+ /** Create Dias Contact Person */
3717
+ post: operations["create_dias_contact_person_v1_api_diasflows_conversations__session_id__contact_person_post"];
3718
+ delete?: never;
3719
+ options?: never;
3720
+ head?: never;
3721
+ patch?: never;
3722
+ trace?: never;
3723
+ };
3707
3724
  "/v1/api/distributions/{distribution_id}/themes": {
3708
3725
  parameters: {
3709
3726
  query?: never;
@@ -9069,7 +9086,7 @@ interface components {
9069
9086
  * Timestamp
9070
9087
  * Format: date-time
9071
9088
  * @description Timestamp of when the error occured
9072
- * @default 2026-01-28T12:07:54.573066
9089
+ * @default 2026-01-29T10:55:38.501592
9073
9090
  */
9074
9091
  timestamp: string;
9075
9092
  /**
@@ -66133,6 +66150,34 @@ interface components {
66133
66150
  start_date?: string;
66134
66151
  payment_interval?: components["schemas"]["PAYMENT_INTERVAL"];
66135
66152
  };
66153
+ /** handle_create_dias_contact_person_params */
66154
+ handle_create_dias_contact_person_params: {
66155
+ auth: components["schemas"]["Auth"];
66156
+ data: components["schemas"]["CreateDiasContactPersonCreateCmd"];
66157
+ /**
66158
+ * Session Id
66159
+ * Format: uuid
66160
+ */
66161
+ session_id: string;
66162
+ };
66163
+ /** CreateDiasContactPersonCreateCmd */
66164
+ CreateDiasContactPersonCreateCmd: {
66165
+ /** First Name */
66166
+ first_name: string;
66167
+ /** Infix */
66168
+ infix?: string;
66169
+ /** Last Name */
66170
+ last_name: string;
66171
+ /** Telephonenr */
66172
+ telephonenr: string;
66173
+ /** Email */
66174
+ email: string;
66175
+ /**
66176
+ * Birth
66177
+ * Format: date
66178
+ */
66179
+ birth: string;
66180
+ };
66136
66181
  /** MultiAnvaLabelQueryModel */
66137
66182
  MultiAnvaLabelQueryModel: {
66138
66183
  /** Items */
@@ -71740,6 +71785,8 @@ type SchemaHandleCalculateOneDiasQuoteForConversationParams = components['schema
71740
71785
  type SchemaRecalculateDiasQuoteRequest = components['schemas']['RecalculateDiasQuoteRequest'];
71741
71786
  type SchemaHandleRecalculateDiasSimulationParams = components['schemas']['handle_recalculate_dias_simulation_params'];
71742
71787
  type SchemaRecalculateDiasSimulationCmd = components['schemas']['RecalculateDiasSimulationCmd'];
71788
+ type SchemaHandleCreateDiasContactPersonParams = components['schemas']['handle_create_dias_contact_person_params'];
71789
+ type SchemaCreateDiasContactPersonCreateCmd = components['schemas']['CreateDiasContactPersonCreateCmd'];
71743
71790
  type SchemaMultiAnvaLabelQueryModel = components['schemas']['MultiAnvaLabelQueryModel'];
71744
71791
  type SchemaAnvaLabel = components['schemas']['AnvaLabel'];
71745
71792
  type SchemaAnvaFlowLabelStatus = components['schemas']['ANVA_FLOW_LABEL_STATUS'];
@@ -92084,6 +92131,100 @@ interface operations {
92084
92131
  };
92085
92132
  };
92086
92133
  };
92134
+ create_dias_contact_person_v1_api_diasflows_conversations__session_id__contact_person_post: {
92135
+ parameters: {
92136
+ query?: {
92137
+ /**
92138
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
92139
+ * @example EN
92140
+ */
92141
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
92142
+ /**
92143
+ * @description Same as lang, but adds support to pass ?language as well
92144
+ * @example EN
92145
+ */
92146
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
92147
+ };
92148
+ header?: {
92149
+ /** @description Which release to target running in 'STAGING' environment. */
92150
+ "x-release"?: string;
92151
+ };
92152
+ path: {
92153
+ session_id: string;
92154
+ };
92155
+ cookie?: never;
92156
+ };
92157
+ requestBody: {
92158
+ content: {
92159
+ "application/json": components["schemas"]["handle_create_dias_contact_person_params"]["data"];
92160
+ };
92161
+ };
92162
+ responses: {
92163
+ /** @description Successful Response */
92164
+ 201: {
92165
+ headers: {
92166
+ [name: string]: unknown;
92167
+ };
92168
+ content: {
92169
+ "application/json": components["schemas"]["wg_py_models__domain__wegroup__rest__responses__StatusResponse"];
92170
+ };
92171
+ };
92172
+ /** @description Bad Request */
92173
+ 400: {
92174
+ headers: {
92175
+ [name: string]: unknown;
92176
+ };
92177
+ content: {
92178
+ "application/json": components["schemas"]["Error_4XX"];
92179
+ };
92180
+ };
92181
+ /** @description Unauthorized */
92182
+ 401: {
92183
+ headers: {
92184
+ [name: string]: unknown;
92185
+ };
92186
+ content: {
92187
+ "application/json": components["schemas"]["Error_401"];
92188
+ };
92189
+ };
92190
+ /** @description Forbidden */
92191
+ 403: {
92192
+ headers: {
92193
+ [name: string]: unknown;
92194
+ };
92195
+ content: {
92196
+ "application/json": components["schemas"]["Error_403"];
92197
+ };
92198
+ };
92199
+ /** @description Unprocessable Content */
92200
+ 422: {
92201
+ headers: {
92202
+ [name: string]: unknown;
92203
+ };
92204
+ content: {
92205
+ "application/json": components["schemas"]["Error_422"];
92206
+ };
92207
+ };
92208
+ /** @description Too Many Requests */
92209
+ 429: {
92210
+ headers: {
92211
+ [name: string]: unknown;
92212
+ };
92213
+ content: {
92214
+ "application/json": components["schemas"]["Error_429"];
92215
+ };
92216
+ };
92217
+ /** @description Internal Server Error */
92218
+ 500: {
92219
+ headers: {
92220
+ [name: string]: unknown;
92221
+ };
92222
+ content: {
92223
+ "application/json": components["schemas"]["ServerError"];
92224
+ };
92225
+ };
92226
+ };
92227
+ };
92087
92228
  handle_create_distribution_theme_v1_api_distributions__distribution_id__themes_post: {
92088
92229
  parameters: {
92089
92230
  query?: {
@@ -117697,52 +117838,52 @@ type Middleware = Middleware$1;
117697
117838
  type ClientType = ReturnType<typeof createClient<paths>>;
117698
117839
  declare const wgApiClient: (options: ClientOptions) => ClientType;
117699
117840
 
117700
- declare const routeName$7M = "/v1/api/weather/info";
117701
- type GetWeatherInfoQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
117702
- type GetWeatherInfoResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
117703
- type GetWeatherInfoProps = paths[typeof routeName$7M]['get']['parameters'];
117841
+ declare const routeName$7N = "/v1/api/weather/info";
117842
+ type GetWeatherInfoQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
117843
+ type GetWeatherInfoResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
117844
+ type GetWeatherInfoProps = paths[typeof routeName$7N]['get']['parameters'];
117704
117845
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
117705
117846
 
117706
- declare const routeName$7L = "/v1/api/address/cities";
117707
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$7L]['get']['parameters']['query'];
117708
- type SearchCitiesByCountryResponse = paths[typeof routeName$7L]['get']['responses'][200]['content']['application/json'];
117709
- type SearchCitiesByCountryProps = paths[typeof routeName$7L]['get']['parameters'];
117847
+ declare const routeName$7M = "/v1/api/address/cities";
117848
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
117849
+ type SearchCitiesByCountryResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
117850
+ type SearchCitiesByCountryProps = paths[typeof routeName$7M]['get']['parameters'];
117710
117851
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
117711
117852
 
117712
- declare const routeName$7K = "/v1/api/address/streets";
117713
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
117714
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7K]['get']['responses'][200]['content']['application/json'];
117715
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7K]['get']['parameters'];
117853
+ declare const routeName$7L = "/v1/api/address/streets";
117854
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7L]['get']['parameters']['query'];
117855
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7L]['get']['responses'][200]['content']['application/json'];
117856
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7L]['get']['parameters'];
117716
117857
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
117717
117858
 
117718
- declare const routeName$7J = "/v1/api/address/search";
117719
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$7J]['get']['parameters']['query'];
117720
- type SearchAddressesByCountryResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
117721
- type SearchAddressesByCountryProps = paths[typeof routeName$7J]['get']['parameters'];
117859
+ declare const routeName$7K = "/v1/api/address/search";
117860
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
117861
+ type SearchAddressesByCountryResponse = paths[typeof routeName$7K]['get']['responses'][200]['content']['application/json'];
117862
+ type SearchAddressesByCountryProps = paths[typeof routeName$7K]['get']['parameters'];
117722
117863
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
117723
117864
 
117724
- declare const routeName$7I = "/v1/api/address/info/premium";
117725
- type GetAddressInfoQueryParams = paths[typeof routeName$7I]['get']['parameters']['query'];
117726
- type GetAddressInfoResponse = paths[typeof routeName$7I]['get']['responses'][200]['content']['application/json'];
117727
- type GetAddressInfoProps = paths[typeof routeName$7I]['get']['parameters'];
117865
+ declare const routeName$7J = "/v1/api/address/info/premium";
117866
+ type GetAddressInfoQueryParams = paths[typeof routeName$7J]['get']['parameters']['query'];
117867
+ type GetAddressInfoResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
117868
+ type GetAddressInfoProps = paths[typeof routeName$7J]['get']['parameters'];
117728
117869
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
117729
117870
 
117730
- declare const routeName$7H = "/v1/api/address/info/freemium";
117731
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7H]['get']['parameters']['query'];
117732
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$7H]['get']['responses'][200]['content']['application/json'];
117733
- type GetAddressInfoFreemiumProps = paths[typeof routeName$7H]['get']['parameters'];
117871
+ declare const routeName$7I = "/v1/api/address/info/freemium";
117872
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7I]['get']['parameters']['query'];
117873
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$7I]['get']['responses'][200]['content']['application/json'];
117874
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$7I]['get']['parameters'];
117734
117875
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
117735
117876
 
117736
- declare const routeName$7G = "/v1/api/advisory-reports";
117737
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7G]['get']['parameters']['query'];
117738
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
117739
- type GetAllAdvisoryReportsProps = paths[typeof routeName$7G]['get']['parameters'];
117877
+ declare const routeName$7H = "/v1/api/advisory-reports";
117878
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7H]['get']['parameters']['query'];
117879
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$7H]['get']['responses'][200]['content']['application/json'];
117880
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$7H]['get']['parameters'];
117740
117881
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
117741
117882
 
117742
- declare const routeName$7F = "/v1/api/advisory-reports";
117743
- type CreateAdvisoryReportBody = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
117744
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
117745
- type CreateAdvisoryReportResponse = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
117883
+ declare const routeName$7G = "/v1/api/advisory-reports";
117884
+ type CreateAdvisoryReportBody = paths[typeof routeName$7G]['post']['requestBody']['content']['application/json'];
117885
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$7G]['post']['parameters']['query'];
117886
+ type CreateAdvisoryReportResponse = paths[typeof routeName$7G]['post']['responses'][201]['content']['application/json'];
117746
117887
  interface CreateAdvisoryReportProps {
117747
117888
  body: CreateAdvisoryReportBody;
117748
117889
  params: {
@@ -117751,17 +117892,17 @@ interface CreateAdvisoryReportProps {
117751
117892
  }
117752
117893
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
117753
117894
 
117754
- declare const routeName$7E = "/v1/api/advisory-reports/{report_id}";
117755
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7E]['get']['parameters']['path'];
117756
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7E]['get']['parameters']['query'];
117757
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7E]['get']['responses'][200]['content']['application/json'];
117758
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7E]['get']['parameters'];
117895
+ declare const routeName$7F = "/v1/api/advisory-reports/{report_id}";
117896
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7F]['get']['parameters']['path'];
117897
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7F]['get']['parameters']['query'];
117898
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7F]['get']['responses'][200]['content']['application/json'];
117899
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7F]['get']['parameters'];
117759
117900
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
117760
117901
 
117761
- declare const routeName$7D = "/v1/api/advisory-reports/{report_id}";
117762
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7D]['delete']['parameters']['path'];
117763
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7D]['delete']['parameters']['query'];
117764
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7D]['delete']['responses'][200]['content']['application/json'];
117902
+ declare const routeName$7E = "/v1/api/advisory-reports/{report_id}";
117903
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7E]['delete']['parameters']['path'];
117904
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7E]['delete']['parameters']['query'];
117905
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7E]['delete']['responses'][200]['content']['application/json'];
117765
117906
  interface DeleteAdvisoryReportRevisionProps {
117766
117907
  params: {
117767
117908
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -117770,11 +117911,11 @@ interface DeleteAdvisoryReportRevisionProps {
117770
117911
  }
117771
117912
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
117772
117913
 
117773
- declare const routeName$7C = "/v1/api/advisory-reports/{report_id}";
117774
- type UpdateAdvisoryReportBody = paths[typeof routeName$7C]['patch']['requestBody']['content']['application/json'];
117775
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$7C]['patch']['parameters']['path'];
117776
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7C]['patch']['parameters']['query'];
117777
- type UpdateAdvisoryReportResponse = paths[typeof routeName$7C]['patch']['responses'][200]['content']['application/json'];
117914
+ declare const routeName$7D = "/v1/api/advisory-reports/{report_id}";
117915
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7D]['patch']['requestBody']['content']['application/json'];
117916
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7D]['patch']['parameters']['path'];
117917
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7D]['patch']['parameters']['query'];
117918
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7D]['patch']['responses'][200]['content']['application/json'];
117778
117919
  interface UpdateAdvisoryReportProps {
117779
117920
  body: UpdateAdvisoryReportBody;
117780
117921
  params: {
@@ -117784,18 +117925,18 @@ interface UpdateAdvisoryReportProps {
117784
117925
  }
117785
117926
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
117786
117927
 
117787
- declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/events";
117788
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7B]['get']['parameters']['path'];
117789
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7B]['get']['parameters']['query'];
117790
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7B]['get']['responses'][200]['content']['application/json'];
117791
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7B]['get']['parameters'];
117928
+ declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/events";
117929
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7C]['get']['parameters']['path'];
117930
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7C]['get']['parameters']['query'];
117931
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7C]['get']['responses'][200]['content']['application/json'];
117932
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7C]['get']['parameters'];
117792
117933
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
117793
117934
 
117794
- declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/email-inquiries";
117795
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$7A]['post']['requestBody']['content']['application/json'];
117796
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7A]['post']['parameters']['path'];
117797
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7A]['post']['parameters']['query'];
117798
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7A]['post']['responses'][201]['content']['application/json'];
117935
+ declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/email-inquiries";
117936
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$7B]['post']['requestBody']['content']['application/json'];
117937
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7B]['post']['parameters']['path'];
117938
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7B]['post']['parameters']['query'];
117939
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7B]['post']['responses'][201]['content']['application/json'];
117799
117940
  interface SendAdvisoryReportAsMailProps {
117800
117941
  body: SendAdvisoryReportAsMailBody;
117801
117942
  params: {
@@ -117805,10 +117946,10 @@ interface SendAdvisoryReportAsMailProps {
117805
117946
  }
117806
117947
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
117807
117948
 
117808
- declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/docx";
117809
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7z]['post']['parameters']['path'];
117810
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7z]['post']['parameters']['query'];
117811
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7z]['post']['responses'][200]['content']['application/json'];
117949
+ declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/docx";
117950
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7A]['post']['parameters']['path'];
117951
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7A]['post']['parameters']['query'];
117952
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7A]['post']['responses'][200]['content']['application/json'];
117812
117953
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
117813
117954
  params: {
117814
117955
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -117817,17 +117958,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
117817
117958
  }
117818
117959
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
117819
117960
 
117820
- declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/pdf";
117821
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7y]['get']['parameters']['path'];
117822
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7y]['get']['parameters']['query'];
117823
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7y]['get']['responses'][307]['content']['application/json'];
117824
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7y]['get']['parameters'];
117961
+ declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/pdf";
117962
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7z]['get']['parameters']['path'];
117963
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7z]['get']['parameters']['query'];
117964
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7z]['get']['responses'][307]['content']['application/json'];
117965
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7z]['get']['parameters'];
117825
117966
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
117826
117967
 
117827
- declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/pdf";
117828
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
117829
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
117830
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7x]['post']['responses'][200]['content']['application/json'];
117968
+ declare const routeName$7y = "/v1/api/advisory-reports/{report_id}/pdf";
117969
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
117970
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
117971
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7y]['post']['responses'][200]['content']['application/json'];
117831
117972
  interface GeneratePdfOfAdvisoryReportByIdProps {
117832
117973
  params: {
117833
117974
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -117836,10 +117977,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
117836
117977
  }
117837
117978
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
117838
117979
 
117839
- declare const routeName$7w = "/v1/api/advisory-report-front-page-pdf";
117840
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
117841
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
117842
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
117980
+ declare const routeName$7x = "/v1/api/advisory-report-front-page-pdf";
117981
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7x]['post']['requestBody']['content']['application/json'];
117982
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
117983
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7x]['post']['responses'][201]['content']['application/json'];
117843
117984
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
117844
117985
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
117845
117986
  params: {
@@ -117848,11 +117989,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
117848
117989
  }
117849
117990
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
117850
117991
 
117851
- declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/acceptances";
117852
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7v]['post']['requestBody']['content']['application/json'];
117853
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
117854
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
117855
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7v]['post']['responses'][200]['content']['application/json'];
117992
+ declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/acceptances";
117993
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
117994
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
117995
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
117996
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7w]['post']['responses'][200]['content']['application/json'];
117856
117997
  interface AcceptOrRejectAnAdvisoryReportProps {
117857
117998
  body: AcceptOrRejectAnAdvisoryReportBody;
117858
117999
  params: {
@@ -117862,11 +118003,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
117862
118003
  }
117863
118004
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
117864
118005
 
117865
- declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/conversations";
117866
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7u]['post']['requestBody']['content']['application/json'];
117867
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7u]['post']['parameters']['path'];
117868
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7u]['post']['parameters']['query'];
117869
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7u]['post']['responses'][201]['content']['application/json'];
118006
+ declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/conversations";
118007
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7v]['post']['requestBody']['content']['application/json'];
118008
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
118009
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
118010
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7v]['post']['responses'][201]['content']['application/json'];
117870
118011
  interface LinkConversationToAdvisoryReportProps {
117871
118012
  body: LinkConversationToAdvisoryReportBody;
117872
118013
  params: {
@@ -117876,11 +118017,11 @@ interface LinkConversationToAdvisoryReportProps {
117876
118017
  }
117877
118018
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
117878
118019
 
117879
- declare const routeName$7t = "/v2/api/advisory-reports/{report_id}/revisions";
117880
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7t]['post']['requestBody']['content']['application/json'];
117881
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7t]['post']['parameters']['path'];
117882
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7t]['post']['parameters']['query'];
117883
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7t]['post']['responses'][201]['content']['application/json'];
118020
+ declare const routeName$7u = "/v2/api/advisory-reports/{report_id}/revisions";
118021
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7u]['post']['requestBody']['content']['application/json'];
118022
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7u]['post']['parameters']['path'];
118023
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7u]['post']['parameters']['query'];
118024
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7u]['post']['responses'][201]['content']['application/json'];
117884
118025
  interface CreateAdvisoryReportRevisionV2Props {
117885
118026
  body: CreateAdvisoryReportRevisionV2Body;
117886
118027
  params: {
@@ -117890,11 +118031,11 @@ interface CreateAdvisoryReportRevisionV2Props {
117890
118031
  }
117891
118032
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
117892
118033
 
117893
- declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/revisions";
117894
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7s]['post']['requestBody']['content']['application/json'];
117895
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7s]['post']['parameters']['path'];
117896
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7s]['post']['parameters']['query'];
117897
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7s]['post']['responses'][201]['content']['application/json'];
118034
+ declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/revisions";
118035
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7t]['post']['requestBody']['content']['application/json'];
118036
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7t]['post']['parameters']['path'];
118037
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7t]['post']['parameters']['query'];
118038
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7t]['post']['responses'][201]['content']['application/json'];
117898
118039
  interface CreateAdvisoryReportRevisionProps {
117899
118040
  body: CreateAdvisoryReportRevisionBody;
117900
118041
  params: {
@@ -117904,10 +118045,10 @@ interface CreateAdvisoryReportRevisionProps {
117904
118045
  }
117905
118046
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
117906
118047
 
117907
- declare const routeName$7r = "/v2/api/advisory-reports/{report_id}";
117908
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$7r]['delete']['parameters']['path'];
117909
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7r]['delete']['parameters']['query'];
117910
- type DeleteAdvisoryReportResponse = paths[typeof routeName$7r]['delete']['responses'][200]['content']['application/json'];
118048
+ declare const routeName$7s = "/v2/api/advisory-reports/{report_id}";
118049
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$7s]['delete']['parameters']['path'];
118050
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7s]['delete']['parameters']['query'];
118051
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$7s]['delete']['responses'][200]['content']['application/json'];
117911
118052
  interface DeleteAdvisoryReportProps {
117912
118053
  params: {
117913
118054
  query: DeleteAdvisoryReportQueryParams;
@@ -117916,11 +118057,11 @@ interface DeleteAdvisoryReportProps {
117916
118057
  }
117917
118058
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
117918
118059
 
117919
- declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/clauses";
117920
- type PutClausesForReportBody = paths[typeof routeName$7q]['put']['requestBody']['content']['application/json'];
117921
- type PutClausesForReportPathParams = paths[typeof routeName$7q]['put']['parameters']['path'];
117922
- type PutClausesForReportQueryParams = paths[typeof routeName$7q]['put']['parameters']['query'];
117923
- type PutClausesForReportResponse = paths[typeof routeName$7q]['put']['responses'][200]['content']['application/json'];
118060
+ declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/clauses";
118061
+ type PutClausesForReportBody = paths[typeof routeName$7r]['put']['requestBody']['content']['application/json'];
118062
+ type PutClausesForReportPathParams = paths[typeof routeName$7r]['put']['parameters']['path'];
118063
+ type PutClausesForReportQueryParams = paths[typeof routeName$7r]['put']['parameters']['query'];
118064
+ type PutClausesForReportResponse = paths[typeof routeName$7r]['put']['responses'][200]['content']['application/json'];
117924
118065
  interface PutClausesForReportProps {
117925
118066
  body: PutClausesForReportBody;
117926
118067
  params: {
@@ -117930,9 +118071,9 @@ interface PutClausesForReportProps {
117930
118071
  }
117931
118072
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
117932
118073
 
117933
- declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/personalise-advices";
117934
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7p]['post']['parameters']['path'];
117935
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7p]['post']['responses'][200]['content']['application/json'];
118074
+ declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/personalise-advices";
118075
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7q]['post']['parameters']['path'];
118076
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7q]['post']['responses'][200]['content']['application/json'];
117936
118077
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
117937
118078
  params: {
117938
118079
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -117940,18 +118081,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
117940
118081
  }
117941
118082
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
117942
118083
 
117943
- declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/settings/steps";
117944
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7o]['get']['parameters']['path'];
117945
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
117946
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
117947
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7o]['get']['parameters'];
118084
+ declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/settings/steps";
118085
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7p]['get']['parameters']['path'];
118086
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7p]['get']['parameters']['query'];
118087
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7p]['get']['responses'][200]['content']['application/json'];
118088
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7p]['get']['parameters'];
117948
118089
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
117949
118090
 
117950
- declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/settings/steps";
117951
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7n]['put']['requestBody']['content']['application/json'];
117952
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7n]['put']['parameters']['path'];
117953
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7n]['put']['parameters']['query'];
117954
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7n]['put']['responses'][200]['content']['application/json'];
118091
+ declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/settings/steps";
118092
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7o]['put']['requestBody']['content']['application/json'];
118093
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7o]['put']['parameters']['path'];
118094
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7o]['put']['parameters']['query'];
118095
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7o]['put']['responses'][200]['content']['application/json'];
117955
118096
  interface CreateAdvisoryReportStepSettingsProps {
117956
118097
  body: CreateAdvisoryReportStepSettingsBody;
117957
118098
  params: {
@@ -117961,11 +118102,11 @@ interface CreateAdvisoryReportStepSettingsProps {
117961
118102
  }
117962
118103
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
117963
118104
 
117964
- declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/risk-domains";
117965
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7m]['post']['requestBody']['content']['application/json'];
117966
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['post']['parameters']['path'];
117967
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['post']['parameters']['query'];
117968
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['post']['responses'][201]['content']['application/json'];
118105
+ declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/risk-domains";
118106
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7n]['post']['requestBody']['content']['application/json'];
118107
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7n]['post']['parameters']['path'];
118108
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7n]['post']['parameters']['query'];
118109
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7n]['post']['responses'][201]['content']['application/json'];
117969
118110
  interface CreateRiskDomainForAdvisoryReportByIdProps {
117970
118111
  body: CreateRiskDomainForAdvisoryReportByIdBody;
117971
118112
  params: {
@@ -117975,10 +118116,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
117975
118116
  }
117976
118117
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
117977
118118
 
117978
- declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
117979
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7l]['delete']['parameters']['path'];
117980
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7l]['delete']['parameters']['query'];
117981
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7l]['delete']['responses'][200]['content']['application/json'];
118119
+ declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
118120
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['delete']['parameters']['path'];
118121
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['delete']['parameters']['query'];
118122
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['delete']['responses'][200]['content']['application/json'];
117982
118123
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
117983
118124
  params: {
117984
118125
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -117987,11 +118128,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
117987
118128
  }
117988
118129
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
117989
118130
 
117990
- declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
117991
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7k]['post']['requestBody']['content']['application/json'];
117992
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7k]['post']['parameters']['path'];
117993
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7k]['post']['parameters']['query'];
117994
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7k]['post']['responses'][201]['content']['application/json'];
118131
+ declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
118132
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7l]['post']['requestBody']['content']['application/json'];
118133
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7l]['post']['parameters']['path'];
118134
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7l]['post']['parameters']['query'];
118135
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7l]['post']['responses'][201]['content']['application/json'];
117995
118136
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
117996
118137
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
117997
118138
  params: {
@@ -118001,10 +118142,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
118001
118142
  }
118002
118143
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
118003
118144
 
118004
- declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118005
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7j]['delete']['parameters']['path'];
118006
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7j]['delete']['parameters']['query'];
118007
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7j]['delete']['responses'][200]['content']['application/json'];
118145
+ declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118146
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7k]['delete']['parameters']['path'];
118147
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7k]['delete']['parameters']['query'];
118148
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7k]['delete']['responses'][200]['content']['application/json'];
118008
118149
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
118009
118150
  params: {
118010
118151
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -118013,11 +118154,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
118013
118154
  }
118014
118155
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
118015
118156
 
118016
- declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118017
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7i]['patch']['requestBody']['content']['application/json'];
118018
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['patch']['parameters']['path'];
118019
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['patch']['parameters']['query'];
118020
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7i]['patch']['responses'][201]['content']['application/json'];
118157
+ declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118158
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7j]['patch']['requestBody']['content']['application/json'];
118159
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7j]['patch']['parameters']['path'];
118160
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7j]['patch']['parameters']['query'];
118161
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7j]['patch']['responses'][201]['content']['application/json'];
118021
118162
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
118022
118163
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
118023
118164
  params: {
@@ -118027,11 +118168,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
118027
118168
  }
118028
118169
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
118029
118170
 
118030
- declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
118031
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7h]['put']['requestBody']['content']['application/json'];
118032
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['put']['parameters']['path'];
118033
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['put']['parameters']['query'];
118034
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7h]['put']['responses'][201]['content']['application/json'];
118171
+ declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
118172
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7i]['put']['requestBody']['content']['application/json'];
118173
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['put']['parameters']['path'];
118174
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['put']['parameters']['query'];
118175
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7i]['put']['responses'][201]['content']['application/json'];
118035
118176
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
118036
118177
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
118037
118178
  params: {
@@ -118041,11 +118182,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
118041
118182
  }
118042
118183
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
118043
118184
 
118044
- declare const routeName$7g = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
118045
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7g]['post']['requestBody']['content']['application/json'];
118046
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7g]['post']['parameters']['path'];
118047
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7g]['post']['parameters']['query'];
118048
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7g]['post']['responses'][201]['content']['application/json'];
118185
+ declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
118186
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7h]['post']['requestBody']['content']['application/json'];
118187
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['post']['parameters']['path'];
118188
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['post']['parameters']['query'];
118189
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7h]['post']['responses'][201]['content']['application/json'];
118049
118190
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
118050
118191
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
118051
118192
  params: {
@@ -118055,10 +118196,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
118055
118196
  }
118056
118197
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
118057
118198
 
118058
- declare const routeName$7f = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118059
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7f]['delete']['parameters']['path'];
118060
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7f]['delete']['parameters']['query'];
118061
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7f]['delete']['responses'][200]['content']['application/json'];
118199
+ declare const routeName$7g = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118200
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7g]['delete']['parameters']['path'];
118201
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7g]['delete']['parameters']['query'];
118202
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7g]['delete']['responses'][200]['content']['application/json'];
118062
118203
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
118063
118204
  params: {
118064
118205
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -118067,11 +118208,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
118067
118208
  }
118068
118209
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
118069
118210
 
118070
- declare const routeName$7e = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118071
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7e]['patch']['requestBody']['content']['application/json'];
118072
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7e]['patch']['parameters']['path'];
118073
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7e]['patch']['parameters']['query'];
118074
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7e]['patch']['responses'][200]['content']['application/json'];
118211
+ declare const routeName$7f = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118212
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7f]['patch']['requestBody']['content']['application/json'];
118213
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7f]['patch']['parameters']['path'];
118214
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7f]['patch']['parameters']['query'];
118215
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7f]['patch']['responses'][200]['content']['application/json'];
118075
118216
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
118076
118217
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
118077
118218
  params: {
@@ -118081,11 +118222,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
118081
118222
  }
118082
118223
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
118083
118224
 
118084
- declare const routeName$7d = "/v1/api/advisory-reports/{report_id}/insurance-policies";
118085
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7d]['put']['requestBody']['content']['application/json'];
118086
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7d]['put']['parameters']['path'];
118087
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7d]['put']['parameters']['query'];
118088
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7d]['put']['responses'][200]['content']['application/json'];
118225
+ declare const routeName$7e = "/v1/api/advisory-reports/{report_id}/insurance-policies";
118226
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7e]['put']['requestBody']['content']['application/json'];
118227
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7e]['put']['parameters']['path'];
118228
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7e]['put']['parameters']['query'];
118229
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7e]['put']['responses'][200]['content']['application/json'];
118089
118230
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
118090
118231
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
118091
118232
  params: {
@@ -118095,10 +118236,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
118095
118236
  }
118096
118237
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
118097
118238
 
118098
- declare const routeName$7c = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
118099
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7c]['delete']['parameters']['path'];
118100
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7c]['delete']['parameters']['query'];
118101
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7c]['delete']['responses'][200]['content']['application/json'];
118239
+ declare const routeName$7d = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
118240
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7d]['delete']['parameters']['path'];
118241
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7d]['delete']['parameters']['query'];
118242
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7d]['delete']['responses'][200]['content']['application/json'];
118102
118243
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
118103
118244
  params: {
118104
118245
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -118107,11 +118248,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
118107
118248
  }
118108
118249
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
118109
118250
 
118110
- declare const routeName$7b = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
118111
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7b]['put']['requestBody']['content']['application/json'];
118112
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7b]['put']['parameters']['path'];
118113
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7b]['put']['parameters']['query'];
118114
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7b]['put']['responses'][200]['content']['application/json'];
118251
+ declare const routeName$7c = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
118252
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7c]['put']['requestBody']['content']['application/json'];
118253
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7c]['put']['parameters']['path'];
118254
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7c]['put']['parameters']['query'];
118255
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7c]['put']['responses'][200]['content']['application/json'];
118115
118256
  interface OrderInsurancePolciesOfAdvisoryReportProps {
118116
118257
  body: OrderInsurancePolciesOfAdvisoryReportBody;
118117
118258
  params: {
@@ -118121,11 +118262,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
118121
118262
  }
118122
118263
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
118123
118264
 
118124
- declare const routeName$7a = "/v1/api/advisory-reports/{report_id}/policy-packages";
118125
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7a]['put']['requestBody']['content']['application/json'];
118126
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7a]['put']['parameters']['path'];
118127
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7a]['put']['parameters']['query'];
118128
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7a]['put']['responses'][200]['content']['application/json'];
118265
+ declare const routeName$7b = "/v1/api/advisory-reports/{report_id}/policy-packages";
118266
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7b]['put']['requestBody']['content']['application/json'];
118267
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7b]['put']['parameters']['path'];
118268
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7b]['put']['parameters']['query'];
118269
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7b]['put']['responses'][200]['content']['application/json'];
118129
118270
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
118130
118271
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
118131
118272
  params: {
@@ -118135,39 +118276,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
118135
118276
  }
118136
118277
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
118137
118278
 
118138
- declare const routeName$79 = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
118139
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$79]['get']['parameters']['path'];
118140
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$79]['get']['parameters']['query'];
118141
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
118142
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$79]['get']['parameters'];
118279
+ declare const routeName$7a = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
118280
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7a]['get']['parameters']['path'];
118281
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7a]['get']['parameters']['query'];
118282
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
118283
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7a]['get']['parameters'];
118143
118284
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
118144
118285
 
118145
- declare const routeName$78 = "/v1/api/affiliations";
118146
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
118286
+ declare const routeName$79 = "/v1/api/affiliations";
118287
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
118147
118288
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
118148
118289
 
118149
- declare const routeName$77 = "/v1/api/anvaflows/labels";
118150
- type GetAnvaLabelsQueryParams = paths[typeof routeName$77]['get']['parameters']['query'];
118151
- type GetAnvaLabelsResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
118152
- type GetAnvaLabelsProps = paths[typeof routeName$77]['get']['parameters'];
118290
+ declare const routeName$78 = "/v1/api/anvaflows/labels";
118291
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
118292
+ type GetAnvaLabelsResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
118293
+ type GetAnvaLabelsProps = paths[typeof routeName$78]['get']['parameters'];
118153
118294
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
118154
118295
 
118155
- declare const routeName$76 = "/v1/api/anvaflows/supported-insurances";
118156
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$76]['get']['parameters']['query'];
118157
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
118158
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$76]['get']['parameters'];
118296
+ declare const routeName$77 = "/v1/api/anvaflows/supported-insurances";
118297
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$77]['get']['parameters']['query'];
118298
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
118299
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$77]['get']['parameters'];
118159
118300
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
118160
118301
 
118161
- declare const routeName$75 = "/v1/api/anvaflows/supported-tags";
118162
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$75]['get']['parameters']['query'];
118163
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$75]['get']['responses'][200]['content']['application/json'];
118164
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$75]['get']['parameters'];
118302
+ declare const routeName$76 = "/v1/api/anvaflows/supported-tags";
118303
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$76]['get']['parameters']['query'];
118304
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
118305
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$76]['get']['parameters'];
118165
118306
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
118166
118307
 
118167
- declare const routeName$74 = "/v1/api/anvaflows/supported-tags";
118168
- type CreateAnvaflowTagsBody = paths[typeof routeName$74]['put']['requestBody']['content']['application/json'];
118169
- type CreateAnvaflowTagsQueryParams = paths[typeof routeName$74]['put']['parameters']['query'];
118170
- type CreateAnvaflowTagsResponse = paths[typeof routeName$74]['put']['responses'][200]['content']['application/json'];
118308
+ declare const routeName$75 = "/v1/api/anvaflows/supported-tags";
118309
+ type CreateAnvaflowTagsBody = paths[typeof routeName$75]['put']['requestBody']['content']['application/json'];
118310
+ type CreateAnvaflowTagsQueryParams = paths[typeof routeName$75]['put']['parameters']['query'];
118311
+ type CreateAnvaflowTagsResponse = paths[typeof routeName$75]['put']['responses'][200]['content']['application/json'];
118171
118312
  interface CreateAnvaflowTagsProps {
118172
118313
  body: CreateAnvaflowTagsBody;
118173
118314
  params: {
@@ -118176,35 +118317,35 @@ interface CreateAnvaflowTagsProps {
118176
118317
  }
118177
118318
  declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
118178
118319
 
118179
- declare const routeName$73 = "/v1/api/anvaflows/supported-coverages";
118180
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
118181
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
118182
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$73]['get']['parameters'];
118320
+ declare const routeName$74 = "/v1/api/anvaflows/supported-coverages";
118321
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$74]['get']['parameters']['query'];
118322
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$74]['get']['responses'][200]['content']['application/json'];
118323
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$74]['get']['parameters'];
118183
118324
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
118184
118325
 
118185
- declare const routeName$72 = "/v1/api/anvaflows/supported-adn-coverages";
118186
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
118187
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
118188
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$72]['get']['parameters'];
118326
+ declare const routeName$73 = "/v1/api/anvaflows/supported-adn-coverages";
118327
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
118328
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
118329
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$73]['get']['parameters'];
118189
118330
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
118190
118331
 
118191
- declare const routeName$71 = "/v1/api/anvaflows/supported-insurance-companies";
118192
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$71]['get']['parameters']['query'];
118193
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$71]['get']['responses'][200]['content']['application/json'];
118194
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$71]['get']['parameters'];
118332
+ declare const routeName$72 = "/v1/api/anvaflows/supported-insurance-companies";
118333
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
118334
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
118335
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$72]['get']['parameters'];
118195
118336
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
118196
118337
 
118197
- declare const routeName$70 = "/v1/api/anvaflows/mutation-reasons";
118198
- type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$70]['get']['parameters']['query'];
118199
- type GetAnvaMutationReasonsResponse = paths[typeof routeName$70]['get']['responses'][200]['content']['application/json'];
118200
- type GetAnvaMutationReasonsProps = paths[typeof routeName$70]['get']['parameters'];
118338
+ declare const routeName$71 = "/v1/api/anvaflows/mutation-reasons";
118339
+ type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$71]['get']['parameters']['query'];
118340
+ type GetAnvaMutationReasonsResponse = paths[typeof routeName$71]['get']['responses'][200]['content']['application/json'];
118341
+ type GetAnvaMutationReasonsProps = paths[typeof routeName$71]['get']['parameters'];
118201
118342
  declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
118202
118343
 
118203
- declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/calculate";
118204
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
118205
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
118206
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
118207
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6$]['post']['responses'][200]['content']['application/json'];
118344
+ declare const routeName$70 = "/v1/api/anvaflows/{session_id}/calculate";
118345
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
118346
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$70]['post']['parameters']['path'];
118347
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
118348
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$70]['post']['responses'][200]['content']['application/json'];
118208
118349
  interface CalculateAnvaquotesBySessionIdProps {
118209
118350
  body: CalculateAnvaquotesBySessionIdBody;
118210
118351
  params: {
@@ -118214,11 +118355,11 @@ interface CalculateAnvaquotesBySessionIdProps {
118214
118355
  }
118215
118356
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
118216
118357
 
118217
- declare const routeName$6_ = "/v2/api/anvaflows/{session_id}/calculate";
118218
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
118219
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
118220
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
118221
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6_]['post']['responses'][202]['content']['application/json'];
118358
+ declare const routeName$6$ = "/v2/api/anvaflows/{session_id}/calculate";
118359
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
118360
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
118361
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
118362
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6$]['post']['responses'][202]['content']['application/json'];
118222
118363
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
118223
118364
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
118224
118365
  params: {
@@ -118228,11 +118369,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
118228
118369
  }
118229
118370
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
118230
118371
 
118231
- declare const routeName$6Z = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
118232
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6Z]['post']['requestBody']['content']['application/json'];
118233
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6Z]['post']['parameters']['path'];
118234
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
118235
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6Z]['post']['responses'][200]['content']['application/json'];
118372
+ declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
118373
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
118374
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
118375
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
118376
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6_]['post']['responses'][200]['content']['application/json'];
118236
118377
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
118237
118378
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
118238
118379
  params: {
@@ -118242,10 +118383,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
118242
118383
  }
118243
118384
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
118244
118385
 
118245
- declare const routeName$6Y = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
118246
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6Y]['post']['parameters']['path'];
118247
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
118248
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6Y]['post']['responses'][201]['content']['application/json'];
118386
+ declare const routeName$6Z = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
118387
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6Z]['post']['parameters']['path'];
118388
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
118389
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6Z]['post']['responses'][201]['content']['application/json'];
118249
118390
  interface SendOfferToAnvaBySessionIdProps {
118250
118391
  params: {
118251
118392
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -118254,10 +118395,10 @@ interface SendOfferToAnvaBySessionIdProps {
118254
118395
  }
118255
118396
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
118256
118397
 
118257
- declare const routeName$6X = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
118258
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6X]['post']['parameters']['path'];
118259
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6X]['post']['parameters']['query'];
118260
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6X]['post']['responses'][202]['content']['application/json'];
118398
+ declare const routeName$6Y = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
118399
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6Y]['post']['parameters']['path'];
118400
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
118401
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6Y]['post']['responses'][202]['content']['application/json'];
118261
118402
  interface EnqueueSendOfferToAnvaBySessionIdProps {
118262
118403
  params: {
118263
118404
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -118266,11 +118407,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
118266
118407
  }
118267
118408
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
118268
118409
 
118269
- declare const routeName$6W = "/v1/api/anvaflows/{session_id}/send-offer-mail";
118270
- type SendOfferMailBySessionIdBody = paths[typeof routeName$6W]['post']['requestBody']['content']['application/json'];
118271
- type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6W]['post']['parameters']['path'];
118272
- type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6W]['post']['parameters']['query'];
118273
- type SendOfferMailBySessionIdResponse = paths[typeof routeName$6W]['post']['responses'][201]['content']['application/json'];
118410
+ declare const routeName$6X = "/v1/api/anvaflows/{session_id}/send-offer-mail";
118411
+ type SendOfferMailBySessionIdBody = paths[typeof routeName$6X]['post']['requestBody']['content']['application/json'];
118412
+ type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6X]['post']['parameters']['path'];
118413
+ type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6X]['post']['parameters']['query'];
118414
+ type SendOfferMailBySessionIdResponse = paths[typeof routeName$6X]['post']['responses'][201]['content']['application/json'];
118274
118415
  interface SendOfferMailBySessionIdProps {
118275
118416
  body: SendOfferMailBySessionIdBody;
118276
118417
  params: {
@@ -118280,11 +118421,11 @@ interface SendOfferMailBySessionIdProps {
118280
118421
  }
118281
118422
  declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
118282
118423
 
118283
- declare const routeName$6V = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
118284
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6V]['post']['requestBody']['content']['application/json'];
118285
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6V]['post']['parameters']['path'];
118286
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6V]['post']['parameters']['query'];
118287
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6V]['post']['responses'][202]['content']['application/json'];
118424
+ declare const routeName$6W = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
118425
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6W]['post']['requestBody']['content']['application/json'];
118426
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6W]['post']['parameters']['path'];
118427
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6W]['post']['parameters']['query'];
118428
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6W]['post']['responses'][202]['content']['application/json'];
118288
118429
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
118289
118430
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
118290
118431
  params: {
@@ -118294,11 +118435,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
118294
118435
  }
118295
118436
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
118296
118437
 
118297
- declare const routeName$6U = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
118298
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6U]['post']['requestBody']['content']['application/json'];
118299
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6U]['post']['parameters']['path'];
118300
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6U]['post']['parameters']['query'];
118301
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6U]['post']['responses'][200]['content']['application/json'];
118438
+ declare const routeName$6V = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
118439
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6V]['post']['requestBody']['content']['application/json'];
118440
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6V]['post']['parameters']['path'];
118441
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6V]['post']['parameters']['query'];
118442
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6V]['post']['responses'][200]['content']['application/json'];
118302
118443
  interface RecalculateSimulationBySessionIdProps {
118303
118444
  body: RecalculateSimulationBySessionIdBody;
118304
118445
  params: {
@@ -118308,23 +118449,23 @@ interface RecalculateSimulationBySessionIdProps {
118308
118449
  }
118309
118450
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
118310
118451
 
118311
- declare const routeName$6T = "/v1/api/anvaflows/{session_id}/collection-methods";
118312
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6T]['get']['parameters']['path'];
118313
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
118314
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
118315
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$6T]['get']['parameters'];
118452
+ declare const routeName$6U = "/v1/api/anvaflows/{session_id}/collection-methods";
118453
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
118454
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
118455
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
118456
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$6U]['get']['parameters'];
118316
118457
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
118317
118458
 
118318
- declare const routeName$6S = "/v1/api/anvaflows/closing-questions";
118319
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
118320
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
118321
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$6S]['get']['parameters'];
118459
+ declare const routeName$6T = "/v1/api/anvaflows/closing-questions";
118460
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
118461
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
118462
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$6T]['get']['parameters'];
118322
118463
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
118323
118464
 
118324
- declare const routeName$6R = "/v1/api/anvaflows/closing-questions";
118325
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6R]['put']['requestBody']['content']['application/json'];
118326
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6R]['put']['parameters']['query'];
118327
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6R]['put']['responses'][200]['content']['application/json'];
118465
+ declare const routeName$6S = "/v1/api/anvaflows/closing-questions";
118466
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6S]['put']['requestBody']['content']['application/json'];
118467
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6S]['put']['parameters']['query'];
118468
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6S]['put']['responses'][200]['content']['application/json'];
118328
118469
  interface UpsertAnvaClosingQuestionsProps {
118329
118470
  body: UpsertAnvaClosingQuestionsBody;
118330
118471
  params: {
@@ -118333,10 +118474,10 @@ interface UpsertAnvaClosingQuestionsProps {
118333
118474
  }
118334
118475
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
118335
118476
 
118336
- declare const routeName$6Q = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
118337
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6Q]['delete']['parameters']['path'];
118338
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6Q]['delete']['parameters']['query'];
118339
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6Q]['delete']['responses'][200]['content']['application/json'];
118477
+ declare const routeName$6R = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
118478
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6R]['delete']['parameters']['path'];
118479
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6R]['delete']['parameters']['query'];
118480
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6R]['delete']['responses'][200]['content']['application/json'];
118340
118481
  interface DeleteAnvaClosingQuestionsProps {
118341
118482
  params: {
118342
118483
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -118345,11 +118486,11 @@ interface DeleteAnvaClosingQuestionsProps {
118345
118486
  }
118346
118487
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
118347
118488
 
118348
- declare const routeName$6P = "/v1/api/anvaflows/{session_id}/anva-party";
118349
- type CreateAnvaPartyBody = paths[typeof routeName$6P]['post']['requestBody']['content']['application/json'];
118350
- type CreateAnvaPartyPathParams = paths[typeof routeName$6P]['post']['parameters']['path'];
118351
- type CreateAnvaPartyQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
118352
- type CreateAnvaPartyResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
118489
+ declare const routeName$6Q = "/v1/api/anvaflows/{session_id}/anva-party";
118490
+ type CreateAnvaPartyBody = paths[typeof routeName$6Q]['post']['requestBody']['content']['application/json'];
118491
+ type CreateAnvaPartyPathParams = paths[typeof routeName$6Q]['post']['parameters']['path'];
118492
+ type CreateAnvaPartyQueryParams = paths[typeof routeName$6Q]['post']['parameters']['query'];
118493
+ type CreateAnvaPartyResponse = paths[typeof routeName$6Q]['post']['responses'][201]['content']['application/json'];
118353
118494
  interface CreateAnvaPartyProps {
118354
118495
  body: CreateAnvaPartyBody;
118355
118496
  params: {
@@ -118359,16 +118500,16 @@ interface CreateAnvaPartyProps {
118359
118500
  }
118360
118501
  declare const createAnvaParty: (props: CreateAnvaPartyProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyResponse>;
118361
118502
 
118362
- declare const routeName$6O = "/v1/api/anvaproducts";
118363
- type GetAnvaproductsQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
118364
- type GetAnvaproductsResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
118365
- type GetAnvaproductsProps = paths[typeof routeName$6O]['get']['parameters'];
118503
+ declare const routeName$6P = "/v1/api/anvaproducts";
118504
+ type GetAnvaproductsQueryParams = paths[typeof routeName$6P]['get']['parameters']['query'];
118505
+ type GetAnvaproductsResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
118506
+ type GetAnvaproductsProps = paths[typeof routeName$6P]['get']['parameters'];
118366
118507
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
118367
118508
 
118368
- declare const routeName$6N = "/v1/api/anvaproducts/import";
118369
- type ImportAnvaproductBody = paths[typeof routeName$6N]['post']['requestBody']['content']['application/json'];
118370
- type ImportAnvaproductQueryParams = paths[typeof routeName$6N]['post']['parameters']['query'];
118371
- type ImportAnvaproductResponse = paths[typeof routeName$6N]['post']['responses'][200]['content']['application/json'];
118509
+ declare const routeName$6O = "/v1/api/anvaproducts/import";
118510
+ type ImportAnvaproductBody = paths[typeof routeName$6O]['post']['requestBody']['content']['application/json'];
118511
+ type ImportAnvaproductQueryParams = paths[typeof routeName$6O]['post']['parameters']['query'];
118512
+ type ImportAnvaproductResponse = paths[typeof routeName$6O]['post']['responses'][200]['content']['application/json'];
118372
118513
  interface ImportAnvaproductProps {
118373
118514
  body: ImportAnvaproductBody;
118374
118515
  params: {
@@ -118377,18 +118518,18 @@ interface ImportAnvaproductProps {
118377
118518
  }
118378
118519
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
118379
118520
 
118380
- declare const routeName$6M = "/v1/api/anvaproducts/{anva_product_id}";
118381
- type GetAnvaproductByIdPathParams = paths[typeof routeName$6M]['get']['parameters']['path'];
118382
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$6M]['get']['parameters']['query'];
118383
- type GetAnvaproductByIdResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
118384
- type GetAnvaproductByIdProps = paths[typeof routeName$6M]['get']['parameters'];
118521
+ declare const routeName$6N = "/v1/api/anvaproducts/{anva_product_id}";
118522
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$6N]['get']['parameters']['path'];
118523
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$6N]['get']['parameters']['query'];
118524
+ type GetAnvaproductByIdResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
118525
+ type GetAnvaproductByIdProps = paths[typeof routeName$6N]['get']['parameters'];
118385
118526
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
118386
118527
 
118387
- declare const routeName$6L = "/v1/api/anvaproducts/{anva_product_id}";
118388
- type PatchAnvaproductByIdBody = paths[typeof routeName$6L]['patch']['requestBody']['content']['application/json'];
118389
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$6L]['patch']['parameters']['path'];
118390
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6L]['patch']['parameters']['query'];
118391
- type PatchAnvaproductByIdResponse = paths[typeof routeName$6L]['patch']['responses'][200]['content']['application/json'];
118528
+ declare const routeName$6M = "/v1/api/anvaproducts/{anva_product_id}";
118529
+ type PatchAnvaproductByIdBody = paths[typeof routeName$6M]['patch']['requestBody']['content']['application/json'];
118530
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$6M]['patch']['parameters']['path'];
118531
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6M]['patch']['parameters']['query'];
118532
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$6M]['patch']['responses'][200]['content']['application/json'];
118392
118533
  interface PatchAnvaproductByIdProps {
118393
118534
  body: PatchAnvaproductByIdBody;
118394
118535
  params: {
@@ -118398,11 +118539,11 @@ interface PatchAnvaproductByIdProps {
118398
118539
  }
118399
118540
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
118400
118541
 
118401
- declare const routeName$6K = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
118402
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6K]['patch']['requestBody']['content']['application/json'];
118403
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6K]['patch']['parameters']['path'];
118404
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6K]['patch']['parameters']['query'];
118405
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6K]['patch']['responses'][200]['content']['application/json'];
118542
+ declare const routeName$6L = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
118543
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6L]['patch']['requestBody']['content']['application/json'];
118544
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6L]['patch']['parameters']['path'];
118545
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6L]['patch']['parameters']['query'];
118546
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6L]['patch']['responses'][200]['content']['application/json'];
118406
118547
  interface PatchAnvaproductCoverageByIdProps {
118407
118548
  body: PatchAnvaproductCoverageByIdBody;
118408
118549
  params: {
@@ -118412,18 +118553,18 @@ interface PatchAnvaproductCoverageByIdProps {
118412
118553
  }
118413
118554
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
118414
118555
 
118415
- declare const routeName$6J = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118416
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
118417
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6J]['get']['parameters']['query'];
118418
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
118419
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6J]['get']['parameters'];
118556
+ declare const routeName$6K = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118557
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6K]['get']['parameters']['path'];
118558
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6K]['get']['parameters']['query'];
118559
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
118560
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6K]['get']['parameters'];
118420
118561
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
118421
118562
 
118422
- declare const routeName$6I = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118423
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6I]['put']['requestBody']['content']['application/json'];
118424
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6I]['put']['parameters']['path'];
118425
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6I]['put']['parameters']['query'];
118426
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6I]['put']['responses'][200]['content']['application/json'];
118563
+ declare const routeName$6J = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118564
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6J]['put']['requestBody']['content']['application/json'];
118565
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6J]['put']['parameters']['path'];
118566
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6J]['put']['parameters']['query'];
118567
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6J]['put']['responses'][200]['content']['application/json'];
118427
118568
  interface UpdateAnvaflowsQuestionnaireProps {
118428
118569
  body: UpdateAnvaflowsQuestionnaireBody;
118429
118570
  params: {
@@ -118433,11 +118574,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
118433
118574
  }
118434
118575
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
118435
118576
 
118436
- declare const routeName$6H = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
118437
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6H]['post']['requestBody']['content']['application/json'];
118438
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6H]['post']['parameters']['path'];
118439
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
118440
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6H]['post']['responses'][200]['content']['application/json'];
118577
+ declare const routeName$6I = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
118578
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
118579
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
118580
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
118581
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
118441
118582
  interface ValidateAnvaflowsQuestionnaireProps {
118442
118583
  body: ValidateAnvaflowsQuestionnaireBody;
118443
118584
  params: {
@@ -118447,10 +118588,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
118447
118588
  }
118448
118589
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
118449
118590
 
118450
- declare const routeName$6G = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
118451
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6G]['post']['requestBody']['content']['application/json'];
118452
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
118453
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6G]['post']['responses'][200]['content']['application/json'];
118591
+ declare const routeName$6H = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
118592
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6H]['post']['requestBody']['content']['application/json'];
118593
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
118594
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6H]['post']['responses'][200]['content']['application/json'];
118454
118595
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
118455
118596
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
118456
118597
  params: {
@@ -118459,20 +118600,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
118459
118600
  }
118460
118601
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
118461
118602
 
118462
- declare const routeName$6F = "/v1/api/brokers/me";
118463
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
118603
+ declare const routeName$6G = "/v1/api/brokers/me";
118604
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
118464
118605
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
118465
118606
 
118466
- declare const routeName$6E = "/v1/api/brokers/{broker_id}";
118467
- type GetTheBrokerByIdPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
118468
- type GetTheBrokerByIdResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
118469
- type GetTheBrokerByIdProps = paths[typeof routeName$6E]['get']['parameters'];
118607
+ declare const routeName$6F = "/v1/api/brokers/{broker_id}";
118608
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$6F]['get']['parameters']['path'];
118609
+ type GetTheBrokerByIdResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
118610
+ type GetTheBrokerByIdProps = paths[typeof routeName$6F]['get']['parameters'];
118470
118611
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
118471
118612
 
118472
- declare const routeName$6D = "/v1/api/brokers/{broker_id}";
118473
- type UpdateBrokerByBrokerBody = paths[typeof routeName$6D]['patch']['requestBody']['content']['application/json'];
118474
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6D]['patch']['parameters']['path'];
118475
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$6D]['patch']['responses'][200]['content']['application/json'];
118613
+ declare const routeName$6E = "/v1/api/brokers/{broker_id}";
118614
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$6E]['patch']['requestBody']['content']['application/json'];
118615
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6E]['patch']['parameters']['path'];
118616
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$6E]['patch']['responses'][200]['content']['application/json'];
118476
118617
  interface UpdateBrokerByBrokerProps {
118477
118618
  body: UpdateBrokerByBrokerBody;
118478
118619
  params: {
@@ -118481,16 +118622,16 @@ interface UpdateBrokerByBrokerProps {
118481
118622
  }
118482
118623
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
118483
118624
 
118484
- declare const routeName$6C = "/v1/api/brokers/{broker_id}/integrations";
118485
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
118486
- type GetBrokerIntegrationsResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
118487
- type GetBrokerIntegrationsProps = paths[typeof routeName$6C]['get']['parameters'];
118625
+ declare const routeName$6D = "/v1/api/brokers/{broker_id}/integrations";
118626
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
118627
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
118628
+ type GetBrokerIntegrationsProps = paths[typeof routeName$6D]['get']['parameters'];
118488
118629
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
118489
118630
 
118490
- declare const routeName$6B = "/v1/api/brokers/{broker_id}/integrations";
118491
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$6B]['patch']['requestBody']['content']['application/json'];
118492
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6B]['patch']['parameters']['path'];
118493
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6B]['patch']['responses'][200]['content']['application/json'];
118631
+ declare const routeName$6C = "/v1/api/brokers/{broker_id}/integrations";
118632
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$6C]['patch']['requestBody']['content']['application/json'];
118633
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6C]['patch']['parameters']['path'];
118634
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6C]['patch']['responses'][200]['content']['application/json'];
118494
118635
  interface UpdateBrokerIntegrationsProps {
118495
118636
  body: UpdateBrokerIntegrationsBody;
118496
118637
  params: {
@@ -118499,37 +118640,37 @@ interface UpdateBrokerIntegrationsProps {
118499
118640
  }
118500
118641
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
118501
118642
 
118502
- declare const routeName$6A = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
118503
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6A]['get']['parameters']['path'];
118504
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
118505
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6A]['get']['parameters'];
118643
+ declare const routeName$6B = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
118644
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6B]['get']['parameters']['path'];
118645
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6B]['get']['responses'][200]['content']['application/json'];
118646
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6B]['get']['parameters'];
118506
118647
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
118507
118648
 
118508
- declare const routeName$6z = "/v1/api/anva-producers/{anva_producer_id}";
118509
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6z]['get']['parameters']['path'];
118510
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6z]['get']['responses'][200]['content']['application/json'];
118511
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6z]['get']['parameters'];
118649
+ declare const routeName$6A = "/v1/api/anva-producers/{anva_producer_id}";
118650
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6A]['get']['parameters']['path'];
118651
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
118652
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6A]['get']['parameters'];
118512
118653
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
118513
118654
 
118514
- declare const routeName$6y = "/v1/api/brokers/{broker_id}/checklists/onboarding";
118515
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6y]['get']['parameters']['path'];
118516
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
118517
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
118518
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6y]['get']['parameters'];
118655
+ declare const routeName$6z = "/v1/api/brokers/{broker_id}/checklists/onboarding";
118656
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6z]['get']['parameters']['path'];
118657
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6z]['get']['parameters']['query'];
118658
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6z]['get']['responses'][200]['content']['application/json'];
118659
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6z]['get']['parameters'];
118519
118660
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
118520
118661
 
118521
- declare const routeName$6x = "/v1/api/campaigns/{campaign_id}";
118522
- type GetCampaignByIdPathParams = paths[typeof routeName$6x]['get']['parameters']['path'];
118523
- type GetCampaignByIdQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
118524
- type GetCampaignByIdResponse = paths[typeof routeName$6x]['get']['responses'][200]['content']['application/json'];
118525
- type GetCampaignByIdProps = paths[typeof routeName$6x]['get']['parameters'];
118662
+ declare const routeName$6y = "/v1/api/campaigns/{campaign_id}";
118663
+ type GetCampaignByIdPathParams = paths[typeof routeName$6y]['get']['parameters']['path'];
118664
+ type GetCampaignByIdQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
118665
+ type GetCampaignByIdResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
118666
+ type GetCampaignByIdProps = paths[typeof routeName$6y]['get']['parameters'];
118526
118667
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
118527
118668
 
118528
- declare const routeName$6w = "/v1/api/campaigns/{campaign_id}";
118529
- type UpdateCampaignBody = paths[typeof routeName$6w]['patch']['requestBody']['content']['application/json'];
118530
- type UpdateCampaignPathParams = paths[typeof routeName$6w]['patch']['parameters']['path'];
118531
- type UpdateCampaignQueryParams = paths[typeof routeName$6w]['patch']['parameters']['query'];
118532
- type UpdateCampaignResponse = paths[typeof routeName$6w]['patch']['responses'][200]['content']['application/json'];
118669
+ declare const routeName$6x = "/v1/api/campaigns/{campaign_id}";
118670
+ type UpdateCampaignBody = paths[typeof routeName$6x]['patch']['requestBody']['content']['application/json'];
118671
+ type UpdateCampaignPathParams = paths[typeof routeName$6x]['patch']['parameters']['path'];
118672
+ type UpdateCampaignQueryParams = paths[typeof routeName$6x]['patch']['parameters']['query'];
118673
+ type UpdateCampaignResponse = paths[typeof routeName$6x]['patch']['responses'][200]['content']['application/json'];
118533
118674
  interface UpdateCampaignProps {
118534
118675
  body: UpdateCampaignBody;
118535
118676
  params: {
@@ -118539,16 +118680,16 @@ interface UpdateCampaignProps {
118539
118680
  }
118540
118681
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
118541
118682
 
118542
- declare const routeName$6v = "/v1/api/campaigns";
118543
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6v]['get']['parameters']['query'];
118544
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6v]['get']['responses'][200]['content']['application/json'];
118545
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$6v]['get']['parameters'];
118683
+ declare const routeName$6w = "/v1/api/campaigns";
118684
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
118685
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
118686
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$6w]['get']['parameters'];
118546
118687
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
118547
118688
 
118548
- declare const routeName$6u = "/v1/api/campaigns";
118549
- type CreateCampaignBody = paths[typeof routeName$6u]['post']['requestBody']['content']['application/json'];
118550
- type CreateCampaignQueryParams = paths[typeof routeName$6u]['post']['parameters']['query'];
118551
- type CreateCampaignResponse = paths[typeof routeName$6u]['post']['responses'][201]['content']['application/json'];
118689
+ declare const routeName$6v = "/v1/api/campaigns";
118690
+ type CreateCampaignBody = paths[typeof routeName$6v]['post']['requestBody']['content']['application/json'];
118691
+ type CreateCampaignQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
118692
+ type CreateCampaignResponse = paths[typeof routeName$6v]['post']['responses'][201]['content']['application/json'];
118552
118693
  interface CreateCampaignProps {
118553
118694
  body: CreateCampaignBody;
118554
118695
  params: {
@@ -118557,17 +118698,17 @@ interface CreateCampaignProps {
118557
118698
  }
118558
118699
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
118559
118700
 
118560
- declare const routeName$6t = "/v1/api/campaigns/{campaign_id}/metrics";
118561
- type GetMetricsByCampaignPathParams = paths[typeof routeName$6t]['get']['parameters']['path'];
118562
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
118563
- type GetMetricsByCampaignResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
118564
- type GetMetricsByCampaignProps = paths[typeof routeName$6t]['get']['parameters'];
118701
+ declare const routeName$6u = "/v1/api/campaigns/{campaign_id}/metrics";
118702
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$6u]['get']['parameters']['path'];
118703
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
118704
+ type GetMetricsByCampaignResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
118705
+ type GetMetricsByCampaignProps = paths[typeof routeName$6u]['get']['parameters'];
118565
118706
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
118566
118707
 
118567
- declare const routeName$6s = "/v1/api/campaigns/{campaign_id}/targets";
118568
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6s]['patch']['parameters']['path'];
118569
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6s]['patch']['parameters']['query'];
118570
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$6s]['patch']['responses'][200]['content']['application/json'];
118708
+ declare const routeName$6t = "/v1/api/campaigns/{campaign_id}/targets";
118709
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6t]['patch']['parameters']['path'];
118710
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6t]['patch']['parameters']['query'];
118711
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$6t]['patch']['responses'][200]['content']['application/json'];
118571
118712
  interface UpdateTargetsByCampaignProps {
118572
118713
  params: {
118573
118714
  query: UpdateTargetsByCampaignQueryParams;
@@ -118576,15 +118717,15 @@ interface UpdateTargetsByCampaignProps {
118576
118717
  }
118577
118718
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
118578
118719
 
118579
- declare const routeName$6r = "/v1/api/campaign-templates";
118580
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6r]['get']['parameters']['query'];
118581
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$6r]['get']['responses'][200]['content']['application/json'];
118582
- type GetAllCampaignTemplatesProps = paths[typeof routeName$6r]['get']['parameters'];
118720
+ declare const routeName$6s = "/v1/api/campaign-templates";
118721
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6s]['get']['parameters']['query'];
118722
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$6s]['get']['responses'][200]['content']['application/json'];
118723
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$6s]['get']['parameters'];
118583
118724
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
118584
118725
 
118585
- declare const routeName$6q = "/v1/api/campaigns/example-mails";
118586
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
118587
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
118726
+ declare const routeName$6r = "/v1/api/campaigns/example-mails";
118727
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6r]['post']['parameters']['query'];
118728
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6r]['post']['responses'][201]['content']['application/json'];
118588
118729
  interface SendExampleCampaignTargetMailProps {
118589
118730
  params: {
118590
118731
  query: SendExampleCampaignTargetMailQueryParams;
@@ -118592,16 +118733,16 @@ interface SendExampleCampaignTargetMailProps {
118592
118733
  }
118593
118734
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
118594
118735
 
118595
- declare const routeName$6p = "/v1/api/distributions/campaign-settings";
118596
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6p]['get']['parameters']['query'];
118597
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6p]['get']['responses'][200]['content']['application/json'];
118598
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6p]['get']['parameters'];
118736
+ declare const routeName$6q = "/v1/api/distributions/campaign-settings";
118737
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6q]['get']['parameters']['query'];
118738
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6q]['get']['responses'][200]['content']['application/json'];
118739
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6q]['get']['parameters'];
118599
118740
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
118600
118741
 
118601
- declare const routeName$6o = "/v1/api/campaigns/dns-prefixes/generate";
118602
- type GenerateDnsPrefixBody = paths[typeof routeName$6o]['post']['requestBody']['content']['application/json'];
118603
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
118604
- type GenerateDnsPrefixResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
118742
+ declare const routeName$6p = "/v1/api/campaigns/dns-prefixes/generate";
118743
+ type GenerateDnsPrefixBody = paths[typeof routeName$6p]['post']['requestBody']['content']['application/json'];
118744
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
118745
+ type GenerateDnsPrefixResponse = paths[typeof routeName$6p]['post']['responses'][200]['content']['application/json'];
118605
118746
  interface GenerateDnsPrefixProps {
118606
118747
  body: GenerateDnsPrefixBody;
118607
118748
  params: {
@@ -118610,16 +118751,16 @@ interface GenerateDnsPrefixProps {
118610
118751
  }
118611
118752
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
118612
118753
 
118613
- declare const routeName$6n = "/v1/api/mail-templates/campaign-target";
118614
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6n]['get']['parameters']['query'];
118615
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
118616
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6n]['get']['parameters'];
118754
+ declare const routeName$6o = "/v1/api/mail-templates/campaign-target";
118755
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6o]['get']['parameters']['query'];
118756
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
118757
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6o]['get']['parameters'];
118617
118758
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
118618
118759
 
118619
- declare const routeName$6m = "/v1/api/distributions/{distribution_id}/claims";
118620
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$6m]['post']['parameters']['path'];
118621
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
118622
- type CreateClaimAsCustomerResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
118760
+ declare const routeName$6n = "/v1/api/distributions/{distribution_id}/claims";
118761
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$6n]['post']['parameters']['path'];
118762
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
118763
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$6n]['post']['responses'][201]['content']['application/json'];
118623
118764
  interface CreateClaimAsCustomerProps {
118624
118765
  params: {
118625
118766
  query: CreateClaimAsCustomerQueryParams;
@@ -118628,15 +118769,15 @@ interface CreateClaimAsCustomerProps {
118628
118769
  }
118629
118770
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
118630
118771
 
118631
- declare const routeName$6l = "/v1/api/claims";
118632
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6l]['get']['parameters']['query'];
118633
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6l]['get']['responses'][200]['content']['application/json'];
118634
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$6l]['get']['parameters'];
118772
+ declare const routeName$6m = "/v1/api/claims";
118773
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6m]['get']['parameters']['query'];
118774
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6m]['get']['responses'][200]['content']['application/json'];
118775
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$6m]['get']['parameters'];
118635
118776
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
118636
118777
 
118637
- declare const routeName$6k = "/v1/api/claims";
118638
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6k]['post']['parameters']['query'];
118639
- type CreateClaimAsBrokerResponse = paths[typeof routeName$6k]['post']['responses'][201]['content']['application/json'];
118778
+ declare const routeName$6l = "/v1/api/claims";
118779
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6l]['post']['parameters']['query'];
118780
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$6l]['post']['responses'][201]['content']['application/json'];
118640
118781
  interface CreateClaimAsBrokerProps {
118641
118782
  params: {
118642
118783
  query: CreateClaimAsBrokerQueryParams;
@@ -118644,17 +118785,17 @@ interface CreateClaimAsBrokerProps {
118644
118785
  }
118645
118786
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
118646
118787
 
118647
- declare const routeName$6j = "/v1/api/claims/{claim_id}";
118648
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
118649
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6j]['get']['parameters']['query'];
118650
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
118651
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$6j]['get']['parameters'];
118788
+ declare const routeName$6k = "/v1/api/claims/{claim_id}";
118789
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6k]['get']['parameters']['path'];
118790
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6k]['get']['parameters']['query'];
118791
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6k]['get']['responses'][200]['content']['application/json'];
118792
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$6k]['get']['parameters'];
118652
118793
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
118653
118794
 
118654
- declare const routeName$6i = "/v1/api/claims/{claim_id}";
118655
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6i]['delete']['parameters']['path'];
118656
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6i]['delete']['parameters']['query'];
118657
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6i]['delete']['responses'][200]['content']['application/json'];
118795
+ declare const routeName$6j = "/v1/api/claims/{claim_id}";
118796
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6j]['delete']['parameters']['path'];
118797
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6j]['delete']['parameters']['query'];
118798
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6j]['delete']['responses'][200]['content']['application/json'];
118658
118799
  interface DeleteClaimAsBrokerByIdProps {
118659
118800
  params: {
118660
118801
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -118663,10 +118804,10 @@ interface DeleteClaimAsBrokerByIdProps {
118663
118804
  }
118664
118805
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
118665
118806
 
118666
- declare const routeName$6h = "/v1/api/claims/{claim_id}";
118667
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6h]['patch']['parameters']['path'];
118668
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6h]['patch']['parameters']['query'];
118669
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6h]['patch']['responses'][200]['content']['application/json'];
118807
+ declare const routeName$6i = "/v1/api/claims/{claim_id}";
118808
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6i]['patch']['parameters']['path'];
118809
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6i]['patch']['parameters']['query'];
118810
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6i]['patch']['responses'][200]['content']['application/json'];
118670
118811
  interface UpdateClaimAsBrokerByIdProps {
118671
118812
  params: {
118672
118813
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -118675,10 +118816,10 @@ interface UpdateClaimAsBrokerByIdProps {
118675
118816
  }
118676
118817
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
118677
118818
 
118678
- declare const routeName$6g = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
118679
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6g]['put']['parameters']['path'];
118680
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6g]['put']['parameters']['query'];
118681
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$6g]['put']['responses'][200]['content']['application/json'];
118819
+ declare const routeName$6h = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
118820
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6h]['put']['parameters']['path'];
118821
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6h]['put']['parameters']['query'];
118822
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$6h]['put']['responses'][200]['content']['application/json'];
118682
118823
  interface UpdateDeclarationRemarkProps {
118683
118824
  params: {
118684
118825
  query: UpdateDeclarationRemarkQueryParams;
@@ -118687,10 +118828,10 @@ interface UpdateDeclarationRemarkProps {
118687
118828
  }
118688
118829
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
118689
118830
 
118690
- declare const routeName$6f = "/v1/api/claims/{claim_id}/lock";
118691
- type CreateLockForClaimPathParams = paths[typeof routeName$6f]['post']['parameters']['path'];
118692
- type CreateLockForClaimQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
118693
- type CreateLockForClaimResponse = paths[typeof routeName$6f]['post']['responses'][201]['content']['application/json'];
118831
+ declare const routeName$6g = "/v1/api/claims/{claim_id}/lock";
118832
+ type CreateLockForClaimPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
118833
+ type CreateLockForClaimQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
118834
+ type CreateLockForClaimResponse = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
118694
118835
  interface CreateLockForClaimProps {
118695
118836
  params: {
118696
118837
  query: CreateLockForClaimQueryParams;
@@ -118699,10 +118840,10 @@ interface CreateLockForClaimProps {
118699
118840
  }
118700
118841
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
118701
118842
 
118702
- declare const routeName$6e = "/v1/api/claims/{claim_id}/unlock";
118703
- type UnlockClaimPathParams = paths[typeof routeName$6e]['post']['parameters']['path'];
118704
- type UnlockClaimQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
118705
- type UnlockClaimResponse = paths[typeof routeName$6e]['post']['responses'][200]['content']['application/json'];
118843
+ declare const routeName$6f = "/v1/api/claims/{claim_id}/unlock";
118844
+ type UnlockClaimPathParams = paths[typeof routeName$6f]['post']['parameters']['path'];
118845
+ type UnlockClaimQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
118846
+ type UnlockClaimResponse = paths[typeof routeName$6f]['post']['responses'][200]['content']['application/json'];
118706
118847
  interface UnlockClaimProps {
118707
118848
  params: {
118708
118849
  query: UnlockClaimQueryParams;
@@ -118711,10 +118852,10 @@ interface UnlockClaimProps {
118711
118852
  }
118712
118853
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
118713
118854
 
118714
- declare const routeName$6d = "/v1/api/claims/{claim_id}/request_update";
118715
- type ClaimRequestUpdatePathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
118716
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
118717
- type ClaimRequestUpdateResponse = paths[typeof routeName$6d]['post']['responses'][200]['content']['application/json'];
118855
+ declare const routeName$6e = "/v1/api/claims/{claim_id}/request_update";
118856
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$6e]['post']['parameters']['path'];
118857
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
118858
+ type ClaimRequestUpdateResponse = paths[typeof routeName$6e]['post']['responses'][200]['content']['application/json'];
118718
118859
  interface ClaimRequestUpdateProps {
118719
118860
  params: {
118720
118861
  query: ClaimRequestUpdateQueryParams;
@@ -118723,10 +118864,10 @@ interface ClaimRequestUpdateProps {
118723
118864
  }
118724
118865
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
118725
118866
 
118726
- declare const routeName$6c = "/v1/api/claims/{claim_id}/validate";
118727
- type ValidateClaimPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
118728
- type ValidateClaimQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
118729
- type ValidateClaimResponse = paths[typeof routeName$6c]['post']['responses'][200]['content']['application/json'];
118867
+ declare const routeName$6d = "/v1/api/claims/{claim_id}/validate";
118868
+ type ValidateClaimPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
118869
+ type ValidateClaimQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
118870
+ type ValidateClaimResponse = paths[typeof routeName$6d]['post']['responses'][200]['content']['application/json'];
118730
118871
  interface ValidateClaimProps {
118731
118872
  params: {
118732
118873
  query: ValidateClaimQueryParams;
@@ -118735,10 +118876,10 @@ interface ValidateClaimProps {
118735
118876
  }
118736
118877
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
118737
118878
 
118738
- declare const routeName$6b = "/v1/api/claims/{claim_id}/documents";
118739
- type CreateDocumentForClaimPathParams = paths[typeof routeName$6b]['post']['parameters']['path'];
118740
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$6b]['post']['parameters']['query'];
118741
- type CreateDocumentForClaimResponse = paths[typeof routeName$6b]['post']['responses'][201]['content']['application/json'];
118879
+ declare const routeName$6c = "/v1/api/claims/{claim_id}/documents";
118880
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$6c]['post']['parameters']['path'];
118881
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$6c]['post']['parameters']['query'];
118882
+ type CreateDocumentForClaimResponse = paths[typeof routeName$6c]['post']['responses'][201]['content']['application/json'];
118742
118883
  interface CreateDocumentForClaimProps {
118743
118884
  params: {
118744
118885
  query: CreateDocumentForClaimQueryParams;
@@ -118747,17 +118888,17 @@ interface CreateDocumentForClaimProps {
118747
118888
  }
118748
118889
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
118749
118890
 
118750
- declare const routeName$6a = "/v1/api/claims/{claim_id}/documents/{document_id}";
118751
- type DownloadDocumentByIdPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
118752
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$6a]['get']['parameters']['query'];
118753
- type DownloadDocumentByIdResponse = paths[typeof routeName$6a]['get']['responses'][307]['content']['application/json'];
118754
- type DownloadDocumentByIdProps = paths[typeof routeName$6a]['get']['parameters'];
118891
+ declare const routeName$6b = "/v1/api/claims/{claim_id}/documents/{document_id}";
118892
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$6b]['get']['parameters']['path'];
118893
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$6b]['get']['parameters']['query'];
118894
+ type DownloadDocumentByIdResponse = paths[typeof routeName$6b]['get']['responses'][307]['content']['application/json'];
118895
+ type DownloadDocumentByIdProps = paths[typeof routeName$6b]['get']['parameters'];
118755
118896
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
118756
118897
 
118757
- declare const routeName$69 = "/v1/api/claims/{claim_id}/documents/{document_id}";
118758
- type DeleteDocumentByIdPathParams = paths[typeof routeName$69]['delete']['parameters']['path'];
118759
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$69]['delete']['parameters']['query'];
118760
- type DeleteDocumentByIdResponse = paths[typeof routeName$69]['delete']['responses'][200]['content']['application/json'];
118898
+ declare const routeName$6a = "/v1/api/claims/{claim_id}/documents/{document_id}";
118899
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$6a]['delete']['parameters']['path'];
118900
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$6a]['delete']['parameters']['query'];
118901
+ type DeleteDocumentByIdResponse = paths[typeof routeName$6a]['delete']['responses'][200]['content']['application/json'];
118761
118902
  interface DeleteDocumentByIdProps {
118762
118903
  params: {
118763
118904
  query: DeleteDocumentByIdQueryParams;
@@ -118766,10 +118907,10 @@ interface DeleteDocumentByIdProps {
118766
118907
  }
118767
118908
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
118768
118909
 
118769
- declare const routeName$68 = "/v1/api/claims/{claim_id}/documents/{document_id}";
118770
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$68]['patch']['parameters']['path'];
118771
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$68]['patch']['parameters']['query'];
118772
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$68]['patch']['responses'][200]['content']['application/json'];
118910
+ declare const routeName$69 = "/v1/api/claims/{claim_id}/documents/{document_id}";
118911
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$69]['patch']['parameters']['path'];
118912
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$69]['patch']['parameters']['query'];
118913
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$69]['patch']['responses'][200]['content']['application/json'];
118773
118914
  interface UpdateDocumentMetadataByIdProps {
118774
118915
  params: {
118775
118916
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -118778,17 +118919,17 @@ interface UpdateDocumentMetadataByIdProps {
118778
118919
  }
118779
118920
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
118780
118921
 
118781
- declare const routeName$67 = "/v1/api/claims/customer/token/{token}";
118782
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$67]['get']['parameters']['path'];
118783
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['get']['parameters']['query'];
118784
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$67]['get']['responses'][200]['content']['application/json'];
118785
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$67]['get']['parameters'];
118922
+ declare const routeName$68 = "/v1/api/claims/customer/token/{token}";
118923
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$68]['get']['parameters']['path'];
118924
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['get']['parameters']['query'];
118925
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
118926
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$68]['get']['parameters'];
118786
118927
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
118787
118928
 
118788
- declare const routeName$66 = "/v1/api/claims/customer/token/{token}";
118789
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$66]['patch']['parameters']['path'];
118790
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$66]['patch']['parameters']['query'];
118791
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$66]['patch']['responses'][200]['content']['application/json'];
118929
+ declare const routeName$67 = "/v1/api/claims/customer/token/{token}";
118930
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
118931
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['patch']['parameters']['query'];
118932
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
118792
118933
  interface UpdateClaimAsCustomerWithTokenProps {
118793
118934
  params: {
118794
118935
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -118797,10 +118938,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
118797
118938
  }
118798
118939
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
118799
118940
 
118800
- declare const routeName$65 = "/v1/api/claims/customer/token/{token}/entities";
118801
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
118802
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
118803
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
118941
+ declare const routeName$66 = "/v1/api/claims/customer/token/{token}/entities";
118942
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
118943
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
118944
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$66]['post']['responses'][201]['content']['application/json'];
118804
118945
  interface CreateEntityAsCustomerWithTokenProps {
118805
118946
  params: {
118806
118947
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -118809,10 +118950,10 @@ interface CreateEntityAsCustomerWithTokenProps {
118809
118950
  }
118810
118951
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
118811
118952
 
118812
- declare const routeName$64 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
118813
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$64]['delete']['parameters']['path'];
118814
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$64]['delete']['parameters']['query'];
118815
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$64]['delete']['responses'][200]['content']['application/json'];
118953
+ declare const routeName$65 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
118954
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$65]['delete']['parameters']['path'];
118955
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$65]['delete']['parameters']['query'];
118956
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$65]['delete']['responses'][200]['content']['application/json'];
118816
118957
  interface DeleteEntityByIdAsCustomerWithTokenProps {
118817
118958
  params: {
118818
118959
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -118821,10 +118962,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
118821
118962
  }
118822
118963
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
118823
118964
 
118824
- declare const routeName$63 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
118825
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$63]['patch']['parameters']['path'];
118826
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$63]['patch']['parameters']['query'];
118827
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$63]['patch']['responses'][200]['content']['application/json'];
118965
+ declare const routeName$64 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
118966
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$64]['patch']['parameters']['path'];
118967
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$64]['patch']['parameters']['query'];
118968
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$64]['patch']['responses'][200]['content']['application/json'];
118828
118969
  interface UpdateEntityAsCustomerWithTokenProps {
118829
118970
  params: {
118830
118971
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -118833,10 +118974,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
118833
118974
  }
118834
118975
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
118835
118976
 
118836
- declare const routeName$62 = "/v1/api/claims/upload/{claim_doc_category}";
118837
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$62]['post']['parameters']['path'];
118838
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$62]['post']['parameters']['query'];
118839
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$62]['post']['responses'][200]['content']['application/json'];
118977
+ declare const routeName$63 = "/v1/api/claims/upload/{claim_doc_category}";
118978
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$63]['post']['parameters']['path'];
118979
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
118980
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$63]['post']['responses'][200]['content']['application/json'];
118840
118981
  interface UploadClaimDocumentAsBrokerProps {
118841
118982
  params: {
118842
118983
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -118845,10 +118986,10 @@ interface UploadClaimDocumentAsBrokerProps {
118845
118986
  }
118846
118987
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
118847
118988
 
118848
- declare const routeName$61 = "/v1/api/claims/customer/upload/{claim_doc_category}";
118849
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$61]['post']['parameters']['path'];
118850
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
118851
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$61]['post']['responses'][200]['content']['application/json'];
118989
+ declare const routeName$62 = "/v1/api/claims/customer/upload/{claim_doc_category}";
118990
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$62]['post']['parameters']['path'];
118991
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$62]['post']['parameters']['query'];
118992
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$62]['post']['responses'][200]['content']['application/json'];
118852
118993
  interface CreateUploadLinkAsCustomerProps {
118853
118994
  params: {
118854
118995
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -118857,9 +118998,9 @@ interface CreateUploadLinkAsCustomerProps {
118857
118998
  }
118858
118999
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
118859
119000
 
118860
- declare const routeName$60 = "/v1/api/claims/generate/token";
118861
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
118862
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$60]['post']['responses'][201]['content']['application/json'];
119001
+ declare const routeName$61 = "/v1/api/claims/generate/token";
119002
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
119003
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$61]['post']['responses'][201]['content']['application/json'];
118863
119004
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
118864
119005
  params: {
118865
119006
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -118867,17 +119008,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
118867
119008
  }
118868
119009
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
118869
119010
 
118870
- declare const routeName$5$ = "/v1/api/claims/customer/token/{token}/events";
118871
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5$]['get']['parameters']['path'];
118872
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
118873
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
118874
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$5$]['get']['parameters'];
119011
+ declare const routeName$60 = "/v1/api/claims/customer/token/{token}/events";
119012
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$60]['get']['parameters']['path'];
119013
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
119014
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
119015
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$60]['get']['parameters'];
118875
119016
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
118876
119017
 
118877
- declare const routeName$5_ = "/v1/api/claims/customer/token/{token}/documents";
118878
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5_]['post']['parameters']['path'];
118879
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5_]['post']['parameters']['query'];
118880
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5_]['post']['responses'][200]['content']['application/json'];
119018
+ declare const routeName$5$ = "/v1/api/claims/customer/token/{token}/documents";
119019
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5$]['post']['parameters']['path'];
119020
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5$]['post']['parameters']['query'];
119021
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5$]['post']['responses'][200]['content']['application/json'];
118881
119022
  interface CreateDocumentForClaimAsCustomerProps {
118882
119023
  params: {
118883
119024
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -118886,10 +119027,10 @@ interface CreateDocumentForClaimAsCustomerProps {
118886
119027
  }
118887
119028
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
118888
119029
 
118889
- declare const routeName$5Z = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
118890
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5Z]['delete']['parameters']['path'];
118891
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5Z]['delete']['parameters']['query'];
118892
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5Z]['delete']['responses'][200]['content']['application/json'];
119030
+ declare const routeName$5_ = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119031
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5_]['delete']['parameters']['path'];
119032
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5_]['delete']['parameters']['query'];
119033
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5_]['delete']['responses'][200]['content']['application/json'];
118893
119034
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
118894
119035
  params: {
118895
119036
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -118898,10 +119039,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
118898
119039
  }
118899
119040
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
118900
119041
 
118901
- declare const routeName$5Y = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
118902
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5Y]['patch']['parameters']['path'];
118903
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5Y]['patch']['parameters']['query'];
118904
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5Y]['patch']['responses'][200]['content']['application/json'];
119042
+ declare const routeName$5Z = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119043
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5Z]['patch']['parameters']['path'];
119044
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5Z]['patch']['parameters']['query'];
119045
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5Z]['patch']['responses'][200]['content']['application/json'];
118905
119046
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
118906
119047
  params: {
118907
119048
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -118910,10 +119051,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
118910
119051
  }
118911
119052
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
118912
119053
 
118913
- declare const routeName$5X = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
118914
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
118915
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
118916
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5X]['post']['responses'][200]['content']['application/json'];
119054
+ declare const routeName$5Y = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
119055
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
119056
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
119057
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5Y]['post']['responses'][200]['content']['application/json'];
118917
119058
  interface CreateNoteOnEventAsCustomerProps {
118918
119059
  params: {
118919
119060
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -118922,10 +119063,10 @@ interface CreateNoteOnEventAsCustomerProps {
118922
119063
  }
118923
119064
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
118924
119065
 
118925
- declare const routeName$5W = "/v1/api/claims/{claim_id}/entities";
118926
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$5W]['post']['parameters']['path'];
118927
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5W]['post']['parameters']['query'];
118928
- type CreateEntityAsBrokerResponse = paths[typeof routeName$5W]['post']['responses'][201]['content']['application/json'];
119066
+ declare const routeName$5X = "/v1/api/claims/{claim_id}/entities";
119067
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
119068
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
119069
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
118929
119070
  interface CreateEntityAsBrokerProps {
118930
119071
  params: {
118931
119072
  query: CreateEntityAsBrokerQueryParams;
@@ -118934,10 +119075,10 @@ interface CreateEntityAsBrokerProps {
118934
119075
  }
118935
119076
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
118936
119077
 
118937
- declare const routeName$5V = "/v1/api/claims/{claim_id}/entities/{entity_id}";
118938
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5V]['delete']['parameters']['path'];
118939
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5V]['delete']['parameters']['query'];
118940
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5V]['delete']['responses'][200]['content']['application/json'];
119078
+ declare const routeName$5W = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119079
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5W]['delete']['parameters']['path'];
119080
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5W]['delete']['parameters']['query'];
119081
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5W]['delete']['responses'][200]['content']['application/json'];
118941
119082
  interface DeleteEntityAsBrokerByIdProps {
118942
119083
  params: {
118943
119084
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -118946,10 +119087,10 @@ interface DeleteEntityAsBrokerByIdProps {
118946
119087
  }
118947
119088
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
118948
119089
 
118949
- declare const routeName$5U = "/v1/api/claims/{claim_id}/entities/{entity_id}";
118950
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5U]['patch']['parameters']['path'];
118951
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5U]['patch']['parameters']['query'];
118952
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5U]['patch']['responses'][200]['content']['application/json'];
119090
+ declare const routeName$5V = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119091
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5V]['patch']['parameters']['path'];
119092
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5V]['patch']['parameters']['query'];
119093
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5V]['patch']['responses'][200]['content']['application/json'];
118953
119094
  interface UpdateEntityAsBrokerByIdProps {
118954
119095
  params: {
118955
119096
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -118958,17 +119099,17 @@ interface UpdateEntityAsBrokerByIdProps {
118958
119099
  }
118959
119100
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
118960
119101
 
118961
- declare const routeName$5T = "/v1/api/claims/{claim_id}/events";
118962
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
118963
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5T]['get']['parameters']['query'];
118964
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
118965
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5T]['get']['parameters'];
119102
+ declare const routeName$5U = "/v1/api/claims/{claim_id}/events";
119103
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5U]['get']['parameters']['path'];
119104
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5U]['get']['parameters']['query'];
119105
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
119106
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5U]['get']['parameters'];
118966
119107
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
118967
119108
 
118968
- declare const routeName$5S = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
118969
- type SendClaimToKeypointPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
118970
- type SendClaimToKeypointQueryParams = paths[typeof routeName$5S]['post']['parameters']['query'];
118971
- type SendClaimToKeypointResponse = paths[typeof routeName$5S]['post']['responses'][201]['content']['application/json'];
119109
+ declare const routeName$5T = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
119110
+ type SendClaimToKeypointPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
119111
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$5T]['post']['parameters']['query'];
119112
+ type SendClaimToKeypointResponse = paths[typeof routeName$5T]['post']['responses'][201]['content']['application/json'];
118972
119113
  interface SendClaimToKeypointProps {
118973
119114
  params: {
118974
119115
  query: SendClaimToKeypointQueryParams;
@@ -118977,10 +119118,10 @@ interface SendClaimToKeypointProps {
118977
119118
  }
118978
119119
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
118979
119120
 
118980
- declare const routeName$5R = "/v1/api/claims/{claim_id}/customer/followup-page/email";
118981
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
118982
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
118983
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5R]['post']['responses'][200]['content']['application/json'];
119121
+ declare const routeName$5S = "/v1/api/claims/{claim_id}/customer/followup-page/email";
119122
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
119123
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5S]['post']['parameters']['query'];
119124
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5S]['post']['responses'][200]['content']['application/json'];
118984
119125
  interface SendMailFollowupPageToCustomerProps {
118985
119126
  params: {
118986
119127
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -118989,21 +119130,21 @@ interface SendMailFollowupPageToCustomerProps {
118989
119130
  }
118990
119131
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
118991
119132
 
118992
- declare const routeName$5Q = "/v1/api/claims/categories/CAR";
118993
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
119133
+ declare const routeName$5R = "/v1/api/claims/categories/CAR";
119134
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5R]['get']['responses'][200]['content']['application/json'];
118994
119135
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
118995
119136
 
118996
- declare const routeName$5P = "/v1/api/claims/info/{claim_type}/{claim_category}";
118997
- type GetInfoForClaimPathParams = paths[typeof routeName$5P]['get']['parameters']['path'];
118998
- type GetInfoForClaimQueryParams = paths[typeof routeName$5P]['get']['parameters']['query'];
118999
- type GetInfoForClaimResponse = paths[typeof routeName$5P]['get']['responses'][200]['content']['application/json'];
119000
- type GetInfoForClaimProps = paths[typeof routeName$5P]['get']['parameters'];
119137
+ declare const routeName$5Q = "/v1/api/claims/info/{claim_type}/{claim_category}";
119138
+ type GetInfoForClaimPathParams = paths[typeof routeName$5Q]['get']['parameters']['path'];
119139
+ type GetInfoForClaimQueryParams = paths[typeof routeName$5Q]['get']['parameters']['query'];
119140
+ type GetInfoForClaimResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
119141
+ type GetInfoForClaimProps = paths[typeof routeName$5Q]['get']['parameters'];
119001
119142
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
119002
119143
 
119003
- declare const routeName$5O = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
119004
- type CreateNoteOnEventPathParams = paths[typeof routeName$5O]['post']['parameters']['path'];
119005
- type CreateNoteOnEventQueryParams = paths[typeof routeName$5O]['post']['parameters']['query'];
119006
- type CreateNoteOnEventResponse = paths[typeof routeName$5O]['post']['responses'][201]['content']['application/json'];
119144
+ declare const routeName$5P = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
119145
+ type CreateNoteOnEventPathParams = paths[typeof routeName$5P]['post']['parameters']['path'];
119146
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$5P]['post']['parameters']['query'];
119147
+ type CreateNoteOnEventResponse = paths[typeof routeName$5P]['post']['responses'][201]['content']['application/json'];
119007
119148
  interface CreateNoteOnEventProps {
119008
119149
  params: {
119009
119150
  query: CreateNoteOnEventQueryParams;
@@ -119012,10 +119153,10 @@ interface CreateNoteOnEventProps {
119012
119153
  }
119013
119154
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
119014
119155
 
119015
- declare const routeName$5N = "/v1/api/claims/notes/{note_id}";
119016
- type DeleteNotePathParams = paths[typeof routeName$5N]['delete']['parameters']['path'];
119017
- type DeleteNoteQueryParams = paths[typeof routeName$5N]['delete']['parameters']['query'];
119018
- type DeleteNoteResponse = paths[typeof routeName$5N]['delete']['responses'][200]['content']['application/json'];
119156
+ declare const routeName$5O = "/v1/api/claims/notes/{note_id}";
119157
+ type DeleteNotePathParams = paths[typeof routeName$5O]['delete']['parameters']['path'];
119158
+ type DeleteNoteQueryParams = paths[typeof routeName$5O]['delete']['parameters']['query'];
119159
+ type DeleteNoteResponse = paths[typeof routeName$5O]['delete']['responses'][200]['content']['application/json'];
119019
119160
  interface DeleteNoteProps {
119020
119161
  params: {
119021
119162
  query: DeleteNoteQueryParams;
@@ -119024,10 +119165,10 @@ interface DeleteNoteProps {
119024
119165
  }
119025
119166
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
119026
119167
 
119027
- declare const routeName$5M = "/v1/api/claims/notes/{note_id}";
119028
- type UpdateNotePathParams = paths[typeof routeName$5M]['patch']['parameters']['path'];
119029
- type UpdateNoteQueryParams = paths[typeof routeName$5M]['patch']['parameters']['query'];
119030
- type UpdateNoteResponse = paths[typeof routeName$5M]['patch']['responses'][200]['content']['application/json'];
119168
+ declare const routeName$5N = "/v1/api/claims/notes/{note_id}";
119169
+ type UpdateNotePathParams = paths[typeof routeName$5N]['patch']['parameters']['path'];
119170
+ type UpdateNoteQueryParams = paths[typeof routeName$5N]['patch']['parameters']['query'];
119171
+ type UpdateNoteResponse = paths[typeof routeName$5N]['patch']['responses'][200]['content']['application/json'];
119031
119172
  interface UpdateNoteProps {
119032
119173
  params: {
119033
119174
  query: UpdateNoteQueryParams;
@@ -119036,17 +119177,17 @@ interface UpdateNoteProps {
119036
119177
  }
119037
119178
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
119038
119179
 
119039
- declare const routeName$5L = "/v1/api/claims/{claim_id}/report";
119040
- type ClaimReportByIdPathParams = paths[typeof routeName$5L]['get']['parameters']['path'];
119041
- type ClaimReportByIdQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
119042
- type ClaimReportByIdResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
119043
- type ClaimReportByIdProps = paths[typeof routeName$5L]['get']['parameters'];
119180
+ declare const routeName$5M = "/v1/api/claims/{claim_id}/report";
119181
+ type ClaimReportByIdPathParams = paths[typeof routeName$5M]['get']['parameters']['path'];
119182
+ type ClaimReportByIdQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
119183
+ type ClaimReportByIdResponse = paths[typeof routeName$5M]['get']['responses'][200]['content']['application/json'];
119184
+ type ClaimReportByIdProps = paths[typeof routeName$5M]['get']['parameters'];
119044
119185
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
119045
119186
 
119046
- declare const routeName$5K = "/v1/api/claims/{claim_id}/report/email";
119047
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$5K]['post']['parameters']['path'];
119048
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5K]['post']['parameters']['query'];
119049
- type SendMailClaimReportByIdResponse = paths[typeof routeName$5K]['post']['responses'][200]['content']['application/json'];
119187
+ declare const routeName$5L = "/v1/api/claims/{claim_id}/report/email";
119188
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$5L]['post']['parameters']['path'];
119189
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5L]['post']['parameters']['query'];
119190
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$5L]['post']['responses'][200]['content']['application/json'];
119050
119191
  interface SendMailClaimReportByIdProps {
119051
119192
  params: {
119052
119193
  query: SendMailClaimReportByIdQueryParams;
@@ -119055,16 +119196,16 @@ interface SendMailClaimReportByIdProps {
119055
119196
  }
119056
119197
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
119057
119198
 
119058
- declare const routeName$5J = "/v1/api/brokers/{broker_id}/connections";
119059
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5J]['get']['parameters']['path'];
119060
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
119061
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5J]['get']['parameters'];
119199
+ declare const routeName$5K = "/v1/api/brokers/{broker_id}/connections";
119200
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5K]['get']['parameters']['path'];
119201
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
119202
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5K]['get']['parameters'];
119062
119203
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
119063
119204
 
119064
- declare const routeName$5I = "/v1/api/brokers/{broker_id}/connections/{key}";
119065
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5I]['post']['requestBody']['content']['application/json'];
119066
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5I]['post']['parameters']['path'];
119067
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5I]['post']['responses'][201]['content']['application/json'];
119205
+ declare const routeName$5J = "/v1/api/brokers/{broker_id}/connections/{key}";
119206
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5J]['post']['requestBody']['content']['application/json'];
119207
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5J]['post']['parameters']['path'];
119208
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5J]['post']['responses'][201]['content']['application/json'];
119068
119209
  interface CreateBrokerConnectionsByIdProps {
119069
119210
  body: CreateBrokerConnectionsByIdBody;
119070
119211
  params: {
@@ -119073,9 +119214,9 @@ interface CreateBrokerConnectionsByIdProps {
119073
119214
  }
119074
119215
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
119075
119216
 
119076
- declare const routeName$5H = "/v1/api/brokers/{broker_id}/connections/{key}";
119077
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5H]['delete']['parameters']['path'];
119078
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5H]['delete']['responses'][200]['content']['application/json'];
119217
+ declare const routeName$5I = "/v1/api/brokers/{broker_id}/connections/{key}";
119218
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5I]['delete']['parameters']['path'];
119219
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5I]['delete']['responses'][200]['content']['application/json'];
119079
119220
  interface DeleteBrokerConnectionByKeyProps {
119080
119221
  params: {
119081
119222
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -119083,10 +119224,10 @@ interface DeleteBrokerConnectionByKeyProps {
119083
119224
  }
119084
119225
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
119085
119226
 
119086
- declare const routeName$5G = "/v1/api/brokers/{broker_id}/connections/{key}";
119087
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5G]['patch']['requestBody']['content']['application/json'];
119088
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5G]['patch']['parameters']['path'];
119089
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5G]['patch']['responses'][200]['content']['application/json'];
119227
+ declare const routeName$5H = "/v1/api/brokers/{broker_id}/connections/{key}";
119228
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5H]['patch']['requestBody']['content']['application/json'];
119229
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5H]['patch']['parameters']['path'];
119230
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5H]['patch']['responses'][200]['content']['application/json'];
119090
119231
  interface UpdateBrokerConnectionByKeyProps {
119091
119232
  body: UpdateBrokerConnectionByKeyBody;
119092
119233
  params: {
@@ -119095,10 +119236,10 @@ interface UpdateBrokerConnectionByKeyProps {
119095
119236
  }
119096
119237
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
119097
119238
 
119098
- declare const routeName$5F = "/v1/api/distributions/{distribution_id}/connections/{key}";
119099
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$5F]['post']['requestBody']['content']['application/json'];
119100
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5F]['post']['parameters']['path'];
119101
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5F]['post']['responses'][201]['content']['application/json'];
119239
+ declare const routeName$5G = "/v1/api/distributions/{distribution_id}/connections/{key}";
119240
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$5G]['post']['requestBody']['content']['application/json'];
119241
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5G]['post']['parameters']['path'];
119242
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5G]['post']['responses'][201]['content']['application/json'];
119102
119243
  interface CreateDistributionConnectionByIdProps {
119103
119244
  body: CreateDistributionConnectionByIdBody;
119104
119245
  params: {
@@ -119107,9 +119248,9 @@ interface CreateDistributionConnectionByIdProps {
119107
119248
  }
119108
119249
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
119109
119250
 
119110
- declare const routeName$5E = "/v1/api/distributions/{distribution_id}/connections/{key}";
119111
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5E]['delete']['parameters']['path'];
119112
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5E]['delete']['responses'][200]['content']['application/json'];
119251
+ declare const routeName$5F = "/v1/api/distributions/{distribution_id}/connections/{key}";
119252
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5F]['delete']['parameters']['path'];
119253
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5F]['delete']['responses'][200]['content']['application/json'];
119113
119254
  interface DeleteDistributionConnectionByKeyProps {
119114
119255
  params: {
119115
119256
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -119117,10 +119258,10 @@ interface DeleteDistributionConnectionByKeyProps {
119117
119258
  }
119118
119259
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
119119
119260
 
119120
- declare const routeName$5D = "/v1/api/distributions/{distribution_id}/connections/{key}";
119121
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5D]['patch']['requestBody']['content']['application/json'];
119122
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5D]['patch']['parameters']['path'];
119123
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5D]['patch']['responses'][200]['content']['application/json'];
119261
+ declare const routeName$5E = "/v1/api/distributions/{distribution_id}/connections/{key}";
119262
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5E]['patch']['requestBody']['content']['application/json'];
119263
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5E]['patch']['parameters']['path'];
119264
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5E]['patch']['responses'][200]['content']['application/json'];
119124
119265
  interface UpdateDistributionConnectionByKeyProps {
119125
119266
  body: UpdateDistributionConnectionByKeyBody;
119126
119267
  params: {
@@ -119129,41 +119270,41 @@ interface UpdateDistributionConnectionByKeyProps {
119129
119270
  }
119130
119271
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
119131
119272
 
119132
- declare const routeName$5C = "/v1/api/distributions/{distribution_id}/connections";
119133
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5C]['get']['parameters']['path'];
119134
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
119135
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
119136
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5C]['get']['parameters'];
119273
+ declare const routeName$5D = "/v1/api/distributions/{distribution_id}/connections";
119274
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5D]['get']['parameters']['path'];
119275
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5D]['get']['parameters']['query'];
119276
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5D]['get']['responses'][200]['content']['application/json'];
119277
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5D]['get']['parameters'];
119137
119278
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
119138
119279
 
119139
- declare const routeName$5B = "/v1/api/connections/anva/parties";
119140
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
119141
- type GetAnvaPartiesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
119142
- type GetAnvaPartiesProps = paths[typeof routeName$5B]['get']['parameters'];
119280
+ declare const routeName$5C = "/v1/api/connections/anva/parties";
119281
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
119282
+ type GetAnvaPartiesResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
119283
+ type GetAnvaPartiesProps = paths[typeof routeName$5C]['get']['parameters'];
119143
119284
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
119144
119285
 
119145
- declare const routeName$5A = "/v1/api/connections/anva/employees";
119146
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
119147
- type GetAnvaEmployeesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
119148
- type GetAnvaEmployeesProps = paths[typeof routeName$5A]['get']['parameters'];
119286
+ declare const routeName$5B = "/v1/api/connections/anva/employees";
119287
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
119288
+ type GetAnvaEmployeesResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
119289
+ type GetAnvaEmployeesProps = paths[typeof routeName$5B]['get']['parameters'];
119149
119290
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
119150
119291
 
119151
- declare const routeName$5z = "/v1/api/connections/anva/agents";
119152
- type GetAnvaAgentsQueryParams = paths[typeof routeName$5z]['get']['parameters']['query'];
119153
- type GetAnvaAgentsResponse = paths[typeof routeName$5z]['get']['responses'][200]['content']['application/json'];
119154
- type GetAnvaAgentsProps = paths[typeof routeName$5z]['get']['parameters'];
119292
+ declare const routeName$5A = "/v1/api/connections/anva/agents";
119293
+ type GetAnvaAgentsQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
119294
+ type GetAnvaAgentsResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
119295
+ type GetAnvaAgentsProps = paths[typeof routeName$5A]['get']['parameters'];
119155
119296
  declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
119156
119297
 
119157
- declare const routeName$5y = "/v1/api/connections/anva/products";
119158
- type GetAnvaProductsQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
119159
- type GetAnvaProductsResponse = paths[typeof routeName$5y]['get']['responses'][200]['content']['application/json'];
119160
- type GetAnvaProductsProps = paths[typeof routeName$5y]['get']['parameters'];
119298
+ declare const routeName$5z = "/v1/api/connections/anva/products";
119299
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5z]['get']['parameters']['query'];
119300
+ type GetAnvaProductsResponse = paths[typeof routeName$5z]['get']['responses'][200]['content']['application/json'];
119301
+ type GetAnvaProductsProps = paths[typeof routeName$5z]['get']['parameters'];
119161
119302
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
119162
119303
 
119163
- declare const routeName$5x = "/v1/api/connections/anva/parties/{anva_id}/imports";
119164
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5x]['post']['parameters']['path'];
119165
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5x]['post']['parameters']['query'];
119166
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5x]['post']['responses'][201]['content']['application/json'];
119304
+ declare const routeName$5y = "/v1/api/connections/anva/parties/{anva_id}/imports";
119305
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
119306
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
119307
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
119167
119308
  interface ImportAnvaPartyInWegroupProps {
119168
119309
  params: {
119169
119310
  query: ImportAnvaPartyInWegroupQueryParams;
@@ -119172,31 +119313,31 @@ interface ImportAnvaPartyInWegroupProps {
119172
119313
  }
119173
119314
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
119174
119315
 
119175
- declare const routeName$5w = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
119176
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5w]['get']['parameters']['path'];
119177
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
119178
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5w]['get']['responses'][307]['content']['application/json'];
119179
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5w]['get']['parameters'];
119316
+ declare const routeName$5x = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
119317
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5x]['get']['parameters']['path'];
119318
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5x]['get']['parameters']['query'];
119319
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5x]['get']['responses'][307]['content']['application/json'];
119320
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5x]['get']['parameters'];
119180
119321
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
119181
119322
 
119182
- declare const routeName$5v = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
119183
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5v]['get']['parameters']['path'];
119184
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
119185
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5v]['get']['responses'][307]['content']['application/json'];
119186
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5v]['get']['parameters'];
119323
+ declare const routeName$5w = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
119324
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5w]['get']['parameters']['path'];
119325
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
119326
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5w]['get']['responses'][307]['content']['application/json'];
119327
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5w]['get']['parameters'];
119187
119328
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
119188
119329
 
119189
- declare const routeName$5u = "/v1/api/connections/anva/documents/import";
119190
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
119191
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5u]['get']['responses'][307]['content']['application/json'];
119192
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5u]['get']['parameters'];
119330
+ declare const routeName$5v = "/v1/api/connections/anva/documents/import";
119331
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
119332
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5v]['get']['responses'][307]['content']['application/json'];
119333
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5v]['get']['parameters'];
119193
119334
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
119194
119335
 
119195
- declare const routeName$5t = "/v1/api/connections/anva/parties/{anva_party_id}/task";
119196
- type CreateAnvaTaskBody = paths[typeof routeName$5t]['post']['requestBody']['content']['application/json'];
119197
- type CreateAnvaTaskPathParams = paths[typeof routeName$5t]['post']['parameters']['path'];
119198
- type CreateAnvaTaskQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
119199
- type CreateAnvaTaskResponse = paths[typeof routeName$5t]['post']['responses'][201]['content']['application/json'];
119336
+ declare const routeName$5u = "/v1/api/connections/anva/parties/{anva_party_id}/task";
119337
+ type CreateAnvaTaskBody = paths[typeof routeName$5u]['post']['requestBody']['content']['application/json'];
119338
+ type CreateAnvaTaskPathParams = paths[typeof routeName$5u]['post']['parameters']['path'];
119339
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$5u]['post']['parameters']['query'];
119340
+ type CreateAnvaTaskResponse = paths[typeof routeName$5u]['post']['responses'][201]['content']['application/json'];
119200
119341
  interface CreateAnvaTaskProps {
119201
119342
  body: CreateAnvaTaskBody;
119202
119343
  params: {
@@ -119206,9 +119347,9 @@ interface CreateAnvaTaskProps {
119206
119347
  }
119207
119348
  declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
119208
119349
 
119209
- declare const routeName$5s = "/v1/api/connections/anva/validate";
119210
- type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
119211
- type ValidateAnvaConnectionResponse = paths[typeof routeName$5s]['post']['responses'][200]['content']['application/json'];
119350
+ declare const routeName$5t = "/v1/api/connections/anva/validate";
119351
+ type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
119352
+ type ValidateAnvaConnectionResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
119212
119353
  interface ValidateAnvaConnectionProps {
119213
119354
  params: {
119214
119355
  query: ValidateAnvaConnectionQueryParams;
@@ -119216,9 +119357,9 @@ interface ValidateAnvaConnectionProps {
119216
119357
  }
119217
119358
  declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
119218
119359
 
119219
- declare const routeName$5r = "/v1/api/connections/anva_dwh/validate";
119220
- type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5r]['post']['parameters']['query'];
119221
- type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5r]['post']['responses'][200]['content']['application/json'];
119360
+ declare const routeName$5s = "/v1/api/connections/anva_dwh/validate";
119361
+ type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
119362
+ type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5s]['post']['responses'][200]['content']['application/json'];
119222
119363
  interface ValidateAnvaDwhConnectionProps {
119223
119364
  params: {
119224
119365
  query: ValidateAnvaDwhConnectionQueryParams;
@@ -119226,22 +119367,22 @@ interface ValidateAnvaDwhConnectionProps {
119226
119367
  }
119227
119368
  declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
119228
119369
 
119229
- declare const routeName$5q = "/v1/api/connections/dias/parties";
119230
- type GetDiasPartiesQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
119231
- type GetDiasPartiesResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
119232
- type GetDiasPartiesProps = paths[typeof routeName$5q]['get']['parameters'];
119370
+ declare const routeName$5r = "/v1/api/connections/dias/parties";
119371
+ type GetDiasPartiesQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
119372
+ type GetDiasPartiesResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
119373
+ type GetDiasPartiesProps = paths[typeof routeName$5r]['get']['parameters'];
119233
119374
  declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
119234
119375
 
119235
- declare const routeName$5p = "/v1/api/connections/dias/employees";
119236
- type GetDiasEmployeesQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
119237
- type GetDiasEmployeesResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
119238
- type GetDiasEmployeesProps = paths[typeof routeName$5p]['get']['parameters'];
119376
+ declare const routeName$5q = "/v1/api/connections/dias/employees";
119377
+ type GetDiasEmployeesQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
119378
+ type GetDiasEmployeesResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
119379
+ type GetDiasEmployeesProps = paths[typeof routeName$5q]['get']['parameters'];
119239
119380
  declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
119240
119381
 
119241
- declare const routeName$5o = "/v1/api/connections/dias/parties/{dias_id}/imports";
119242
- type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5o]['post']['parameters']['path'];
119243
- type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5o]['post']['parameters']['query'];
119244
- type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5o]['post']['responses'][201]['content']['application/json'];
119382
+ declare const routeName$5p = "/v1/api/connections/dias/parties/{dias_id}/imports";
119383
+ type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5p]['post']['parameters']['path'];
119384
+ type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5p]['post']['parameters']['query'];
119385
+ type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5p]['post']['responses'][201]['content']['application/json'];
119245
119386
  interface ImportDiasPartyInWegroupProps {
119246
119387
  params: {
119247
119388
  query: ImportDiasPartyInWegroupQueryParams;
@@ -119250,33 +119391,33 @@ interface ImportDiasPartyInWegroupProps {
119250
119391
  }
119251
119392
  declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
119252
119393
 
119253
- declare const routeName$5n = "/v1/api/connections/dias/products";
119254
- type GetDiasProductsQueryParams = paths[typeof routeName$5n]['get']['parameters']['query'];
119255
- type GetDiasProductsResponse = paths[typeof routeName$5n]['get']['responses'][200]['content']['application/json'];
119256
- type GetDiasProductsProps = paths[typeof routeName$5n]['get']['parameters'];
119394
+ declare const routeName$5o = "/v1/api/connections/dias/products";
119395
+ type GetDiasProductsQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
119396
+ type GetDiasProductsResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
119397
+ type GetDiasProductsProps = paths[typeof routeName$5o]['get']['parameters'];
119257
119398
  declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
119258
119399
 
119259
- declare const routeName$5m = "/v1/api/connections/fasterforward/employees";
119260
- type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
119261
- type GetFasterforwardEmployeesResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
119262
- type GetFasterforwardEmployeesProps = paths[typeof routeName$5m]['get']['parameters'];
119400
+ declare const routeName$5n = "/v1/api/connections/fasterforward/employees";
119401
+ type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5n]['get']['parameters']['query'];
119402
+ type GetFasterforwardEmployeesResponse = paths[typeof routeName$5n]['get']['responses'][200]['content']['application/json'];
119403
+ type GetFasterforwardEmployeesProps = paths[typeof routeName$5n]['get']['parameters'];
119263
119404
  declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
119264
119405
 
119265
- declare const routeName$5l = "/v1/api/connections/assu/employees";
119266
- type GetAssuEmployeesQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
119267
- type GetAssuEmployeesResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
119268
- type GetAssuEmployeesProps = paths[typeof routeName$5l]['get']['parameters'];
119406
+ declare const routeName$5m = "/v1/api/connections/assu/employees";
119407
+ type GetAssuEmployeesQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
119408
+ type GetAssuEmployeesResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
119409
+ type GetAssuEmployeesProps = paths[typeof routeName$5m]['get']['parameters'];
119269
119410
  declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
119270
119411
 
119271
- declare const routeName$5k = "/v1/api/connections/fasterforward/teams";
119272
- type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
119273
- type GetFasterforwardTeamsResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
119274
- type GetFasterforwardTeamsProps = paths[typeof routeName$5k]['get']['parameters'];
119412
+ declare const routeName$5l = "/v1/api/connections/fasterforward/teams";
119413
+ type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
119414
+ type GetFasterforwardTeamsResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
119415
+ type GetFasterforwardTeamsProps = paths[typeof routeName$5l]['get']['parameters'];
119275
119416
  declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
119276
119417
 
119277
- declare const routeName$5j = "/v1/api/connections/fasterforward/validate";
119278
- type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5j]['post']['parameters']['query'];
119279
- type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5j]['post']['responses'][200]['content']['application/json'];
119418
+ declare const routeName$5k = "/v1/api/connections/fasterforward/validate";
119419
+ type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5k]['post']['parameters']['query'];
119420
+ type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5k]['post']['responses'][200]['content']['application/json'];
119280
119421
  interface ValidateFasterforwardConnectionProps {
119281
119422
  params: {
119282
119423
  query: ValidateFasterforwardConnectionQueryParams;
@@ -119284,15 +119425,15 @@ interface ValidateFasterforwardConnectionProps {
119284
119425
  }
119285
119426
  declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
119286
119427
 
119287
- declare const routeName$5i = "/v1/api/integrations/anva/parties";
119288
- type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$5i]['get']['parameters']['query'];
119289
- type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$5i]['get']['responses'][200]['content']['application/json'];
119290
- type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$5i]['get']['parameters'];
119428
+ declare const routeName$5j = "/v1/api/integrations/anva/parties";
119429
+ type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$5j]['get']['parameters']['query'];
119430
+ type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
119431
+ type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$5j]['get']['parameters'];
119291
119432
  declare const v1ApiIntegrationsAnvaPartiesGet: (props: V1ApiIntegrationsAnvaPartiesGetProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesGetResponse>;
119292
119433
 
119293
- declare const routeName$5h = "/v1/api/integrations/anva/parties/{anva_id}/imports";
119294
- type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
119295
- type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$5h]['post']['responses'][201]['content']['application/json'];
119434
+ declare const routeName$5i = "/v1/api/integrations/anva/parties/{anva_id}/imports";
119435
+ type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$5i]['post']['parameters']['query'];
119436
+ type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$5i]['post']['responses'][201]['content']['application/json'];
119296
119437
  interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
119297
119438
  params: {
119298
119439
  query: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams;
@@ -119300,9 +119441,9 @@ interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
119300
119441
  }
119301
119442
  declare const v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost: (props: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse>;
119302
119443
 
119303
- declare const routeName$5g = "/v1/api/integrations/anva/validate";
119304
- type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$5g]['post']['parameters']['query'];
119305
- type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$5g]['post']['responses'][200]['content']['application/json'];
119444
+ declare const routeName$5h = "/v1/api/integrations/anva/validate";
119445
+ type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
119446
+ type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$5h]['post']['responses'][200]['content']['application/json'];
119306
119447
  interface V1ApiIntegrationsAnvaValidatePostProps {
119307
119448
  params: {
119308
119449
  query: V1ApiIntegrationsAnvaValidatePostQueryParams;
@@ -119310,11 +119451,11 @@ interface V1ApiIntegrationsAnvaValidatePostProps {
119310
119451
  }
119311
119452
  declare const v1ApiIntegrationsAnvaValidatePost: (props: V1ApiIntegrationsAnvaValidatePostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaValidatePostResponse>;
119312
119453
 
119313
- declare const routeName$5f = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
119314
- type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$5f]['post']['requestBody']['content']['application/json'];
119315
- type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
119316
- type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$5f]['post']['parameters']['query'];
119317
- type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$5f]['post']['responses'][200]['content']['application/json'];
119454
+ declare const routeName$5g = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
119455
+ type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$5g]['post']['requestBody']['content']['application/json'];
119456
+ type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$5g]['post']['parameters']['path'];
119457
+ type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$5g]['post']['parameters']['query'];
119458
+ type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$5g]['post']['responses'][200]['content']['application/json'];
119318
119459
  interface GenerateQuestionsToPrefillByCarProps {
119319
119460
  body: GenerateQuestionsToPrefillByCarBody;
119320
119461
  params: {
@@ -119324,11 +119465,11 @@ interface GenerateQuestionsToPrefillByCarProps {
119324
119465
  }
119325
119466
  declare const generateQuestionsToPrefillByCar: (props: GenerateQuestionsToPrefillByCarProps, wgApiClient: ClientType) => Promise<GenerateQuestionsToPrefillByCarResponse>;
119326
119467
 
119327
- declare const routeName$5e = "/v1/api/flows/{flow_id}/conversations";
119328
- type CreateConversationBody = paths[typeof routeName$5e]['post']['requestBody']['content']['application/json'];
119329
- type CreateConversationPathParams = paths[typeof routeName$5e]['post']['parameters']['path'];
119330
- type CreateConversationQueryParams = paths[typeof routeName$5e]['post']['parameters']['query'];
119331
- type CreateConversationResponse = paths[typeof routeName$5e]['post']['responses'][201]['content']['application/json'];
119468
+ declare const routeName$5f = "/v1/api/flows/{flow_id}/conversations";
119469
+ type CreateConversationBody = paths[typeof routeName$5f]['post']['requestBody']['content']['application/json'];
119470
+ type CreateConversationPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
119471
+ type CreateConversationQueryParams = paths[typeof routeName$5f]['post']['parameters']['query'];
119472
+ type CreateConversationResponse = paths[typeof routeName$5f]['post']['responses'][201]['content']['application/json'];
119332
119473
  interface CreateConversationProps {
119333
119474
  body: CreateConversationBody;
119334
119475
  params: {
@@ -119338,11 +119479,11 @@ interface CreateConversationProps {
119338
119479
  }
119339
119480
  declare const createConversation: (props: CreateConversationProps, wgApiClient: ClientType) => Promise<CreateConversationResponse>;
119340
119481
 
119341
- declare const routeName$5d = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
119342
- type AnswerAFlowSessionBody = paths[typeof routeName$5d]['post']['requestBody']['content']['application/json'];
119343
- type AnswerAFlowSessionPathParams = paths[typeof routeName$5d]['post']['parameters']['path'];
119344
- type AnswerAFlowSessionQueryParams = paths[typeof routeName$5d]['post']['parameters']['query'];
119345
- type AnswerAFlowSessionResponse = paths[typeof routeName$5d]['post']['responses'][200]['content']['application/json'];
119482
+ declare const routeName$5e = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
119483
+ type AnswerAFlowSessionBody = paths[typeof routeName$5e]['post']['requestBody']['content']['application/json'];
119484
+ type AnswerAFlowSessionPathParams = paths[typeof routeName$5e]['post']['parameters']['path'];
119485
+ type AnswerAFlowSessionQueryParams = paths[typeof routeName$5e]['post']['parameters']['query'];
119486
+ type AnswerAFlowSessionResponse = paths[typeof routeName$5e]['post']['responses'][200]['content']['application/json'];
119346
119487
  interface AnswerAFlowSessionProps {
119347
119488
  body: AnswerAFlowSessionBody;
119348
119489
  params: {
@@ -119352,28 +119493,28 @@ interface AnswerAFlowSessionProps {
119352
119493
  }
119353
119494
  declare const answerAFlowSession: (props: AnswerAFlowSessionProps, wgApiClient: ClientType) => Promise<AnswerAFlowSessionResponse>;
119354
119495
 
119355
- declare const routeName$5c = "/v1/api/conversations";
119356
- type GetAllConversationsQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
119357
- type GetAllConversationsResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
119358
- type GetAllConversationsProps = paths[typeof routeName$5c]['get']['parameters'];
119496
+ declare const routeName$5d = "/v1/api/conversations";
119497
+ type GetAllConversationsQueryParams = paths[typeof routeName$5d]['get']['parameters']['query'];
119498
+ type GetAllConversationsResponse = paths[typeof routeName$5d]['get']['responses'][200]['content']['application/json'];
119499
+ type GetAllConversationsProps = paths[typeof routeName$5d]['get']['parameters'];
119359
119500
  declare const getAllConversations: (props: GetAllConversationsProps, wgApiClient: ClientType) => Promise<GetAllConversationsResponse>;
119360
119501
 
119361
- declare const routeName$5b = "/v1/api/conversations-filters/origin";
119362
- type GetConversationsOriginFilterQueryParams = paths[typeof routeName$5b]['get']['parameters']['query'];
119363
- type GetConversationsOriginFilterResponse = paths[typeof routeName$5b]['get']['responses'][200]['content']['application/json'];
119364
- type GetConversationsOriginFilterProps = paths[typeof routeName$5b]['get']['parameters'];
119502
+ declare const routeName$5c = "/v1/api/conversations-filters/origin";
119503
+ type GetConversationsOriginFilterQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
119504
+ type GetConversationsOriginFilterResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
119505
+ type GetConversationsOriginFilterProps = paths[typeof routeName$5c]['get']['parameters'];
119365
119506
  declare const getConversationsOriginFilter: (props: GetConversationsOriginFilterProps, wgApiClient: ClientType) => Promise<GetConversationsOriginFilterResponse>;
119366
119507
 
119367
- declare const routeName$5a = "/v1/api/conversations/{session_id}";
119368
- type GetConversationByIdPathParams = paths[typeof routeName$5a]['get']['parameters']['path'];
119369
- type GetConversationByIdQueryParams = paths[typeof routeName$5a]['get']['parameters']['query'];
119370
- type GetConversationByIdResponse = paths[typeof routeName$5a]['get']['responses'][200]['content']['application/json'];
119371
- type GetConversationByIdProps = paths[typeof routeName$5a]['get']['parameters'];
119508
+ declare const routeName$5b = "/v1/api/conversations/{session_id}";
119509
+ type GetConversationByIdPathParams = paths[typeof routeName$5b]['get']['parameters']['path'];
119510
+ type GetConversationByIdQueryParams = paths[typeof routeName$5b]['get']['parameters']['query'];
119511
+ type GetConversationByIdResponse = paths[typeof routeName$5b]['get']['responses'][200]['content']['application/json'];
119512
+ type GetConversationByIdProps = paths[typeof routeName$5b]['get']['parameters'];
119372
119513
  declare const getConversationById: (props: GetConversationByIdProps, wgApiClient: ClientType) => Promise<GetConversationByIdResponse>;
119373
119514
 
119374
- declare const routeName$59 = "/v1/api/conversations/{session_id}";
119375
- type DeleteSessionBySessionIdPathParams = paths[typeof routeName$59]['delete']['parameters']['path'];
119376
- type DeleteSessionBySessionIdResponse = paths[typeof routeName$59]['delete']['responses'][200]['content']['application/json'];
119515
+ declare const routeName$5a = "/v1/api/conversations/{session_id}";
119516
+ type DeleteSessionBySessionIdPathParams = paths[typeof routeName$5a]['delete']['parameters']['path'];
119517
+ type DeleteSessionBySessionIdResponse = paths[typeof routeName$5a]['delete']['responses'][200]['content']['application/json'];
119377
119518
  interface DeleteSessionBySessionIdProps {
119378
119519
  params: {
119379
119520
  path: DeleteSessionBySessionIdPathParams;
@@ -119381,10 +119522,10 @@ interface DeleteSessionBySessionIdProps {
119381
119522
  }
119382
119523
  declare const deleteSessionBySessionId: (props: DeleteSessionBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteSessionBySessionIdResponse>;
119383
119524
 
119384
- declare const routeName$58 = "/v1/api/conversations/{session_id}";
119385
- type UpdateConversationByIdBody = paths[typeof routeName$58]['patch']['requestBody']['content']['application/json'];
119386
- type UpdateConversationByIdPathParams = paths[typeof routeName$58]['patch']['parameters']['path'];
119387
- type UpdateConversationByIdResponse = paths[typeof routeName$58]['patch']['responses'][200]['content']['application/json'];
119525
+ declare const routeName$59 = "/v1/api/conversations/{session_id}";
119526
+ type UpdateConversationByIdBody = paths[typeof routeName$59]['patch']['requestBody']['content']['application/json'];
119527
+ type UpdateConversationByIdPathParams = paths[typeof routeName$59]['patch']['parameters']['path'];
119528
+ type UpdateConversationByIdResponse = paths[typeof routeName$59]['patch']['responses'][200]['content']['application/json'];
119388
119529
  interface UpdateConversationByIdProps {
119389
119530
  body: UpdateConversationByIdBody;
119390
119531
  params: {
@@ -119393,16 +119534,16 @@ interface UpdateConversationByIdProps {
119393
119534
  }
119394
119535
  declare const updateConversationById: (props: UpdateConversationByIdProps, wgApiClient: ClientType) => Promise<UpdateConversationByIdResponse>;
119395
119536
 
119396
- declare const routeName$57 = "/v1/api/conversations/{session_id}/sessions";
119397
- type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$57]['get']['parameters']['path'];
119398
- type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$57]['get']['parameters']['query'];
119399
- type GetAllSessionsBySessionIdResponse = paths[typeof routeName$57]['get']['responses'][200]['content']['application/json'];
119400
- type GetAllSessionsBySessionIdProps = paths[typeof routeName$57]['get']['parameters'];
119537
+ declare const routeName$58 = "/v1/api/conversations/{session_id}/sessions";
119538
+ type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$58]['get']['parameters']['path'];
119539
+ type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$58]['get']['parameters']['query'];
119540
+ type GetAllSessionsBySessionIdResponse = paths[typeof routeName$58]['get']['responses'][200]['content']['application/json'];
119541
+ type GetAllSessionsBySessionIdProps = paths[typeof routeName$58]['get']['parameters'];
119401
119542
  declare const getAllSessionsBySessionId: (props: GetAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<GetAllSessionsBySessionIdResponse>;
119402
119543
 
119403
- declare const routeName$56 = "/v1/api/conversations/{session_id}/sessions";
119404
- type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$56]['delete']['parameters']['path'];
119405
- type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$56]['delete']['responses'][200]['content']['application/json'];
119544
+ declare const routeName$57 = "/v1/api/conversations/{session_id}/sessions";
119545
+ type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$57]['delete']['parameters']['path'];
119546
+ type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$57]['delete']['responses'][200]['content']['application/json'];
119406
119547
  interface DeleteAllSessionsBySessionIdProps {
119407
119548
  params: {
119408
119549
  path: DeleteAllSessionsBySessionIdPathParams;
@@ -119410,10 +119551,10 @@ interface DeleteAllSessionsBySessionIdProps {
119410
119551
  }
119411
119552
  declare const deleteAllSessionsBySessionId: (props: DeleteAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteAllSessionsBySessionIdResponse>;
119412
119553
 
119413
- declare const routeName$55 = "/v1/api/conversations/{session_id}/entities/{entity_id}";
119414
- type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$55]['delete']['parameters']['path'];
119415
- type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$55]['delete']['parameters']['query'];
119416
- type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$55]['delete']['responses'][200]['content']['application/json'];
119554
+ declare const routeName$56 = "/v1/api/conversations/{session_id}/entities/{entity_id}";
119555
+ type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$56]['delete']['parameters']['path'];
119556
+ type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$56]['delete']['parameters']['query'];
119557
+ type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$56]['delete']['responses'][200]['content']['application/json'];
119417
119558
  interface DeleteEntityBySessionIdAndFlowIdProps {
119418
119559
  params: {
119419
119560
  query: DeleteEntityBySessionIdAndFlowIdQueryParams;
@@ -119422,10 +119563,10 @@ interface DeleteEntityBySessionIdAndFlowIdProps {
119422
119563
  }
119423
119564
  declare const deleteEntityBySessionIdAndFlowId: (props: DeleteEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeleteEntityBySessionIdAndFlowIdResponse>;
119424
119565
 
119425
- declare const routeName$54 = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
119426
- type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$54]['delete']['parameters']['path'];
119427
- type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$54]['delete']['parameters']['query'];
119428
- type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$54]['delete']['responses'][200]['content']['application/json'];
119566
+ declare const routeName$55 = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
119567
+ type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$55]['delete']['parameters']['path'];
119568
+ type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$55]['delete']['parameters']['query'];
119569
+ type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$55]['delete']['responses'][200]['content']['application/json'];
119429
119570
  interface DeletePartyEntityBySessionIdAndFlowIdProps {
119430
119571
  params: {
119431
119572
  query: DeletePartyEntityBySessionIdAndFlowIdQueryParams;
@@ -119434,10 +119575,10 @@ interface DeletePartyEntityBySessionIdAndFlowIdProps {
119434
119575
  }
119435
119576
  declare const deletePartyEntityBySessionIdAndFlowId: (props: DeletePartyEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeletePartyEntityBySessionIdAndFlowIdResponse>;
119436
119577
 
119437
- declare const routeName$53 = "/v1/api/conversations/{session_id}/complete";
119438
- type MarkConversationAsCompletedByIdBody = paths[typeof routeName$53]['post']['requestBody']['content']['application/json'];
119439
- type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$53]['post']['parameters']['path'];
119440
- type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$53]['post']['responses'][200]['content']['application/json'];
119578
+ declare const routeName$54 = "/v1/api/conversations/{session_id}/complete";
119579
+ type MarkConversationAsCompletedByIdBody = paths[typeof routeName$54]['post']['requestBody']['content']['application/json'];
119580
+ type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$54]['post']['parameters']['path'];
119581
+ type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$54]['post']['responses'][200]['content']['application/json'];
119441
119582
  interface MarkConversationAsCompletedByIdProps {
119442
119583
  body: MarkConversationAsCompletedByIdBody;
119443
119584
  params: {
@@ -119446,9 +119587,9 @@ interface MarkConversationAsCompletedByIdProps {
119446
119587
  }
119447
119588
  declare const markConversationAsCompletedById: (props: MarkConversationAsCompletedByIdProps, wgApiClient: ClientType) => Promise<MarkConversationAsCompletedByIdResponse>;
119448
119589
 
119449
- declare const routeName$52 = "/v1/api/conversations/{session_id}/reminders";
119450
- type CreateConversationReminderPathParams = paths[typeof routeName$52]['post']['parameters']['path'];
119451
- type CreateConversationReminderResponse = paths[typeof routeName$52]['post']['responses'][200]['content']['application/json'];
119590
+ declare const routeName$53 = "/v1/api/conversations/{session_id}/reminders";
119591
+ type CreateConversationReminderPathParams = paths[typeof routeName$53]['post']['parameters']['path'];
119592
+ type CreateConversationReminderResponse = paths[typeof routeName$53]['post']['responses'][200]['content']['application/json'];
119452
119593
  interface CreateConversationReminderProps {
119453
119594
  params: {
119454
119595
  path: CreateConversationReminderPathParams;
@@ -119456,11 +119597,11 @@ interface CreateConversationReminderProps {
119456
119597
  }
119457
119598
  declare const createConversationReminder: (props: CreateConversationReminderProps, wgApiClient: ClientType) => Promise<CreateConversationReminderResponse>;
119458
119599
 
119459
- declare const routeName$51 = "/v1/api/conversations/{session_id}/pdf";
119460
- type GetConversationReportPdfByIdBody = paths[typeof routeName$51]['post']['requestBody']['content']['application/json'];
119461
- type GetConversationReportPdfByIdPathParams = paths[typeof routeName$51]['post']['parameters']['path'];
119462
- type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$51]['post']['parameters']['query'];
119463
- type GetConversationReportPdfByIdResponse = paths[typeof routeName$51]['post']['responses'][200]['content']['application/json'];
119600
+ declare const routeName$52 = "/v1/api/conversations/{session_id}/pdf";
119601
+ type GetConversationReportPdfByIdBody = paths[typeof routeName$52]['post']['requestBody']['content']['application/json'];
119602
+ type GetConversationReportPdfByIdPathParams = paths[typeof routeName$52]['post']['parameters']['path'];
119603
+ type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$52]['post']['parameters']['query'];
119604
+ type GetConversationReportPdfByIdResponse = paths[typeof routeName$52]['post']['responses'][200]['content']['application/json'];
119464
119605
  interface GetConversationReportPdfByIdProps {
119465
119606
  body: GetConversationReportPdfByIdBody;
119466
119607
  params: {
@@ -119470,10 +119611,10 @@ interface GetConversationReportPdfByIdProps {
119470
119611
  }
119471
119612
  declare const getConversationReportPdfById: (props: GetConversationReportPdfByIdProps, wgApiClient: ClientType) => Promise<GetConversationReportPdfByIdResponse>;
119472
119613
 
119473
- declare const routeName$50 = "/v1/api/conversations/{session_id}/feedback";
119474
- type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$50]['post']['parameters']['path'];
119475
- type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$50]['post']['parameters']['query'];
119476
- type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$50]['post']['responses'][201]['content']['application/json'];
119614
+ declare const routeName$51 = "/v1/api/conversations/{session_id}/feedback";
119615
+ type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$51]['post']['parameters']['path'];
119616
+ type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$51]['post']['parameters']['query'];
119617
+ type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$51]['post']['responses'][201]['content']['application/json'];
119477
119618
  interface GiveFeedbackOnConversationByIdProps {
119478
119619
  params: {
119479
119620
  query: GiveFeedbackOnConversationByIdQueryParams;
@@ -119482,27 +119623,27 @@ interface GiveFeedbackOnConversationByIdProps {
119482
119623
  }
119483
119624
  declare const giveFeedbackOnConversationById: (props: GiveFeedbackOnConversationByIdProps, wgApiClient: ClientType) => Promise<GiveFeedbackOnConversationByIdResponse>;
119484
119625
 
119485
- declare const routeName$4$ = "/v1/api/conversations/{session_id}/chat";
119486
- type GetChatBySessionIdPathParams = paths[typeof routeName$4$]['get']['parameters']['path'];
119487
- type GetChatBySessionIdResponse = paths[typeof routeName$4$]['get']['responses'][200]['content']['application/json'];
119488
- type GetChatBySessionIdProps = paths[typeof routeName$4$]['get']['parameters'];
119626
+ declare const routeName$50 = "/v1/api/conversations/{session_id}/chat";
119627
+ type GetChatBySessionIdPathParams = paths[typeof routeName$50]['get']['parameters']['path'];
119628
+ type GetChatBySessionIdResponse = paths[typeof routeName$50]['get']['responses'][200]['content']['application/json'];
119629
+ type GetChatBySessionIdProps = paths[typeof routeName$50]['get']['parameters'];
119489
119630
  declare const getChatBySessionId: (props: GetChatBySessionIdProps, wgApiClient: ClientType) => Promise<GetChatBySessionIdResponse>;
119490
119631
 
119491
- declare const routeName$4_ = "/v2/api/conversations/{session_id}/chat-summary";
119492
- type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4_]['get']['parameters']['path'];
119493
- type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4_]['get']['parameters']['query'];
119494
- type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4_]['get']['responses'][200]['content']['application/json'];
119495
- type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4_]['get']['parameters'];
119632
+ declare const routeName$4$ = "/v2/api/conversations/{session_id}/chat-summary";
119633
+ type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4$]['get']['parameters']['path'];
119634
+ type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4$]['get']['parameters']['query'];
119635
+ type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4$]['get']['responses'][200]['content']['application/json'];
119636
+ type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4$]['get']['parameters'];
119496
119637
  declare const getChatSummaryV2BySessionId: (props: GetChatSummaryV2BySessionIdProps, wgApiClient: ClientType) => Promise<GetChatSummaryV2BySessionIdResponse>;
119497
119638
 
119498
- declare const routeName$4Z = "/v1/api/customers/me/parties";
119499
- type GetPartiesLinkedToUserResponse = paths[typeof routeName$4Z]['get']['responses'][200]['content']['application/json'];
119639
+ declare const routeName$4_ = "/v1/api/customers/me/parties";
119640
+ type GetPartiesLinkedToUserResponse = paths[typeof routeName$4_]['get']['responses'][200]['content']['application/json'];
119500
119641
  declare const getPartiesLinkedToUser: (wgApiClient: ClientType) => Promise<GetPartiesLinkedToUserResponse>;
119501
119642
 
119502
- declare const routeName$4Y = "/v1/api/parties/{party_id}/customer-invitations";
119503
- type InviteUserToPartyBody = paths[typeof routeName$4Y]['post']['requestBody']['content']['application/json'];
119504
- type InviteUserToPartyPathParams = paths[typeof routeName$4Y]['post']['parameters']['path'];
119505
- type InviteUserToPartyResponse = paths[typeof routeName$4Y]['post']['responses'][200]['content']['application/json'];
119643
+ declare const routeName$4Z = "/v1/api/parties/{party_id}/customer-invitations";
119644
+ type InviteUserToPartyBody = paths[typeof routeName$4Z]['post']['requestBody']['content']['application/json'];
119645
+ type InviteUserToPartyPathParams = paths[typeof routeName$4Z]['post']['parameters']['path'];
119646
+ type InviteUserToPartyResponse = paths[typeof routeName$4Z]['post']['responses'][200]['content']['application/json'];
119506
119647
  interface InviteUserToPartyProps {
119507
119648
  body: InviteUserToPartyBody;
119508
119649
  params: {
@@ -119511,31 +119652,31 @@ interface InviteUserToPartyProps {
119511
119652
  }
119512
119653
  declare const inviteUserToParty: (props: InviteUserToPartyProps, wgApiClient: ClientType) => Promise<InviteUserToPartyResponse>;
119513
119654
 
119514
- declare const routeName$4X = "/v1/api/parties/{party_id}/checkup";
119515
- type GetCheckupByPartyIdPathParams = paths[typeof routeName$4X]['get']['parameters']['path'];
119516
- type GetCheckupByPartyIdResponse = paths[typeof routeName$4X]['get']['responses'][200]['content']['application/json'];
119517
- type GetCheckupByPartyIdProps = paths[typeof routeName$4X]['get']['parameters'];
119655
+ declare const routeName$4Y = "/v1/api/parties/{party_id}/checkup";
119656
+ type GetCheckupByPartyIdPathParams = paths[typeof routeName$4Y]['get']['parameters']['path'];
119657
+ type GetCheckupByPartyIdResponse = paths[typeof routeName$4Y]['get']['responses'][200]['content']['application/json'];
119658
+ type GetCheckupByPartyIdProps = paths[typeof routeName$4Y]['get']['parameters'];
119518
119659
  declare const getCheckupByPartyId: (props: GetCheckupByPartyIdProps, wgApiClient: ClientType) => Promise<GetCheckupByPartyIdResponse>;
119519
119660
 
119520
- declare const routeName$4W = "/v1/api/parties/link-users";
119521
- type LinkPartyToUserBody = paths[typeof routeName$4W]['post']['requestBody']['content']['application/json'];
119522
- type LinkPartyToUserResponse = paths[typeof routeName$4W]['post']['responses'][200]['content']['application/json'];
119661
+ declare const routeName$4X = "/v1/api/parties/link-users";
119662
+ type LinkPartyToUserBody = paths[typeof routeName$4X]['post']['requestBody']['content']['application/json'];
119663
+ type LinkPartyToUserResponse = paths[typeof routeName$4X]['post']['responses'][200]['content']['application/json'];
119523
119664
  interface LinkPartyToUserProps {
119524
119665
  body: LinkPartyToUserBody;
119525
119666
  }
119526
119667
  declare const linkPartyToUser: (props: LinkPartyToUserProps, wgApiClient: ClientType) => Promise<LinkPartyToUserResponse>;
119527
119668
 
119528
- declare const routeName$4V = "/v1/api/parties/delink-users";
119529
- type DelinkPartyToUserBody = paths[typeof routeName$4V]['post']['requestBody']['content']['application/json'];
119530
- type DelinkPartyToUserResponse = paths[typeof routeName$4V]['post']['responses'][200]['content']['application/json'];
119669
+ declare const routeName$4W = "/v1/api/parties/delink-users";
119670
+ type DelinkPartyToUserBody = paths[typeof routeName$4W]['post']['requestBody']['content']['application/json'];
119671
+ type DelinkPartyToUserResponse = paths[typeof routeName$4W]['post']['responses'][200]['content']['application/json'];
119531
119672
  interface DelinkPartyToUserProps {
119532
119673
  body: DelinkPartyToUserBody;
119533
119674
  }
119534
119675
  declare const delinkPartyToUser: (props: DelinkPartyToUserProps, wgApiClient: ClientType) => Promise<DelinkPartyToUserResponse>;
119535
119676
 
119536
- declare const routeName$4U = "/v1/api/customers/{user_id}/password-reset";
119537
- type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4U]['post']['parameters']['path'];
119538
- type SendPasswordResetToCustomerResponse = paths[typeof routeName$4U]['post']['responses'][200]['content']['application/json'];
119677
+ declare const routeName$4V = "/v1/api/customers/{user_id}/password-reset";
119678
+ type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4V]['post']['parameters']['path'];
119679
+ type SendPasswordResetToCustomerResponse = paths[typeof routeName$4V]['post']['responses'][200]['content']['application/json'];
119539
119680
  interface SendPasswordResetToCustomerProps {
119540
119681
  params: {
119541
119682
  path: SendPasswordResetToCustomerPathParams;
@@ -119543,9 +119684,9 @@ interface SendPasswordResetToCustomerProps {
119543
119684
  }
119544
119685
  declare const sendPasswordResetToCustomer: (props: SendPasswordResetToCustomerProps, wgApiClient: ClientType) => Promise<SendPasswordResetToCustomerResponse>;
119545
119686
 
119546
- declare const routeName$4T = "/v1/api/customers/{user_id}/2fa";
119547
- type Disable2FaForCustomerPathParams = paths[typeof routeName$4T]['delete']['parameters']['path'];
119548
- type Disable2FaForCustomerResponse = paths[typeof routeName$4T]['delete']['responses'][200]['content']['application/json'];
119687
+ declare const routeName$4U = "/v1/api/customers/{user_id}/2fa";
119688
+ type Disable2FaForCustomerPathParams = paths[typeof routeName$4U]['delete']['parameters']['path'];
119689
+ type Disable2FaForCustomerResponse = paths[typeof routeName$4U]['delete']['responses'][200]['content']['application/json'];
119549
119690
  interface Disable2FaForCustomerProps {
119550
119691
  params: {
119551
119692
  path: Disable2FaForCustomerPathParams;
@@ -119553,106 +119694,106 @@ interface Disable2FaForCustomerProps {
119553
119694
  }
119554
119695
  declare const disable2FaForCustomer: (props: Disable2FaForCustomerProps, wgApiClient: ClientType) => Promise<Disable2FaForCustomerResponse>;
119555
119696
 
119556
- declare const routeName$4S = "/v1/api/customers/me/insurance-policies";
119557
- type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4S]['get']['parameters']['query'];
119558
- type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4S]['get']['responses'][200]['content']['application/json'];
119559
- type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4S]['get']['parameters'];
119697
+ declare const routeName$4T = "/v1/api/customers/me/insurance-policies";
119698
+ type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4T]['get']['parameters']['query'];
119699
+ type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4T]['get']['responses'][200]['content']['application/json'];
119700
+ type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4T]['get']['parameters'];
119560
119701
  declare const getInsurancePoliciesAsCustomer: (props: GetInsurancePoliciesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesAsCustomerResponse>;
119561
119702
 
119562
- declare const routeName$4R = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
119563
- type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4R]['get']['parameters']['path'];
119564
- type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4R]['get']['responses'][200]['content']['application/json'];
119565
- type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4R]['get']['parameters'];
119703
+ declare const routeName$4S = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
119704
+ type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4S]['get']['parameters']['path'];
119705
+ type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4S]['get']['responses'][200]['content']['application/json'];
119706
+ type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4S]['get']['parameters'];
119566
119707
  declare const getInsurancePolicyByIdAsCustomer: (props: GetInsurancePolicyByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdAsCustomerResponse>;
119567
119708
 
119568
- declare const routeName$4Q = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}/finconnect/link";
119569
- type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams = paths[typeof routeName$4Q]['get']['parameters']['path'];
119570
- type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams = paths[typeof routeName$4Q]['get']['parameters']['query'];
119571
- type GetFinconnectLinkForInsurancePolicyAsCustomerResponse = paths[typeof routeName$4Q]['get']['responses'][200]['content']['application/json'];
119572
- type GetFinconnectLinkForInsurancePolicyAsCustomerProps = paths[typeof routeName$4Q]['get']['parameters'];
119709
+ declare const routeName$4R = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}/finconnect/link";
119710
+ type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams = paths[typeof routeName$4R]['get']['parameters']['path'];
119711
+ type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams = paths[typeof routeName$4R]['get']['parameters']['query'];
119712
+ type GetFinconnectLinkForInsurancePolicyAsCustomerResponse = paths[typeof routeName$4R]['get']['responses'][200]['content']['application/json'];
119713
+ type GetFinconnectLinkForInsurancePolicyAsCustomerProps = paths[typeof routeName$4R]['get']['parameters'];
119573
119714
  declare const getFinconnectLinkForInsurancePolicyAsCustomer: (props: GetFinconnectLinkForInsurancePolicyAsCustomerProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkForInsurancePolicyAsCustomerResponse>;
119574
119715
 
119575
- declare const routeName$4P = "/v1/api/customers/me/anva-inquiry";
119576
- type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4P]['post']['requestBody']['content']['application/json'];
119577
- type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4P]['post']['responses'][201]['content']['application/json'];
119716
+ declare const routeName$4Q = "/v1/api/customers/me/anva-inquiry";
119717
+ type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4Q]['post']['requestBody']['content']['application/json'];
119718
+ type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4Q]['post']['responses'][201]['content']['application/json'];
119578
119719
  interface SendAnvaInquiryAsCustomerProps {
119579
119720
  body: SendAnvaInquiryAsCustomerBody;
119580
119721
  }
119581
119722
  declare const sendAnvaInquiryAsCustomer: (props: SendAnvaInquiryAsCustomerProps, wgApiClient: ClientType) => Promise<SendAnvaInquiryAsCustomerResponse>;
119582
119723
 
119583
- declare const routeName$4O = "/v1/api/customers/me/policy-packages";
119584
- type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4O]['get']['parameters']['query'];
119585
- type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4O]['get']['responses'][200]['content']['application/json'];
119586
- type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4O]['get']['parameters'];
119724
+ declare const routeName$4P = "/v1/api/customers/me/policy-packages";
119725
+ type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4P]['get']['parameters']['query'];
119726
+ type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4P]['get']['responses'][200]['content']['application/json'];
119727
+ type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4P]['get']['parameters'];
119587
119728
  declare const getPolicyPackagesAsCustomer: (props: GetPolicyPackagesAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesAsCustomerResponse>;
119588
119729
 
119589
- declare const routeName$4N = "/v1/api/customers/me/policy-packages/{policy_package_id}";
119590
- type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4N]['get']['parameters']['path'];
119591
- type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4N]['get']['responses'][200]['content']['application/json'];
119592
- type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4N]['get']['parameters'];
119730
+ declare const routeName$4O = "/v1/api/customers/me/policy-packages/{policy_package_id}";
119731
+ type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4O]['get']['parameters']['path'];
119732
+ type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4O]['get']['responses'][200]['content']['application/json'];
119733
+ type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4O]['get']['parameters'];
119593
119734
  declare const getPolicyPackageByIdAsCustomer: (props: GetPolicyPackageByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdAsCustomerResponse>;
119594
119735
 
119595
- declare const routeName$4M = "/v1/api/customers/me/current-account-insights";
119596
- type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4M]['get']['parameters']['query'];
119597
- type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4M]['get']['responses'][200]['content']['application/json'];
119598
- type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4M]['get']['parameters'];
119736
+ declare const routeName$4N = "/v1/api/customers/me/current-account-insights";
119737
+ type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4N]['get']['parameters']['query'];
119738
+ type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4N]['get']['responses'][200]['content']['application/json'];
119739
+ type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4N]['get']['parameters'];
119599
119740
  declare const getCurrentAccountInsightsAsCustomer: (props: GetCurrentAccountInsightsAsCustomerProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsCustomerResponse>;
119600
119741
 
119601
- declare const routeName$4L = "/v1/api/customers/me/invoices";
119602
- type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4L]['get']['parameters']['query'];
119603
- type GetInvoicesAsCustomerResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
119604
- type GetInvoicesAsCustomerProps = paths[typeof routeName$4L]['get']['parameters'];
119742
+ declare const routeName$4M = "/v1/api/customers/me/invoices";
119743
+ type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4M]['get']['parameters']['query'];
119744
+ type GetInvoicesAsCustomerResponse = paths[typeof routeName$4M]['get']['responses'][200]['content']['application/json'];
119745
+ type GetInvoicesAsCustomerProps = paths[typeof routeName$4M]['get']['parameters'];
119605
119746
  declare const getInvoicesAsCustomer: (props: GetInvoicesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoicesAsCustomerResponse>;
119606
119747
 
119607
- declare const routeName$4K = "/v1/api/customers/me/invoices/{invoice_id}";
119608
- type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4K]['get']['parameters']['path'];
119609
- type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
119610
- type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4K]['get']['parameters'];
119748
+ declare const routeName$4L = "/v1/api/customers/me/invoices/{invoice_id}";
119749
+ type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4L]['get']['parameters']['path'];
119750
+ type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
119751
+ type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4L]['get']['parameters'];
119611
119752
  declare const getInvoiceByIdAsCustomer: (props: GetInvoiceByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoiceByIdAsCustomerResponse>;
119612
119753
 
119613
- declare const routeName$4J = "/v1/api/customers/me/claims";
119614
- type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4J]['get']['parameters']['query'];
119615
- type GetClaimsAsCustomerResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
119616
- type GetClaimsAsCustomerProps = paths[typeof routeName$4J]['get']['parameters'];
119754
+ declare const routeName$4K = "/v1/api/customers/me/claims";
119755
+ type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4K]['get']['parameters']['query'];
119756
+ type GetClaimsAsCustomerResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
119757
+ type GetClaimsAsCustomerProps = paths[typeof routeName$4K]['get']['parameters'];
119617
119758
  declare const getClaimsAsCustomer: (props: GetClaimsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimsAsCustomerResponse>;
119618
119759
 
119619
- declare const routeName$4I = "/v1/api/customers/me/claims/{claim_id}";
119620
- type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4I]['get']['parameters']['path'];
119621
- type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4I]['get']['responses'][200]['content']['application/json'];
119622
- type GetClaimByIdAsCustomerProps = paths[typeof routeName$4I]['get']['parameters'];
119760
+ declare const routeName$4J = "/v1/api/customers/me/claims/{claim_id}";
119761
+ type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4J]['get']['parameters']['path'];
119762
+ type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
119763
+ type GetClaimByIdAsCustomerProps = paths[typeof routeName$4J]['get']['parameters'];
119623
119764
  declare const getClaimByIdAsCustomer: (props: GetClaimByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimByIdAsCustomerResponse>;
119624
119765
 
119625
- declare const routeName$4H = "/v1/api/customers/me/documents";
119626
- type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4H]['get']['parameters']['query'];
119627
- type GetDocumentsAsCustomerResponse = paths[typeof routeName$4H]['get']['responses'][200]['content']['application/json'];
119628
- type GetDocumentsAsCustomerProps = paths[typeof routeName$4H]['get']['parameters'];
119766
+ declare const routeName$4I = "/v1/api/customers/me/documents";
119767
+ type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4I]['get']['parameters']['query'];
119768
+ type GetDocumentsAsCustomerResponse = paths[typeof routeName$4I]['get']['responses'][200]['content']['application/json'];
119769
+ type GetDocumentsAsCustomerProps = paths[typeof routeName$4I]['get']['parameters'];
119629
119770
  declare const getDocumentsAsCustomer: (props: GetDocumentsAsCustomerProps, wgApiClient: ClientType) => Promise<GetDocumentsAsCustomerResponse>;
119630
119771
 
119631
- declare const routeName$4G = "/v1/api/customers/me/finconnect/link";
119632
- type GetFinconnectLinkAsCustomerQueryParams = paths[typeof routeName$4G]['get']['parameters']['query'];
119633
- type GetFinconnectLinkAsCustomerResponse = paths[typeof routeName$4G]['get']['responses'][200]['content']['application/json'];
119634
- type GetFinconnectLinkAsCustomerProps = paths[typeof routeName$4G]['get']['parameters'];
119772
+ declare const routeName$4H = "/v1/api/customers/me/finconnect/link";
119773
+ type GetFinconnectLinkAsCustomerQueryParams = paths[typeof routeName$4H]['get']['parameters']['query'];
119774
+ type GetFinconnectLinkAsCustomerResponse = paths[typeof routeName$4H]['get']['responses'][200]['content']['application/json'];
119775
+ type GetFinconnectLinkAsCustomerProps = paths[typeof routeName$4H]['get']['parameters'];
119635
119776
  declare const getFinconnectLinkAsCustomer: (props: GetFinconnectLinkAsCustomerProps, wgApiClient: ClientType) => Promise<GetFinconnectLinkAsCustomerResponse>;
119636
119777
 
119637
- declare const routeName$4F = "/v1/api/parties/me";
119638
- type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4F]['patch']['requestBody']['content']['application/json'];
119639
- type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4F]['patch']['responses'][200]['content']['application/json'];
119778
+ declare const routeName$4G = "/v1/api/parties/me";
119779
+ type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4G]['patch']['requestBody']['content']['application/json'];
119780
+ type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4G]['patch']['responses'][200]['content']['application/json'];
119640
119781
  interface PatchOwnPartyAsCustomerProps {
119641
119782
  body: PatchOwnPartyAsCustomerBody;
119642
119783
  }
119643
119784
  declare const patchOwnPartyAsCustomer: (props: PatchOwnPartyAsCustomerProps, wgApiClient: ClientType) => Promise<PatchOwnPartyAsCustomerResponse>;
119644
119785
 
119645
- declare const routeName$4E = "/v1/api/parties/me/activities";
119646
- type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4E]['post']['requestBody']['content']['application/json'];
119647
- type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4E]['post']['responses'][201]['content']['application/json'];
119786
+ declare const routeName$4F = "/v1/api/parties/me/activities";
119787
+ type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4F]['post']['requestBody']['content']['application/json'];
119788
+ type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4F]['post']['responses'][201]['content']['application/json'];
119648
119789
  interface CreatePartyActivitiesAsCustomerProps {
119649
119790
  body: CreatePartyActivitiesAsCustomerBody;
119650
119791
  }
119651
119792
  declare const createPartyActivitiesAsCustomer: (props: CreatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<CreatePartyActivitiesAsCustomerResponse>;
119652
119793
 
119653
- declare const routeName$4D = "/v1/api/parties/me/activities/{activity_id}";
119654
- type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4D]['delete']['parameters']['path'];
119655
- type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4D]['delete']['responses'][200]['content']['application/json'];
119794
+ declare const routeName$4E = "/v1/api/parties/me/activities/{activity_id}";
119795
+ type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4E]['delete']['parameters']['path'];
119796
+ type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4E]['delete']['responses'][200]['content']['application/json'];
119656
119797
  interface DeletePartyActivitiesAsCustomerProps {
119657
119798
  params: {
119658
119799
  path: DeletePartyActivitiesAsCustomerPathParams;
@@ -119660,10 +119801,10 @@ interface DeletePartyActivitiesAsCustomerProps {
119660
119801
  }
119661
119802
  declare const deletePartyActivitiesAsCustomer: (props: DeletePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<DeletePartyActivitiesAsCustomerResponse>;
119662
119803
 
119663
- declare const routeName$4C = "/v1/api/parties/me/activities/{activity_id}";
119664
- type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4C]['patch']['requestBody']['content']['application/json'];
119665
- type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4C]['patch']['parameters']['path'];
119666
- type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4C]['patch']['responses'][200]['content']['application/json'];
119804
+ declare const routeName$4D = "/v1/api/parties/me/activities/{activity_id}";
119805
+ type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4D]['patch']['requestBody']['content']['application/json'];
119806
+ type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4D]['patch']['parameters']['path'];
119807
+ type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4D]['patch']['responses'][200]['content']['application/json'];
119667
119808
  interface UpdatePartyActivitiesAsCustomerProps {
119668
119809
  body: UpdatePartyActivitiesAsCustomerBody;
119669
119810
  params: {
@@ -119672,29 +119813,29 @@ interface UpdatePartyActivitiesAsCustomerProps {
119672
119813
  }
119673
119814
  declare const updatePartyActivitiesAsCustomer: (props: UpdatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<UpdatePartyActivitiesAsCustomerResponse>;
119674
119815
 
119675
- declare const routeName$4B = "/v1/api/parties/{party_id}/customers";
119676
- type GetCustomersByPartyPathParams = paths[typeof routeName$4B]['get']['parameters']['path'];
119677
- type GetCustomersByPartyQueryParams = paths[typeof routeName$4B]['get']['parameters']['query'];
119678
- type GetCustomersByPartyResponse = paths[typeof routeName$4B]['get']['responses'][200]['content']['application/json'];
119679
- type GetCustomersByPartyProps = paths[typeof routeName$4B]['get']['parameters'];
119816
+ declare const routeName$4C = "/v1/api/parties/{party_id}/customers";
119817
+ type GetCustomersByPartyPathParams = paths[typeof routeName$4C]['get']['parameters']['path'];
119818
+ type GetCustomersByPartyQueryParams = paths[typeof routeName$4C]['get']['parameters']['query'];
119819
+ type GetCustomersByPartyResponse = paths[typeof routeName$4C]['get']['responses'][200]['content']['application/json'];
119820
+ type GetCustomersByPartyProps = paths[typeof routeName$4C]['get']['parameters'];
119680
119821
  declare const getCustomersByParty: (props: GetCustomersByPartyProps, wgApiClient: ClientType) => Promise<GetCustomersByPartyResponse>;
119681
119822
 
119682
- declare const routeName$4A = "/v1/api/customers/{user_id}/parties";
119683
- type GetPartiesByCustomerPathParams = paths[typeof routeName$4A]['get']['parameters']['path'];
119684
- type GetPartiesByCustomerQueryParams = paths[typeof routeName$4A]['get']['parameters']['query'];
119685
- type GetPartiesByCustomerResponse = paths[typeof routeName$4A]['get']['responses'][200]['content']['application/json'];
119686
- type GetPartiesByCustomerProps = paths[typeof routeName$4A]['get']['parameters'];
119823
+ declare const routeName$4B = "/v1/api/customers/{user_id}/parties";
119824
+ type GetPartiesByCustomerPathParams = paths[typeof routeName$4B]['get']['parameters']['path'];
119825
+ type GetPartiesByCustomerQueryParams = paths[typeof routeName$4B]['get']['parameters']['query'];
119826
+ type GetPartiesByCustomerResponse = paths[typeof routeName$4B]['get']['responses'][200]['content']['application/json'];
119827
+ type GetPartiesByCustomerProps = paths[typeof routeName$4B]['get']['parameters'];
119687
119828
  declare const getPartiesByCustomer: (props: GetPartiesByCustomerProps, wgApiClient: ClientType) => Promise<GetPartiesByCustomerResponse>;
119688
119829
 
119689
- declare const routeName$4z = "/v1/api/customers";
119690
- type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4z]['get']['parameters']['query'];
119691
- type GetAllCustomersByDistributionResponse = paths[typeof routeName$4z]['get']['responses'][200]['content']['application/json'];
119692
- type GetAllCustomersByDistributionProps = paths[typeof routeName$4z]['get']['parameters'];
119830
+ declare const routeName$4A = "/v1/api/customers";
119831
+ type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4A]['get']['parameters']['query'];
119832
+ type GetAllCustomersByDistributionResponse = paths[typeof routeName$4A]['get']['responses'][200]['content']['application/json'];
119833
+ type GetAllCustomersByDistributionProps = paths[typeof routeName$4A]['get']['parameters'];
119693
119834
  declare const getAllCustomersByDistribution: (props: GetAllCustomersByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCustomersByDistributionResponse>;
119694
119835
 
119695
- declare const routeName$4y = "/v1/api/customers/{user_id}/parties/{party_id}/block";
119696
- type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4y]['post']['parameters']['path'];
119697
- type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4y]['post']['responses'][200]['content']['application/json'];
119836
+ declare const routeName$4z = "/v1/api/customers/{user_id}/parties/{party_id}/block";
119837
+ type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4z]['post']['parameters']['path'];
119838
+ type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4z]['post']['responses'][200]['content']['application/json'];
119698
119839
  interface BlockCustomerFromAccessingPartyProps {
119699
119840
  params: {
119700
119841
  path: BlockCustomerFromAccessingPartyPathParams;
@@ -119702,9 +119843,9 @@ interface BlockCustomerFromAccessingPartyProps {
119702
119843
  }
119703
119844
  declare const blockCustomerFromAccessingParty: (props: BlockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<BlockCustomerFromAccessingPartyResponse>;
119704
119845
 
119705
- declare const routeName$4x = "/v1/api/customers/{user_id}/parties/{party_id}/block";
119706
- type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4x]['delete']['parameters']['path'];
119707
- type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4x]['delete']['responses'][200]['content']['application/json'];
119846
+ declare const routeName$4y = "/v1/api/customers/{user_id}/parties/{party_id}/block";
119847
+ type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4y]['delete']['parameters']['path'];
119848
+ type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4y]['delete']['responses'][200]['content']['application/json'];
119708
119849
  interface UnblockCustomerFromAccessingPartyProps {
119709
119850
  params: {
119710
119851
  path: UnblockCustomerFromAccessingPartyPathParams;
@@ -119712,16 +119853,16 @@ interface UnblockCustomerFromAccessingPartyProps {
119712
119853
  }
119713
119854
  declare const unblockCustomerFromAccessingParty: (props: UnblockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<UnblockCustomerFromAccessingPartyResponse>;
119714
119855
 
119715
- declare const routeName$4w = "/v1/api/diasflows/products";
119716
- type GetDiasflowProductsQueryParams = paths[typeof routeName$4w]['get']['parameters']['query'];
119717
- type GetDiasflowProductsResponse = paths[typeof routeName$4w]['get']['responses'][200]['content']['application/json'];
119718
- type GetDiasflowProductsProps = paths[typeof routeName$4w]['get']['parameters'];
119856
+ declare const routeName$4x = "/v1/api/diasflows/products";
119857
+ type GetDiasflowProductsQueryParams = paths[typeof routeName$4x]['get']['parameters']['query'];
119858
+ type GetDiasflowProductsResponse = paths[typeof routeName$4x]['get']['responses'][200]['content']['application/json'];
119859
+ type GetDiasflowProductsProps = paths[typeof routeName$4x]['get']['parameters'];
119719
119860
  declare const getDiasflowProducts: (props: GetDiasflowProductsProps, wgApiClient: ClientType) => Promise<GetDiasflowProductsResponse>;
119720
119861
 
119721
- declare const routeName$4v = "/v1/api/diasflows/products/import";
119722
- type ImportDiasflowProductBody = paths[typeof routeName$4v]['post']['requestBody']['content']['application/json'];
119723
- type ImportDiasflowProductQueryParams = paths[typeof routeName$4v]['post']['parameters']['query'];
119724
- type ImportDiasflowProductResponse = paths[typeof routeName$4v]['post']['responses'][200]['content']['application/json'];
119862
+ declare const routeName$4w = "/v1/api/diasflows/products/import";
119863
+ type ImportDiasflowProductBody = paths[typeof routeName$4w]['post']['requestBody']['content']['application/json'];
119864
+ type ImportDiasflowProductQueryParams = paths[typeof routeName$4w]['post']['parameters']['query'];
119865
+ type ImportDiasflowProductResponse = paths[typeof routeName$4w]['post']['responses'][200]['content']['application/json'];
119725
119866
  interface ImportDiasflowProductProps {
119726
119867
  body: ImportDiasflowProductBody;
119727
119868
  params: {
@@ -119730,18 +119871,18 @@ interface ImportDiasflowProductProps {
119730
119871
  }
119731
119872
  declare const importDiasflowProduct: (props: ImportDiasflowProductProps, wgApiClient: ClientType) => Promise<ImportDiasflowProductResponse>;
119732
119873
 
119733
- declare const routeName$4u = "/v1/api/diasflows/products/{product_id}";
119734
- type GetDiasflowProductByIdPathParams = paths[typeof routeName$4u]['get']['parameters']['path'];
119735
- type GetDiasflowProductByIdQueryParams = paths[typeof routeName$4u]['get']['parameters']['query'];
119736
- type GetDiasflowProductByIdResponse = paths[typeof routeName$4u]['get']['responses'][200]['content']['application/json'];
119737
- type GetDiasflowProductByIdProps = paths[typeof routeName$4u]['get']['parameters'];
119874
+ declare const routeName$4v = "/v1/api/diasflows/products/{product_id}";
119875
+ type GetDiasflowProductByIdPathParams = paths[typeof routeName$4v]['get']['parameters']['path'];
119876
+ type GetDiasflowProductByIdQueryParams = paths[typeof routeName$4v]['get']['parameters']['query'];
119877
+ type GetDiasflowProductByIdResponse = paths[typeof routeName$4v]['get']['responses'][200]['content']['application/json'];
119878
+ type GetDiasflowProductByIdProps = paths[typeof routeName$4v]['get']['parameters'];
119738
119879
  declare const getDiasflowProductById: (props: GetDiasflowProductByIdProps, wgApiClient: ClientType) => Promise<GetDiasflowProductByIdResponse>;
119739
119880
 
119740
- declare const routeName$4t = "/v1/api/diasflows/products/{product_id}";
119741
- type PatchDiasflowProductByIdBody = paths[typeof routeName$4t]['patch']['requestBody']['content']['application/json'];
119742
- type PatchDiasflowProductByIdPathParams = paths[typeof routeName$4t]['patch']['parameters']['path'];
119743
- type PatchDiasflowProductByIdQueryParams = paths[typeof routeName$4t]['patch']['parameters']['query'];
119744
- type PatchDiasflowProductByIdResponse = paths[typeof routeName$4t]['patch']['responses'][200]['content']['application/json'];
119881
+ declare const routeName$4u = "/v1/api/diasflows/products/{product_id}";
119882
+ type PatchDiasflowProductByIdBody = paths[typeof routeName$4u]['patch']['requestBody']['content']['application/json'];
119883
+ type PatchDiasflowProductByIdPathParams = paths[typeof routeName$4u]['patch']['parameters']['path'];
119884
+ type PatchDiasflowProductByIdQueryParams = paths[typeof routeName$4u]['patch']['parameters']['query'];
119885
+ type PatchDiasflowProductByIdResponse = paths[typeof routeName$4u]['patch']['responses'][200]['content']['application/json'];
119745
119886
  interface PatchDiasflowProductByIdProps {
119746
119887
  body: PatchDiasflowProductByIdBody;
119747
119888
  params: {
@@ -119751,11 +119892,11 @@ interface PatchDiasflowProductByIdProps {
119751
119892
  }
119752
119893
  declare const patchDiasflowProductById: (props: PatchDiasflowProductByIdProps, wgApiClient: ClientType) => Promise<PatchDiasflowProductByIdResponse>;
119753
119894
 
119754
- declare const routeName$4s = "/v1/api/diasflows/products/{product_id}/coverages/{coverage_id}";
119755
- type PatchDiasflowProductCoverageByIdBody = paths[typeof routeName$4s]['patch']['requestBody']['content']['application/json'];
119756
- type PatchDiasflowProductCoverageByIdPathParams = paths[typeof routeName$4s]['patch']['parameters']['path'];
119757
- type PatchDiasflowProductCoverageByIdQueryParams = paths[typeof routeName$4s]['patch']['parameters']['query'];
119758
- type PatchDiasflowProductCoverageByIdResponse = paths[typeof routeName$4s]['patch']['responses'][200]['content']['application/json'];
119895
+ declare const routeName$4t = "/v1/api/diasflows/products/{product_id}/coverages/{coverage_id}";
119896
+ type PatchDiasflowProductCoverageByIdBody = paths[typeof routeName$4t]['patch']['requestBody']['content']['application/json'];
119897
+ type PatchDiasflowProductCoverageByIdPathParams = paths[typeof routeName$4t]['patch']['parameters']['path'];
119898
+ type PatchDiasflowProductCoverageByIdQueryParams = paths[typeof routeName$4t]['patch']['parameters']['query'];
119899
+ type PatchDiasflowProductCoverageByIdResponse = paths[typeof routeName$4t]['patch']['responses'][200]['content']['application/json'];
119759
119900
  interface PatchDiasflowProductCoverageByIdProps {
119760
119901
  body: PatchDiasflowProductCoverageByIdBody;
119761
119902
  params: {
@@ -119765,18 +119906,18 @@ interface PatchDiasflowProductCoverageByIdProps {
119765
119906
  }
119766
119907
  declare const patchDiasflowProductCoverageById: (props: PatchDiasflowProductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchDiasflowProductCoverageByIdResponse>;
119767
119908
 
119768
- declare const routeName$4r = "/v1/api/diasflows/products/{product_id}/questionnaires";
119769
- type RetrieveDiasQuestionnairesPathParams = paths[typeof routeName$4r]['get']['parameters']['path'];
119770
- type RetrieveDiasQuestionnairesQueryParams = paths[typeof routeName$4r]['get']['parameters']['query'];
119771
- type RetrieveDiasQuestionnairesResponse = paths[typeof routeName$4r]['get']['responses'][200]['content']['application/json'];
119772
- type RetrieveDiasQuestionnairesProps = paths[typeof routeName$4r]['get']['parameters'];
119909
+ declare const routeName$4s = "/v1/api/diasflows/products/{product_id}/questionnaires";
119910
+ type RetrieveDiasQuestionnairesPathParams = paths[typeof routeName$4s]['get']['parameters']['path'];
119911
+ type RetrieveDiasQuestionnairesQueryParams = paths[typeof routeName$4s]['get']['parameters']['query'];
119912
+ type RetrieveDiasQuestionnairesResponse = paths[typeof routeName$4s]['get']['responses'][200]['content']['application/json'];
119913
+ type RetrieveDiasQuestionnairesProps = paths[typeof routeName$4s]['get']['parameters'];
119773
119914
  declare const retrieveDiasQuestionnaires: (props: RetrieveDiasQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveDiasQuestionnairesResponse>;
119774
119915
 
119775
- declare const routeName$4q = "/v1/api/diasflows/products/{product_id}/questionnaires";
119776
- type UpdateDiasQuestionnaireBody = paths[typeof routeName$4q]['put']['requestBody']['content']['application/json'];
119777
- type UpdateDiasQuestionnairePathParams = paths[typeof routeName$4q]['put']['parameters']['path'];
119778
- type UpdateDiasQuestionnaireQueryParams = paths[typeof routeName$4q]['put']['parameters']['query'];
119779
- type UpdateDiasQuestionnaireResponse = paths[typeof routeName$4q]['put']['responses'][200]['content']['application/json'];
119916
+ declare const routeName$4r = "/v1/api/diasflows/products/{product_id}/questionnaires";
119917
+ type UpdateDiasQuestionnaireBody = paths[typeof routeName$4r]['put']['requestBody']['content']['application/json'];
119918
+ type UpdateDiasQuestionnairePathParams = paths[typeof routeName$4r]['put']['parameters']['path'];
119919
+ type UpdateDiasQuestionnaireQueryParams = paths[typeof routeName$4r]['put']['parameters']['query'];
119920
+ type UpdateDiasQuestionnaireResponse = paths[typeof routeName$4r]['put']['responses'][200]['content']['application/json'];
119780
119921
  interface UpdateDiasQuestionnaireProps {
119781
119922
  body: UpdateDiasQuestionnaireBody;
119782
119923
  params: {
@@ -119786,11 +119927,11 @@ interface UpdateDiasQuestionnaireProps {
119786
119927
  }
119787
119928
  declare const updateDiasQuestionnaire: (props: UpdateDiasQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateDiasQuestionnaireResponse>;
119788
119929
 
119789
- declare const routeName$4p = "/v1/api/diasflows/products/{product_id}/questionnaires/validate";
119790
- type ValidateDiasQuestionnaireBody = paths[typeof routeName$4p]['post']['requestBody']['content']['application/json'];
119791
- type ValidateDiasQuestionnairePathParams = paths[typeof routeName$4p]['post']['parameters']['path'];
119792
- type ValidateDiasQuestionnaireQueryParams = paths[typeof routeName$4p]['post']['parameters']['query'];
119793
- type ValidateDiasQuestionnaireResponse = paths[typeof routeName$4p]['post']['responses'][200]['content']['application/json'];
119930
+ declare const routeName$4q = "/v1/api/diasflows/products/{product_id}/questionnaires/validate";
119931
+ type ValidateDiasQuestionnaireBody = paths[typeof routeName$4q]['post']['requestBody']['content']['application/json'];
119932
+ type ValidateDiasQuestionnairePathParams = paths[typeof routeName$4q]['post']['parameters']['path'];
119933
+ type ValidateDiasQuestionnaireQueryParams = paths[typeof routeName$4q]['post']['parameters']['query'];
119934
+ type ValidateDiasQuestionnaireResponse = paths[typeof routeName$4q]['post']['responses'][200]['content']['application/json'];
119794
119935
  interface ValidateDiasQuestionnaireProps {
119795
119936
  body: ValidateDiasQuestionnaireBody;
119796
119937
  params: {
@@ -119800,18 +119941,18 @@ interface ValidateDiasQuestionnaireProps {
119800
119941
  }
119801
119942
  declare const validateDiasQuestionnaire: (props: ValidateDiasQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateDiasQuestionnaireResponse>;
119802
119943
 
119803
- declare const routeName$4o = "/v1/api/diasflows/conversations/{session_id}/collection-methods";
119804
- type GetDiasCollectionMethodsPathParams = paths[typeof routeName$4o]['get']['parameters']['path'];
119805
- type GetDiasCollectionMethodsQueryParams = paths[typeof routeName$4o]['get']['parameters']['query'];
119806
- type GetDiasCollectionMethodsResponse = paths[typeof routeName$4o]['get']['responses'][200]['content']['application/json'];
119807
- type GetDiasCollectionMethodsProps = paths[typeof routeName$4o]['get']['parameters'];
119944
+ declare const routeName$4p = "/v1/api/diasflows/conversations/{session_id}/collection-methods";
119945
+ type GetDiasCollectionMethodsPathParams = paths[typeof routeName$4p]['get']['parameters']['path'];
119946
+ type GetDiasCollectionMethodsQueryParams = paths[typeof routeName$4p]['get']['parameters']['query'];
119947
+ type GetDiasCollectionMethodsResponse = paths[typeof routeName$4p]['get']['responses'][200]['content']['application/json'];
119948
+ type GetDiasCollectionMethodsProps = paths[typeof routeName$4p]['get']['parameters'];
119808
119949
  declare const getDiasCollectionMethods: (props: GetDiasCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetDiasCollectionMethodsResponse>;
119809
119950
 
119810
- declare const routeName$4n = "/v1/api/diasflows/conversations/{session_id}/calculate";
119811
- type CalculateDiasQuotesBySessionIdBody = paths[typeof routeName$4n]['post']['requestBody']['content']['application/json'];
119812
- type CalculateDiasQuotesBySessionIdPathParams = paths[typeof routeName$4n]['post']['parameters']['path'];
119813
- type CalculateDiasQuotesBySessionIdQueryParams = paths[typeof routeName$4n]['post']['parameters']['query'];
119814
- type CalculateDiasQuotesBySessionIdResponse = paths[typeof routeName$4n]['post']['responses'][200]['content']['application/json'];
119951
+ declare const routeName$4o = "/v1/api/diasflows/conversations/{session_id}/calculate";
119952
+ type CalculateDiasQuotesBySessionIdBody = paths[typeof routeName$4o]['post']['requestBody']['content']['application/json'];
119953
+ type CalculateDiasQuotesBySessionIdPathParams = paths[typeof routeName$4o]['post']['parameters']['path'];
119954
+ type CalculateDiasQuotesBySessionIdQueryParams = paths[typeof routeName$4o]['post']['parameters']['query'];
119955
+ type CalculateDiasQuotesBySessionIdResponse = paths[typeof routeName$4o]['post']['responses'][200]['content']['application/json'];
119815
119956
  interface CalculateDiasQuotesBySessionIdProps {
119816
119957
  body: CalculateDiasQuotesBySessionIdBody;
119817
119958
  params: {
@@ -119821,11 +119962,11 @@ interface CalculateDiasQuotesBySessionIdProps {
119821
119962
  }
119822
119963
  declare const calculateDiasQuotesBySessionId: (props: CalculateDiasQuotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateDiasQuotesBySessionIdResponse>;
119823
119964
 
119824
- declare const routeName$4m = "/v1/api/diasflows/conversations/{session_id}/products/{product_id}/calculate";
119825
- type RecalculateDiasQuotesBySessionIdAndProductIdBody = paths[typeof routeName$4m]['post']['requestBody']['content']['application/json'];
119826
- type RecalculateDiasQuotesBySessionIdAndProductIdPathParams = paths[typeof routeName$4m]['post']['parameters']['path'];
119827
- type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams = paths[typeof routeName$4m]['post']['parameters']['query'];
119828
- type RecalculateDiasQuotesBySessionIdAndProductIdResponse = paths[typeof routeName$4m]['post']['responses'][200]['content']['application/json'];
119965
+ declare const routeName$4n = "/v1/api/diasflows/conversations/{session_id}/products/{product_id}/calculate";
119966
+ type RecalculateDiasQuotesBySessionIdAndProductIdBody = paths[typeof routeName$4n]['post']['requestBody']['content']['application/json'];
119967
+ type RecalculateDiasQuotesBySessionIdAndProductIdPathParams = paths[typeof routeName$4n]['post']['parameters']['path'];
119968
+ type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams = paths[typeof routeName$4n]['post']['parameters']['query'];
119969
+ type RecalculateDiasQuotesBySessionIdAndProductIdResponse = paths[typeof routeName$4n]['post']['responses'][200]['content']['application/json'];
119829
119970
  interface RecalculateDiasQuotesBySessionIdAndProductIdProps {
119830
119971
  body: RecalculateDiasQuotesBySessionIdAndProductIdBody;
119831
119972
  params: {
@@ -119835,11 +119976,11 @@ interface RecalculateDiasQuotesBySessionIdAndProductIdProps {
119835
119976
  }
119836
119977
  declare const recalculateDiasQuotesBySessionIdAndProductId: (props: RecalculateDiasQuotesBySessionIdAndProductIdProps, wgApiClient: ClientType) => Promise<RecalculateDiasQuotesBySessionIdAndProductIdResponse>;
119837
119978
 
119838
- declare const routeName$4l = "/v1/api/diasflows/conversations/{session_id}/recalculate-simulation";
119839
- type RecalculateDiasSimulationBySessionIdBody = paths[typeof routeName$4l]['post']['requestBody']['content']['application/json'];
119840
- type RecalculateDiasSimulationBySessionIdPathParams = paths[typeof routeName$4l]['post']['parameters']['path'];
119841
- type RecalculateDiasSimulationBySessionIdQueryParams = paths[typeof routeName$4l]['post']['parameters']['query'];
119842
- type RecalculateDiasSimulationBySessionIdResponse = paths[typeof routeName$4l]['post']['responses'][200]['content']['application/json'];
119979
+ declare const routeName$4m = "/v1/api/diasflows/conversations/{session_id}/recalculate-simulation";
119980
+ type RecalculateDiasSimulationBySessionIdBody = paths[typeof routeName$4m]['post']['requestBody']['content']['application/json'];
119981
+ type RecalculateDiasSimulationBySessionIdPathParams = paths[typeof routeName$4m]['post']['parameters']['path'];
119982
+ type RecalculateDiasSimulationBySessionIdQueryParams = paths[typeof routeName$4m]['post']['parameters']['query'];
119983
+ type RecalculateDiasSimulationBySessionIdResponse = paths[typeof routeName$4m]['post']['responses'][200]['content']['application/json'];
119843
119984
  interface RecalculateDiasSimulationBySessionIdProps {
119844
119985
  body: RecalculateDiasSimulationBySessionIdBody;
119845
119986
  params: {
@@ -119849,6 +119990,20 @@ interface RecalculateDiasSimulationBySessionIdProps {
119849
119990
  }
119850
119991
  declare const recalculateDiasSimulationBySessionId: (props: RecalculateDiasSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateDiasSimulationBySessionIdResponse>;
119851
119992
 
119993
+ declare const routeName$4l = "/v1/api/diasflows/conversations/{session_id}/contact-person";
119994
+ type CreateDiasContactPersonBody = paths[typeof routeName$4l]['post']['requestBody']['content']['application/json'];
119995
+ type CreateDiasContactPersonPathParams = paths[typeof routeName$4l]['post']['parameters']['path'];
119996
+ type CreateDiasContactPersonQueryParams = paths[typeof routeName$4l]['post']['parameters']['query'];
119997
+ type CreateDiasContactPersonResponse = paths[typeof routeName$4l]['post']['responses'][201]['content']['application/json'];
119998
+ interface CreateDiasContactPersonProps {
119999
+ body: CreateDiasContactPersonBody;
120000
+ params: {
120001
+ query: CreateDiasContactPersonQueryParams;
120002
+ path: CreateDiasContactPersonPathParams;
120003
+ };
120004
+ }
120005
+ declare const createDiasContactPerson: (props: CreateDiasContactPersonProps, wgApiClient: ClientType) => Promise<CreateDiasContactPersonResponse>;
120006
+
119852
120007
  declare const routeName$4k = "/v1/api/distributions/{distribution_id}/themes";
119853
120008
  type HandleCreateDistributionThemeBody = paths[typeof routeName$4k]['post']['requestBody']['content']['application/json'];
119854
120009
  type HandleCreateDistributionThemeQueryParams = paths[typeof routeName$4k]['post']['parameters']['query'];
@@ -122371,4 +122526,4 @@ interface ValidateYellowhiveQuestionnaireProps {
122371
122526
  }
122372
122527
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
122373
122528
 
122374
- export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, 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 CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type 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 Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type 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 PatchDiasflowProductCoverageByIdBody, type PatchDiasflowProductCoverageByIdPathParams, type PatchDiasflowProductCoverageByIdQueryParams, type PatchDiasflowProductCoverageByIdResponse, 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 SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type 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 SchemaCampaignCreateResponse, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasCalculationPackage, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type 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 SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type 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, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, 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, 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, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
122529
+ export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, 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 CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasContactPersonBody, type CreateDiasContactPersonPathParams, type CreateDiasContactPersonQueryParams, type CreateDiasContactPersonResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type 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 Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type 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 PatchDiasflowProductCoverageByIdBody, type PatchDiasflowProductCoverageByIdPathParams, type PatchDiasflowProductCoverageByIdQueryParams, type PatchDiasflowProductCoverageByIdResponse, 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 SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type 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 SchemaCampaignCreateResponse, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasContactPersonCreateCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasCalculationPackage, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasContactPersonParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type 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 SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type 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, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasContactPerson, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, 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, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };