wg-api-sdk 4.30.217 → 4.30.218

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.
@@ -4046,6 +4046,23 @@ interface paths {
4046
4046
  patch?: never;
4047
4047
  trace?: never;
4048
4048
  };
4049
+ "/v2/api/document-extractor/one/party": {
4050
+ parameters: {
4051
+ query?: never;
4052
+ header?: never;
4053
+ path?: never;
4054
+ cookie?: never;
4055
+ };
4056
+ get?: never;
4057
+ put?: never;
4058
+ /** Extract Party For One Document Enqueue */
4059
+ post: operations["extract_party_for_one_document_enqueue_v2_api_document_extractor_one_party_post"];
4060
+ delete?: never;
4061
+ options?: never;
4062
+ head?: never;
4063
+ patch?: never;
4064
+ trace?: never;
4065
+ };
4049
4066
  "/v1/api/document-extractor/entities/{entity_id}": {
4050
4067
  parameters: {
4051
4068
  query?: never;
@@ -8808,7 +8825,7 @@ interface components {
8808
8825
  * Timestamp
8809
8826
  * Format: date-time
8810
8827
  * @description Timestamp of when the error occured
8811
- * @default 2025-12-11T10:37:22.420703
8828
+ * @default 2025-12-12T15:07:40.006618
8812
8829
  */
8813
8830
  timestamp: string;
8814
8831
  /**
@@ -26297,6 +26314,12 @@ interface components {
26297
26314
  */
26298
26315
  name?: string;
26299
26316
  };
26317
+ /**
26318
+ * INSURANCE_CARRIER_TYPE
26319
+ * @description An enumeration.
26320
+ * @enum {unknown}
26321
+ */
26322
+ INSURANCE_CARRIER_TYPE: "REGIONAL" | "POOL_DISTRIBUTION" | "PERCENTAGE_DISTRIBUTION" | "AUTHORITY";
26300
26323
  /**
26301
26324
  * Insurance
26302
26325
  * @description To refactor!
@@ -32409,6 +32432,7 @@ interface components {
32409
32432
  anva_product_id?: string;
32410
32433
  /** Anva Product Ref */
32411
32434
  anva_product_ref?: string;
32435
+ carrier_type?: components["schemas"]["INSURANCE_CARRIER_TYPE"];
32412
32436
  /**
32413
32437
  * Yellowhive Product Id
32414
32438
  * Format: uuid
@@ -34314,6 +34338,7 @@ interface components {
34314
34338
  * Format: uuid
34315
34339
  */
34316
34340
  yellowhive_product_id?: string;
34341
+ carrier_type?: components["schemas"]["INSURANCE_CARRIER_TYPE"];
34317
34342
  /** Is Tailored Premium */
34318
34343
  is_tailored_premium?: boolean;
34319
34344
  /**
@@ -39800,6 +39825,7 @@ interface components {
39800
39825
  anva_product_id?: string;
39801
39826
  /** Anva Product Ref */
39802
39827
  anva_product_ref?: string;
39828
+ carrier_type?: components["schemas"]["INSURANCE_CARRIER_TYPE"];
39803
39829
  /**
39804
39830
  * Yellowhive Product Id
39805
39831
  * Format: uuid
@@ -49349,6 +49375,7 @@ interface components {
49349
49375
  anva_product_id?: string;
49350
49376
  /** Anva Product Ref */
49351
49377
  anva_product_ref?: string;
49378
+ carrier_type?: components["schemas"]["INSURANCE_CARRIER_TYPE"];
49352
49379
  /**
49353
49380
  * Yellowhive Product Id
49354
49381
  * Format: uuid
@@ -52830,7 +52857,7 @@ interface components {
52830
52857
  /**
52831
52858
  * Quote Specifications
52832
52859
  * @default {
52833
- * "contract_commencement_date": "2025-12-11"
52860
+ * "contract_commencement_date": "2025-12-12"
52834
52861
  * }
52835
52862
  */
52836
52863
  quote_specifications: components["schemas"]["QuoteSpecification"];
@@ -55845,7 +55872,7 @@ interface components {
55845
55872
  * @description An enumeration.
55846
55873
  * @enum {unknown}
55847
55874
  */
55848
- PaymentMethod: "TRANSFER" | "DIRECT_DEBIT" | "NONE";
55875
+ PaymentMethod: "DIRECT_DEBIT" | "INVOICE";
55849
55876
  /**
55850
55877
  * ThirdPartyConstructionWorkInsuranceType
55851
55878
  * @description An enumeration.
@@ -63388,6 +63415,11 @@ interface components {
63388
63415
  data: components["schemas"]["ExtractDocumentCmd"];
63389
63416
  auth: components["schemas"]["Auth"];
63390
63417
  };
63418
+ /** extract_singular_document_party_enqueue_params */
63419
+ extract_singular_document_party_enqueue_params: {
63420
+ data: components["schemas"]["ExtractDocumentCmd"];
63421
+ auth: components["schemas"]["Auth"];
63422
+ };
63391
63423
  /** anva_customer_inquiry_params */
63392
63424
  anva_customer_inquiry_params: {
63393
63425
  auth: components["schemas"]["Auth"];
@@ -69643,6 +69675,7 @@ type SchemaAppViewsModelsRiskObjectLink = components['schemas']['app__views__mod
69643
69675
  type SchemaMinimalInsurancePolicyQueryModel = components['schemas']['MinimalInsurancePolicyQueryModel'];
69644
69676
  type SchemaInsurancePolicyType = components['schemas']['INSURANCE_POLICY_TYPE'];
69645
69677
  type SchemaMinimalCoverageQueryModel = components['schemas']['MinimalCoverageQueryModel'];
69678
+ type SchemaInsuranceCarrierType = components['schemas']['INSURANCE_CARRIER_TYPE'];
69646
69679
  type SchemaAppModelsOfferInsurance = components['schemas']['app__models__offer__Insurance'];
69647
69680
  type SchemaPremiumQueryModel = components['schemas']['PremiumQueryModel'];
69648
69681
  type SchemaFranchiseQueryModel = components['schemas']['FranchiseQueryModel'];
@@ -70572,6 +70605,7 @@ type SchemaExtractSingularDocumentEnqueueParams = components['schemas']['extract
70572
70605
  type SchemaSingularityJobQueuedResponse = components['schemas']['SingularityJobQueuedResponse'];
70573
70606
  type SchemaExtractSingularDocumentOffersEnqueueParams = components['schemas']['extract_singular_document_offers_enqueue_params'];
70574
70607
  type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams = components['schemas']['extract_singular_document_insurance_policies_enqueue_params'];
70608
+ type SchemaExtractSingularDocumentPartyEnqueueParams = components['schemas']['extract_singular_document_party_enqueue_params'];
70575
70609
  type SchemaAnvaCustomerInquiryParams = components['schemas']['anva_customer_inquiry_params'];
70576
70610
  type SchemaStatusReply = components['schemas']['StatusReply'];
70577
70611
  type SchemaAnvaInquiry = components['schemas']['AnvaInquiry'];
@@ -92955,6 +92989,87 @@ interface operations {
92955
92989
  };
92956
92990
  };
92957
92991
  };
92992
+ extract_party_for_one_document_enqueue_v2_api_document_extractor_one_party_post: {
92993
+ parameters: {
92994
+ query?: never;
92995
+ header?: {
92996
+ /** @description Which release to target running in 'STAGING' environment. */
92997
+ "x-release"?: string;
92998
+ };
92999
+ path?: never;
93000
+ cookie?: never;
93001
+ };
93002
+ requestBody: {
93003
+ content: {
93004
+ "application/json": components["schemas"]["extract_singular_document_party_enqueue_params"]["data"];
93005
+ };
93006
+ };
93007
+ responses: {
93008
+ /** @description Successful Response */
93009
+ 201: {
93010
+ headers: {
93011
+ [name: string]: unknown;
93012
+ };
93013
+ content: {
93014
+ "application/json": components["schemas"]["SingularityJobQueuedResponse"];
93015
+ };
93016
+ };
93017
+ /** @description Bad Request */
93018
+ 400: {
93019
+ headers: {
93020
+ [name: string]: unknown;
93021
+ };
93022
+ content: {
93023
+ "application/json": components["schemas"]["Error_4XX"];
93024
+ };
93025
+ };
93026
+ /** @description Unauthorized */
93027
+ 401: {
93028
+ headers: {
93029
+ [name: string]: unknown;
93030
+ };
93031
+ content: {
93032
+ "application/json": components["schemas"]["Error_401"];
93033
+ };
93034
+ };
93035
+ /** @description Forbidden */
93036
+ 403: {
93037
+ headers: {
93038
+ [name: string]: unknown;
93039
+ };
93040
+ content: {
93041
+ "application/json": components["schemas"]["Error_403"];
93042
+ };
93043
+ };
93044
+ /** @description Unprocessable Content */
93045
+ 422: {
93046
+ headers: {
93047
+ [name: string]: unknown;
93048
+ };
93049
+ content: {
93050
+ "application/json": components["schemas"]["Error_422"];
93051
+ };
93052
+ };
93053
+ /** @description Too Many Requests */
93054
+ 429: {
93055
+ headers: {
93056
+ [name: string]: unknown;
93057
+ };
93058
+ content: {
93059
+ "application/json": components["schemas"]["Error_429"];
93060
+ };
93061
+ };
93062
+ /** @description Internal Server Error */
93063
+ 500: {
93064
+ headers: {
93065
+ [name: string]: unknown;
93066
+ };
93067
+ content: {
93068
+ "application/json": components["schemas"]["ServerError"];
93069
+ };
93070
+ };
93071
+ };
93072
+ };
92958
93073
  get_extract_enity_info_v1_api_document_extractor_entities__entity_id__get: {
92959
93074
  parameters: {
92960
93075
  query?: never;
@@ -115064,52 +115179,52 @@ type Middleware = Middleware$1;
115064
115179
  type ClientType = ReturnType<typeof createClient<paths>>;
115065
115180
  declare const wgApiClient: (options: ClientOptions) => ClientType;
115066
115181
 
115067
- declare const routeName$7v = "/v1/api/weather/info";
115068
- type GetWeatherInfoQueryParams = paths[typeof routeName$7v]['get']['parameters']['query'];
115069
- type GetWeatherInfoResponse = paths[typeof routeName$7v]['get']['responses'][200]['content']['application/json'];
115070
- type GetWeatherInfoProps = paths[typeof routeName$7v]['get']['parameters'];
115182
+ declare const routeName$7w = "/v1/api/weather/info";
115183
+ type GetWeatherInfoQueryParams = paths[typeof routeName$7w]['get']['parameters']['query'];
115184
+ type GetWeatherInfoResponse = paths[typeof routeName$7w]['get']['responses'][200]['content']['application/json'];
115185
+ type GetWeatherInfoProps = paths[typeof routeName$7w]['get']['parameters'];
115071
115186
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
115072
115187
 
115073
- declare const routeName$7u = "/v1/api/address/cities";
115074
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
115075
- type SearchCitiesByCountryResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
115076
- type SearchCitiesByCountryProps = paths[typeof routeName$7u]['get']['parameters'];
115188
+ declare const routeName$7v = "/v1/api/address/cities";
115189
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$7v]['get']['parameters']['query'];
115190
+ type SearchCitiesByCountryResponse = paths[typeof routeName$7v]['get']['responses'][200]['content']['application/json'];
115191
+ type SearchCitiesByCountryProps = paths[typeof routeName$7v]['get']['parameters'];
115077
115192
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
115078
115193
 
115079
- declare const routeName$7t = "/v1/api/address/streets";
115080
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7t]['get']['parameters']['query'];
115081
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7t]['get']['responses'][200]['content']['application/json'];
115082
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7t]['get']['parameters'];
115194
+ declare const routeName$7u = "/v1/api/address/streets";
115195
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7u]['get']['parameters']['query'];
115196
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7u]['get']['responses'][200]['content']['application/json'];
115197
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7u]['get']['parameters'];
115083
115198
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
115084
115199
 
115085
- declare const routeName$7s = "/v1/api/address/search";
115086
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
115087
- type SearchAddressesByCountryResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
115088
- type SearchAddressesByCountryProps = paths[typeof routeName$7s]['get']['parameters'];
115200
+ declare const routeName$7t = "/v1/api/address/search";
115201
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$7t]['get']['parameters']['query'];
115202
+ type SearchAddressesByCountryResponse = paths[typeof routeName$7t]['get']['responses'][200]['content']['application/json'];
115203
+ type SearchAddressesByCountryProps = paths[typeof routeName$7t]['get']['parameters'];
115089
115204
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
115090
115205
 
115091
- declare const routeName$7r = "/v1/api/address/info/premium";
115092
- type GetAddressInfoQueryParams = paths[typeof routeName$7r]['get']['parameters']['query'];
115093
- type GetAddressInfoResponse = paths[typeof routeName$7r]['get']['responses'][200]['content']['application/json'];
115094
- type GetAddressInfoProps = paths[typeof routeName$7r]['get']['parameters'];
115206
+ declare const routeName$7s = "/v1/api/address/info/premium";
115207
+ type GetAddressInfoQueryParams = paths[typeof routeName$7s]['get']['parameters']['query'];
115208
+ type GetAddressInfoResponse = paths[typeof routeName$7s]['get']['responses'][200]['content']['application/json'];
115209
+ type GetAddressInfoProps = paths[typeof routeName$7s]['get']['parameters'];
115095
115210
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
115096
115211
 
115097
- declare const routeName$7q = "/v1/api/address/info/freemium";
115098
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7q]['get']['parameters']['query'];
115099
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$7q]['get']['responses'][200]['content']['application/json'];
115100
- type GetAddressInfoFreemiumProps = paths[typeof routeName$7q]['get']['parameters'];
115212
+ declare const routeName$7r = "/v1/api/address/info/freemium";
115213
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7r]['get']['parameters']['query'];
115214
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$7r]['get']['responses'][200]['content']['application/json'];
115215
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$7r]['get']['parameters'];
115101
115216
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
115102
115217
 
115103
- declare const routeName$7p = "/v1/api/advisory-reports";
115104
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7p]['get']['parameters']['query'];
115105
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$7p]['get']['responses'][200]['content']['application/json'];
115106
- type GetAllAdvisoryReportsProps = paths[typeof routeName$7p]['get']['parameters'];
115218
+ declare const routeName$7q = "/v1/api/advisory-reports";
115219
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7q]['get']['parameters']['query'];
115220
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$7q]['get']['responses'][200]['content']['application/json'];
115221
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$7q]['get']['parameters'];
115107
115222
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
115108
115223
 
115109
- declare const routeName$7o = "/v1/api/advisory-reports";
115110
- type CreateAdvisoryReportBody = paths[typeof routeName$7o]['post']['requestBody']['content']['application/json'];
115111
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$7o]['post']['parameters']['query'];
115112
- type CreateAdvisoryReportResponse = paths[typeof routeName$7o]['post']['responses'][201]['content']['application/json'];
115224
+ declare const routeName$7p = "/v1/api/advisory-reports";
115225
+ type CreateAdvisoryReportBody = paths[typeof routeName$7p]['post']['requestBody']['content']['application/json'];
115226
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$7p]['post']['parameters']['query'];
115227
+ type CreateAdvisoryReportResponse = paths[typeof routeName$7p]['post']['responses'][201]['content']['application/json'];
115113
115228
  interface CreateAdvisoryReportProps {
115114
115229
  body: CreateAdvisoryReportBody;
115115
115230
  params: {
@@ -115118,17 +115233,17 @@ interface CreateAdvisoryReportProps {
115118
115233
  }
115119
115234
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
115120
115235
 
115121
- declare const routeName$7n = "/v1/api/advisory-reports/{report_id}";
115122
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7n]['get']['parameters']['path'];
115123
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7n]['get']['parameters']['query'];
115124
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7n]['get']['responses'][200]['content']['application/json'];
115125
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7n]['get']['parameters'];
115236
+ declare const routeName$7o = "/v1/api/advisory-reports/{report_id}";
115237
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['get']['parameters']['path'];
115238
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['get']['parameters']['query'];
115239
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7o]['get']['responses'][200]['content']['application/json'];
115240
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7o]['get']['parameters'];
115126
115241
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
115127
115242
 
115128
- declare const routeName$7m = "/v1/api/advisory-reports/{report_id}";
115129
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7m]['delete']['parameters']['path'];
115130
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7m]['delete']['parameters']['query'];
115131
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7m]['delete']['responses'][200]['content']['application/json'];
115243
+ declare const routeName$7n = "/v1/api/advisory-reports/{report_id}";
115244
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7n]['delete']['parameters']['path'];
115245
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7n]['delete']['parameters']['query'];
115246
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7n]['delete']['responses'][200]['content']['application/json'];
115132
115247
  interface DeleteAdvisoryReportRevisionProps {
115133
115248
  params: {
115134
115249
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -115137,11 +115252,11 @@ interface DeleteAdvisoryReportRevisionProps {
115137
115252
  }
115138
115253
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
115139
115254
 
115140
- declare const routeName$7l = "/v1/api/advisory-reports/{report_id}";
115141
- type UpdateAdvisoryReportBody = paths[typeof routeName$7l]['patch']['requestBody']['content']['application/json'];
115142
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$7l]['patch']['parameters']['path'];
115143
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7l]['patch']['parameters']['query'];
115144
- type UpdateAdvisoryReportResponse = paths[typeof routeName$7l]['patch']['responses'][200]['content']['application/json'];
115255
+ declare const routeName$7m = "/v1/api/advisory-reports/{report_id}";
115256
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7m]['patch']['requestBody']['content']['application/json'];
115257
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7m]['patch']['parameters']['path'];
115258
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7m]['patch']['parameters']['query'];
115259
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7m]['patch']['responses'][200]['content']['application/json'];
115145
115260
  interface UpdateAdvisoryReportProps {
115146
115261
  body: UpdateAdvisoryReportBody;
115147
115262
  params: {
@@ -115151,18 +115266,18 @@ interface UpdateAdvisoryReportProps {
115151
115266
  }
115152
115267
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
115153
115268
 
115154
- declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/events";
115155
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7k]['get']['parameters']['path'];
115156
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7k]['get']['parameters']['query'];
115157
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
115158
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7k]['get']['parameters'];
115269
+ declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/events";
115270
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7l]['get']['parameters']['path'];
115271
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7l]['get']['parameters']['query'];
115272
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7l]['get']['responses'][200]['content']['application/json'];
115273
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7l]['get']['parameters'];
115159
115274
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
115160
115275
 
115161
- declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/email-inquiries";
115162
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$7j]['post']['requestBody']['content']['application/json'];
115163
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7j]['post']['parameters']['path'];
115164
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7j]['post']['parameters']['query'];
115165
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7j]['post']['responses'][201]['content']['application/json'];
115276
+ declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/email-inquiries";
115277
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$7k]['post']['requestBody']['content']['application/json'];
115278
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7k]['post']['parameters']['path'];
115279
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7k]['post']['parameters']['query'];
115280
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7k]['post']['responses'][201]['content']['application/json'];
115166
115281
  interface SendAdvisoryReportAsMailProps {
115167
115282
  body: SendAdvisoryReportAsMailBody;
115168
115283
  params: {
@@ -115172,10 +115287,10 @@ interface SendAdvisoryReportAsMailProps {
115172
115287
  }
115173
115288
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
115174
115289
 
115175
- declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/docx";
115176
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
115177
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
115178
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7i]['post']['responses'][200]['content']['application/json'];
115290
+ declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/docx";
115291
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7j]['post']['parameters']['path'];
115292
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7j]['post']['parameters']['query'];
115293
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7j]['post']['responses'][200]['content']['application/json'];
115179
115294
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
115180
115295
  params: {
115181
115296
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -115184,17 +115299,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
115184
115299
  }
115185
115300
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
115186
115301
 
115187
- declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/pdf";
115188
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['get']['parameters']['path'];
115189
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
115190
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7h]['get']['responses'][307]['content']['application/json'];
115191
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7h]['get']['parameters'];
115302
+ declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/pdf";
115303
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['get']['parameters']['path'];
115304
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
115305
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7i]['get']['responses'][307]['content']['application/json'];
115306
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7i]['get']['parameters'];
115192
115307
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
115193
115308
 
115194
- declare const routeName$7g = "/v1/api/advisory-reports/{report_id}/pdf";
115195
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7g]['post']['parameters']['path'];
115196
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7g]['post']['parameters']['query'];
115197
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7g]['post']['responses'][200]['content']['application/json'];
115309
+ declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/pdf";
115310
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['post']['parameters']['path'];
115311
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['post']['parameters']['query'];
115312
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7h]['post']['responses'][200]['content']['application/json'];
115198
115313
  interface GeneratePdfOfAdvisoryReportByIdProps {
115199
115314
  params: {
115200
115315
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -115203,10 +115318,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
115203
115318
  }
115204
115319
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
115205
115320
 
115206
- declare const routeName$7f = "/v1/api/advisory-report-front-page-pdf";
115207
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7f]['post']['requestBody']['content']['application/json'];
115208
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7f]['post']['parameters']['query'];
115209
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7f]['post']['responses'][201]['content']['application/json'];
115321
+ declare const routeName$7g = "/v1/api/advisory-report-front-page-pdf";
115322
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7g]['post']['requestBody']['content']['application/json'];
115323
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7g]['post']['parameters']['query'];
115324
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7g]['post']['responses'][201]['content']['application/json'];
115210
115325
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
115211
115326
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
115212
115327
  params: {
@@ -115215,11 +115330,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
115215
115330
  }
115216
115331
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
115217
115332
 
115218
- declare const routeName$7e = "/v1/api/advisory-reports/{report_id}/acceptances";
115219
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7e]['post']['requestBody']['content']['application/json'];
115220
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
115221
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
115222
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7e]['post']['responses'][200]['content']['application/json'];
115333
+ declare const routeName$7f = "/v1/api/advisory-reports/{report_id}/acceptances";
115334
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7f]['post']['requestBody']['content']['application/json'];
115335
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7f]['post']['parameters']['path'];
115336
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7f]['post']['parameters']['query'];
115337
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7f]['post']['responses'][200]['content']['application/json'];
115223
115338
  interface AcceptOrRejectAnAdvisoryReportProps {
115224
115339
  body: AcceptOrRejectAnAdvisoryReportBody;
115225
115340
  params: {
@@ -115229,11 +115344,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
115229
115344
  }
115230
115345
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
115231
115346
 
115232
- declare const routeName$7d = "/v1/api/advisory-reports/{report_id}/conversations";
115233
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7d]['post']['requestBody']['content']['application/json'];
115234
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7d]['post']['parameters']['path'];
115235
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7d]['post']['parameters']['query'];
115236
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7d]['post']['responses'][201]['content']['application/json'];
115347
+ declare const routeName$7e = "/v1/api/advisory-reports/{report_id}/conversations";
115348
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7e]['post']['requestBody']['content']['application/json'];
115349
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7e]['post']['parameters']['path'];
115350
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7e]['post']['parameters']['query'];
115351
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7e]['post']['responses'][201]['content']['application/json'];
115237
115352
  interface LinkConversationToAdvisoryReportProps {
115238
115353
  body: LinkConversationToAdvisoryReportBody;
115239
115354
  params: {
@@ -115243,11 +115358,11 @@ interface LinkConversationToAdvisoryReportProps {
115243
115358
  }
115244
115359
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
115245
115360
 
115246
- declare const routeName$7c = "/v2/api/advisory-reports/{report_id}/revisions";
115247
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7c]['post']['requestBody']['content']['application/json'];
115248
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7c]['post']['parameters']['path'];
115249
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7c]['post']['parameters']['query'];
115250
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7c]['post']['responses'][201]['content']['application/json'];
115361
+ declare const routeName$7d = "/v2/api/advisory-reports/{report_id}/revisions";
115362
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7d]['post']['requestBody']['content']['application/json'];
115363
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7d]['post']['parameters']['path'];
115364
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7d]['post']['parameters']['query'];
115365
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7d]['post']['responses'][201]['content']['application/json'];
115251
115366
  interface CreateAdvisoryReportRevisionV2Props {
115252
115367
  body: CreateAdvisoryReportRevisionV2Body;
115253
115368
  params: {
@@ -115257,11 +115372,11 @@ interface CreateAdvisoryReportRevisionV2Props {
115257
115372
  }
115258
115373
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
115259
115374
 
115260
- declare const routeName$7b = "/v1/api/advisory-reports/{report_id}/revisions";
115261
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7b]['post']['requestBody']['content']['application/json'];
115262
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7b]['post']['parameters']['path'];
115263
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7b]['post']['parameters']['query'];
115264
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7b]['post']['responses'][201]['content']['application/json'];
115375
+ declare const routeName$7c = "/v1/api/advisory-reports/{report_id}/revisions";
115376
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7c]['post']['requestBody']['content']['application/json'];
115377
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7c]['post']['parameters']['path'];
115378
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7c]['post']['parameters']['query'];
115379
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7c]['post']['responses'][201]['content']['application/json'];
115265
115380
  interface CreateAdvisoryReportRevisionProps {
115266
115381
  body: CreateAdvisoryReportRevisionBody;
115267
115382
  params: {
@@ -115271,10 +115386,10 @@ interface CreateAdvisoryReportRevisionProps {
115271
115386
  }
115272
115387
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
115273
115388
 
115274
- declare const routeName$7a = "/v2/api/advisory-reports/{report_id}";
115275
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$7a]['delete']['parameters']['path'];
115276
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7a]['delete']['parameters']['query'];
115277
- type DeleteAdvisoryReportResponse = paths[typeof routeName$7a]['delete']['responses'][200]['content']['application/json'];
115389
+ declare const routeName$7b = "/v2/api/advisory-reports/{report_id}";
115390
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$7b]['delete']['parameters']['path'];
115391
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7b]['delete']['parameters']['query'];
115392
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$7b]['delete']['responses'][200]['content']['application/json'];
115278
115393
  interface DeleteAdvisoryReportProps {
115279
115394
  params: {
115280
115395
  query: DeleteAdvisoryReportQueryParams;
@@ -115283,11 +115398,11 @@ interface DeleteAdvisoryReportProps {
115283
115398
  }
115284
115399
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
115285
115400
 
115286
- declare const routeName$79 = "/v1/api/advisory-reports/{report_id}/clauses";
115287
- type PutClausesForReportBody = paths[typeof routeName$79]['put']['requestBody']['content']['application/json'];
115288
- type PutClausesForReportPathParams = paths[typeof routeName$79]['put']['parameters']['path'];
115289
- type PutClausesForReportQueryParams = paths[typeof routeName$79]['put']['parameters']['query'];
115290
- type PutClausesForReportResponse = paths[typeof routeName$79]['put']['responses'][200]['content']['application/json'];
115401
+ declare const routeName$7a = "/v1/api/advisory-reports/{report_id}/clauses";
115402
+ type PutClausesForReportBody = paths[typeof routeName$7a]['put']['requestBody']['content']['application/json'];
115403
+ type PutClausesForReportPathParams = paths[typeof routeName$7a]['put']['parameters']['path'];
115404
+ type PutClausesForReportQueryParams = paths[typeof routeName$7a]['put']['parameters']['query'];
115405
+ type PutClausesForReportResponse = paths[typeof routeName$7a]['put']['responses'][200]['content']['application/json'];
115291
115406
  interface PutClausesForReportProps {
115292
115407
  body: PutClausesForReportBody;
115293
115408
  params: {
@@ -115297,9 +115412,9 @@ interface PutClausesForReportProps {
115297
115412
  }
115298
115413
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
115299
115414
 
115300
- declare const routeName$78 = "/v1/api/advisory-reports/{report_id}/personalise-advices";
115301
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
115302
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$78]['post']['responses'][200]['content']['application/json'];
115415
+ declare const routeName$79 = "/v1/api/advisory-reports/{report_id}/personalise-advices";
115416
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$79]['post']['parameters']['path'];
115417
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$79]['post']['responses'][200]['content']['application/json'];
115303
115418
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
115304
115419
  params: {
115305
115420
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -115307,18 +115422,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
115307
115422
  }
115308
115423
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
115309
115424
 
115310
- declare const routeName$77 = "/v1/api/advisory-reports/{report_id}/settings/steps";
115311
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$77]['get']['parameters']['path'];
115312
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$77]['get']['parameters']['query'];
115313
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
115314
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$77]['get']['parameters'];
115425
+ declare const routeName$78 = "/v1/api/advisory-reports/{report_id}/settings/steps";
115426
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$78]['get']['parameters']['path'];
115427
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
115428
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
115429
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$78]['get']['parameters'];
115315
115430
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
115316
115431
 
115317
- declare const routeName$76 = "/v1/api/advisory-reports/{report_id}/settings/steps";
115318
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$76]['put']['requestBody']['content']['application/json'];
115319
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$76]['put']['parameters']['path'];
115320
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$76]['put']['parameters']['query'];
115321
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$76]['put']['responses'][200]['content']['application/json'];
115432
+ declare const routeName$77 = "/v1/api/advisory-reports/{report_id}/settings/steps";
115433
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$77]['put']['requestBody']['content']['application/json'];
115434
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$77]['put']['parameters']['path'];
115435
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$77]['put']['parameters']['query'];
115436
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$77]['put']['responses'][200]['content']['application/json'];
115322
115437
  interface CreateAdvisoryReportStepSettingsProps {
115323
115438
  body: CreateAdvisoryReportStepSettingsBody;
115324
115439
  params: {
@@ -115328,11 +115443,11 @@ interface CreateAdvisoryReportStepSettingsProps {
115328
115443
  }
115329
115444
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
115330
115445
 
115331
- declare const routeName$75 = "/v1/api/advisory-reports/{report_id}/risk-domains";
115332
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$75]['post']['requestBody']['content']['application/json'];
115333
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
115334
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
115335
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$75]['post']['responses'][201]['content']['application/json'];
115446
+ declare const routeName$76 = "/v1/api/advisory-reports/{report_id}/risk-domains";
115447
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$76]['post']['requestBody']['content']['application/json'];
115448
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
115449
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
115450
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$76]['post']['responses'][201]['content']['application/json'];
115336
115451
  interface CreateRiskDomainForAdvisoryReportByIdProps {
115337
115452
  body: CreateRiskDomainForAdvisoryReportByIdBody;
115338
115453
  params: {
@@ -115342,10 +115457,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
115342
115457
  }
115343
115458
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
115344
115459
 
115345
- declare const routeName$74 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
115346
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$74]['delete']['parameters']['path'];
115347
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$74]['delete']['parameters']['query'];
115348
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$74]['delete']['responses'][200]['content']['application/json'];
115460
+ declare const routeName$75 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
115461
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$75]['delete']['parameters']['path'];
115462
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$75]['delete']['parameters']['query'];
115463
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$75]['delete']['responses'][200]['content']['application/json'];
115349
115464
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
115350
115465
  params: {
115351
115466
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -115354,11 +115469,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
115354
115469
  }
115355
115470
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
115356
115471
 
115357
- declare const routeName$73 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
115358
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$73]['post']['requestBody']['content']['application/json'];
115359
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$73]['post']['parameters']['path'];
115360
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$73]['post']['parameters']['query'];
115361
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$73]['post']['responses'][201]['content']['application/json'];
115472
+ declare const routeName$74 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
115473
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
115474
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
115475
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
115476
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$74]['post']['responses'][201]['content']['application/json'];
115362
115477
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
115363
115478
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
115364
115479
  params: {
@@ -115368,10 +115483,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
115368
115483
  }
115369
115484
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
115370
115485
 
115371
- declare const routeName$72 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
115372
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$72]['delete']['parameters']['path'];
115373
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$72]['delete']['parameters']['query'];
115374
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$72]['delete']['responses'][200]['content']['application/json'];
115486
+ declare const routeName$73 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
115487
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$73]['delete']['parameters']['path'];
115488
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$73]['delete']['parameters']['query'];
115489
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$73]['delete']['responses'][200]['content']['application/json'];
115375
115490
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
115376
115491
  params: {
115377
115492
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -115380,11 +115495,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
115380
115495
  }
115381
115496
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
115382
115497
 
115383
- declare const routeName$71 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
115384
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$71]['patch']['requestBody']['content']['application/json'];
115385
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$71]['patch']['parameters']['path'];
115386
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$71]['patch']['parameters']['query'];
115387
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$71]['patch']['responses'][201]['content']['application/json'];
115498
+ declare const routeName$72 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
115499
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$72]['patch']['requestBody']['content']['application/json'];
115500
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$72]['patch']['parameters']['path'];
115501
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$72]['patch']['parameters']['query'];
115502
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$72]['patch']['responses'][201]['content']['application/json'];
115388
115503
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
115389
115504
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
115390
115505
  params: {
@@ -115394,11 +115509,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
115394
115509
  }
115395
115510
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
115396
115511
 
115397
- declare const routeName$70 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
115398
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$70]['put']['requestBody']['content']['application/json'];
115399
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$70]['put']['parameters']['path'];
115400
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$70]['put']['parameters']['query'];
115401
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$70]['put']['responses'][201]['content']['application/json'];
115512
+ declare const routeName$71 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
115513
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$71]['put']['requestBody']['content']['application/json'];
115514
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$71]['put']['parameters']['path'];
115515
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$71]['put']['parameters']['query'];
115516
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$71]['put']['responses'][201]['content']['application/json'];
115402
115517
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
115403
115518
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
115404
115519
  params: {
@@ -115408,11 +115523,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
115408
115523
  }
115409
115524
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
115410
115525
 
115411
- declare const routeName$6$ = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
115412
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
115413
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
115414
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
115415
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
115526
+ declare const routeName$70 = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
115527
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
115528
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$70]['post']['parameters']['path'];
115529
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
115530
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$70]['post']['responses'][201]['content']['application/json'];
115416
115531
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
115417
115532
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
115418
115533
  params: {
@@ -115422,10 +115537,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
115422
115537
  }
115423
115538
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
115424
115539
 
115425
- declare const routeName$6_ = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
115426
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6_]['delete']['parameters']['path'];
115427
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6_]['delete']['parameters']['query'];
115428
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6_]['delete']['responses'][200]['content']['application/json'];
115540
+ declare const routeName$6$ = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
115541
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6$]['delete']['parameters']['path'];
115542
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6$]['delete']['parameters']['query'];
115543
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6$]['delete']['responses'][200]['content']['application/json'];
115429
115544
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
115430
115545
  params: {
115431
115546
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -115434,11 +115549,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
115434
115549
  }
115435
115550
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
115436
115551
 
115437
- declare const routeName$6Z = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
115438
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6Z]['patch']['requestBody']['content']['application/json'];
115439
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6Z]['patch']['parameters']['path'];
115440
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Z]['patch']['parameters']['query'];
115441
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6Z]['patch']['responses'][200]['content']['application/json'];
115552
+ declare const routeName$6_ = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
115553
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6_]['patch']['requestBody']['content']['application/json'];
115554
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6_]['patch']['parameters']['path'];
115555
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6_]['patch']['parameters']['query'];
115556
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6_]['patch']['responses'][200]['content']['application/json'];
115442
115557
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
115443
115558
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
115444
115559
  params: {
@@ -115448,11 +115563,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
115448
115563
  }
115449
115564
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
115450
115565
 
115451
- declare const routeName$6Y = "/v1/api/advisory-reports/{report_id}/insurance-policies";
115452
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6Y]['put']['requestBody']['content']['application/json'];
115453
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6Y]['put']['parameters']['path'];
115454
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Y]['put']['parameters']['query'];
115455
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6Y]['put']['responses'][200]['content']['application/json'];
115566
+ declare const routeName$6Z = "/v1/api/advisory-reports/{report_id}/insurance-policies";
115567
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6Z]['put']['requestBody']['content']['application/json'];
115568
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6Z]['put']['parameters']['path'];
115569
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Z]['put']['parameters']['query'];
115570
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6Z]['put']['responses'][200]['content']['application/json'];
115456
115571
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
115457
115572
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
115458
115573
  params: {
@@ -115462,10 +115577,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
115462
115577
  }
115463
115578
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
115464
115579
 
115465
- declare const routeName$6X = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
115466
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6X]['delete']['parameters']['path'];
115467
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6X]['delete']['parameters']['query'];
115468
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6X]['delete']['responses'][200]['content']['application/json'];
115580
+ declare const routeName$6Y = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
115581
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6Y]['delete']['parameters']['path'];
115582
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Y]['delete']['parameters']['query'];
115583
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6Y]['delete']['responses'][200]['content']['application/json'];
115469
115584
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
115470
115585
  params: {
115471
115586
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -115474,11 +115589,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
115474
115589
  }
115475
115590
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
115476
115591
 
115477
- declare const routeName$6W = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
115478
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6W]['put']['requestBody']['content']['application/json'];
115479
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6W]['put']['parameters']['path'];
115480
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6W]['put']['parameters']['query'];
115481
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6W]['put']['responses'][200]['content']['application/json'];
115592
+ declare const routeName$6X = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
115593
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6X]['put']['requestBody']['content']['application/json'];
115594
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6X]['put']['parameters']['path'];
115595
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6X]['put']['parameters']['query'];
115596
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6X]['put']['responses'][200]['content']['application/json'];
115482
115597
  interface OrderInsurancePolciesOfAdvisoryReportProps {
115483
115598
  body: OrderInsurancePolciesOfAdvisoryReportBody;
115484
115599
  params: {
@@ -115488,11 +115603,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
115488
115603
  }
115489
115604
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
115490
115605
 
115491
- declare const routeName$6V = "/v1/api/advisory-reports/{report_id}/policy-packages";
115492
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6V]['put']['requestBody']['content']['application/json'];
115493
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6V]['put']['parameters']['path'];
115494
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6V]['put']['parameters']['query'];
115495
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6V]['put']['responses'][200]['content']['application/json'];
115606
+ declare const routeName$6W = "/v1/api/advisory-reports/{report_id}/policy-packages";
115607
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6W]['put']['requestBody']['content']['application/json'];
115608
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6W]['put']['parameters']['path'];
115609
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6W]['put']['parameters']['query'];
115610
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6W]['put']['responses'][200]['content']['application/json'];
115496
115611
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
115497
115612
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
115498
115613
  params: {
@@ -115502,39 +115617,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
115502
115617
  }
115503
115618
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
115504
115619
 
115505
- declare const routeName$6U = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
115506
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6U]['get']['parameters']['path'];
115507
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
115508
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
115509
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6U]['get']['parameters'];
115620
+ declare const routeName$6V = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
115621
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6V]['get']['parameters']['path'];
115622
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6V]['get']['parameters']['query'];
115623
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6V]['get']['responses'][200]['content']['application/json'];
115624
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6V]['get']['parameters'];
115510
115625
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
115511
115626
 
115512
- declare const routeName$6T = "/v1/api/affiliations";
115513
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
115627
+ declare const routeName$6U = "/v1/api/affiliations";
115628
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
115514
115629
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
115515
115630
 
115516
- declare const routeName$6S = "/v1/api/anvaflows/labels";
115517
- type GetAnvaLabelsQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
115518
- type GetAnvaLabelsResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
115519
- type GetAnvaLabelsProps = paths[typeof routeName$6S]['get']['parameters'];
115631
+ declare const routeName$6T = "/v1/api/anvaflows/labels";
115632
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
115633
+ type GetAnvaLabelsResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
115634
+ type GetAnvaLabelsProps = paths[typeof routeName$6T]['get']['parameters'];
115520
115635
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
115521
115636
 
115522
- declare const routeName$6R = "/v1/api/anvaflows/supported-insurances";
115523
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
115524
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
115525
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$6R]['get']['parameters'];
115637
+ declare const routeName$6S = "/v1/api/anvaflows/supported-insurances";
115638
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$6S]['get']['parameters']['query'];
115639
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$6S]['get']['responses'][200]['content']['application/json'];
115640
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$6S]['get']['parameters'];
115526
115641
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
115527
115642
 
115528
- declare const routeName$6Q = "/v1/api/anvaflows/supported-tags";
115529
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$6Q]['get']['parameters']['query'];
115530
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
115531
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$6Q]['get']['parameters'];
115643
+ declare const routeName$6R = "/v1/api/anvaflows/supported-tags";
115644
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
115645
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
115646
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$6R]['get']['parameters'];
115532
115647
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
115533
115648
 
115534
- declare const routeName$6P = "/v1/api/anvaflows/supported-tags";
115535
- type CreateAnvaflowTagsBody = paths[typeof routeName$6P]['put']['requestBody']['content']['application/json'];
115536
- type CreateAnvaflowTagsQueryParams = paths[typeof routeName$6P]['put']['parameters']['query'];
115537
- type CreateAnvaflowTagsResponse = paths[typeof routeName$6P]['put']['responses'][200]['content']['application/json'];
115649
+ declare const routeName$6Q = "/v1/api/anvaflows/supported-tags";
115650
+ type CreateAnvaflowTagsBody = paths[typeof routeName$6Q]['put']['requestBody']['content']['application/json'];
115651
+ type CreateAnvaflowTagsQueryParams = paths[typeof routeName$6Q]['put']['parameters']['query'];
115652
+ type CreateAnvaflowTagsResponse = paths[typeof routeName$6Q]['put']['responses'][200]['content']['application/json'];
115538
115653
  interface CreateAnvaflowTagsProps {
115539
115654
  body: CreateAnvaflowTagsBody;
115540
115655
  params: {
@@ -115543,35 +115658,35 @@ interface CreateAnvaflowTagsProps {
115543
115658
  }
115544
115659
  declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
115545
115660
 
115546
- declare const routeName$6O = "/v1/api/anvaflows/supported-coverages";
115547
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
115548
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
115549
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$6O]['get']['parameters'];
115661
+ declare const routeName$6P = "/v1/api/anvaflows/supported-coverages";
115662
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$6P]['get']['parameters']['query'];
115663
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$6P]['get']['responses'][200]['content']['application/json'];
115664
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$6P]['get']['parameters'];
115550
115665
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
115551
115666
 
115552
- declare const routeName$6N = "/v1/api/anvaflows/supported-adn-coverages";
115553
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$6N]['get']['parameters']['query'];
115554
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
115555
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$6N]['get']['parameters'];
115667
+ declare const routeName$6O = "/v1/api/anvaflows/supported-adn-coverages";
115668
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
115669
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
115670
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$6O]['get']['parameters'];
115556
115671
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
115557
115672
 
115558
- declare const routeName$6M = "/v1/api/anvaflows/supported-insurance-companies";
115559
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$6M]['get']['parameters']['query'];
115560
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
115561
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$6M]['get']['parameters'];
115673
+ declare const routeName$6N = "/v1/api/anvaflows/supported-insurance-companies";
115674
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$6N]['get']['parameters']['query'];
115675
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$6N]['get']['responses'][200]['content']['application/json'];
115676
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$6N]['get']['parameters'];
115562
115677
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
115563
115678
 
115564
- declare const routeName$6L = "/v1/api/anvaflows/mutation-reasons";
115565
- type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$6L]['get']['parameters']['query'];
115566
- type GetAnvaMutationReasonsResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
115567
- type GetAnvaMutationReasonsProps = paths[typeof routeName$6L]['get']['parameters'];
115679
+ declare const routeName$6M = "/v1/api/anvaflows/mutation-reasons";
115680
+ type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$6M]['get']['parameters']['query'];
115681
+ type GetAnvaMutationReasonsResponse = paths[typeof routeName$6M]['get']['responses'][200]['content']['application/json'];
115682
+ type GetAnvaMutationReasonsProps = paths[typeof routeName$6M]['get']['parameters'];
115568
115683
  declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
115569
115684
 
115570
- declare const routeName$6K = "/v1/api/anvaflows/{session_id}/calculate";
115571
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6K]['post']['requestBody']['content']['application/json'];
115572
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6K]['post']['parameters']['path'];
115573
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6K]['post']['parameters']['query'];
115574
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6K]['post']['responses'][200]['content']['application/json'];
115685
+ declare const routeName$6L = "/v1/api/anvaflows/{session_id}/calculate";
115686
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6L]['post']['requestBody']['content']['application/json'];
115687
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6L]['post']['parameters']['path'];
115688
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6L]['post']['parameters']['query'];
115689
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6L]['post']['responses'][200]['content']['application/json'];
115575
115690
  interface CalculateAnvaquotesBySessionIdProps {
115576
115691
  body: CalculateAnvaquotesBySessionIdBody;
115577
115692
  params: {
@@ -115581,11 +115696,11 @@ interface CalculateAnvaquotesBySessionIdProps {
115581
115696
  }
115582
115697
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
115583
115698
 
115584
- declare const routeName$6J = "/v2/api/anvaflows/{session_id}/calculate";
115585
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6J]['post']['requestBody']['content']['application/json'];
115586
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
115587
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
115588
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6J]['post']['responses'][202]['content']['application/json'];
115699
+ declare const routeName$6K = "/v2/api/anvaflows/{session_id}/calculate";
115700
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6K]['post']['requestBody']['content']['application/json'];
115701
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6K]['post']['parameters']['path'];
115702
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6K]['post']['parameters']['query'];
115703
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6K]['post']['responses'][202]['content']['application/json'];
115589
115704
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
115590
115705
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
115591
115706
  params: {
@@ -115595,11 +115710,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
115595
115710
  }
115596
115711
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
115597
115712
 
115598
- declare const routeName$6I = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
115599
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
115600
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
115601
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
115602
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
115713
+ declare const routeName$6J = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
115714
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6J]['post']['requestBody']['content']['application/json'];
115715
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
115716
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
115717
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6J]['post']['responses'][200]['content']['application/json'];
115603
115718
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
115604
115719
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
115605
115720
  params: {
@@ -115609,10 +115724,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
115609
115724
  }
115610
115725
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
115611
115726
 
115612
- declare const routeName$6H = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
115613
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6H]['post']['parameters']['path'];
115614
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
115615
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6H]['post']['responses'][201]['content']['application/json'];
115727
+ declare const routeName$6I = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
115728
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6I]['post']['parameters']['path'];
115729
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
115730
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6I]['post']['responses'][201]['content']['application/json'];
115616
115731
  interface SendOfferToAnvaBySessionIdProps {
115617
115732
  params: {
115618
115733
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -115621,10 +115736,10 @@ interface SendOfferToAnvaBySessionIdProps {
115621
115736
  }
115622
115737
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
115623
115738
 
115624
- declare const routeName$6G = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
115625
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6G]['post']['parameters']['path'];
115626
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
115627
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6G]['post']['responses'][202]['content']['application/json'];
115739
+ declare const routeName$6H = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
115740
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6H]['post']['parameters']['path'];
115741
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6H]['post']['parameters']['query'];
115742
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6H]['post']['responses'][202]['content']['application/json'];
115628
115743
  interface EnqueueSendOfferToAnvaBySessionIdProps {
115629
115744
  params: {
115630
115745
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -115633,11 +115748,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
115633
115748
  }
115634
115749
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
115635
115750
 
115636
- declare const routeName$6F = "/v1/api/anvaflows/{session_id}/send-offer-mail";
115637
- type SendOfferMailBySessionIdBody = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
115638
- type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6F]['post']['parameters']['path'];
115639
- type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
115640
- type SendOfferMailBySessionIdResponse = paths[typeof routeName$6F]['post']['responses'][201]['content']['application/json'];
115751
+ declare const routeName$6G = "/v1/api/anvaflows/{session_id}/send-offer-mail";
115752
+ type SendOfferMailBySessionIdBody = paths[typeof routeName$6G]['post']['requestBody']['content']['application/json'];
115753
+ type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6G]['post']['parameters']['path'];
115754
+ type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6G]['post']['parameters']['query'];
115755
+ type SendOfferMailBySessionIdResponse = paths[typeof routeName$6G]['post']['responses'][201]['content']['application/json'];
115641
115756
  interface SendOfferMailBySessionIdProps {
115642
115757
  body: SendOfferMailBySessionIdBody;
115643
115758
  params: {
@@ -115647,11 +115762,11 @@ interface SendOfferMailBySessionIdProps {
115647
115762
  }
115648
115763
  declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
115649
115764
 
115650
- declare const routeName$6E = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
115651
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
115652
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6E]['post']['parameters']['path'];
115653
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
115654
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6E]['post']['responses'][202]['content']['application/json'];
115765
+ declare const routeName$6F = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
115766
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6F]['post']['requestBody']['content']['application/json'];
115767
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6F]['post']['parameters']['path'];
115768
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6F]['post']['parameters']['query'];
115769
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6F]['post']['responses'][202]['content']['application/json'];
115655
115770
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
115656
115771
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
115657
115772
  params: {
@@ -115661,11 +115776,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
115661
115776
  }
115662
115777
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
115663
115778
 
115664
- declare const routeName$6D = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
115665
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6D]['post']['requestBody']['content']['application/json'];
115666
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6D]['post']['parameters']['path'];
115667
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6D]['post']['parameters']['query'];
115668
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6D]['post']['responses'][200]['content']['application/json'];
115779
+ declare const routeName$6E = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
115780
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6E]['post']['requestBody']['content']['application/json'];
115781
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6E]['post']['parameters']['path'];
115782
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6E]['post']['parameters']['query'];
115783
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6E]['post']['responses'][200]['content']['application/json'];
115669
115784
  interface RecalculateSimulationBySessionIdProps {
115670
115785
  body: RecalculateSimulationBySessionIdBody;
115671
115786
  params: {
@@ -115675,23 +115790,23 @@ interface RecalculateSimulationBySessionIdProps {
115675
115790
  }
115676
115791
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
115677
115792
 
115678
- declare const routeName$6C = "/v1/api/anvaflows/{session_id}/collection-methods";
115679
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
115680
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
115681
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
115682
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$6C]['get']['parameters'];
115793
+ declare const routeName$6D = "/v1/api/anvaflows/{session_id}/collection-methods";
115794
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
115795
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
115796
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
115797
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$6D]['get']['parameters'];
115683
115798
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
115684
115799
 
115685
- declare const routeName$6B = "/v1/api/anvaflows/closing-questions";
115686
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6B]['get']['parameters']['query'];
115687
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6B]['get']['responses'][200]['content']['application/json'];
115688
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$6B]['get']['parameters'];
115800
+ declare const routeName$6C = "/v1/api/anvaflows/closing-questions";
115801
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
115802
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
115803
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$6C]['get']['parameters'];
115689
115804
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
115690
115805
 
115691
- declare const routeName$6A = "/v1/api/anvaflows/closing-questions";
115692
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6A]['put']['requestBody']['content']['application/json'];
115693
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6A]['put']['parameters']['query'];
115694
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6A]['put']['responses'][200]['content']['application/json'];
115806
+ declare const routeName$6B = "/v1/api/anvaflows/closing-questions";
115807
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6B]['put']['requestBody']['content']['application/json'];
115808
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6B]['put']['parameters']['query'];
115809
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6B]['put']['responses'][200]['content']['application/json'];
115695
115810
  interface UpsertAnvaClosingQuestionsProps {
115696
115811
  body: UpsertAnvaClosingQuestionsBody;
115697
115812
  params: {
@@ -115700,10 +115815,10 @@ interface UpsertAnvaClosingQuestionsProps {
115700
115815
  }
115701
115816
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
115702
115817
 
115703
- declare const routeName$6z = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
115704
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6z]['delete']['parameters']['path'];
115705
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6z]['delete']['parameters']['query'];
115706
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6z]['delete']['responses'][200]['content']['application/json'];
115818
+ declare const routeName$6A = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
115819
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6A]['delete']['parameters']['path'];
115820
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6A]['delete']['parameters']['query'];
115821
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6A]['delete']['responses'][200]['content']['application/json'];
115707
115822
  interface DeleteAnvaClosingQuestionsProps {
115708
115823
  params: {
115709
115824
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -115712,11 +115827,11 @@ interface DeleteAnvaClosingQuestionsProps {
115712
115827
  }
115713
115828
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
115714
115829
 
115715
- declare const routeName$6y = "/v1/api/anvaflows/{session_id}/anva-party";
115716
- type CreateAnvaPartyBody = paths[typeof routeName$6y]['post']['requestBody']['content']['application/json'];
115717
- type CreateAnvaPartyPathParams = paths[typeof routeName$6y]['post']['parameters']['path'];
115718
- type CreateAnvaPartyQueryParams = paths[typeof routeName$6y]['post']['parameters']['query'];
115719
- type CreateAnvaPartyResponse = paths[typeof routeName$6y]['post']['responses'][201]['content']['application/json'];
115830
+ declare const routeName$6z = "/v1/api/anvaflows/{session_id}/anva-party";
115831
+ type CreateAnvaPartyBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
115832
+ type CreateAnvaPartyPathParams = paths[typeof routeName$6z]['post']['parameters']['path'];
115833
+ type CreateAnvaPartyQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
115834
+ type CreateAnvaPartyResponse = paths[typeof routeName$6z]['post']['responses'][201]['content']['application/json'];
115720
115835
  interface CreateAnvaPartyProps {
115721
115836
  body: CreateAnvaPartyBody;
115722
115837
  params: {
@@ -115726,16 +115841,16 @@ interface CreateAnvaPartyProps {
115726
115841
  }
115727
115842
  declare const createAnvaParty: (props: CreateAnvaPartyProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyResponse>;
115728
115843
 
115729
- declare const routeName$6x = "/v1/api/anvaproducts";
115730
- type GetAnvaproductsQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
115731
- type GetAnvaproductsResponse = paths[typeof routeName$6x]['get']['responses'][200]['content']['application/json'];
115732
- type GetAnvaproductsProps = paths[typeof routeName$6x]['get']['parameters'];
115844
+ declare const routeName$6y = "/v1/api/anvaproducts";
115845
+ type GetAnvaproductsQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
115846
+ type GetAnvaproductsResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
115847
+ type GetAnvaproductsProps = paths[typeof routeName$6y]['get']['parameters'];
115733
115848
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
115734
115849
 
115735
- declare const routeName$6w = "/v1/api/anvaproducts/import";
115736
- type ImportAnvaproductBody = paths[typeof routeName$6w]['post']['requestBody']['content']['application/json'];
115737
- type ImportAnvaproductQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
115738
- type ImportAnvaproductResponse = paths[typeof routeName$6w]['post']['responses'][200]['content']['application/json'];
115850
+ declare const routeName$6x = "/v1/api/anvaproducts/import";
115851
+ type ImportAnvaproductBody = paths[typeof routeName$6x]['post']['requestBody']['content']['application/json'];
115852
+ type ImportAnvaproductQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
115853
+ type ImportAnvaproductResponse = paths[typeof routeName$6x]['post']['responses'][200]['content']['application/json'];
115739
115854
  interface ImportAnvaproductProps {
115740
115855
  body: ImportAnvaproductBody;
115741
115856
  params: {
@@ -115744,18 +115859,18 @@ interface ImportAnvaproductProps {
115744
115859
  }
115745
115860
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
115746
115861
 
115747
- declare const routeName$6v = "/v1/api/anvaproducts/{anva_product_id}";
115748
- type GetAnvaproductByIdPathParams = paths[typeof routeName$6v]['get']['parameters']['path'];
115749
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$6v]['get']['parameters']['query'];
115750
- type GetAnvaproductByIdResponse = paths[typeof routeName$6v]['get']['responses'][200]['content']['application/json'];
115751
- type GetAnvaproductByIdProps = paths[typeof routeName$6v]['get']['parameters'];
115862
+ declare const routeName$6w = "/v1/api/anvaproducts/{anva_product_id}";
115863
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$6w]['get']['parameters']['path'];
115864
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
115865
+ type GetAnvaproductByIdResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
115866
+ type GetAnvaproductByIdProps = paths[typeof routeName$6w]['get']['parameters'];
115752
115867
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
115753
115868
 
115754
- declare const routeName$6u = "/v1/api/anvaproducts/{anva_product_id}";
115755
- type PatchAnvaproductByIdBody = paths[typeof routeName$6u]['patch']['requestBody']['content']['application/json'];
115756
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$6u]['patch']['parameters']['path'];
115757
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6u]['patch']['parameters']['query'];
115758
- type PatchAnvaproductByIdResponse = paths[typeof routeName$6u]['patch']['responses'][200]['content']['application/json'];
115869
+ declare const routeName$6v = "/v1/api/anvaproducts/{anva_product_id}";
115870
+ type PatchAnvaproductByIdBody = paths[typeof routeName$6v]['patch']['requestBody']['content']['application/json'];
115871
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$6v]['patch']['parameters']['path'];
115872
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6v]['patch']['parameters']['query'];
115873
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$6v]['patch']['responses'][200]['content']['application/json'];
115759
115874
  interface PatchAnvaproductByIdProps {
115760
115875
  body: PatchAnvaproductByIdBody;
115761
115876
  params: {
@@ -115765,11 +115880,11 @@ interface PatchAnvaproductByIdProps {
115765
115880
  }
115766
115881
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
115767
115882
 
115768
- declare const routeName$6t = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
115769
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6t]['patch']['requestBody']['content']['application/json'];
115770
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6t]['patch']['parameters']['path'];
115771
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6t]['patch']['parameters']['query'];
115772
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6t]['patch']['responses'][200]['content']['application/json'];
115883
+ declare const routeName$6u = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
115884
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6u]['patch']['requestBody']['content']['application/json'];
115885
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6u]['patch']['parameters']['path'];
115886
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6u]['patch']['parameters']['query'];
115887
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6u]['patch']['responses'][200]['content']['application/json'];
115773
115888
  interface PatchAnvaproductCoverageByIdProps {
115774
115889
  body: PatchAnvaproductCoverageByIdBody;
115775
115890
  params: {
@@ -115779,18 +115894,18 @@ interface PatchAnvaproductCoverageByIdProps {
115779
115894
  }
115780
115895
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
115781
115896
 
115782
- declare const routeName$6s = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
115783
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6s]['get']['parameters']['path'];
115784
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6s]['get']['parameters']['query'];
115785
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6s]['get']['responses'][200]['content']['application/json'];
115786
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6s]['get']['parameters'];
115897
+ declare const routeName$6t = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
115898
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6t]['get']['parameters']['path'];
115899
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
115900
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
115901
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6t]['get']['parameters'];
115787
115902
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
115788
115903
 
115789
- declare const routeName$6r = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
115790
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6r]['put']['requestBody']['content']['application/json'];
115791
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6r]['put']['parameters']['path'];
115792
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6r]['put']['parameters']['query'];
115793
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6r]['put']['responses'][200]['content']['application/json'];
115904
+ declare const routeName$6s = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
115905
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6s]['put']['requestBody']['content']['application/json'];
115906
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6s]['put']['parameters']['path'];
115907
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6s]['put']['parameters']['query'];
115908
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6s]['put']['responses'][200]['content']['application/json'];
115794
115909
  interface UpdateAnvaflowsQuestionnaireProps {
115795
115910
  body: UpdateAnvaflowsQuestionnaireBody;
115796
115911
  params: {
@@ -115800,11 +115915,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
115800
115915
  }
115801
115916
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
115802
115917
 
115803
- declare const routeName$6q = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
115804
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
115805
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
115806
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
115807
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6q]['post']['responses'][200]['content']['application/json'];
115918
+ declare const routeName$6r = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
115919
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6r]['post']['requestBody']['content']['application/json'];
115920
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6r]['post']['parameters']['path'];
115921
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6r]['post']['parameters']['query'];
115922
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6r]['post']['responses'][200]['content']['application/json'];
115808
115923
  interface ValidateAnvaflowsQuestionnaireProps {
115809
115924
  body: ValidateAnvaflowsQuestionnaireBody;
115810
115925
  params: {
@@ -115814,10 +115929,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
115814
115929
  }
115815
115930
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
115816
115931
 
115817
- declare const routeName$6p = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
115818
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6p]['post']['requestBody']['content']['application/json'];
115819
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
115820
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6p]['post']['responses'][200]['content']['application/json'];
115932
+ declare const routeName$6q = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
115933
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
115934
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
115935
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6q]['post']['responses'][200]['content']['application/json'];
115821
115936
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
115822
115937
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
115823
115938
  params: {
@@ -115826,20 +115941,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
115826
115941
  }
115827
115942
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
115828
115943
 
115829
- declare const routeName$6o = "/v1/api/brokers/me";
115830
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
115944
+ declare const routeName$6p = "/v1/api/brokers/me";
115945
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6p]['get']['responses'][200]['content']['application/json'];
115831
115946
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
115832
115947
 
115833
- declare const routeName$6n = "/v1/api/brokers/{broker_id}";
115834
- type GetTheBrokerByIdPathParams = paths[typeof routeName$6n]['get']['parameters']['path'];
115835
- type GetTheBrokerByIdResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
115836
- type GetTheBrokerByIdProps = paths[typeof routeName$6n]['get']['parameters'];
115948
+ declare const routeName$6o = "/v1/api/brokers/{broker_id}";
115949
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$6o]['get']['parameters']['path'];
115950
+ type GetTheBrokerByIdResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
115951
+ type GetTheBrokerByIdProps = paths[typeof routeName$6o]['get']['parameters'];
115837
115952
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
115838
115953
 
115839
- declare const routeName$6m = "/v1/api/brokers/{broker_id}";
115840
- type UpdateBrokerByBrokerBody = paths[typeof routeName$6m]['patch']['requestBody']['content']['application/json'];
115841
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6m]['patch']['parameters']['path'];
115842
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$6m]['patch']['responses'][200]['content']['application/json'];
115954
+ declare const routeName$6n = "/v1/api/brokers/{broker_id}";
115955
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$6n]['patch']['requestBody']['content']['application/json'];
115956
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6n]['patch']['parameters']['path'];
115957
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$6n]['patch']['responses'][200]['content']['application/json'];
115843
115958
  interface UpdateBrokerByBrokerProps {
115844
115959
  body: UpdateBrokerByBrokerBody;
115845
115960
  params: {
@@ -115848,16 +115963,16 @@ interface UpdateBrokerByBrokerProps {
115848
115963
  }
115849
115964
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
115850
115965
 
115851
- declare const routeName$6l = "/v1/api/brokers/{broker_id}/integrations";
115852
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$6l]['get']['parameters']['path'];
115853
- type GetBrokerIntegrationsResponse = paths[typeof routeName$6l]['get']['responses'][200]['content']['application/json'];
115854
- type GetBrokerIntegrationsProps = paths[typeof routeName$6l]['get']['parameters'];
115966
+ declare const routeName$6m = "/v1/api/brokers/{broker_id}/integrations";
115967
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$6m]['get']['parameters']['path'];
115968
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$6m]['get']['responses'][200]['content']['application/json'];
115969
+ type GetBrokerIntegrationsProps = paths[typeof routeName$6m]['get']['parameters'];
115855
115970
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
115856
115971
 
115857
- declare const routeName$6k = "/v1/api/brokers/{broker_id}/integrations";
115858
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$6k]['patch']['requestBody']['content']['application/json'];
115859
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6k]['patch']['parameters']['path'];
115860
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6k]['patch']['responses'][200]['content']['application/json'];
115972
+ declare const routeName$6l = "/v1/api/brokers/{broker_id}/integrations";
115973
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$6l]['patch']['requestBody']['content']['application/json'];
115974
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6l]['patch']['parameters']['path'];
115975
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6l]['patch']['responses'][200]['content']['application/json'];
115861
115976
  interface UpdateBrokerIntegrationsProps {
115862
115977
  body: UpdateBrokerIntegrationsBody;
115863
115978
  params: {
@@ -115866,37 +115981,37 @@ interface UpdateBrokerIntegrationsProps {
115866
115981
  }
115867
115982
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
115868
115983
 
115869
- declare const routeName$6j = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
115870
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
115871
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
115872
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6j]['get']['parameters'];
115984
+ declare const routeName$6k = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
115985
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6k]['get']['parameters']['path'];
115986
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6k]['get']['responses'][200]['content']['application/json'];
115987
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6k]['get']['parameters'];
115873
115988
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
115874
115989
 
115875
- declare const routeName$6i = "/v1/api/anva-producers/{anva_producer_id}";
115876
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6i]['get']['parameters']['path'];
115877
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
115878
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6i]['get']['parameters'];
115990
+ declare const routeName$6j = "/v1/api/anva-producers/{anva_producer_id}";
115991
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
115992
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
115993
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6j]['get']['parameters'];
115879
115994
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
115880
115995
 
115881
- declare const routeName$6h = "/v1/api/brokers/{broker_id}/checklists/onboarding";
115882
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6h]['get']['parameters']['path'];
115883
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6h]['get']['parameters']['query'];
115884
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6h]['get']['responses'][200]['content']['application/json'];
115885
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6h]['get']['parameters'];
115996
+ declare const routeName$6i = "/v1/api/brokers/{broker_id}/checklists/onboarding";
115997
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6i]['get']['parameters']['path'];
115998
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6i]['get']['parameters']['query'];
115999
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6i]['get']['responses'][200]['content']['application/json'];
116000
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6i]['get']['parameters'];
115886
116001
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
115887
116002
 
115888
- declare const routeName$6g = "/v1/api/campaigns/{campaign_id}";
115889
- type GetCampaignByIdPathParams = paths[typeof routeName$6g]['get']['parameters']['path'];
115890
- type GetCampaignByIdQueryParams = paths[typeof routeName$6g]['get']['parameters']['query'];
115891
- type GetCampaignByIdResponse = paths[typeof routeName$6g]['get']['responses'][200]['content']['application/json'];
115892
- type GetCampaignByIdProps = paths[typeof routeName$6g]['get']['parameters'];
116003
+ declare const routeName$6h = "/v1/api/campaigns/{campaign_id}";
116004
+ type GetCampaignByIdPathParams = paths[typeof routeName$6h]['get']['parameters']['path'];
116005
+ type GetCampaignByIdQueryParams = paths[typeof routeName$6h]['get']['parameters']['query'];
116006
+ type GetCampaignByIdResponse = paths[typeof routeName$6h]['get']['responses'][200]['content']['application/json'];
116007
+ type GetCampaignByIdProps = paths[typeof routeName$6h]['get']['parameters'];
115893
116008
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
115894
116009
 
115895
- declare const routeName$6f = "/v1/api/campaigns/{campaign_id}";
115896
- type UpdateCampaignBody = paths[typeof routeName$6f]['patch']['requestBody']['content']['application/json'];
115897
- type UpdateCampaignPathParams = paths[typeof routeName$6f]['patch']['parameters']['path'];
115898
- type UpdateCampaignQueryParams = paths[typeof routeName$6f]['patch']['parameters']['query'];
115899
- type UpdateCampaignResponse = paths[typeof routeName$6f]['patch']['responses'][200]['content']['application/json'];
116010
+ declare const routeName$6g = "/v1/api/campaigns/{campaign_id}";
116011
+ type UpdateCampaignBody = paths[typeof routeName$6g]['patch']['requestBody']['content']['application/json'];
116012
+ type UpdateCampaignPathParams = paths[typeof routeName$6g]['patch']['parameters']['path'];
116013
+ type UpdateCampaignQueryParams = paths[typeof routeName$6g]['patch']['parameters']['query'];
116014
+ type UpdateCampaignResponse = paths[typeof routeName$6g]['patch']['responses'][200]['content']['application/json'];
115900
116015
  interface UpdateCampaignProps {
115901
116016
  body: UpdateCampaignBody;
115902
116017
  params: {
@@ -115906,16 +116021,16 @@ interface UpdateCampaignProps {
115906
116021
  }
115907
116022
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
115908
116023
 
115909
- declare const routeName$6e = "/v1/api/campaigns";
115910
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6e]['get']['parameters']['query'];
115911
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6e]['get']['responses'][200]['content']['application/json'];
115912
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$6e]['get']['parameters'];
116024
+ declare const routeName$6f = "/v1/api/campaigns";
116025
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6f]['get']['parameters']['query'];
116026
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
116027
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$6f]['get']['parameters'];
115913
116028
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
115914
116029
 
115915
- declare const routeName$6d = "/v1/api/campaigns";
115916
- type CreateCampaignBody = paths[typeof routeName$6d]['post']['requestBody']['content']['application/json'];
115917
- type CreateCampaignQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
115918
- type CreateCampaignResponse = paths[typeof routeName$6d]['post']['responses'][201]['content']['application/json'];
116030
+ declare const routeName$6e = "/v1/api/campaigns";
116031
+ type CreateCampaignBody = paths[typeof routeName$6e]['post']['requestBody']['content']['application/json'];
116032
+ type CreateCampaignQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
116033
+ type CreateCampaignResponse = paths[typeof routeName$6e]['post']['responses'][201]['content']['application/json'];
115919
116034
  interface CreateCampaignProps {
115920
116035
  body: CreateCampaignBody;
115921
116036
  params: {
@@ -115924,17 +116039,17 @@ interface CreateCampaignProps {
115924
116039
  }
115925
116040
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
115926
116041
 
115927
- declare const routeName$6c = "/v1/api/campaigns/{campaign_id}/metrics";
115928
- type GetMetricsByCampaignPathParams = paths[typeof routeName$6c]['get']['parameters']['path'];
115929
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$6c]['get']['parameters']['query'];
115930
- type GetMetricsByCampaignResponse = paths[typeof routeName$6c]['get']['responses'][200]['content']['application/json'];
115931
- type GetMetricsByCampaignProps = paths[typeof routeName$6c]['get']['parameters'];
116042
+ declare const routeName$6d = "/v1/api/campaigns/{campaign_id}/metrics";
116043
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$6d]['get']['parameters']['path'];
116044
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$6d]['get']['parameters']['query'];
116045
+ type GetMetricsByCampaignResponse = paths[typeof routeName$6d]['get']['responses'][200]['content']['application/json'];
116046
+ type GetMetricsByCampaignProps = paths[typeof routeName$6d]['get']['parameters'];
115932
116047
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
115933
116048
 
115934
- declare const routeName$6b = "/v1/api/campaigns/{campaign_id}/targets";
115935
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6b]['patch']['parameters']['path'];
115936
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6b]['patch']['parameters']['query'];
115937
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$6b]['patch']['responses'][200]['content']['application/json'];
116049
+ declare const routeName$6c = "/v1/api/campaigns/{campaign_id}/targets";
116050
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6c]['patch']['parameters']['path'];
116051
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6c]['patch']['parameters']['query'];
116052
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$6c]['patch']['responses'][200]['content']['application/json'];
115938
116053
  interface UpdateTargetsByCampaignProps {
115939
116054
  params: {
115940
116055
  query: UpdateTargetsByCampaignQueryParams;
@@ -115943,15 +116058,15 @@ interface UpdateTargetsByCampaignProps {
115943
116058
  }
115944
116059
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
115945
116060
 
115946
- declare const routeName$6a = "/v1/api/campaign-templates";
115947
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6a]['get']['parameters']['query'];
115948
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
115949
- type GetAllCampaignTemplatesProps = paths[typeof routeName$6a]['get']['parameters'];
116061
+ declare const routeName$6b = "/v1/api/campaign-templates";
116062
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6b]['get']['parameters']['query'];
116063
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$6b]['get']['responses'][200]['content']['application/json'];
116064
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$6b]['get']['parameters'];
115950
116065
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
115951
116066
 
115952
- declare const routeName$69 = "/v1/api/campaigns/example-mails";
115953
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$69]['post']['parameters']['query'];
115954
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$69]['post']['responses'][201]['content']['application/json'];
116067
+ declare const routeName$6a = "/v1/api/campaigns/example-mails";
116068
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6a]['post']['parameters']['query'];
116069
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6a]['post']['responses'][201]['content']['application/json'];
115955
116070
  interface SendExampleCampaignTargetMailProps {
115956
116071
  params: {
115957
116072
  query: SendExampleCampaignTargetMailQueryParams;
@@ -115959,16 +116074,16 @@ interface SendExampleCampaignTargetMailProps {
115959
116074
  }
115960
116075
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
115961
116076
 
115962
- declare const routeName$68 = "/v1/api/distributions/campaign-settings";
115963
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$68]['get']['parameters']['query'];
115964
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
115965
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$68]['get']['parameters'];
116077
+ declare const routeName$69 = "/v1/api/distributions/campaign-settings";
116078
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
116079
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
116080
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$69]['get']['parameters'];
115966
116081
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
115967
116082
 
115968
- declare const routeName$67 = "/v1/api/campaigns/dns-prefixes/generate";
115969
- type GenerateDnsPrefixBody = paths[typeof routeName$67]['post']['requestBody']['content']['application/json'];
115970
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$67]['post']['parameters']['query'];
115971
- type GenerateDnsPrefixResponse = paths[typeof routeName$67]['post']['responses'][200]['content']['application/json'];
116083
+ declare const routeName$68 = "/v1/api/campaigns/dns-prefixes/generate";
116084
+ type GenerateDnsPrefixBody = paths[typeof routeName$68]['post']['requestBody']['content']['application/json'];
116085
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$68]['post']['parameters']['query'];
116086
+ type GenerateDnsPrefixResponse = paths[typeof routeName$68]['post']['responses'][200]['content']['application/json'];
115972
116087
  interface GenerateDnsPrefixProps {
115973
116088
  body: GenerateDnsPrefixBody;
115974
116089
  params: {
@@ -115977,16 +116092,16 @@ interface GenerateDnsPrefixProps {
115977
116092
  }
115978
116093
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
115979
116094
 
115980
- declare const routeName$66 = "/v1/api/mail-templates/campaign-target";
115981
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$66]['get']['parameters']['query'];
115982
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$66]['get']['responses'][200]['content']['application/json'];
115983
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$66]['get']['parameters'];
116095
+ declare const routeName$67 = "/v1/api/mail-templates/campaign-target";
116096
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$67]['get']['parameters']['query'];
116097
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$67]['get']['responses'][200]['content']['application/json'];
116098
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$67]['get']['parameters'];
115984
116099
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
115985
116100
 
115986
- declare const routeName$65 = "/v1/api/distributions/{distribution_id}/claims";
115987
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$65]['post']['parameters']['path'];
115988
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
115989
- type CreateClaimAsCustomerResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
116101
+ declare const routeName$66 = "/v1/api/distributions/{distribution_id}/claims";
116102
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
116103
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
116104
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$66]['post']['responses'][201]['content']['application/json'];
115990
116105
  interface CreateClaimAsCustomerProps {
115991
116106
  params: {
115992
116107
  query: CreateClaimAsCustomerQueryParams;
@@ -115995,15 +116110,15 @@ interface CreateClaimAsCustomerProps {
115995
116110
  }
115996
116111
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
115997
116112
 
115998
- declare const routeName$64 = "/v1/api/claims";
115999
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$64]['get']['parameters']['query'];
116000
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$64]['get']['responses'][200]['content']['application/json'];
116001
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$64]['get']['parameters'];
116113
+ declare const routeName$65 = "/v1/api/claims";
116114
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$65]['get']['parameters']['query'];
116115
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$65]['get']['responses'][200]['content']['application/json'];
116116
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$65]['get']['parameters'];
116002
116117
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
116003
116118
 
116004
- declare const routeName$63 = "/v1/api/claims";
116005
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
116006
- type CreateClaimAsBrokerResponse = paths[typeof routeName$63]['post']['responses'][201]['content']['application/json'];
116119
+ declare const routeName$64 = "/v1/api/claims";
116120
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
116121
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$64]['post']['responses'][201]['content']['application/json'];
116007
116122
  interface CreateClaimAsBrokerProps {
116008
116123
  params: {
116009
116124
  query: CreateClaimAsBrokerQueryParams;
@@ -116011,17 +116126,17 @@ interface CreateClaimAsBrokerProps {
116011
116126
  }
116012
116127
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
116013
116128
 
116014
- declare const routeName$62 = "/v1/api/claims/{claim_id}";
116015
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$62]['get']['parameters']['path'];
116016
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
116017
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
116018
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$62]['get']['parameters'];
116129
+ declare const routeName$63 = "/v1/api/claims/{claim_id}";
116130
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$63]['get']['parameters']['path'];
116131
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$63]['get']['parameters']['query'];
116132
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$63]['get']['responses'][200]['content']['application/json'];
116133
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$63]['get']['parameters'];
116019
116134
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
116020
116135
 
116021
- declare const routeName$61 = "/v1/api/claims/{claim_id}";
116022
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$61]['delete']['parameters']['path'];
116023
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$61]['delete']['parameters']['query'];
116024
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$61]['delete']['responses'][200]['content']['application/json'];
116136
+ declare const routeName$62 = "/v1/api/claims/{claim_id}";
116137
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$62]['delete']['parameters']['path'];
116138
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$62]['delete']['parameters']['query'];
116139
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$62]['delete']['responses'][200]['content']['application/json'];
116025
116140
  interface DeleteClaimAsBrokerByIdProps {
116026
116141
  params: {
116027
116142
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -116030,10 +116145,10 @@ interface DeleteClaimAsBrokerByIdProps {
116030
116145
  }
116031
116146
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
116032
116147
 
116033
- declare const routeName$60 = "/v1/api/claims/{claim_id}";
116034
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$60]['patch']['parameters']['path'];
116035
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$60]['patch']['parameters']['query'];
116036
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$60]['patch']['responses'][200]['content']['application/json'];
116148
+ declare const routeName$61 = "/v1/api/claims/{claim_id}";
116149
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$61]['patch']['parameters']['path'];
116150
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$61]['patch']['parameters']['query'];
116151
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$61]['patch']['responses'][200]['content']['application/json'];
116037
116152
  interface UpdateClaimAsBrokerByIdProps {
116038
116153
  params: {
116039
116154
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -116042,10 +116157,10 @@ interface UpdateClaimAsBrokerByIdProps {
116042
116157
  }
116043
116158
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
116044
116159
 
116045
- declare const routeName$5$ = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
116046
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$5$]['put']['parameters']['path'];
116047
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$5$]['put']['parameters']['query'];
116048
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$5$]['put']['responses'][200]['content']['application/json'];
116160
+ declare const routeName$60 = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
116161
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$60]['put']['parameters']['path'];
116162
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$60]['put']['parameters']['query'];
116163
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$60]['put']['responses'][200]['content']['application/json'];
116049
116164
  interface UpdateDeclarationRemarkProps {
116050
116165
  params: {
116051
116166
  query: UpdateDeclarationRemarkQueryParams;
@@ -116054,10 +116169,10 @@ interface UpdateDeclarationRemarkProps {
116054
116169
  }
116055
116170
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
116056
116171
 
116057
- declare const routeName$5_ = "/v1/api/claims/{claim_id}/lock";
116058
- type CreateLockForClaimPathParams = paths[typeof routeName$5_]['post']['parameters']['path'];
116059
- type CreateLockForClaimQueryParams = paths[typeof routeName$5_]['post']['parameters']['query'];
116060
- type CreateLockForClaimResponse = paths[typeof routeName$5_]['post']['responses'][201]['content']['application/json'];
116172
+ declare const routeName$5$ = "/v1/api/claims/{claim_id}/lock";
116173
+ type CreateLockForClaimPathParams = paths[typeof routeName$5$]['post']['parameters']['path'];
116174
+ type CreateLockForClaimQueryParams = paths[typeof routeName$5$]['post']['parameters']['query'];
116175
+ type CreateLockForClaimResponse = paths[typeof routeName$5$]['post']['responses'][201]['content']['application/json'];
116061
116176
  interface CreateLockForClaimProps {
116062
116177
  params: {
116063
116178
  query: CreateLockForClaimQueryParams;
@@ -116066,10 +116181,10 @@ interface CreateLockForClaimProps {
116066
116181
  }
116067
116182
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
116068
116183
 
116069
- declare const routeName$5Z = "/v1/api/claims/{claim_id}/unlock";
116070
- type UnlockClaimPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
116071
- type UnlockClaimQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
116072
- type UnlockClaimResponse = paths[typeof routeName$5Z]['post']['responses'][200]['content']['application/json'];
116184
+ declare const routeName$5_ = "/v1/api/claims/{claim_id}/unlock";
116185
+ type UnlockClaimPathParams = paths[typeof routeName$5_]['post']['parameters']['path'];
116186
+ type UnlockClaimQueryParams = paths[typeof routeName$5_]['post']['parameters']['query'];
116187
+ type UnlockClaimResponse = paths[typeof routeName$5_]['post']['responses'][200]['content']['application/json'];
116073
116188
  interface UnlockClaimProps {
116074
116189
  params: {
116075
116190
  query: UnlockClaimQueryParams;
@@ -116078,10 +116193,10 @@ interface UnlockClaimProps {
116078
116193
  }
116079
116194
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
116080
116195
 
116081
- declare const routeName$5Y = "/v1/api/claims/{claim_id}/request_update";
116082
- type ClaimRequestUpdatePathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
116083
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
116084
- type ClaimRequestUpdateResponse = paths[typeof routeName$5Y]['post']['responses'][200]['content']['application/json'];
116196
+ declare const routeName$5Z = "/v1/api/claims/{claim_id}/request_update";
116197
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
116198
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
116199
+ type ClaimRequestUpdateResponse = paths[typeof routeName$5Z]['post']['responses'][200]['content']['application/json'];
116085
116200
  interface ClaimRequestUpdateProps {
116086
116201
  params: {
116087
116202
  query: ClaimRequestUpdateQueryParams;
@@ -116090,10 +116205,10 @@ interface ClaimRequestUpdateProps {
116090
116205
  }
116091
116206
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
116092
116207
 
116093
- declare const routeName$5X = "/v1/api/claims/{claim_id}/validate";
116094
- type ValidateClaimPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
116095
- type ValidateClaimQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
116096
- type ValidateClaimResponse = paths[typeof routeName$5X]['post']['responses'][200]['content']['application/json'];
116208
+ declare const routeName$5Y = "/v1/api/claims/{claim_id}/validate";
116209
+ type ValidateClaimPathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
116210
+ type ValidateClaimQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
116211
+ type ValidateClaimResponse = paths[typeof routeName$5Y]['post']['responses'][200]['content']['application/json'];
116097
116212
  interface ValidateClaimProps {
116098
116213
  params: {
116099
116214
  query: ValidateClaimQueryParams;
@@ -116102,10 +116217,10 @@ interface ValidateClaimProps {
116102
116217
  }
116103
116218
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
116104
116219
 
116105
- declare const routeName$5W = "/v1/api/claims/{claim_id}/documents";
116106
- type CreateDocumentForClaimPathParams = paths[typeof routeName$5W]['post']['parameters']['path'];
116107
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$5W]['post']['parameters']['query'];
116108
- type CreateDocumentForClaimResponse = paths[typeof routeName$5W]['post']['responses'][201]['content']['application/json'];
116220
+ declare const routeName$5X = "/v1/api/claims/{claim_id}/documents";
116221
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
116222
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
116223
+ type CreateDocumentForClaimResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
116109
116224
  interface CreateDocumentForClaimProps {
116110
116225
  params: {
116111
116226
  query: CreateDocumentForClaimQueryParams;
@@ -116114,17 +116229,17 @@ interface CreateDocumentForClaimProps {
116114
116229
  }
116115
116230
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
116116
116231
 
116117
- declare const routeName$5V = "/v1/api/claims/{claim_id}/documents/{document_id}";
116118
- type DownloadDocumentByIdPathParams = paths[typeof routeName$5V]['get']['parameters']['path'];
116119
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$5V]['get']['parameters']['query'];
116120
- type DownloadDocumentByIdResponse = paths[typeof routeName$5V]['get']['responses'][307]['content']['application/json'];
116121
- type DownloadDocumentByIdProps = paths[typeof routeName$5V]['get']['parameters'];
116232
+ declare const routeName$5W = "/v1/api/claims/{claim_id}/documents/{document_id}";
116233
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$5W]['get']['parameters']['path'];
116234
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
116235
+ type DownloadDocumentByIdResponse = paths[typeof routeName$5W]['get']['responses'][307]['content']['application/json'];
116236
+ type DownloadDocumentByIdProps = paths[typeof routeName$5W]['get']['parameters'];
116122
116237
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
116123
116238
 
116124
- declare const routeName$5U = "/v1/api/claims/{claim_id}/documents/{document_id}";
116125
- type DeleteDocumentByIdPathParams = paths[typeof routeName$5U]['delete']['parameters']['path'];
116126
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$5U]['delete']['parameters']['query'];
116127
- type DeleteDocumentByIdResponse = paths[typeof routeName$5U]['delete']['responses'][200]['content']['application/json'];
116239
+ declare const routeName$5V = "/v1/api/claims/{claim_id}/documents/{document_id}";
116240
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$5V]['delete']['parameters']['path'];
116241
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$5V]['delete']['parameters']['query'];
116242
+ type DeleteDocumentByIdResponse = paths[typeof routeName$5V]['delete']['responses'][200]['content']['application/json'];
116128
116243
  interface DeleteDocumentByIdProps {
116129
116244
  params: {
116130
116245
  query: DeleteDocumentByIdQueryParams;
@@ -116133,10 +116248,10 @@ interface DeleteDocumentByIdProps {
116133
116248
  }
116134
116249
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
116135
116250
 
116136
- declare const routeName$5T = "/v1/api/claims/{claim_id}/documents/{document_id}";
116137
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$5T]['patch']['parameters']['path'];
116138
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$5T]['patch']['parameters']['query'];
116139
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$5T]['patch']['responses'][200]['content']['application/json'];
116251
+ declare const routeName$5U = "/v1/api/claims/{claim_id}/documents/{document_id}";
116252
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$5U]['patch']['parameters']['path'];
116253
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$5U]['patch']['parameters']['query'];
116254
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$5U]['patch']['responses'][200]['content']['application/json'];
116140
116255
  interface UpdateDocumentMetadataByIdProps {
116141
116256
  params: {
116142
116257
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -116145,17 +116260,17 @@ interface UpdateDocumentMetadataByIdProps {
116145
116260
  }
116146
116261
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
116147
116262
 
116148
- declare const routeName$5S = "/v1/api/claims/customer/token/{token}";
116149
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5S]['get']['parameters']['path'];
116150
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5S]['get']['parameters']['query'];
116151
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$5S]['get']['responses'][200]['content']['application/json'];
116152
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$5S]['get']['parameters'];
116263
+ declare const routeName$5T = "/v1/api/claims/customer/token/{token}";
116264
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5T]['get']['parameters']['path'];
116265
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5T]['get']['parameters']['query'];
116266
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$5T]['get']['responses'][200]['content']['application/json'];
116267
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$5T]['get']['parameters'];
116153
116268
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
116154
116269
 
116155
- declare const routeName$5R = "/v1/api/claims/customer/token/{token}";
116156
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5R]['patch']['parameters']['path'];
116157
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5R]['patch']['parameters']['query'];
116158
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$5R]['patch']['responses'][200]['content']['application/json'];
116270
+ declare const routeName$5S = "/v1/api/claims/customer/token/{token}";
116271
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5S]['patch']['parameters']['path'];
116272
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5S]['patch']['parameters']['query'];
116273
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$5S]['patch']['responses'][200]['content']['application/json'];
116159
116274
  interface UpdateClaimAsCustomerWithTokenProps {
116160
116275
  params: {
116161
116276
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -116164,10 +116279,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
116164
116279
  }
116165
116280
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
116166
116281
 
116167
- declare const routeName$5Q = "/v1/api/claims/customer/token/{token}/entities";
116168
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
116169
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5Q]['post']['parameters']['query'];
116170
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5Q]['post']['responses'][201]['content']['application/json'];
116282
+ declare const routeName$5R = "/v1/api/claims/customer/token/{token}/entities";
116283
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
116284
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
116285
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5R]['post']['responses'][201]['content']['application/json'];
116171
116286
  interface CreateEntityAsCustomerWithTokenProps {
116172
116287
  params: {
116173
116288
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -116176,10 +116291,10 @@ interface CreateEntityAsCustomerWithTokenProps {
116176
116291
  }
116177
116292
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
116178
116293
 
116179
- declare const routeName$5P = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
116180
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5P]['delete']['parameters']['path'];
116181
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5P]['delete']['parameters']['query'];
116182
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$5P]['delete']['responses'][200]['content']['application/json'];
116294
+ declare const routeName$5Q = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
116295
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5Q]['delete']['parameters']['path'];
116296
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5Q]['delete']['parameters']['query'];
116297
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$5Q]['delete']['responses'][200]['content']['application/json'];
116183
116298
  interface DeleteEntityByIdAsCustomerWithTokenProps {
116184
116299
  params: {
116185
116300
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -116188,10 +116303,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
116188
116303
  }
116189
116304
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
116190
116305
 
116191
- declare const routeName$5O = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
116192
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5O]['patch']['parameters']['path'];
116193
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5O]['patch']['parameters']['query'];
116194
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5O]['patch']['responses'][200]['content']['application/json'];
116306
+ declare const routeName$5P = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
116307
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5P]['patch']['parameters']['path'];
116308
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5P]['patch']['parameters']['query'];
116309
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5P]['patch']['responses'][200]['content']['application/json'];
116195
116310
  interface UpdateEntityAsCustomerWithTokenProps {
116196
116311
  params: {
116197
116312
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -116200,10 +116315,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
116200
116315
  }
116201
116316
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
116202
116317
 
116203
- declare const routeName$5N = "/v1/api/claims/upload/{claim_doc_category}";
116204
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$5N]['post']['parameters']['path'];
116205
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$5N]['post']['parameters']['query'];
116206
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$5N]['post']['responses'][200]['content']['application/json'];
116318
+ declare const routeName$5O = "/v1/api/claims/upload/{claim_doc_category}";
116319
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$5O]['post']['parameters']['path'];
116320
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$5O]['post']['parameters']['query'];
116321
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$5O]['post']['responses'][200]['content']['application/json'];
116207
116322
  interface UploadClaimDocumentAsBrokerProps {
116208
116323
  params: {
116209
116324
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -116212,10 +116327,10 @@ interface UploadClaimDocumentAsBrokerProps {
116212
116327
  }
116213
116328
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
116214
116329
 
116215
- declare const routeName$5M = "/v1/api/claims/customer/upload/{claim_doc_category}";
116216
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$5M]['post']['parameters']['path'];
116217
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$5M]['post']['parameters']['query'];
116218
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$5M]['post']['responses'][200]['content']['application/json'];
116330
+ declare const routeName$5N = "/v1/api/claims/customer/upload/{claim_doc_category}";
116331
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$5N]['post']['parameters']['path'];
116332
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$5N]['post']['parameters']['query'];
116333
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$5N]['post']['responses'][200]['content']['application/json'];
116219
116334
  interface CreateUploadLinkAsCustomerProps {
116220
116335
  params: {
116221
116336
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -116224,9 +116339,9 @@ interface CreateUploadLinkAsCustomerProps {
116224
116339
  }
116225
116340
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
116226
116341
 
116227
- declare const routeName$5L = "/v1/api/claims/generate/token";
116228
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$5L]['post']['parameters']['query'];
116229
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$5L]['post']['responses'][201]['content']['application/json'];
116342
+ declare const routeName$5M = "/v1/api/claims/generate/token";
116343
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$5M]['post']['parameters']['query'];
116344
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$5M]['post']['responses'][201]['content']['application/json'];
116230
116345
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
116231
116346
  params: {
116232
116347
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -116234,17 +116349,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
116234
116349
  }
116235
116350
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
116236
116351
 
116237
- declare const routeName$5K = "/v1/api/claims/customer/token/{token}/events";
116238
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5K]['get']['parameters']['path'];
116239
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
116240
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
116241
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$5K]['get']['parameters'];
116352
+ declare const routeName$5L = "/v1/api/claims/customer/token/{token}/events";
116353
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5L]['get']['parameters']['path'];
116354
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5L]['get']['parameters']['query'];
116355
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
116356
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$5L]['get']['parameters'];
116242
116357
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
116243
116358
 
116244
- declare const routeName$5J = "/v1/api/claims/customer/token/{token}/documents";
116245
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5J]['post']['parameters']['path'];
116246
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5J]['post']['parameters']['query'];
116247
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5J]['post']['responses'][200]['content']['application/json'];
116359
+ declare const routeName$5K = "/v1/api/claims/customer/token/{token}/documents";
116360
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5K]['post']['parameters']['path'];
116361
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5K]['post']['parameters']['query'];
116362
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5K]['post']['responses'][200]['content']['application/json'];
116248
116363
  interface CreateDocumentForClaimAsCustomerProps {
116249
116364
  params: {
116250
116365
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -116253,10 +116368,10 @@ interface CreateDocumentForClaimAsCustomerProps {
116253
116368
  }
116254
116369
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
116255
116370
 
116256
- declare const routeName$5I = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
116257
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5I]['delete']['parameters']['path'];
116258
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5I]['delete']['parameters']['query'];
116259
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5I]['delete']['responses'][200]['content']['application/json'];
116371
+ declare const routeName$5J = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
116372
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5J]['delete']['parameters']['path'];
116373
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5J]['delete']['parameters']['query'];
116374
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5J]['delete']['responses'][200]['content']['application/json'];
116260
116375
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
116261
116376
  params: {
116262
116377
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -116265,10 +116380,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
116265
116380
  }
116266
116381
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
116267
116382
 
116268
- declare const routeName$5H = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
116269
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5H]['patch']['parameters']['path'];
116270
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5H]['patch']['parameters']['query'];
116271
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5H]['patch']['responses'][200]['content']['application/json'];
116383
+ declare const routeName$5I = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
116384
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5I]['patch']['parameters']['path'];
116385
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5I]['patch']['parameters']['query'];
116386
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5I]['patch']['responses'][200]['content']['application/json'];
116272
116387
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
116273
116388
  params: {
116274
116389
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -116277,10 +116392,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
116277
116392
  }
116278
116393
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
116279
116394
 
116280
- declare const routeName$5G = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
116281
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5G]['post']['parameters']['path'];
116282
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5G]['post']['parameters']['query'];
116283
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5G]['post']['responses'][200]['content']['application/json'];
116395
+ declare const routeName$5H = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
116396
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5H]['post']['parameters']['path'];
116397
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5H]['post']['parameters']['query'];
116398
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5H]['post']['responses'][200]['content']['application/json'];
116284
116399
  interface CreateNoteOnEventAsCustomerProps {
116285
116400
  params: {
116286
116401
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -116289,10 +116404,10 @@ interface CreateNoteOnEventAsCustomerProps {
116289
116404
  }
116290
116405
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
116291
116406
 
116292
- declare const routeName$5F = "/v1/api/claims/{claim_id}/entities";
116293
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$5F]['post']['parameters']['path'];
116294
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5F]['post']['parameters']['query'];
116295
- type CreateEntityAsBrokerResponse = paths[typeof routeName$5F]['post']['responses'][201]['content']['application/json'];
116407
+ declare const routeName$5G = "/v1/api/claims/{claim_id}/entities";
116408
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$5G]['post']['parameters']['path'];
116409
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5G]['post']['parameters']['query'];
116410
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$5G]['post']['responses'][201]['content']['application/json'];
116296
116411
  interface CreateEntityAsBrokerProps {
116297
116412
  params: {
116298
116413
  query: CreateEntityAsBrokerQueryParams;
@@ -116301,10 +116416,10 @@ interface CreateEntityAsBrokerProps {
116301
116416
  }
116302
116417
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
116303
116418
 
116304
- declare const routeName$5E = "/v1/api/claims/{claim_id}/entities/{entity_id}";
116305
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5E]['delete']['parameters']['path'];
116306
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5E]['delete']['parameters']['query'];
116307
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5E]['delete']['responses'][200]['content']['application/json'];
116419
+ declare const routeName$5F = "/v1/api/claims/{claim_id}/entities/{entity_id}";
116420
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5F]['delete']['parameters']['path'];
116421
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5F]['delete']['parameters']['query'];
116422
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5F]['delete']['responses'][200]['content']['application/json'];
116308
116423
  interface DeleteEntityAsBrokerByIdProps {
116309
116424
  params: {
116310
116425
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -116313,10 +116428,10 @@ interface DeleteEntityAsBrokerByIdProps {
116313
116428
  }
116314
116429
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
116315
116430
 
116316
- declare const routeName$5D = "/v1/api/claims/{claim_id}/entities/{entity_id}";
116317
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5D]['patch']['parameters']['path'];
116318
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5D]['patch']['parameters']['query'];
116319
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5D]['patch']['responses'][200]['content']['application/json'];
116431
+ declare const routeName$5E = "/v1/api/claims/{claim_id}/entities/{entity_id}";
116432
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5E]['patch']['parameters']['path'];
116433
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5E]['patch']['parameters']['query'];
116434
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5E]['patch']['responses'][200]['content']['application/json'];
116320
116435
  interface UpdateEntityAsBrokerByIdProps {
116321
116436
  params: {
116322
116437
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -116325,17 +116440,17 @@ interface UpdateEntityAsBrokerByIdProps {
116325
116440
  }
116326
116441
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
116327
116442
 
116328
- declare const routeName$5C = "/v1/api/claims/{claim_id}/events";
116329
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5C]['get']['parameters']['path'];
116330
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
116331
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
116332
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5C]['get']['parameters'];
116443
+ declare const routeName$5D = "/v1/api/claims/{claim_id}/events";
116444
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5D]['get']['parameters']['path'];
116445
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5D]['get']['parameters']['query'];
116446
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5D]['get']['responses'][200]['content']['application/json'];
116447
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5D]['get']['parameters'];
116333
116448
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
116334
116449
 
116335
- declare const routeName$5B = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
116336
- type SendClaimToKeypointPathParams = paths[typeof routeName$5B]['post']['parameters']['path'];
116337
- type SendClaimToKeypointQueryParams = paths[typeof routeName$5B]['post']['parameters']['query'];
116338
- type SendClaimToKeypointResponse = paths[typeof routeName$5B]['post']['responses'][201]['content']['application/json'];
116450
+ declare const routeName$5C = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
116451
+ type SendClaimToKeypointPathParams = paths[typeof routeName$5C]['post']['parameters']['path'];
116452
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
116453
+ type SendClaimToKeypointResponse = paths[typeof routeName$5C]['post']['responses'][201]['content']['application/json'];
116339
116454
  interface SendClaimToKeypointProps {
116340
116455
  params: {
116341
116456
  query: SendClaimToKeypointQueryParams;
@@ -116344,10 +116459,10 @@ interface SendClaimToKeypointProps {
116344
116459
  }
116345
116460
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
116346
116461
 
116347
- declare const routeName$5A = "/v1/api/claims/{claim_id}/customer/followup-page/email";
116348
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5A]['post']['parameters']['path'];
116349
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5A]['post']['parameters']['query'];
116350
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5A]['post']['responses'][200]['content']['application/json'];
116462
+ declare const routeName$5B = "/v1/api/claims/{claim_id}/customer/followup-page/email";
116463
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5B]['post']['parameters']['path'];
116464
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5B]['post']['parameters']['query'];
116465
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5B]['post']['responses'][200]['content']['application/json'];
116351
116466
  interface SendMailFollowupPageToCustomerProps {
116352
116467
  params: {
116353
116468
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -116356,21 +116471,21 @@ interface SendMailFollowupPageToCustomerProps {
116356
116471
  }
116357
116472
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
116358
116473
 
116359
- declare const routeName$5z = "/v1/api/claims/categories/CAR";
116360
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5z]['get']['responses'][200]['content']['application/json'];
116474
+ declare const routeName$5A = "/v1/api/claims/categories/CAR";
116475
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
116361
116476
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
116362
116477
 
116363
- declare const routeName$5y = "/v1/api/claims/info/{claim_type}/{claim_category}";
116364
- type GetInfoForClaimPathParams = paths[typeof routeName$5y]['get']['parameters']['path'];
116365
- type GetInfoForClaimQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
116366
- type GetInfoForClaimResponse = paths[typeof routeName$5y]['get']['responses'][200]['content']['application/json'];
116367
- type GetInfoForClaimProps = paths[typeof routeName$5y]['get']['parameters'];
116478
+ declare const routeName$5z = "/v1/api/claims/info/{claim_type}/{claim_category}";
116479
+ type GetInfoForClaimPathParams = paths[typeof routeName$5z]['get']['parameters']['path'];
116480
+ type GetInfoForClaimQueryParams = paths[typeof routeName$5z]['get']['parameters']['query'];
116481
+ type GetInfoForClaimResponse = paths[typeof routeName$5z]['get']['responses'][200]['content']['application/json'];
116482
+ type GetInfoForClaimProps = paths[typeof routeName$5z]['get']['parameters'];
116368
116483
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
116369
116484
 
116370
- declare const routeName$5x = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
116371
- type CreateNoteOnEventPathParams = paths[typeof routeName$5x]['post']['parameters']['path'];
116372
- type CreateNoteOnEventQueryParams = paths[typeof routeName$5x]['post']['parameters']['query'];
116373
- type CreateNoteOnEventResponse = paths[typeof routeName$5x]['post']['responses'][201]['content']['application/json'];
116485
+ declare const routeName$5y = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
116486
+ type CreateNoteOnEventPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
116487
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
116488
+ type CreateNoteOnEventResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
116374
116489
  interface CreateNoteOnEventProps {
116375
116490
  params: {
116376
116491
  query: CreateNoteOnEventQueryParams;
@@ -116379,10 +116494,10 @@ interface CreateNoteOnEventProps {
116379
116494
  }
116380
116495
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
116381
116496
 
116382
- declare const routeName$5w = "/v1/api/claims/notes/{note_id}";
116383
- type DeleteNotePathParams = paths[typeof routeName$5w]['delete']['parameters']['path'];
116384
- type DeleteNoteQueryParams = paths[typeof routeName$5w]['delete']['parameters']['query'];
116385
- type DeleteNoteResponse = paths[typeof routeName$5w]['delete']['responses'][200]['content']['application/json'];
116497
+ declare const routeName$5x = "/v1/api/claims/notes/{note_id}";
116498
+ type DeleteNotePathParams = paths[typeof routeName$5x]['delete']['parameters']['path'];
116499
+ type DeleteNoteQueryParams = paths[typeof routeName$5x]['delete']['parameters']['query'];
116500
+ type DeleteNoteResponse = paths[typeof routeName$5x]['delete']['responses'][200]['content']['application/json'];
116386
116501
  interface DeleteNoteProps {
116387
116502
  params: {
116388
116503
  query: DeleteNoteQueryParams;
@@ -116391,10 +116506,10 @@ interface DeleteNoteProps {
116391
116506
  }
116392
116507
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
116393
116508
 
116394
- declare const routeName$5v = "/v1/api/claims/notes/{note_id}";
116395
- type UpdateNotePathParams = paths[typeof routeName$5v]['patch']['parameters']['path'];
116396
- type UpdateNoteQueryParams = paths[typeof routeName$5v]['patch']['parameters']['query'];
116397
- type UpdateNoteResponse = paths[typeof routeName$5v]['patch']['responses'][200]['content']['application/json'];
116509
+ declare const routeName$5w = "/v1/api/claims/notes/{note_id}";
116510
+ type UpdateNotePathParams = paths[typeof routeName$5w]['patch']['parameters']['path'];
116511
+ type UpdateNoteQueryParams = paths[typeof routeName$5w]['patch']['parameters']['query'];
116512
+ type UpdateNoteResponse = paths[typeof routeName$5w]['patch']['responses'][200]['content']['application/json'];
116398
116513
  interface UpdateNoteProps {
116399
116514
  params: {
116400
116515
  query: UpdateNoteQueryParams;
@@ -116403,17 +116518,17 @@ interface UpdateNoteProps {
116403
116518
  }
116404
116519
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
116405
116520
 
116406
- declare const routeName$5u = "/v1/api/claims/{claim_id}/report";
116407
- type ClaimReportByIdPathParams = paths[typeof routeName$5u]['get']['parameters']['path'];
116408
- type ClaimReportByIdQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
116409
- type ClaimReportByIdResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
116410
- type ClaimReportByIdProps = paths[typeof routeName$5u]['get']['parameters'];
116521
+ declare const routeName$5v = "/v1/api/claims/{claim_id}/report";
116522
+ type ClaimReportByIdPathParams = paths[typeof routeName$5v]['get']['parameters']['path'];
116523
+ type ClaimReportByIdQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
116524
+ type ClaimReportByIdResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
116525
+ type ClaimReportByIdProps = paths[typeof routeName$5v]['get']['parameters'];
116411
116526
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
116412
116527
 
116413
- declare const routeName$5t = "/v1/api/claims/{claim_id}/report/email";
116414
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$5t]['post']['parameters']['path'];
116415
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
116416
- type SendMailClaimReportByIdResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
116528
+ declare const routeName$5u = "/v1/api/claims/{claim_id}/report/email";
116529
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$5u]['post']['parameters']['path'];
116530
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5u]['post']['parameters']['query'];
116531
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$5u]['post']['responses'][200]['content']['application/json'];
116417
116532
  interface SendMailClaimReportByIdProps {
116418
116533
  params: {
116419
116534
  query: SendMailClaimReportByIdQueryParams;
@@ -116422,16 +116537,16 @@ interface SendMailClaimReportByIdProps {
116422
116537
  }
116423
116538
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
116424
116539
 
116425
- declare const routeName$5s = "/v1/api/brokers/{broker_id}/connections";
116426
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5s]['get']['parameters']['path'];
116427
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
116428
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5s]['get']['parameters'];
116540
+ declare const routeName$5t = "/v1/api/brokers/{broker_id}/connections";
116541
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5t]['get']['parameters']['path'];
116542
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5t]['get']['responses'][200]['content']['application/json'];
116543
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5t]['get']['parameters'];
116429
116544
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
116430
116545
 
116431
- declare const routeName$5r = "/v1/api/brokers/{broker_id}/connections/{key}";
116432
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5r]['post']['requestBody']['content']['application/json'];
116433
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5r]['post']['parameters']['path'];
116434
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5r]['post']['responses'][201]['content']['application/json'];
116546
+ declare const routeName$5s = "/v1/api/brokers/{broker_id}/connections/{key}";
116547
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5s]['post']['requestBody']['content']['application/json'];
116548
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5s]['post']['parameters']['path'];
116549
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5s]['post']['responses'][201]['content']['application/json'];
116435
116550
  interface CreateBrokerConnectionsByIdProps {
116436
116551
  body: CreateBrokerConnectionsByIdBody;
116437
116552
  params: {
@@ -116440,9 +116555,9 @@ interface CreateBrokerConnectionsByIdProps {
116440
116555
  }
116441
116556
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
116442
116557
 
116443
- declare const routeName$5q = "/v1/api/brokers/{broker_id}/connections/{key}";
116444
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5q]['delete']['parameters']['path'];
116445
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5q]['delete']['responses'][200]['content']['application/json'];
116558
+ declare const routeName$5r = "/v1/api/brokers/{broker_id}/connections/{key}";
116559
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5r]['delete']['parameters']['path'];
116560
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5r]['delete']['responses'][200]['content']['application/json'];
116446
116561
  interface DeleteBrokerConnectionByKeyProps {
116447
116562
  params: {
116448
116563
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -116450,10 +116565,10 @@ interface DeleteBrokerConnectionByKeyProps {
116450
116565
  }
116451
116566
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
116452
116567
 
116453
- declare const routeName$5p = "/v1/api/brokers/{broker_id}/connections/{key}";
116454
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5p]['patch']['requestBody']['content']['application/json'];
116455
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5p]['patch']['parameters']['path'];
116456
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5p]['patch']['responses'][200]['content']['application/json'];
116568
+ declare const routeName$5q = "/v1/api/brokers/{broker_id}/connections/{key}";
116569
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5q]['patch']['requestBody']['content']['application/json'];
116570
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5q]['patch']['parameters']['path'];
116571
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5q]['patch']['responses'][200]['content']['application/json'];
116457
116572
  interface UpdateBrokerConnectionByKeyProps {
116458
116573
  body: UpdateBrokerConnectionByKeyBody;
116459
116574
  params: {
@@ -116462,10 +116577,10 @@ interface UpdateBrokerConnectionByKeyProps {
116462
116577
  }
116463
116578
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
116464
116579
 
116465
- declare const routeName$5o = "/v1/api/distributions/{distribution_id}/connections/{key}";
116466
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$5o]['post']['requestBody']['content']['application/json'];
116467
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5o]['post']['parameters']['path'];
116468
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5o]['post']['responses'][201]['content']['application/json'];
116580
+ declare const routeName$5p = "/v1/api/distributions/{distribution_id}/connections/{key}";
116581
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$5p]['post']['requestBody']['content']['application/json'];
116582
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5p]['post']['parameters']['path'];
116583
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5p]['post']['responses'][201]['content']['application/json'];
116469
116584
  interface CreateDistributionConnectionByIdProps {
116470
116585
  body: CreateDistributionConnectionByIdBody;
116471
116586
  params: {
@@ -116474,9 +116589,9 @@ interface CreateDistributionConnectionByIdProps {
116474
116589
  }
116475
116590
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
116476
116591
 
116477
- declare const routeName$5n = "/v1/api/distributions/{distribution_id}/connections/{key}";
116478
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5n]['delete']['parameters']['path'];
116479
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5n]['delete']['responses'][200]['content']['application/json'];
116592
+ declare const routeName$5o = "/v1/api/distributions/{distribution_id}/connections/{key}";
116593
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5o]['delete']['parameters']['path'];
116594
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5o]['delete']['responses'][200]['content']['application/json'];
116480
116595
  interface DeleteDistributionConnectionByKeyProps {
116481
116596
  params: {
116482
116597
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -116484,10 +116599,10 @@ interface DeleteDistributionConnectionByKeyProps {
116484
116599
  }
116485
116600
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
116486
116601
 
116487
- declare const routeName$5m = "/v1/api/distributions/{distribution_id}/connections/{key}";
116488
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5m]['patch']['requestBody']['content']['application/json'];
116489
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5m]['patch']['parameters']['path'];
116490
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5m]['patch']['responses'][200]['content']['application/json'];
116602
+ declare const routeName$5n = "/v1/api/distributions/{distribution_id}/connections/{key}";
116603
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5n]['patch']['requestBody']['content']['application/json'];
116604
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5n]['patch']['parameters']['path'];
116605
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5n]['patch']['responses'][200]['content']['application/json'];
116491
116606
  interface UpdateDistributionConnectionByKeyProps {
116492
116607
  body: UpdateDistributionConnectionByKeyBody;
116493
116608
  params: {
@@ -116496,41 +116611,41 @@ interface UpdateDistributionConnectionByKeyProps {
116496
116611
  }
116497
116612
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
116498
116613
 
116499
- declare const routeName$5l = "/v1/api/distributions/{distribution_id}/connections";
116500
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5l]['get']['parameters']['path'];
116501
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
116502
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
116503
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5l]['get']['parameters'];
116614
+ declare const routeName$5m = "/v1/api/distributions/{distribution_id}/connections";
116615
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5m]['get']['parameters']['path'];
116616
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
116617
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
116618
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5m]['get']['parameters'];
116504
116619
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
116505
116620
 
116506
- declare const routeName$5k = "/v1/api/connections/anva/parties";
116507
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
116508
- type GetAnvaPartiesResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
116509
- type GetAnvaPartiesProps = paths[typeof routeName$5k]['get']['parameters'];
116621
+ declare const routeName$5l = "/v1/api/connections/anva/parties";
116622
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
116623
+ type GetAnvaPartiesResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
116624
+ type GetAnvaPartiesProps = paths[typeof routeName$5l]['get']['parameters'];
116510
116625
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
116511
116626
 
116512
- declare const routeName$5j = "/v1/api/connections/anva/employees";
116513
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$5j]['get']['parameters']['query'];
116514
- type GetAnvaEmployeesResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
116515
- type GetAnvaEmployeesProps = paths[typeof routeName$5j]['get']['parameters'];
116627
+ declare const routeName$5k = "/v1/api/connections/anva/employees";
116628
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
116629
+ type GetAnvaEmployeesResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
116630
+ type GetAnvaEmployeesProps = paths[typeof routeName$5k]['get']['parameters'];
116516
116631
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
116517
116632
 
116518
- declare const routeName$5i = "/v1/api/connections/anva/agents";
116519
- type GetAnvaAgentsQueryParams = paths[typeof routeName$5i]['get']['parameters']['query'];
116520
- type GetAnvaAgentsResponse = paths[typeof routeName$5i]['get']['responses'][200]['content']['application/json'];
116521
- type GetAnvaAgentsProps = paths[typeof routeName$5i]['get']['parameters'];
116633
+ declare const routeName$5j = "/v1/api/connections/anva/agents";
116634
+ type GetAnvaAgentsQueryParams = paths[typeof routeName$5j]['get']['parameters']['query'];
116635
+ type GetAnvaAgentsResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
116636
+ type GetAnvaAgentsProps = paths[typeof routeName$5j]['get']['parameters'];
116522
116637
  declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
116523
116638
 
116524
- declare const routeName$5h = "/v1/api/connections/anva/products";
116525
- type GetAnvaProductsQueryParams = paths[typeof routeName$5h]['get']['parameters']['query'];
116526
- type GetAnvaProductsResponse = paths[typeof routeName$5h]['get']['responses'][200]['content']['application/json'];
116527
- type GetAnvaProductsProps = paths[typeof routeName$5h]['get']['parameters'];
116639
+ declare const routeName$5i = "/v1/api/connections/anva/products";
116640
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5i]['get']['parameters']['query'];
116641
+ type GetAnvaProductsResponse = paths[typeof routeName$5i]['get']['responses'][200]['content']['application/json'];
116642
+ type GetAnvaProductsProps = paths[typeof routeName$5i]['get']['parameters'];
116528
116643
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
116529
116644
 
116530
- declare const routeName$5g = "/v1/api/connections/anva/parties/{anva_id}/imports";
116531
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5g]['post']['parameters']['path'];
116532
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5g]['post']['parameters']['query'];
116533
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5g]['post']['responses'][201]['content']['application/json'];
116645
+ declare const routeName$5h = "/v1/api/connections/anva/parties/{anva_id}/imports";
116646
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5h]['post']['parameters']['path'];
116647
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5h]['post']['parameters']['query'];
116648
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5h]['post']['responses'][201]['content']['application/json'];
116534
116649
  interface ImportAnvaPartyInWegroupProps {
116535
116650
  params: {
116536
116651
  query: ImportAnvaPartyInWegroupQueryParams;
@@ -116539,31 +116654,31 @@ interface ImportAnvaPartyInWegroupProps {
116539
116654
  }
116540
116655
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
116541
116656
 
116542
- declare const routeName$5f = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
116543
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5f]['get']['parameters']['path'];
116544
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5f]['get']['parameters']['query'];
116545
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5f]['get']['responses'][307]['content']['application/json'];
116546
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5f]['get']['parameters'];
116657
+ declare const routeName$5g = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
116658
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5g]['get']['parameters']['path'];
116659
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5g]['get']['parameters']['query'];
116660
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5g]['get']['responses'][307]['content']['application/json'];
116661
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5g]['get']['parameters'];
116547
116662
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
116548
116663
 
116549
- declare const routeName$5e = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
116550
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5e]['get']['parameters']['path'];
116551
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5e]['get']['parameters']['query'];
116552
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5e]['get']['responses'][307]['content']['application/json'];
116553
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5e]['get']['parameters'];
116664
+ declare const routeName$5f = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
116665
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5f]['get']['parameters']['path'];
116666
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5f]['get']['parameters']['query'];
116667
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5f]['get']['responses'][307]['content']['application/json'];
116668
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5f]['get']['parameters'];
116554
116669
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
116555
116670
 
116556
- declare const routeName$5d = "/v1/api/connections/anva/documents/import";
116557
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5d]['get']['parameters']['query'];
116558
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5d]['get']['responses'][307]['content']['application/json'];
116559
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5d]['get']['parameters'];
116671
+ declare const routeName$5e = "/v1/api/connections/anva/documents/import";
116672
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5e]['get']['parameters']['query'];
116673
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5e]['get']['responses'][307]['content']['application/json'];
116674
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5e]['get']['parameters'];
116560
116675
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
116561
116676
 
116562
- declare const routeName$5c = "/v1/api/connections/anva/parties/{anva_party_id}/task";
116563
- type CreateAnvaTaskBody = paths[typeof routeName$5c]['post']['requestBody']['content']['application/json'];
116564
- type CreateAnvaTaskPathParams = paths[typeof routeName$5c]['post']['parameters']['path'];
116565
- type CreateAnvaTaskQueryParams = paths[typeof routeName$5c]['post']['parameters']['query'];
116566
- type CreateAnvaTaskResponse = paths[typeof routeName$5c]['post']['responses'][201]['content']['application/json'];
116677
+ declare const routeName$5d = "/v1/api/connections/anva/parties/{anva_party_id}/task";
116678
+ type CreateAnvaTaskBody = paths[typeof routeName$5d]['post']['requestBody']['content']['application/json'];
116679
+ type CreateAnvaTaskPathParams = paths[typeof routeName$5d]['post']['parameters']['path'];
116680
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$5d]['post']['parameters']['query'];
116681
+ type CreateAnvaTaskResponse = paths[typeof routeName$5d]['post']['responses'][201]['content']['application/json'];
116567
116682
  interface CreateAnvaTaskProps {
116568
116683
  body: CreateAnvaTaskBody;
116569
116684
  params: {
@@ -116573,9 +116688,9 @@ interface CreateAnvaTaskProps {
116573
116688
  }
116574
116689
  declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
116575
116690
 
116576
- declare const routeName$5b = "/v1/api/connections/anva/validate";
116577
- type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5b]['post']['parameters']['query'];
116578
- type ValidateAnvaConnectionResponse = paths[typeof routeName$5b]['post']['responses'][200]['content']['application/json'];
116691
+ declare const routeName$5c = "/v1/api/connections/anva/validate";
116692
+ type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5c]['post']['parameters']['query'];
116693
+ type ValidateAnvaConnectionResponse = paths[typeof routeName$5c]['post']['responses'][200]['content']['application/json'];
116579
116694
  interface ValidateAnvaConnectionProps {
116580
116695
  params: {
116581
116696
  query: ValidateAnvaConnectionQueryParams;
@@ -116583,9 +116698,9 @@ interface ValidateAnvaConnectionProps {
116583
116698
  }
116584
116699
  declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
116585
116700
 
116586
- declare const routeName$5a = "/v1/api/connections/anva_dwh/validate";
116587
- type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5a]['post']['parameters']['query'];
116588
- type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5a]['post']['responses'][200]['content']['application/json'];
116701
+ declare const routeName$5b = "/v1/api/connections/anva_dwh/validate";
116702
+ type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5b]['post']['parameters']['query'];
116703
+ type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5b]['post']['responses'][200]['content']['application/json'];
116589
116704
  interface ValidateAnvaDwhConnectionProps {
116590
116705
  params: {
116591
116706
  query: ValidateAnvaDwhConnectionQueryParams;
@@ -116593,22 +116708,22 @@ interface ValidateAnvaDwhConnectionProps {
116593
116708
  }
116594
116709
  declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
116595
116710
 
116596
- declare const routeName$59 = "/v1/api/connections/dias/parties";
116597
- type GetDiasPartiesQueryParams = paths[typeof routeName$59]['get']['parameters']['query'];
116598
- type GetDiasPartiesResponse = paths[typeof routeName$59]['get']['responses'][200]['content']['application/json'];
116599
- type GetDiasPartiesProps = paths[typeof routeName$59]['get']['parameters'];
116711
+ declare const routeName$5a = "/v1/api/connections/dias/parties";
116712
+ type GetDiasPartiesQueryParams = paths[typeof routeName$5a]['get']['parameters']['query'];
116713
+ type GetDiasPartiesResponse = paths[typeof routeName$5a]['get']['responses'][200]['content']['application/json'];
116714
+ type GetDiasPartiesProps = paths[typeof routeName$5a]['get']['parameters'];
116600
116715
  declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
116601
116716
 
116602
- declare const routeName$58 = "/v1/api/connections/dias/employees";
116603
- type GetDiasEmployeesQueryParams = paths[typeof routeName$58]['get']['parameters']['query'];
116604
- type GetDiasEmployeesResponse = paths[typeof routeName$58]['get']['responses'][200]['content']['application/json'];
116605
- type GetDiasEmployeesProps = paths[typeof routeName$58]['get']['parameters'];
116717
+ declare const routeName$59 = "/v1/api/connections/dias/employees";
116718
+ type GetDiasEmployeesQueryParams = paths[typeof routeName$59]['get']['parameters']['query'];
116719
+ type GetDiasEmployeesResponse = paths[typeof routeName$59]['get']['responses'][200]['content']['application/json'];
116720
+ type GetDiasEmployeesProps = paths[typeof routeName$59]['get']['parameters'];
116606
116721
  declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
116607
116722
 
116608
- declare const routeName$57 = "/v1/api/connections/dias/parties/{dias_id}/imports";
116609
- type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$57]['post']['parameters']['path'];
116610
- type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$57]['post']['parameters']['query'];
116611
- type ImportDiasPartyInWegroupResponse = paths[typeof routeName$57]['post']['responses'][201]['content']['application/json'];
116723
+ declare const routeName$58 = "/v1/api/connections/dias/parties/{dias_id}/imports";
116724
+ type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$58]['post']['parameters']['path'];
116725
+ type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$58]['post']['parameters']['query'];
116726
+ type ImportDiasPartyInWegroupResponse = paths[typeof routeName$58]['post']['responses'][201]['content']['application/json'];
116612
116727
  interface ImportDiasPartyInWegroupProps {
116613
116728
  params: {
116614
116729
  query: ImportDiasPartyInWegroupQueryParams;
@@ -116617,27 +116732,27 @@ interface ImportDiasPartyInWegroupProps {
116617
116732
  }
116618
116733
  declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
116619
116734
 
116620
- declare const routeName$56 = "/v1/api/connections/fasterforward/employees";
116621
- type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$56]['get']['parameters']['query'];
116622
- type GetFasterforwardEmployeesResponse = paths[typeof routeName$56]['get']['responses'][200]['content']['application/json'];
116623
- type GetFasterforwardEmployeesProps = paths[typeof routeName$56]['get']['parameters'];
116735
+ declare const routeName$57 = "/v1/api/connections/fasterforward/employees";
116736
+ type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$57]['get']['parameters']['query'];
116737
+ type GetFasterforwardEmployeesResponse = paths[typeof routeName$57]['get']['responses'][200]['content']['application/json'];
116738
+ type GetFasterforwardEmployeesProps = paths[typeof routeName$57]['get']['parameters'];
116624
116739
  declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
116625
116740
 
116626
- declare const routeName$55 = "/v1/api/connections/assu/employees";
116627
- type GetAssuEmployeesQueryParams = paths[typeof routeName$55]['get']['parameters']['query'];
116628
- type GetAssuEmployeesResponse = paths[typeof routeName$55]['get']['responses'][200]['content']['application/json'];
116629
- type GetAssuEmployeesProps = paths[typeof routeName$55]['get']['parameters'];
116741
+ declare const routeName$56 = "/v1/api/connections/assu/employees";
116742
+ type GetAssuEmployeesQueryParams = paths[typeof routeName$56]['get']['parameters']['query'];
116743
+ type GetAssuEmployeesResponse = paths[typeof routeName$56]['get']['responses'][200]['content']['application/json'];
116744
+ type GetAssuEmployeesProps = paths[typeof routeName$56]['get']['parameters'];
116630
116745
  declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
116631
116746
 
116632
- declare const routeName$54 = "/v1/api/connections/fasterforward/teams";
116633
- type GetFasterforwardTeamsQueryParams = paths[typeof routeName$54]['get']['parameters']['query'];
116634
- type GetFasterforwardTeamsResponse = paths[typeof routeName$54]['get']['responses'][200]['content']['application/json'];
116635
- type GetFasterforwardTeamsProps = paths[typeof routeName$54]['get']['parameters'];
116747
+ declare const routeName$55 = "/v1/api/connections/fasterforward/teams";
116748
+ type GetFasterforwardTeamsQueryParams = paths[typeof routeName$55]['get']['parameters']['query'];
116749
+ type GetFasterforwardTeamsResponse = paths[typeof routeName$55]['get']['responses'][200]['content']['application/json'];
116750
+ type GetFasterforwardTeamsProps = paths[typeof routeName$55]['get']['parameters'];
116636
116751
  declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
116637
116752
 
116638
- declare const routeName$53 = "/v1/api/connections/fasterforward/validate";
116639
- type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$53]['post']['parameters']['query'];
116640
- type ValidateFasterforwardConnectionResponse = paths[typeof routeName$53]['post']['responses'][200]['content']['application/json'];
116753
+ declare const routeName$54 = "/v1/api/connections/fasterforward/validate";
116754
+ type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$54]['post']['parameters']['query'];
116755
+ type ValidateFasterforwardConnectionResponse = paths[typeof routeName$54]['post']['responses'][200]['content']['application/json'];
116641
116756
  interface ValidateFasterforwardConnectionProps {
116642
116757
  params: {
116643
116758
  query: ValidateFasterforwardConnectionQueryParams;
@@ -116645,15 +116760,15 @@ interface ValidateFasterforwardConnectionProps {
116645
116760
  }
116646
116761
  declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
116647
116762
 
116648
- declare const routeName$52 = "/v1/api/integrations/anva/parties";
116649
- type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$52]['get']['parameters']['query'];
116650
- type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$52]['get']['responses'][200]['content']['application/json'];
116651
- type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$52]['get']['parameters'];
116763
+ declare const routeName$53 = "/v1/api/integrations/anva/parties";
116764
+ type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$53]['get']['parameters']['query'];
116765
+ type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$53]['get']['responses'][200]['content']['application/json'];
116766
+ type V1ApiIntegrationsAnvaPartiesGetProps = paths[typeof routeName$53]['get']['parameters'];
116652
116767
  declare const v1ApiIntegrationsAnvaPartiesGet: (props: V1ApiIntegrationsAnvaPartiesGetProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesGetResponse>;
116653
116768
 
116654
- declare const routeName$51 = "/v1/api/integrations/anva/parties/{anva_id}/imports";
116655
- type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$51]['post']['parameters']['query'];
116656
- type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$51]['post']['responses'][201]['content']['application/json'];
116769
+ declare const routeName$52 = "/v1/api/integrations/anva/parties/{anva_id}/imports";
116770
+ type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams = paths[typeof routeName$52]['post']['parameters']['query'];
116771
+ type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse = paths[typeof routeName$52]['post']['responses'][201]['content']['application/json'];
116657
116772
  interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
116658
116773
  params: {
116659
116774
  query: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams;
@@ -116661,9 +116776,9 @@ interface V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps {
116661
116776
  }
116662
116777
  declare const v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost: (props: V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse>;
116663
116778
 
116664
- declare const routeName$50 = "/v1/api/integrations/anva/validate";
116665
- type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$50]['post']['parameters']['query'];
116666
- type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$50]['post']['responses'][200]['content']['application/json'];
116779
+ declare const routeName$51 = "/v1/api/integrations/anva/validate";
116780
+ type V1ApiIntegrationsAnvaValidatePostQueryParams = paths[typeof routeName$51]['post']['parameters']['query'];
116781
+ type V1ApiIntegrationsAnvaValidatePostResponse = paths[typeof routeName$51]['post']['responses'][200]['content']['application/json'];
116667
116782
  interface V1ApiIntegrationsAnvaValidatePostProps {
116668
116783
  params: {
116669
116784
  query: V1ApiIntegrationsAnvaValidatePostQueryParams;
@@ -116671,11 +116786,11 @@ interface V1ApiIntegrationsAnvaValidatePostProps {
116671
116786
  }
116672
116787
  declare const v1ApiIntegrationsAnvaValidatePost: (props: V1ApiIntegrationsAnvaValidatePostProps, wgApiClient: ClientType) => Promise<V1ApiIntegrationsAnvaValidatePostResponse>;
116673
116788
 
116674
- declare const routeName$4$ = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
116675
- type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$4$]['post']['requestBody']['content']['application/json'];
116676
- type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$4$]['post']['parameters']['path'];
116677
- type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$4$]['post']['parameters']['query'];
116678
- type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$4$]['post']['responses'][200]['content']['application/json'];
116789
+ declare const routeName$50 = "/v1/api/conversations/{session_id}/generate-questions-to-prefill-by-car";
116790
+ type GenerateQuestionsToPrefillByCarBody = paths[typeof routeName$50]['post']['requestBody']['content']['application/json'];
116791
+ type GenerateQuestionsToPrefillByCarPathParams = paths[typeof routeName$50]['post']['parameters']['path'];
116792
+ type GenerateQuestionsToPrefillByCarQueryParams = paths[typeof routeName$50]['post']['parameters']['query'];
116793
+ type GenerateQuestionsToPrefillByCarResponse = paths[typeof routeName$50]['post']['responses'][200]['content']['application/json'];
116679
116794
  interface GenerateQuestionsToPrefillByCarProps {
116680
116795
  body: GenerateQuestionsToPrefillByCarBody;
116681
116796
  params: {
@@ -116685,11 +116800,11 @@ interface GenerateQuestionsToPrefillByCarProps {
116685
116800
  }
116686
116801
  declare const generateQuestionsToPrefillByCar: (props: GenerateQuestionsToPrefillByCarProps, wgApiClient: ClientType) => Promise<GenerateQuestionsToPrefillByCarResponse>;
116687
116802
 
116688
- declare const routeName$4_ = "/v1/api/flows/{flow_id}/conversations";
116689
- type CreateConversationBody = paths[typeof routeName$4_]['post']['requestBody']['content']['application/json'];
116690
- type CreateConversationPathParams = paths[typeof routeName$4_]['post']['parameters']['path'];
116691
- type CreateConversationQueryParams = paths[typeof routeName$4_]['post']['parameters']['query'];
116692
- type CreateConversationResponse = paths[typeof routeName$4_]['post']['responses'][201]['content']['application/json'];
116803
+ declare const routeName$4$ = "/v1/api/flows/{flow_id}/conversations";
116804
+ type CreateConversationBody = paths[typeof routeName$4$]['post']['requestBody']['content']['application/json'];
116805
+ type CreateConversationPathParams = paths[typeof routeName$4$]['post']['parameters']['path'];
116806
+ type CreateConversationQueryParams = paths[typeof routeName$4$]['post']['parameters']['query'];
116807
+ type CreateConversationResponse = paths[typeof routeName$4$]['post']['responses'][201]['content']['application/json'];
116693
116808
  interface CreateConversationProps {
116694
116809
  body: CreateConversationBody;
116695
116810
  params: {
@@ -116699,11 +116814,11 @@ interface CreateConversationProps {
116699
116814
  }
116700
116815
  declare const createConversation: (props: CreateConversationProps, wgApiClient: ClientType) => Promise<CreateConversationResponse>;
116701
116816
 
116702
- declare const routeName$4Z = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
116703
- type AnswerAFlowSessionBody = paths[typeof routeName$4Z]['post']['requestBody']['content']['application/json'];
116704
- type AnswerAFlowSessionPathParams = paths[typeof routeName$4Z]['post']['parameters']['path'];
116705
- type AnswerAFlowSessionQueryParams = paths[typeof routeName$4Z]['post']['parameters']['query'];
116706
- type AnswerAFlowSessionResponse = paths[typeof routeName$4Z]['post']['responses'][200]['content']['application/json'];
116817
+ declare const routeName$4_ = "/v1/api/flows/{flow_id}/conversations/{session_id}/answers";
116818
+ type AnswerAFlowSessionBody = paths[typeof routeName$4_]['post']['requestBody']['content']['application/json'];
116819
+ type AnswerAFlowSessionPathParams = paths[typeof routeName$4_]['post']['parameters']['path'];
116820
+ type AnswerAFlowSessionQueryParams = paths[typeof routeName$4_]['post']['parameters']['query'];
116821
+ type AnswerAFlowSessionResponse = paths[typeof routeName$4_]['post']['responses'][200]['content']['application/json'];
116707
116822
  interface AnswerAFlowSessionProps {
116708
116823
  body: AnswerAFlowSessionBody;
116709
116824
  params: {
@@ -116713,28 +116828,28 @@ interface AnswerAFlowSessionProps {
116713
116828
  }
116714
116829
  declare const answerAFlowSession: (props: AnswerAFlowSessionProps, wgApiClient: ClientType) => Promise<AnswerAFlowSessionResponse>;
116715
116830
 
116716
- declare const routeName$4Y = "/v1/api/conversations";
116717
- type GetAllConversationsQueryParams = paths[typeof routeName$4Y]['get']['parameters']['query'];
116718
- type GetAllConversationsResponse = paths[typeof routeName$4Y]['get']['responses'][200]['content']['application/json'];
116719
- type GetAllConversationsProps = paths[typeof routeName$4Y]['get']['parameters'];
116831
+ declare const routeName$4Z = "/v1/api/conversations";
116832
+ type GetAllConversationsQueryParams = paths[typeof routeName$4Z]['get']['parameters']['query'];
116833
+ type GetAllConversationsResponse = paths[typeof routeName$4Z]['get']['responses'][200]['content']['application/json'];
116834
+ type GetAllConversationsProps = paths[typeof routeName$4Z]['get']['parameters'];
116720
116835
  declare const getAllConversations: (props: GetAllConversationsProps, wgApiClient: ClientType) => Promise<GetAllConversationsResponse>;
116721
116836
 
116722
- declare const routeName$4X = "/v1/api/conversations-filters/origin";
116723
- type GetConversationsOriginFilterQueryParams = paths[typeof routeName$4X]['get']['parameters']['query'];
116724
- type GetConversationsOriginFilterResponse = paths[typeof routeName$4X]['get']['responses'][200]['content']['application/json'];
116725
- type GetConversationsOriginFilterProps = paths[typeof routeName$4X]['get']['parameters'];
116837
+ declare const routeName$4Y = "/v1/api/conversations-filters/origin";
116838
+ type GetConversationsOriginFilterQueryParams = paths[typeof routeName$4Y]['get']['parameters']['query'];
116839
+ type GetConversationsOriginFilterResponse = paths[typeof routeName$4Y]['get']['responses'][200]['content']['application/json'];
116840
+ type GetConversationsOriginFilterProps = paths[typeof routeName$4Y]['get']['parameters'];
116726
116841
  declare const getConversationsOriginFilter: (props: GetConversationsOriginFilterProps, wgApiClient: ClientType) => Promise<GetConversationsOriginFilterResponse>;
116727
116842
 
116728
- declare const routeName$4W = "/v1/api/conversations/{session_id}";
116729
- type GetConversationByIdPathParams = paths[typeof routeName$4W]['get']['parameters']['path'];
116730
- type GetConversationByIdQueryParams = paths[typeof routeName$4W]['get']['parameters']['query'];
116731
- type GetConversationByIdResponse = paths[typeof routeName$4W]['get']['responses'][200]['content']['application/json'];
116732
- type GetConversationByIdProps = paths[typeof routeName$4W]['get']['parameters'];
116843
+ declare const routeName$4X = "/v1/api/conversations/{session_id}";
116844
+ type GetConversationByIdPathParams = paths[typeof routeName$4X]['get']['parameters']['path'];
116845
+ type GetConversationByIdQueryParams = paths[typeof routeName$4X]['get']['parameters']['query'];
116846
+ type GetConversationByIdResponse = paths[typeof routeName$4X]['get']['responses'][200]['content']['application/json'];
116847
+ type GetConversationByIdProps = paths[typeof routeName$4X]['get']['parameters'];
116733
116848
  declare const getConversationById: (props: GetConversationByIdProps, wgApiClient: ClientType) => Promise<GetConversationByIdResponse>;
116734
116849
 
116735
- declare const routeName$4V = "/v1/api/conversations/{session_id}";
116736
- type DeleteSessionBySessionIdPathParams = paths[typeof routeName$4V]['delete']['parameters']['path'];
116737
- type DeleteSessionBySessionIdResponse = paths[typeof routeName$4V]['delete']['responses'][200]['content']['application/json'];
116850
+ declare const routeName$4W = "/v1/api/conversations/{session_id}";
116851
+ type DeleteSessionBySessionIdPathParams = paths[typeof routeName$4W]['delete']['parameters']['path'];
116852
+ type DeleteSessionBySessionIdResponse = paths[typeof routeName$4W]['delete']['responses'][200]['content']['application/json'];
116738
116853
  interface DeleteSessionBySessionIdProps {
116739
116854
  params: {
116740
116855
  path: DeleteSessionBySessionIdPathParams;
@@ -116742,10 +116857,10 @@ interface DeleteSessionBySessionIdProps {
116742
116857
  }
116743
116858
  declare const deleteSessionBySessionId: (props: DeleteSessionBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteSessionBySessionIdResponse>;
116744
116859
 
116745
- declare const routeName$4U = "/v1/api/conversations/{session_id}";
116746
- type UpdateConversationByIdBody = paths[typeof routeName$4U]['patch']['requestBody']['content']['application/json'];
116747
- type UpdateConversationByIdPathParams = paths[typeof routeName$4U]['patch']['parameters']['path'];
116748
- type UpdateConversationByIdResponse = paths[typeof routeName$4U]['patch']['responses'][200]['content']['application/json'];
116860
+ declare const routeName$4V = "/v1/api/conversations/{session_id}";
116861
+ type UpdateConversationByIdBody = paths[typeof routeName$4V]['patch']['requestBody']['content']['application/json'];
116862
+ type UpdateConversationByIdPathParams = paths[typeof routeName$4V]['patch']['parameters']['path'];
116863
+ type UpdateConversationByIdResponse = paths[typeof routeName$4V]['patch']['responses'][200]['content']['application/json'];
116749
116864
  interface UpdateConversationByIdProps {
116750
116865
  body: UpdateConversationByIdBody;
116751
116866
  params: {
@@ -116754,16 +116869,16 @@ interface UpdateConversationByIdProps {
116754
116869
  }
116755
116870
  declare const updateConversationById: (props: UpdateConversationByIdProps, wgApiClient: ClientType) => Promise<UpdateConversationByIdResponse>;
116756
116871
 
116757
- declare const routeName$4T = "/v1/api/conversations/{session_id}/sessions";
116758
- type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$4T]['get']['parameters']['path'];
116759
- type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$4T]['get']['parameters']['query'];
116760
- type GetAllSessionsBySessionIdResponse = paths[typeof routeName$4T]['get']['responses'][200]['content']['application/json'];
116761
- type GetAllSessionsBySessionIdProps = paths[typeof routeName$4T]['get']['parameters'];
116872
+ declare const routeName$4U = "/v1/api/conversations/{session_id}/sessions";
116873
+ type GetAllSessionsBySessionIdPathParams = paths[typeof routeName$4U]['get']['parameters']['path'];
116874
+ type GetAllSessionsBySessionIdQueryParams = paths[typeof routeName$4U]['get']['parameters']['query'];
116875
+ type GetAllSessionsBySessionIdResponse = paths[typeof routeName$4U]['get']['responses'][200]['content']['application/json'];
116876
+ type GetAllSessionsBySessionIdProps = paths[typeof routeName$4U]['get']['parameters'];
116762
116877
  declare const getAllSessionsBySessionId: (props: GetAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<GetAllSessionsBySessionIdResponse>;
116763
116878
 
116764
- declare const routeName$4S = "/v1/api/conversations/{session_id}/sessions";
116765
- type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$4S]['delete']['parameters']['path'];
116766
- type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$4S]['delete']['responses'][200]['content']['application/json'];
116879
+ declare const routeName$4T = "/v1/api/conversations/{session_id}/sessions";
116880
+ type DeleteAllSessionsBySessionIdPathParams = paths[typeof routeName$4T]['delete']['parameters']['path'];
116881
+ type DeleteAllSessionsBySessionIdResponse = paths[typeof routeName$4T]['delete']['responses'][200]['content']['application/json'];
116767
116882
  interface DeleteAllSessionsBySessionIdProps {
116768
116883
  params: {
116769
116884
  path: DeleteAllSessionsBySessionIdPathParams;
@@ -116771,10 +116886,10 @@ interface DeleteAllSessionsBySessionIdProps {
116771
116886
  }
116772
116887
  declare const deleteAllSessionsBySessionId: (props: DeleteAllSessionsBySessionIdProps, wgApiClient: ClientType) => Promise<DeleteAllSessionsBySessionIdResponse>;
116773
116888
 
116774
- declare const routeName$4R = "/v1/api/conversations/{session_id}/entities/{entity_id}";
116775
- type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4R]['delete']['parameters']['path'];
116776
- type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4R]['delete']['parameters']['query'];
116777
- type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4R]['delete']['responses'][200]['content']['application/json'];
116889
+ declare const routeName$4S = "/v1/api/conversations/{session_id}/entities/{entity_id}";
116890
+ type DeleteEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4S]['delete']['parameters']['path'];
116891
+ type DeleteEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4S]['delete']['parameters']['query'];
116892
+ type DeleteEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4S]['delete']['responses'][200]['content']['application/json'];
116778
116893
  interface DeleteEntityBySessionIdAndFlowIdProps {
116779
116894
  params: {
116780
116895
  query: DeleteEntityBySessionIdAndFlowIdQueryParams;
@@ -116783,10 +116898,10 @@ interface DeleteEntityBySessionIdAndFlowIdProps {
116783
116898
  }
116784
116899
  declare const deleteEntityBySessionIdAndFlowId: (props: DeleteEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeleteEntityBySessionIdAndFlowIdResponse>;
116785
116900
 
116786
- declare const routeName$4Q = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
116787
- type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4Q]['delete']['parameters']['path'];
116788
- type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4Q]['delete']['parameters']['query'];
116789
- type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4Q]['delete']['responses'][200]['content']['application/json'];
116901
+ declare const routeName$4R = "/v1/api/conversations/{session_id}/entities/{entity_id}/parties/{party_id}";
116902
+ type DeletePartyEntityBySessionIdAndFlowIdPathParams = paths[typeof routeName$4R]['delete']['parameters']['path'];
116903
+ type DeletePartyEntityBySessionIdAndFlowIdQueryParams = paths[typeof routeName$4R]['delete']['parameters']['query'];
116904
+ type DeletePartyEntityBySessionIdAndFlowIdResponse = paths[typeof routeName$4R]['delete']['responses'][200]['content']['application/json'];
116790
116905
  interface DeletePartyEntityBySessionIdAndFlowIdProps {
116791
116906
  params: {
116792
116907
  query: DeletePartyEntityBySessionIdAndFlowIdQueryParams;
@@ -116795,10 +116910,10 @@ interface DeletePartyEntityBySessionIdAndFlowIdProps {
116795
116910
  }
116796
116911
  declare const deletePartyEntityBySessionIdAndFlowId: (props: DeletePartyEntityBySessionIdAndFlowIdProps, wgApiClient: ClientType) => Promise<DeletePartyEntityBySessionIdAndFlowIdResponse>;
116797
116912
 
116798
- declare const routeName$4P = "/v1/api/conversations/{session_id}/complete";
116799
- type MarkConversationAsCompletedByIdBody = paths[typeof routeName$4P]['post']['requestBody']['content']['application/json'];
116800
- type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$4P]['post']['parameters']['path'];
116801
- type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$4P]['post']['responses'][200]['content']['application/json'];
116913
+ declare const routeName$4Q = "/v1/api/conversations/{session_id}/complete";
116914
+ type MarkConversationAsCompletedByIdBody = paths[typeof routeName$4Q]['post']['requestBody']['content']['application/json'];
116915
+ type MarkConversationAsCompletedByIdPathParams = paths[typeof routeName$4Q]['post']['parameters']['path'];
116916
+ type MarkConversationAsCompletedByIdResponse = paths[typeof routeName$4Q]['post']['responses'][200]['content']['application/json'];
116802
116917
  interface MarkConversationAsCompletedByIdProps {
116803
116918
  body: MarkConversationAsCompletedByIdBody;
116804
116919
  params: {
@@ -116807,9 +116922,9 @@ interface MarkConversationAsCompletedByIdProps {
116807
116922
  }
116808
116923
  declare const markConversationAsCompletedById: (props: MarkConversationAsCompletedByIdProps, wgApiClient: ClientType) => Promise<MarkConversationAsCompletedByIdResponse>;
116809
116924
 
116810
- declare const routeName$4O = "/v1/api/conversations/{session_id}/reminders";
116811
- type CreateConversationReminderPathParams = paths[typeof routeName$4O]['post']['parameters']['path'];
116812
- type CreateConversationReminderResponse = paths[typeof routeName$4O]['post']['responses'][200]['content']['application/json'];
116925
+ declare const routeName$4P = "/v1/api/conversations/{session_id}/reminders";
116926
+ type CreateConversationReminderPathParams = paths[typeof routeName$4P]['post']['parameters']['path'];
116927
+ type CreateConversationReminderResponse = paths[typeof routeName$4P]['post']['responses'][200]['content']['application/json'];
116813
116928
  interface CreateConversationReminderProps {
116814
116929
  params: {
116815
116930
  path: CreateConversationReminderPathParams;
@@ -116817,11 +116932,11 @@ interface CreateConversationReminderProps {
116817
116932
  }
116818
116933
  declare const createConversationReminder: (props: CreateConversationReminderProps, wgApiClient: ClientType) => Promise<CreateConversationReminderResponse>;
116819
116934
 
116820
- declare const routeName$4N = "/v1/api/conversations/{session_id}/pdf";
116821
- type GetConversationReportPdfByIdBody = paths[typeof routeName$4N]['post']['requestBody']['content']['application/json'];
116822
- type GetConversationReportPdfByIdPathParams = paths[typeof routeName$4N]['post']['parameters']['path'];
116823
- type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$4N]['post']['parameters']['query'];
116824
- type GetConversationReportPdfByIdResponse = paths[typeof routeName$4N]['post']['responses'][200]['content']['application/json'];
116935
+ declare const routeName$4O = "/v1/api/conversations/{session_id}/pdf";
116936
+ type GetConversationReportPdfByIdBody = paths[typeof routeName$4O]['post']['requestBody']['content']['application/json'];
116937
+ type GetConversationReportPdfByIdPathParams = paths[typeof routeName$4O]['post']['parameters']['path'];
116938
+ type GetConversationReportPdfByIdQueryParams = paths[typeof routeName$4O]['post']['parameters']['query'];
116939
+ type GetConversationReportPdfByIdResponse = paths[typeof routeName$4O]['post']['responses'][200]['content']['application/json'];
116825
116940
  interface GetConversationReportPdfByIdProps {
116826
116941
  body: GetConversationReportPdfByIdBody;
116827
116942
  params: {
@@ -116831,10 +116946,10 @@ interface GetConversationReportPdfByIdProps {
116831
116946
  }
116832
116947
  declare const getConversationReportPdfById: (props: GetConversationReportPdfByIdProps, wgApiClient: ClientType) => Promise<GetConversationReportPdfByIdResponse>;
116833
116948
 
116834
- declare const routeName$4M = "/v1/api/conversations/{session_id}/feedback";
116835
- type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$4M]['post']['parameters']['path'];
116836
- type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$4M]['post']['parameters']['query'];
116837
- type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$4M]['post']['responses'][201]['content']['application/json'];
116949
+ declare const routeName$4N = "/v1/api/conversations/{session_id}/feedback";
116950
+ type GiveFeedbackOnConversationByIdPathParams = paths[typeof routeName$4N]['post']['parameters']['path'];
116951
+ type GiveFeedbackOnConversationByIdQueryParams = paths[typeof routeName$4N]['post']['parameters']['query'];
116952
+ type GiveFeedbackOnConversationByIdResponse = paths[typeof routeName$4N]['post']['responses'][201]['content']['application/json'];
116838
116953
  interface GiveFeedbackOnConversationByIdProps {
116839
116954
  params: {
116840
116955
  query: GiveFeedbackOnConversationByIdQueryParams;
@@ -116843,27 +116958,27 @@ interface GiveFeedbackOnConversationByIdProps {
116843
116958
  }
116844
116959
  declare const giveFeedbackOnConversationById: (props: GiveFeedbackOnConversationByIdProps, wgApiClient: ClientType) => Promise<GiveFeedbackOnConversationByIdResponse>;
116845
116960
 
116846
- declare const routeName$4L = "/v1/api/conversations/{session_id}/chat";
116847
- type GetChatBySessionIdPathParams = paths[typeof routeName$4L]['get']['parameters']['path'];
116848
- type GetChatBySessionIdResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
116849
- type GetChatBySessionIdProps = paths[typeof routeName$4L]['get']['parameters'];
116961
+ declare const routeName$4M = "/v1/api/conversations/{session_id}/chat";
116962
+ type GetChatBySessionIdPathParams = paths[typeof routeName$4M]['get']['parameters']['path'];
116963
+ type GetChatBySessionIdResponse = paths[typeof routeName$4M]['get']['responses'][200]['content']['application/json'];
116964
+ type GetChatBySessionIdProps = paths[typeof routeName$4M]['get']['parameters'];
116850
116965
  declare const getChatBySessionId: (props: GetChatBySessionIdProps, wgApiClient: ClientType) => Promise<GetChatBySessionIdResponse>;
116851
116966
 
116852
- declare const routeName$4K = "/v2/api/conversations/{session_id}/chat-summary";
116853
- type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4K]['get']['parameters']['path'];
116854
- type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4K]['get']['parameters']['query'];
116855
- type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
116856
- type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4K]['get']['parameters'];
116967
+ declare const routeName$4L = "/v2/api/conversations/{session_id}/chat-summary";
116968
+ type GetChatSummaryV2BySessionIdPathParams = paths[typeof routeName$4L]['get']['parameters']['path'];
116969
+ type GetChatSummaryV2BySessionIdQueryParams = paths[typeof routeName$4L]['get']['parameters']['query'];
116970
+ type GetChatSummaryV2BySessionIdResponse = paths[typeof routeName$4L]['get']['responses'][200]['content']['application/json'];
116971
+ type GetChatSummaryV2BySessionIdProps = paths[typeof routeName$4L]['get']['parameters'];
116857
116972
  declare const getChatSummaryV2BySessionId: (props: GetChatSummaryV2BySessionIdProps, wgApiClient: ClientType) => Promise<GetChatSummaryV2BySessionIdResponse>;
116858
116973
 
116859
- declare const routeName$4J = "/v1/api/customers/me/parties";
116860
- type GetPartiesLinkedToUserResponse = paths[typeof routeName$4J]['get']['responses'][200]['content']['application/json'];
116974
+ declare const routeName$4K = "/v1/api/customers/me/parties";
116975
+ type GetPartiesLinkedToUserResponse = paths[typeof routeName$4K]['get']['responses'][200]['content']['application/json'];
116861
116976
  declare const getPartiesLinkedToUser: (wgApiClient: ClientType) => Promise<GetPartiesLinkedToUserResponse>;
116862
116977
 
116863
- declare const routeName$4I = "/v1/api/parties/{party_id}/customer-invitations";
116864
- type InviteUserToPartyBody = paths[typeof routeName$4I]['post']['requestBody']['content']['application/json'];
116865
- type InviteUserToPartyPathParams = paths[typeof routeName$4I]['post']['parameters']['path'];
116866
- type InviteUserToPartyResponse = paths[typeof routeName$4I]['post']['responses'][200]['content']['application/json'];
116978
+ declare const routeName$4J = "/v1/api/parties/{party_id}/customer-invitations";
116979
+ type InviteUserToPartyBody = paths[typeof routeName$4J]['post']['requestBody']['content']['application/json'];
116980
+ type InviteUserToPartyPathParams = paths[typeof routeName$4J]['post']['parameters']['path'];
116981
+ type InviteUserToPartyResponse = paths[typeof routeName$4J]['post']['responses'][200]['content']['application/json'];
116867
116982
  interface InviteUserToPartyProps {
116868
116983
  body: InviteUserToPartyBody;
116869
116984
  params: {
@@ -116872,31 +116987,31 @@ interface InviteUserToPartyProps {
116872
116987
  }
116873
116988
  declare const inviteUserToParty: (props: InviteUserToPartyProps, wgApiClient: ClientType) => Promise<InviteUserToPartyResponse>;
116874
116989
 
116875
- declare const routeName$4H = "/v1/api/parties/{party_id}/checkup";
116876
- type GetCheckupByPartyIdPathParams = paths[typeof routeName$4H]['get']['parameters']['path'];
116877
- type GetCheckupByPartyIdResponse = paths[typeof routeName$4H]['get']['responses'][200]['content']['application/json'];
116878
- type GetCheckupByPartyIdProps = paths[typeof routeName$4H]['get']['parameters'];
116990
+ declare const routeName$4I = "/v1/api/parties/{party_id}/checkup";
116991
+ type GetCheckupByPartyIdPathParams = paths[typeof routeName$4I]['get']['parameters']['path'];
116992
+ type GetCheckupByPartyIdResponse = paths[typeof routeName$4I]['get']['responses'][200]['content']['application/json'];
116993
+ type GetCheckupByPartyIdProps = paths[typeof routeName$4I]['get']['parameters'];
116879
116994
  declare const getCheckupByPartyId: (props: GetCheckupByPartyIdProps, wgApiClient: ClientType) => Promise<GetCheckupByPartyIdResponse>;
116880
116995
 
116881
- declare const routeName$4G = "/v1/api/parties/link-users";
116882
- type LinkPartyToUserBody = paths[typeof routeName$4G]['post']['requestBody']['content']['application/json'];
116883
- type LinkPartyToUserResponse = paths[typeof routeName$4G]['post']['responses'][200]['content']['application/json'];
116996
+ declare const routeName$4H = "/v1/api/parties/link-users";
116997
+ type LinkPartyToUserBody = paths[typeof routeName$4H]['post']['requestBody']['content']['application/json'];
116998
+ type LinkPartyToUserResponse = paths[typeof routeName$4H]['post']['responses'][200]['content']['application/json'];
116884
116999
  interface LinkPartyToUserProps {
116885
117000
  body: LinkPartyToUserBody;
116886
117001
  }
116887
117002
  declare const linkPartyToUser: (props: LinkPartyToUserProps, wgApiClient: ClientType) => Promise<LinkPartyToUserResponse>;
116888
117003
 
116889
- declare const routeName$4F = "/v1/api/parties/delink-users";
116890
- type DelinkPartyToUserBody = paths[typeof routeName$4F]['post']['requestBody']['content']['application/json'];
116891
- type DelinkPartyToUserResponse = paths[typeof routeName$4F]['post']['responses'][200]['content']['application/json'];
117004
+ declare const routeName$4G = "/v1/api/parties/delink-users";
117005
+ type DelinkPartyToUserBody = paths[typeof routeName$4G]['post']['requestBody']['content']['application/json'];
117006
+ type DelinkPartyToUserResponse = paths[typeof routeName$4G]['post']['responses'][200]['content']['application/json'];
116892
117007
  interface DelinkPartyToUserProps {
116893
117008
  body: DelinkPartyToUserBody;
116894
117009
  }
116895
117010
  declare const delinkPartyToUser: (props: DelinkPartyToUserProps, wgApiClient: ClientType) => Promise<DelinkPartyToUserResponse>;
116896
117011
 
116897
- declare const routeName$4E = "/v1/api/customers/{user_id}/password-reset";
116898
- type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4E]['post']['parameters']['path'];
116899
- type SendPasswordResetToCustomerResponse = paths[typeof routeName$4E]['post']['responses'][200]['content']['application/json'];
117012
+ declare const routeName$4F = "/v1/api/customers/{user_id}/password-reset";
117013
+ type SendPasswordResetToCustomerPathParams = paths[typeof routeName$4F]['post']['parameters']['path'];
117014
+ type SendPasswordResetToCustomerResponse = paths[typeof routeName$4F]['post']['responses'][200]['content']['application/json'];
116900
117015
  interface SendPasswordResetToCustomerProps {
116901
117016
  params: {
116902
117017
  path: SendPasswordResetToCustomerPathParams;
@@ -116904,9 +117019,9 @@ interface SendPasswordResetToCustomerProps {
116904
117019
  }
116905
117020
  declare const sendPasswordResetToCustomer: (props: SendPasswordResetToCustomerProps, wgApiClient: ClientType) => Promise<SendPasswordResetToCustomerResponse>;
116906
117021
 
116907
- declare const routeName$4D = "/v1/api/customers/{user_id}/2fa";
116908
- type Disable2FaForCustomerPathParams = paths[typeof routeName$4D]['delete']['parameters']['path'];
116909
- type Disable2FaForCustomerResponse = paths[typeof routeName$4D]['delete']['responses'][200]['content']['application/json'];
117022
+ declare const routeName$4E = "/v1/api/customers/{user_id}/2fa";
117023
+ type Disable2FaForCustomerPathParams = paths[typeof routeName$4E]['delete']['parameters']['path'];
117024
+ type Disable2FaForCustomerResponse = paths[typeof routeName$4E]['delete']['responses'][200]['content']['application/json'];
116910
117025
  interface Disable2FaForCustomerProps {
116911
117026
  params: {
116912
117027
  path: Disable2FaForCustomerPathParams;
@@ -116914,93 +117029,93 @@ interface Disable2FaForCustomerProps {
116914
117029
  }
116915
117030
  declare const disable2FaForCustomer: (props: Disable2FaForCustomerProps, wgApiClient: ClientType) => Promise<Disable2FaForCustomerResponse>;
116916
117031
 
116917
- declare const routeName$4C = "/v1/api/customers/me/insurance-policies";
116918
- type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4C]['get']['parameters']['query'];
116919
- type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4C]['get']['responses'][200]['content']['application/json'];
116920
- type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4C]['get']['parameters'];
117032
+ declare const routeName$4D = "/v1/api/customers/me/insurance-policies";
117033
+ type GetInsurancePoliciesAsCustomerQueryParams = paths[typeof routeName$4D]['get']['parameters']['query'];
117034
+ type GetInsurancePoliciesAsCustomerResponse = paths[typeof routeName$4D]['get']['responses'][200]['content']['application/json'];
117035
+ type GetInsurancePoliciesAsCustomerProps = paths[typeof routeName$4D]['get']['parameters'];
116921
117036
  declare const getInsurancePoliciesAsCustomer: (props: GetInsurancePoliciesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePoliciesAsCustomerResponse>;
116922
117037
 
116923
- declare const routeName$4B = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
116924
- type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4B]['get']['parameters']['path'];
116925
- type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4B]['get']['responses'][200]['content']['application/json'];
116926
- type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4B]['get']['parameters'];
117038
+ declare const routeName$4C = "/v1/api/customers/me/insurance-policies/{insurance_policy_id}";
117039
+ type GetInsurancePolicyByIdAsCustomerPathParams = paths[typeof routeName$4C]['get']['parameters']['path'];
117040
+ type GetInsurancePolicyByIdAsCustomerResponse = paths[typeof routeName$4C]['get']['responses'][200]['content']['application/json'];
117041
+ type GetInsurancePolicyByIdAsCustomerProps = paths[typeof routeName$4C]['get']['parameters'];
116927
117042
  declare const getInsurancePolicyByIdAsCustomer: (props: GetInsurancePolicyByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInsurancePolicyByIdAsCustomerResponse>;
116928
117043
 
116929
- declare const routeName$4A = "/v1/api/customers/me/anva-inquiry";
116930
- type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4A]['post']['requestBody']['content']['application/json'];
116931
- type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4A]['post']['responses'][201]['content']['application/json'];
117044
+ declare const routeName$4B = "/v1/api/customers/me/anva-inquiry";
117045
+ type SendAnvaInquiryAsCustomerBody = paths[typeof routeName$4B]['post']['requestBody']['content']['application/json'];
117046
+ type SendAnvaInquiryAsCustomerResponse = paths[typeof routeName$4B]['post']['responses'][201]['content']['application/json'];
116932
117047
  interface SendAnvaInquiryAsCustomerProps {
116933
117048
  body: SendAnvaInquiryAsCustomerBody;
116934
117049
  }
116935
117050
  declare const sendAnvaInquiryAsCustomer: (props: SendAnvaInquiryAsCustomerProps, wgApiClient: ClientType) => Promise<SendAnvaInquiryAsCustomerResponse>;
116936
117051
 
116937
- declare const routeName$4z = "/v1/api/customers/me/policy-packages";
116938
- type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4z]['get']['parameters']['query'];
116939
- type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4z]['get']['responses'][200]['content']['application/json'];
116940
- type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4z]['get']['parameters'];
117052
+ declare const routeName$4A = "/v1/api/customers/me/policy-packages";
117053
+ type GetPolicyPackagesAsCustomerQueryParams = paths[typeof routeName$4A]['get']['parameters']['query'];
117054
+ type GetPolicyPackagesAsCustomerResponse = paths[typeof routeName$4A]['get']['responses'][200]['content']['application/json'];
117055
+ type GetPolicyPackagesAsCustomerProps = paths[typeof routeName$4A]['get']['parameters'];
116941
117056
  declare const getPolicyPackagesAsCustomer: (props: GetPolicyPackagesAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackagesAsCustomerResponse>;
116942
117057
 
116943
- declare const routeName$4y = "/v1/api/customers/me/policy-packages/{policy_package_id}";
116944
- type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4y]['get']['parameters']['path'];
116945
- type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4y]['get']['responses'][200]['content']['application/json'];
116946
- type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4y]['get']['parameters'];
117058
+ declare const routeName$4z = "/v1/api/customers/me/policy-packages/{policy_package_id}";
117059
+ type GetPolicyPackageByIdAsCustomerPathParams = paths[typeof routeName$4z]['get']['parameters']['path'];
117060
+ type GetPolicyPackageByIdAsCustomerResponse = paths[typeof routeName$4z]['get']['responses'][200]['content']['application/json'];
117061
+ type GetPolicyPackageByIdAsCustomerProps = paths[typeof routeName$4z]['get']['parameters'];
116947
117062
  declare const getPolicyPackageByIdAsCustomer: (props: GetPolicyPackageByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetPolicyPackageByIdAsCustomerResponse>;
116948
117063
 
116949
- declare const routeName$4x = "/v1/api/customers/me/current-account-insights";
116950
- type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4x]['get']['parameters']['query'];
116951
- type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4x]['get']['responses'][200]['content']['application/json'];
116952
- type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4x]['get']['parameters'];
117064
+ declare const routeName$4y = "/v1/api/customers/me/current-account-insights";
117065
+ type GetCurrentAccountInsightsAsCustomerQueryParams = paths[typeof routeName$4y]['get']['parameters']['query'];
117066
+ type GetCurrentAccountInsightsAsCustomerResponse = paths[typeof routeName$4y]['get']['responses'][200]['content']['application/json'];
117067
+ type GetCurrentAccountInsightsAsCustomerProps = paths[typeof routeName$4y]['get']['parameters'];
116953
117068
  declare const getCurrentAccountInsightsAsCustomer: (props: GetCurrentAccountInsightsAsCustomerProps, wgApiClient: ClientType) => Promise<GetCurrentAccountInsightsAsCustomerResponse>;
116954
117069
 
116955
- declare const routeName$4w = "/v1/api/customers/me/invoices";
116956
- type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4w]['get']['parameters']['query'];
116957
- type GetInvoicesAsCustomerResponse = paths[typeof routeName$4w]['get']['responses'][200]['content']['application/json'];
116958
- type GetInvoicesAsCustomerProps = paths[typeof routeName$4w]['get']['parameters'];
117070
+ declare const routeName$4x = "/v1/api/customers/me/invoices";
117071
+ type GetInvoicesAsCustomerQueryParams = paths[typeof routeName$4x]['get']['parameters']['query'];
117072
+ type GetInvoicesAsCustomerResponse = paths[typeof routeName$4x]['get']['responses'][200]['content']['application/json'];
117073
+ type GetInvoicesAsCustomerProps = paths[typeof routeName$4x]['get']['parameters'];
116959
117074
  declare const getInvoicesAsCustomer: (props: GetInvoicesAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoicesAsCustomerResponse>;
116960
117075
 
116961
- declare const routeName$4v = "/v1/api/customers/me/invoices/{invoice_id}";
116962
- type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4v]['get']['parameters']['path'];
116963
- type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4v]['get']['responses'][200]['content']['application/json'];
116964
- type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4v]['get']['parameters'];
117076
+ declare const routeName$4w = "/v1/api/customers/me/invoices/{invoice_id}";
117077
+ type GetInvoiceByIdAsCustomerPathParams = paths[typeof routeName$4w]['get']['parameters']['path'];
117078
+ type GetInvoiceByIdAsCustomerResponse = paths[typeof routeName$4w]['get']['responses'][200]['content']['application/json'];
117079
+ type GetInvoiceByIdAsCustomerProps = paths[typeof routeName$4w]['get']['parameters'];
116965
117080
  declare const getInvoiceByIdAsCustomer: (props: GetInvoiceByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetInvoiceByIdAsCustomerResponse>;
116966
117081
 
116967
- declare const routeName$4u = "/v1/api/customers/me/claims";
116968
- type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4u]['get']['parameters']['query'];
116969
- type GetClaimsAsCustomerResponse = paths[typeof routeName$4u]['get']['responses'][200]['content']['application/json'];
116970
- type GetClaimsAsCustomerProps = paths[typeof routeName$4u]['get']['parameters'];
117082
+ declare const routeName$4v = "/v1/api/customers/me/claims";
117083
+ type GetClaimsAsCustomerQueryParams = paths[typeof routeName$4v]['get']['parameters']['query'];
117084
+ type GetClaimsAsCustomerResponse = paths[typeof routeName$4v]['get']['responses'][200]['content']['application/json'];
117085
+ type GetClaimsAsCustomerProps = paths[typeof routeName$4v]['get']['parameters'];
116971
117086
  declare const getClaimsAsCustomer: (props: GetClaimsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimsAsCustomerResponse>;
116972
117087
 
116973
- declare const routeName$4t = "/v1/api/customers/me/claims/{claim_id}";
116974
- type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4t]['get']['parameters']['path'];
116975
- type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4t]['get']['responses'][200]['content']['application/json'];
116976
- type GetClaimByIdAsCustomerProps = paths[typeof routeName$4t]['get']['parameters'];
117088
+ declare const routeName$4u = "/v1/api/customers/me/claims/{claim_id}";
117089
+ type GetClaimByIdAsCustomerPathParams = paths[typeof routeName$4u]['get']['parameters']['path'];
117090
+ type GetClaimByIdAsCustomerResponse = paths[typeof routeName$4u]['get']['responses'][200]['content']['application/json'];
117091
+ type GetClaimByIdAsCustomerProps = paths[typeof routeName$4u]['get']['parameters'];
116977
117092
  declare const getClaimByIdAsCustomer: (props: GetClaimByIdAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimByIdAsCustomerResponse>;
116978
117093
 
116979
- declare const routeName$4s = "/v1/api/customers/me/documents";
116980
- type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4s]['get']['parameters']['query'];
116981
- type GetDocumentsAsCustomerResponse = paths[typeof routeName$4s]['get']['responses'][200]['content']['application/json'];
116982
- type GetDocumentsAsCustomerProps = paths[typeof routeName$4s]['get']['parameters'];
117094
+ declare const routeName$4t = "/v1/api/customers/me/documents";
117095
+ type GetDocumentsAsCustomerQueryParams = paths[typeof routeName$4t]['get']['parameters']['query'];
117096
+ type GetDocumentsAsCustomerResponse = paths[typeof routeName$4t]['get']['responses'][200]['content']['application/json'];
117097
+ type GetDocumentsAsCustomerProps = paths[typeof routeName$4t]['get']['parameters'];
116983
117098
  declare const getDocumentsAsCustomer: (props: GetDocumentsAsCustomerProps, wgApiClient: ClientType) => Promise<GetDocumentsAsCustomerResponse>;
116984
117099
 
116985
- declare const routeName$4r = "/v1/api/parties/me";
116986
- type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4r]['patch']['requestBody']['content']['application/json'];
116987
- type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4r]['patch']['responses'][200]['content']['application/json'];
117100
+ declare const routeName$4s = "/v1/api/parties/me";
117101
+ type PatchOwnPartyAsCustomerBody = paths[typeof routeName$4s]['patch']['requestBody']['content']['application/json'];
117102
+ type PatchOwnPartyAsCustomerResponse = paths[typeof routeName$4s]['patch']['responses'][200]['content']['application/json'];
116988
117103
  interface PatchOwnPartyAsCustomerProps {
116989
117104
  body: PatchOwnPartyAsCustomerBody;
116990
117105
  }
116991
117106
  declare const patchOwnPartyAsCustomer: (props: PatchOwnPartyAsCustomerProps, wgApiClient: ClientType) => Promise<PatchOwnPartyAsCustomerResponse>;
116992
117107
 
116993
- declare const routeName$4q = "/v1/api/parties/me/activities";
116994
- type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4q]['post']['requestBody']['content']['application/json'];
116995
- type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4q]['post']['responses'][201]['content']['application/json'];
117108
+ declare const routeName$4r = "/v1/api/parties/me/activities";
117109
+ type CreatePartyActivitiesAsCustomerBody = paths[typeof routeName$4r]['post']['requestBody']['content']['application/json'];
117110
+ type CreatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4r]['post']['responses'][201]['content']['application/json'];
116996
117111
  interface CreatePartyActivitiesAsCustomerProps {
116997
117112
  body: CreatePartyActivitiesAsCustomerBody;
116998
117113
  }
116999
117114
  declare const createPartyActivitiesAsCustomer: (props: CreatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<CreatePartyActivitiesAsCustomerResponse>;
117000
117115
 
117001
- declare const routeName$4p = "/v1/api/parties/me/activities/{activity_id}";
117002
- type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4p]['delete']['parameters']['path'];
117003
- type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4p]['delete']['responses'][200]['content']['application/json'];
117116
+ declare const routeName$4q = "/v1/api/parties/me/activities/{activity_id}";
117117
+ type DeletePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4q]['delete']['parameters']['path'];
117118
+ type DeletePartyActivitiesAsCustomerResponse = paths[typeof routeName$4q]['delete']['responses'][200]['content']['application/json'];
117004
117119
  interface DeletePartyActivitiesAsCustomerProps {
117005
117120
  params: {
117006
117121
  path: DeletePartyActivitiesAsCustomerPathParams;
@@ -117008,10 +117123,10 @@ interface DeletePartyActivitiesAsCustomerProps {
117008
117123
  }
117009
117124
  declare const deletePartyActivitiesAsCustomer: (props: DeletePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<DeletePartyActivitiesAsCustomerResponse>;
117010
117125
 
117011
- declare const routeName$4o = "/v1/api/parties/me/activities/{activity_id}";
117012
- type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4o]['patch']['requestBody']['content']['application/json'];
117013
- type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4o]['patch']['parameters']['path'];
117014
- type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4o]['patch']['responses'][200]['content']['application/json'];
117126
+ declare const routeName$4p = "/v1/api/parties/me/activities/{activity_id}";
117127
+ type UpdatePartyActivitiesAsCustomerBody = paths[typeof routeName$4p]['patch']['requestBody']['content']['application/json'];
117128
+ type UpdatePartyActivitiesAsCustomerPathParams = paths[typeof routeName$4p]['patch']['parameters']['path'];
117129
+ type UpdatePartyActivitiesAsCustomerResponse = paths[typeof routeName$4p]['patch']['responses'][200]['content']['application/json'];
117015
117130
  interface UpdatePartyActivitiesAsCustomerProps {
117016
117131
  body: UpdatePartyActivitiesAsCustomerBody;
117017
117132
  params: {
@@ -117020,29 +117135,29 @@ interface UpdatePartyActivitiesAsCustomerProps {
117020
117135
  }
117021
117136
  declare const updatePartyActivitiesAsCustomer: (props: UpdatePartyActivitiesAsCustomerProps, wgApiClient: ClientType) => Promise<UpdatePartyActivitiesAsCustomerResponse>;
117022
117137
 
117023
- declare const routeName$4n = "/v1/api/parties/{party_id}/customers";
117024
- type GetCustomersByPartyPathParams = paths[typeof routeName$4n]['get']['parameters']['path'];
117025
- type GetCustomersByPartyQueryParams = paths[typeof routeName$4n]['get']['parameters']['query'];
117026
- type GetCustomersByPartyResponse = paths[typeof routeName$4n]['get']['responses'][200]['content']['application/json'];
117027
- type GetCustomersByPartyProps = paths[typeof routeName$4n]['get']['parameters'];
117138
+ declare const routeName$4o = "/v1/api/parties/{party_id}/customers";
117139
+ type GetCustomersByPartyPathParams = paths[typeof routeName$4o]['get']['parameters']['path'];
117140
+ type GetCustomersByPartyQueryParams = paths[typeof routeName$4o]['get']['parameters']['query'];
117141
+ type GetCustomersByPartyResponse = paths[typeof routeName$4o]['get']['responses'][200]['content']['application/json'];
117142
+ type GetCustomersByPartyProps = paths[typeof routeName$4o]['get']['parameters'];
117028
117143
  declare const getCustomersByParty: (props: GetCustomersByPartyProps, wgApiClient: ClientType) => Promise<GetCustomersByPartyResponse>;
117029
117144
 
117030
- declare const routeName$4m = "/v1/api/customers/{user_id}/parties";
117031
- type GetPartiesByCustomerPathParams = paths[typeof routeName$4m]['get']['parameters']['path'];
117032
- type GetPartiesByCustomerQueryParams = paths[typeof routeName$4m]['get']['parameters']['query'];
117033
- type GetPartiesByCustomerResponse = paths[typeof routeName$4m]['get']['responses'][200]['content']['application/json'];
117034
- type GetPartiesByCustomerProps = paths[typeof routeName$4m]['get']['parameters'];
117145
+ declare const routeName$4n = "/v1/api/customers/{user_id}/parties";
117146
+ type GetPartiesByCustomerPathParams = paths[typeof routeName$4n]['get']['parameters']['path'];
117147
+ type GetPartiesByCustomerQueryParams = paths[typeof routeName$4n]['get']['parameters']['query'];
117148
+ type GetPartiesByCustomerResponse = paths[typeof routeName$4n]['get']['responses'][200]['content']['application/json'];
117149
+ type GetPartiesByCustomerProps = paths[typeof routeName$4n]['get']['parameters'];
117035
117150
  declare const getPartiesByCustomer: (props: GetPartiesByCustomerProps, wgApiClient: ClientType) => Promise<GetPartiesByCustomerResponse>;
117036
117151
 
117037
- declare const routeName$4l = "/v1/api/customers";
117038
- type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4l]['get']['parameters']['query'];
117039
- type GetAllCustomersByDistributionResponse = paths[typeof routeName$4l]['get']['responses'][200]['content']['application/json'];
117040
- type GetAllCustomersByDistributionProps = paths[typeof routeName$4l]['get']['parameters'];
117152
+ declare const routeName$4m = "/v1/api/customers";
117153
+ type GetAllCustomersByDistributionQueryParams = paths[typeof routeName$4m]['get']['parameters']['query'];
117154
+ type GetAllCustomersByDistributionResponse = paths[typeof routeName$4m]['get']['responses'][200]['content']['application/json'];
117155
+ type GetAllCustomersByDistributionProps = paths[typeof routeName$4m]['get']['parameters'];
117041
117156
  declare const getAllCustomersByDistribution: (props: GetAllCustomersByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCustomersByDistributionResponse>;
117042
117157
 
117043
- declare const routeName$4k = "/v1/api/customers/{user_id}/parties/{party_id}/block";
117044
- type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4k]['post']['parameters']['path'];
117045
- type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4k]['post']['responses'][200]['content']['application/json'];
117158
+ declare const routeName$4l = "/v1/api/customers/{user_id}/parties/{party_id}/block";
117159
+ type BlockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4l]['post']['parameters']['path'];
117160
+ type BlockCustomerFromAccessingPartyResponse = paths[typeof routeName$4l]['post']['responses'][200]['content']['application/json'];
117046
117161
  interface BlockCustomerFromAccessingPartyProps {
117047
117162
  params: {
117048
117163
  path: BlockCustomerFromAccessingPartyPathParams;
@@ -117050,9 +117165,9 @@ interface BlockCustomerFromAccessingPartyProps {
117050
117165
  }
117051
117166
  declare const blockCustomerFromAccessingParty: (props: BlockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<BlockCustomerFromAccessingPartyResponse>;
117052
117167
 
117053
- declare const routeName$4j = "/v1/api/customers/{user_id}/parties/{party_id}/block";
117054
- type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4j]['delete']['parameters']['path'];
117055
- type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4j]['delete']['responses'][200]['content']['application/json'];
117168
+ declare const routeName$4k = "/v1/api/customers/{user_id}/parties/{party_id}/block";
117169
+ type UnblockCustomerFromAccessingPartyPathParams = paths[typeof routeName$4k]['delete']['parameters']['path'];
117170
+ type UnblockCustomerFromAccessingPartyResponse = paths[typeof routeName$4k]['delete']['responses'][200]['content']['application/json'];
117056
117171
  interface UnblockCustomerFromAccessingPartyProps {
117057
117172
  params: {
117058
117173
  path: UnblockCustomerFromAccessingPartyPathParams;
@@ -117060,10 +117175,10 @@ interface UnblockCustomerFromAccessingPartyProps {
117060
117175
  }
117061
117176
  declare const unblockCustomerFromAccessingParty: (props: UnblockCustomerFromAccessingPartyProps, wgApiClient: ClientType) => Promise<UnblockCustomerFromAccessingPartyResponse>;
117062
117177
 
117063
- declare const routeName$4i = "/v1/api/distributions/{distribution_id}/themes";
117064
- type HandleCreateDistributionThemeBody = paths[typeof routeName$4i]['post']['requestBody']['content']['application/json'];
117065
- type HandleCreateDistributionThemeQueryParams = paths[typeof routeName$4i]['post']['parameters']['query'];
117066
- type HandleCreateDistributionThemeResponse = paths[typeof routeName$4i]['post']['responses'][201]['content']['application/json'];
117178
+ declare const routeName$4j = "/v1/api/distributions/{distribution_id}/themes";
117179
+ type HandleCreateDistributionThemeBody = paths[typeof routeName$4j]['post']['requestBody']['content']['application/json'];
117180
+ type HandleCreateDistributionThemeQueryParams = paths[typeof routeName$4j]['post']['parameters']['query'];
117181
+ type HandleCreateDistributionThemeResponse = paths[typeof routeName$4j]['post']['responses'][201]['content']['application/json'];
117067
117182
  interface HandleCreateDistributionThemeProps {
117068
117183
  body: HandleCreateDistributionThemeBody;
117069
117184
  params: {
@@ -117072,10 +117187,10 @@ interface HandleCreateDistributionThemeProps {
117072
117187
  }
117073
117188
  declare const handleCreateDistributionTheme: (props: HandleCreateDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleCreateDistributionThemeResponse>;
117074
117189
 
117075
- declare const routeName$4h = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
117076
- type HandleDeleteDistributionThemePathParams = paths[typeof routeName$4h]['delete']['parameters']['path'];
117077
- type HandleDeleteDistributionThemeQueryParams = paths[typeof routeName$4h]['delete']['parameters']['query'];
117078
- type HandleDeleteDistributionThemeResponse = paths[typeof routeName$4h]['delete']['responses'][200]['content']['application/json'];
117190
+ declare const routeName$4i = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
117191
+ type HandleDeleteDistributionThemePathParams = paths[typeof routeName$4i]['delete']['parameters']['path'];
117192
+ type HandleDeleteDistributionThemeQueryParams = paths[typeof routeName$4i]['delete']['parameters']['query'];
117193
+ type HandleDeleteDistributionThemeResponse = paths[typeof routeName$4i]['delete']['responses'][200]['content']['application/json'];
117079
117194
  interface HandleDeleteDistributionThemeProps {
117080
117195
  params: {
117081
117196
  query: HandleDeleteDistributionThemeQueryParams;
@@ -117084,11 +117199,11 @@ interface HandleDeleteDistributionThemeProps {
117084
117199
  }
117085
117200
  declare const handleDeleteDistributionTheme: (props: HandleDeleteDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleDeleteDistributionThemeResponse>;
117086
117201
 
117087
- declare const routeName$4g = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
117088
- type HandleUpdateDistributionThemeBody = paths[typeof routeName$4g]['patch']['requestBody']['content']['application/json'];
117089
- type HandleUpdateDistributionThemePathParams = paths[typeof routeName$4g]['patch']['parameters']['path'];
117090
- type HandleUpdateDistributionThemeQueryParams = paths[typeof routeName$4g]['patch']['parameters']['query'];
117091
- type HandleUpdateDistributionThemeResponse = paths[typeof routeName$4g]['patch']['responses'][200]['content']['application/json'];
117202
+ declare const routeName$4h = "/v1/api/distributions/{distribution_id}/themes/{theme_name}";
117203
+ type HandleUpdateDistributionThemeBody = paths[typeof routeName$4h]['patch']['requestBody']['content']['application/json'];
117204
+ type HandleUpdateDistributionThemePathParams = paths[typeof routeName$4h]['patch']['parameters']['path'];
117205
+ type HandleUpdateDistributionThemeQueryParams = paths[typeof routeName$4h]['patch']['parameters']['query'];
117206
+ type HandleUpdateDistributionThemeResponse = paths[typeof routeName$4h]['patch']['responses'][200]['content']['application/json'];
117092
117207
  interface HandleUpdateDistributionThemeProps {
117093
117208
  body: HandleUpdateDistributionThemeBody;
117094
117209
  params: {
@@ -117098,57 +117213,57 @@ interface HandleUpdateDistributionThemeProps {
117098
117213
  }
117099
117214
  declare const handleUpdateDistributionTheme: (props: HandleUpdateDistributionThemeProps, wgApiClient: ClientType) => Promise<HandleUpdateDistributionThemeResponse>;
117100
117215
 
117101
- declare const routeName$4f = "/v1/api/distributions/{distribution_id}/insights/novelties";
117102
- type GetNoveltyInsightsByDistributionPathParams = paths[typeof routeName$4f]['get']['parameters']['path'];
117103
- type GetNoveltyInsightsByDistributionQueryParams = paths[typeof routeName$4f]['get']['parameters']['query'];
117104
- type GetNoveltyInsightsByDistributionResponse = paths[typeof routeName$4f]['get']['responses'][200]['content']['application/json'];
117105
- type GetNoveltyInsightsByDistributionProps = paths[typeof routeName$4f]['get']['parameters'];
117216
+ declare const routeName$4g = "/v1/api/distributions/{distribution_id}/insights/novelties";
117217
+ type GetNoveltyInsightsByDistributionPathParams = paths[typeof routeName$4g]['get']['parameters']['path'];
117218
+ type GetNoveltyInsightsByDistributionQueryParams = paths[typeof routeName$4g]['get']['parameters']['query'];
117219
+ type GetNoveltyInsightsByDistributionResponse = paths[typeof routeName$4g]['get']['responses'][200]['content']['application/json'];
117220
+ type GetNoveltyInsightsByDistributionProps = paths[typeof routeName$4g]['get']['parameters'];
117106
117221
  declare const getNoveltyInsightsByDistribution: (props: GetNoveltyInsightsByDistributionProps, wgApiClient: ClientType) => Promise<GetNoveltyInsightsByDistributionResponse>;
117107
117222
 
117108
- declare const routeName$4e = "/v1/api/distributions/{distribution_id}/insights/performance";
117109
- type GetPerformanceInsightsByDistributionPathParams = paths[typeof routeName$4e]['get']['parameters']['path'];
117110
- type GetPerformanceInsightsByDistributionQueryParams = paths[typeof routeName$4e]['get']['parameters']['query'];
117111
- type GetPerformanceInsightsByDistributionResponse = paths[typeof routeName$4e]['get']['responses'][200]['content']['application/json'];
117112
- type GetPerformanceInsightsByDistributionProps = paths[typeof routeName$4e]['get']['parameters'];
117223
+ declare const routeName$4f = "/v1/api/distributions/{distribution_id}/insights/performance";
117224
+ type GetPerformanceInsightsByDistributionPathParams = paths[typeof routeName$4f]['get']['parameters']['path'];
117225
+ type GetPerformanceInsightsByDistributionQueryParams = paths[typeof routeName$4f]['get']['parameters']['query'];
117226
+ type GetPerformanceInsightsByDistributionResponse = paths[typeof routeName$4f]['get']['responses'][200]['content']['application/json'];
117227
+ type GetPerformanceInsightsByDistributionProps = paths[typeof routeName$4f]['get']['parameters'];
117113
117228
  declare const getPerformanceInsightsByDistribution: (props: GetPerformanceInsightsByDistributionProps, wgApiClient: ClientType) => Promise<GetPerformanceInsightsByDistributionResponse>;
117114
117229
 
117115
- declare const routeName$4d = "/v1/api/distributions/{distribution_id}/activity";
117116
- type GetDistributionActivityPathParams = paths[typeof routeName$4d]['get']['parameters']['path'];
117117
- type GetDistributionActivityQueryParams = paths[typeof routeName$4d]['get']['parameters']['query'];
117118
- type GetDistributionActivityResponse = paths[typeof routeName$4d]['get']['responses'][200]['content']['application/json'];
117119
- type GetDistributionActivityProps = paths[typeof routeName$4d]['get']['parameters'];
117230
+ declare const routeName$4e = "/v1/api/distributions/{distribution_id}/activity";
117231
+ type GetDistributionActivityPathParams = paths[typeof routeName$4e]['get']['parameters']['path'];
117232
+ type GetDistributionActivityQueryParams = paths[typeof routeName$4e]['get']['parameters']['query'];
117233
+ type GetDistributionActivityResponse = paths[typeof routeName$4e]['get']['responses'][200]['content']['application/json'];
117234
+ type GetDistributionActivityProps = paths[typeof routeName$4e]['get']['parameters'];
117120
117235
  declare const getDistributionActivity: (props: GetDistributionActivityProps, wgApiClient: ClientType) => Promise<GetDistributionActivityResponse>;
117121
117236
 
117122
- declare const routeName$4c = "/v1/api/distributions/{distribution_id}/affiliations";
117123
- type GetDistributionAffiliationsPathParams = paths[typeof routeName$4c]['get']['parameters']['path'];
117124
- type GetDistributionAffiliationsResponse = paths[typeof routeName$4c]['get']['responses'][200]['content']['application/json'];
117125
- type GetDistributionAffiliationsProps = paths[typeof routeName$4c]['get']['parameters'];
117237
+ declare const routeName$4d = "/v1/api/distributions/{distribution_id}/affiliations";
117238
+ type GetDistributionAffiliationsPathParams = paths[typeof routeName$4d]['get']['parameters']['path'];
117239
+ type GetDistributionAffiliationsResponse = paths[typeof routeName$4d]['get']['responses'][200]['content']['application/json'];
117240
+ type GetDistributionAffiliationsProps = paths[typeof routeName$4d]['get']['parameters'];
117126
117241
  declare const getDistributionAffiliations: (props: GetDistributionAffiliationsProps, wgApiClient: ClientType) => Promise<GetDistributionAffiliationsResponse>;
117127
117242
 
117128
- declare const routeName$4b = "/v1/api/distributions/{distribution_id}";
117129
- type GetDistributionByIdPathParams = paths[typeof routeName$4b]['get']['parameters']['path'];
117130
- type GetDistributionByIdResponse = paths[typeof routeName$4b]['get']['responses'][200]['content']['application/json'];
117131
- type GetDistributionByIdProps = paths[typeof routeName$4b]['get']['parameters'];
117243
+ declare const routeName$4c = "/v1/api/distributions/{distribution_id}";
117244
+ type GetDistributionByIdPathParams = paths[typeof routeName$4c]['get']['parameters']['path'];
117245
+ type GetDistributionByIdResponse = paths[typeof routeName$4c]['get']['responses'][200]['content']['application/json'];
117246
+ type GetDistributionByIdProps = paths[typeof routeName$4c]['get']['parameters'];
117132
117247
  declare const getDistributionById: (props: GetDistributionByIdProps, wgApiClient: ClientType) => Promise<GetDistributionByIdResponse>;
117133
117248
 
117134
- declare const routeName$4a = "/v1/api/distributions/about-us-completion";
117135
- type GenerateDistributionAboutUsCompletionBody = paths[typeof routeName$4a]['post']['requestBody']['content']['application/json'];
117136
- type GenerateDistributionAboutUsCompletionResponse = paths[typeof routeName$4a]['post']['responses'][200]['content']['application/json'];
117249
+ declare const routeName$4b = "/v1/api/distributions/about-us-completion";
117250
+ type GenerateDistributionAboutUsCompletionBody = paths[typeof routeName$4b]['post']['requestBody']['content']['application/json'];
117251
+ type GenerateDistributionAboutUsCompletionResponse = paths[typeof routeName$4b]['post']['responses'][200]['content']['application/json'];
117137
117252
  interface GenerateDistributionAboutUsCompletionProps {
117138
117253
  body: GenerateDistributionAboutUsCompletionBody;
117139
117254
  }
117140
117255
  declare const generateDistributionAboutUsCompletion: (props: GenerateDistributionAboutUsCompletionProps, wgApiClient: ClientType) => Promise<GenerateDistributionAboutUsCompletionResponse>;
117141
117256
 
117142
- declare const routeName$49 = "/v1/api/distributions/tags";
117143
- type GetDistributionTagsQueryParams = paths[typeof routeName$49]['get']['parameters']['query'];
117144
- type GetDistributionTagsResponse = paths[typeof routeName$49]['get']['responses'][200]['content']['application/json'];
117145
- type GetDistributionTagsProps = paths[typeof routeName$49]['get']['parameters'];
117257
+ declare const routeName$4a = "/v1/api/distributions/tags";
117258
+ type GetDistributionTagsQueryParams = paths[typeof routeName$4a]['get']['parameters']['query'];
117259
+ type GetDistributionTagsResponse = paths[typeof routeName$4a]['get']['responses'][200]['content']['application/json'];
117260
+ type GetDistributionTagsProps = paths[typeof routeName$4a]['get']['parameters'];
117146
117261
  declare const getDistributionTags: (props: GetDistributionTagsProps, wgApiClient: ClientType) => Promise<GetDistributionTagsResponse>;
117147
117262
 
117148
- declare const routeName$48 = "/v1/api/distributions/tags";
117149
- type CreateDistributionTagBody = paths[typeof routeName$48]['post']['requestBody']['content']['application/json'];
117150
- type CreateDistributionTagQueryParams = paths[typeof routeName$48]['post']['parameters']['query'];
117151
- type CreateDistributionTagResponse = paths[typeof routeName$48]['post']['responses'][201]['content']['application/json'];
117263
+ declare const routeName$49 = "/v1/api/distributions/tags";
117264
+ type CreateDistributionTagBody = paths[typeof routeName$49]['post']['requestBody']['content']['application/json'];
117265
+ type CreateDistributionTagQueryParams = paths[typeof routeName$49]['post']['parameters']['query'];
117266
+ type CreateDistributionTagResponse = paths[typeof routeName$49]['post']['responses'][201]['content']['application/json'];
117152
117267
  interface CreateDistributionTagProps {
117153
117268
  body: CreateDistributionTagBody;
117154
117269
  params: {
@@ -117157,10 +117272,10 @@ interface CreateDistributionTagProps {
117157
117272
  }
117158
117273
  declare const createDistributionTag: (props: CreateDistributionTagProps, wgApiClient: ClientType) => Promise<CreateDistributionTagResponse>;
117159
117274
 
117160
- declare const routeName$47 = "/v1/api/distributions/tags/{value}";
117161
- type DeleteDistributionTagPathParams = paths[typeof routeName$47]['delete']['parameters']['path'];
117162
- type DeleteDistributionTagQueryParams = paths[typeof routeName$47]['delete']['parameters']['query'];
117163
- type DeleteDistributionTagResponse = paths[typeof routeName$47]['delete']['responses'][200]['content']['application/json'];
117275
+ declare const routeName$48 = "/v1/api/distributions/tags/{value}";
117276
+ type DeleteDistributionTagPathParams = paths[typeof routeName$48]['delete']['parameters']['path'];
117277
+ type DeleteDistributionTagQueryParams = paths[typeof routeName$48]['delete']['parameters']['query'];
117278
+ type DeleteDistributionTagResponse = paths[typeof routeName$48]['delete']['responses'][200]['content']['application/json'];
117164
117279
  interface DeleteDistributionTagProps {
117165
117280
  params: {
117166
117281
  query: DeleteDistributionTagQueryParams;
@@ -117169,16 +117284,16 @@ interface DeleteDistributionTagProps {
117169
117284
  }
117170
117285
  declare const deleteDistributionTag: (props: DeleteDistributionTagProps, wgApiClient: ClientType) => Promise<DeleteDistributionTagResponse>;
117171
117286
 
117172
- declare const routeName$46 = "/v1/api/distributions/insurance-product-clauses";
117173
- type GetInsuranceProductClausesByDistributionQueryParams = paths[typeof routeName$46]['get']['parameters']['query'];
117174
- type GetInsuranceProductClausesByDistributionResponse = paths[typeof routeName$46]['get']['responses'][200]['content']['application/json'];
117175
- type GetInsuranceProductClausesByDistributionProps = paths[typeof routeName$46]['get']['parameters'];
117287
+ declare const routeName$47 = "/v1/api/distributions/insurance-product-clauses";
117288
+ type GetInsuranceProductClausesByDistributionQueryParams = paths[typeof routeName$47]['get']['parameters']['query'];
117289
+ type GetInsuranceProductClausesByDistributionResponse = paths[typeof routeName$47]['get']['responses'][200]['content']['application/json'];
117290
+ type GetInsuranceProductClausesByDistributionProps = paths[typeof routeName$47]['get']['parameters'];
117176
117291
  declare const getInsuranceProductClausesByDistribution: (props: GetInsuranceProductClausesByDistributionProps, wgApiClient: ClientType) => Promise<GetInsuranceProductClausesByDistributionResponse>;
117177
117292
 
117178
- declare const routeName$45 = "/v1/api/distributions/insurance-product-clauses";
117179
- type CreateInsuranceProductClauseForDistributionBody = paths[typeof routeName$45]['post']['requestBody']['content']['application/json'];
117180
- type CreateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$45]['post']['parameters']['query'];
117181
- type CreateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$45]['post']['responses'][201]['content']['application/json'];
117293
+ declare const routeName$46 = "/v1/api/distributions/insurance-product-clauses";
117294
+ type CreateInsuranceProductClauseForDistributionBody = paths[typeof routeName$46]['post']['requestBody']['content']['application/json'];
117295
+ type CreateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$46]['post']['parameters']['query'];
117296
+ type CreateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$46]['post']['responses'][201]['content']['application/json'];
117182
117297
  interface CreateInsuranceProductClauseForDistributionProps {
117183
117298
  body: CreateInsuranceProductClauseForDistributionBody;
117184
117299
  params: {
@@ -117187,10 +117302,10 @@ interface CreateInsuranceProductClauseForDistributionProps {
117187
117302
  }
117188
117303
  declare const createInsuranceProductClauseForDistribution: (props: CreateInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<CreateInsuranceProductClauseForDistributionResponse>;
117189
117304
 
117190
- declare const routeName$44 = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
117191
- type DeleteInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$44]['delete']['parameters']['path'];
117192
- type DeleteInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$44]['delete']['parameters']['query'];
117193
- type DeleteInsuranceProductClauseForDistributionResponse = paths[typeof routeName$44]['delete']['responses'][200]['content']['application/json'];
117305
+ declare const routeName$45 = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
117306
+ type DeleteInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$45]['delete']['parameters']['path'];
117307
+ type DeleteInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$45]['delete']['parameters']['query'];
117308
+ type DeleteInsuranceProductClauseForDistributionResponse = paths[typeof routeName$45]['delete']['responses'][200]['content']['application/json'];
117194
117309
  interface DeleteInsuranceProductClauseForDistributionProps {
117195
117310
  params: {
117196
117311
  query: DeleteInsuranceProductClauseForDistributionQueryParams;
@@ -117199,11 +117314,11 @@ interface DeleteInsuranceProductClauseForDistributionProps {
117199
117314
  }
117200
117315
  declare const deleteInsuranceProductClauseForDistribution: (props: DeleteInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<DeleteInsuranceProductClauseForDistributionResponse>;
117201
117316
 
117202
- declare const routeName$43 = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
117203
- type UpdateInsuranceProductClauseForDistributionBody = paths[typeof routeName$43]['patch']['requestBody']['content']['application/json'];
117204
- type UpdateInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$43]['patch']['parameters']['path'];
117205
- type UpdateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$43]['patch']['parameters']['query'];
117206
- type UpdateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$43]['patch']['responses'][200]['content']['application/json'];
117317
+ declare const routeName$44 = "/v1/api/distributions/insurance-product-clauses/{insurance_product_clause_id}";
117318
+ type UpdateInsuranceProductClauseForDistributionBody = paths[typeof routeName$44]['patch']['requestBody']['content']['application/json'];
117319
+ type UpdateInsuranceProductClauseForDistributionPathParams = paths[typeof routeName$44]['patch']['parameters']['path'];
117320
+ type UpdateInsuranceProductClauseForDistributionQueryParams = paths[typeof routeName$44]['patch']['parameters']['query'];
117321
+ type UpdateInsuranceProductClauseForDistributionResponse = paths[typeof routeName$44]['patch']['responses'][200]['content']['application/json'];
117207
117322
  interface UpdateInsuranceProductClauseForDistributionProps {
117208
117323
  body: UpdateInsuranceProductClauseForDistributionBody;
117209
117324
  params: {
@@ -117213,16 +117328,16 @@ interface UpdateInsuranceProductClauseForDistributionProps {
117213
117328
  }
117214
117329
  declare const updateInsuranceProductClauseForDistribution: (props: UpdateInsuranceProductClauseForDistributionProps, wgApiClient: ClientType) => Promise<UpdateInsuranceProductClauseForDistributionResponse>;
117215
117330
 
117216
- declare const routeName$42 = "/v1/api/distributions/usp";
117217
- type GetUspByDistributionQueryParams = paths[typeof routeName$42]['get']['parameters']['query'];
117218
- type GetUspByDistributionResponse = paths[typeof routeName$42]['get']['responses'][200]['content']['application/json'];
117219
- type GetUspByDistributionProps = paths[typeof routeName$42]['get']['parameters'];
117331
+ declare const routeName$43 = "/v1/api/distributions/usp";
117332
+ type GetUspByDistributionQueryParams = paths[typeof routeName$43]['get']['parameters']['query'];
117333
+ type GetUspByDistributionResponse = paths[typeof routeName$43]['get']['responses'][200]['content']['application/json'];
117334
+ type GetUspByDistributionProps = paths[typeof routeName$43]['get']['parameters'];
117220
117335
  declare const getUspByDistribution: (props: GetUspByDistributionProps, wgApiClient: ClientType) => Promise<GetUspByDistributionResponse>;
117221
117336
 
117222
- declare const routeName$41 = "/v1/api/distributions/usp";
117223
- type CreateUspItemForDistributionBody = paths[typeof routeName$41]['post']['requestBody']['content']['application/json'];
117224
- type CreateUspItemForDistributionQueryParams = paths[typeof routeName$41]['post']['parameters']['query'];
117225
- type CreateUspItemForDistributionResponse = paths[typeof routeName$41]['post']['responses'][200]['content']['application/json'];
117337
+ declare const routeName$42 = "/v1/api/distributions/usp";
117338
+ type CreateUspItemForDistributionBody = paths[typeof routeName$42]['post']['requestBody']['content']['application/json'];
117339
+ type CreateUspItemForDistributionQueryParams = paths[typeof routeName$42]['post']['parameters']['query'];
117340
+ type CreateUspItemForDistributionResponse = paths[typeof routeName$42]['post']['responses'][200]['content']['application/json'];
117226
117341
  interface CreateUspItemForDistributionProps {
117227
117342
  body: CreateUspItemForDistributionBody;
117228
117343
  params: {
@@ -117231,11 +117346,11 @@ interface CreateUspItemForDistributionProps {
117231
117346
  }
117232
117347
  declare const createUspItemForDistribution: (props: CreateUspItemForDistributionProps, wgApiClient: ClientType) => Promise<CreateUspItemForDistributionResponse>;
117233
117348
 
117234
- declare const routeName$40 = "/v1/api/distributions/usp/{usp_id}";
117235
- type UpdateUspByDistributionAndIdBody = paths[typeof routeName$40]['put']['requestBody']['content']['application/json'];
117236
- type UpdateUspByDistributionAndIdPathParams = paths[typeof routeName$40]['put']['parameters']['path'];
117237
- type UpdateUspByDistributionAndIdQueryParams = paths[typeof routeName$40]['put']['parameters']['query'];
117238
- type UpdateUspByDistributionAndIdResponse = paths[typeof routeName$40]['put']['responses'][200]['content']['application/json'];
117349
+ declare const routeName$41 = "/v1/api/distributions/usp/{usp_id}";
117350
+ type UpdateUspByDistributionAndIdBody = paths[typeof routeName$41]['put']['requestBody']['content']['application/json'];
117351
+ type UpdateUspByDistributionAndIdPathParams = paths[typeof routeName$41]['put']['parameters']['path'];
117352
+ type UpdateUspByDistributionAndIdQueryParams = paths[typeof routeName$41]['put']['parameters']['query'];
117353
+ type UpdateUspByDistributionAndIdResponse = paths[typeof routeName$41]['put']['responses'][200]['content']['application/json'];
117239
117354
  interface UpdateUspByDistributionAndIdProps {
117240
117355
  body: UpdateUspByDistributionAndIdBody;
117241
117356
  params: {
@@ -117245,10 +117360,10 @@ interface UpdateUspByDistributionAndIdProps {
117245
117360
  }
117246
117361
  declare const updateUspByDistributionAndId: (props: UpdateUspByDistributionAndIdProps, wgApiClient: ClientType) => Promise<UpdateUspByDistributionAndIdResponse>;
117247
117362
 
117248
- declare const routeName$3$ = "/v1/api/distributions/usp/{usp_id}";
117249
- type DeleteUspByDistributionAndIdPathParams = paths[typeof routeName$3$]['delete']['parameters']['path'];
117250
- type DeleteUspByDistributionAndIdQueryParams = paths[typeof routeName$3$]['delete']['parameters']['query'];
117251
- type DeleteUspByDistributionAndIdResponse = paths[typeof routeName$3$]['delete']['responses'][200]['content']['application/json'];
117363
+ declare const routeName$40 = "/v1/api/distributions/usp/{usp_id}";
117364
+ type DeleteUspByDistributionAndIdPathParams = paths[typeof routeName$40]['delete']['parameters']['path'];
117365
+ type DeleteUspByDistributionAndIdQueryParams = paths[typeof routeName$40]['delete']['parameters']['query'];
117366
+ type DeleteUspByDistributionAndIdResponse = paths[typeof routeName$40]['delete']['responses'][200]['content']['application/json'];
117252
117367
  interface DeleteUspByDistributionAndIdProps {
117253
117368
  params: {
117254
117369
  query: DeleteUspByDistributionAndIdQueryParams;
@@ -117257,35 +117372,35 @@ interface DeleteUspByDistributionAndIdProps {
117257
117372
  }
117258
117373
  declare const deleteUspByDistributionAndId: (props: DeleteUspByDistributionAndIdProps, wgApiClient: ClientType) => Promise<DeleteUspByDistributionAndIdResponse>;
117259
117374
 
117260
- declare const routeName$3_ = "/v1/api/distributions/{distribution_id}/promotions";
117261
- type GetPromotionsByDistributionIdPathParams = paths[typeof routeName$3_]['get']['parameters']['path'];
117262
- type GetPromotionsByDistributionIdResponse = paths[typeof routeName$3_]['get']['responses'][200]['content']['application/json'];
117263
- type GetPromotionsByDistributionIdProps = paths[typeof routeName$3_]['get']['parameters'];
117375
+ declare const routeName$3$ = "/v1/api/distributions/{distribution_id}/promotions";
117376
+ type GetPromotionsByDistributionIdPathParams = paths[typeof routeName$3$]['get']['parameters']['path'];
117377
+ type GetPromotionsByDistributionIdResponse = paths[typeof routeName$3$]['get']['responses'][200]['content']['application/json'];
117378
+ type GetPromotionsByDistributionIdProps = paths[typeof routeName$3$]['get']['parameters'];
117264
117379
  declare const getPromotionsByDistributionId: (props: GetPromotionsByDistributionIdProps, wgApiClient: ClientType) => Promise<GetPromotionsByDistributionIdResponse>;
117265
117380
 
117266
- declare const routeName$3Z = "/v1/api/distribution/{distribution_id}/pending-upgrades";
117267
- type GetDistributionHasPendingUpgradePathParams = paths[typeof routeName$3Z]['get']['parameters']['path'];
117268
- type GetDistributionHasPendingUpgradeResponse = paths[typeof routeName$3Z]['get']['responses'][200]['content']['application/json'];
117269
- type GetDistributionHasPendingUpgradeProps = paths[typeof routeName$3Z]['get']['parameters'];
117381
+ declare const routeName$3_ = "/v1/api/distribution/{distribution_id}/pending-upgrades";
117382
+ type GetDistributionHasPendingUpgradePathParams = paths[typeof routeName$3_]['get']['parameters']['path'];
117383
+ type GetDistributionHasPendingUpgradeResponse = paths[typeof routeName$3_]['get']['responses'][200]['content']['application/json'];
117384
+ type GetDistributionHasPendingUpgradeProps = paths[typeof routeName$3_]['get']['parameters'];
117270
117385
  declare const getDistributionHasPendingUpgrade: (props: GetDistributionHasPendingUpgradeProps, wgApiClient: ClientType) => Promise<GetDistributionHasPendingUpgradeResponse>;
117271
117386
 
117272
- declare const routeName$3Y = "/v1/api/distributions/invitations";
117273
- type InviteColleaguesToDistributionBody = paths[typeof routeName$3Y]['post']['requestBody']['content']['application/json'];
117274
- type InviteColleaguesToDistributionResponse = paths[typeof routeName$3Y]['post']['responses'][201]['content']['application/json'];
117387
+ declare const routeName$3Z = "/v1/api/distributions/invitations";
117388
+ type InviteColleaguesToDistributionBody = paths[typeof routeName$3Z]['post']['requestBody']['content']['application/json'];
117389
+ type InviteColleaguesToDistributionResponse = paths[typeof routeName$3Z]['post']['responses'][201]['content']['application/json'];
117275
117390
  interface InviteColleaguesToDistributionProps {
117276
117391
  body: InviteColleaguesToDistributionBody;
117277
117392
  }
117278
117393
  declare const inviteColleaguesToDistribution: (props: InviteColleaguesToDistributionProps, wgApiClient: ClientType) => Promise<InviteColleaguesToDistributionResponse>;
117279
117394
 
117280
- declare const routeName$3X = "/v1/api/distributions/{distribution_id}/integrations";
117281
- type GetIntegrationsByDistributionPathParams = paths[typeof routeName$3X]['get']['parameters']['path'];
117282
- type GetIntegrationsByDistributionResponse = paths[typeof routeName$3X]['get']['responses'][201]['content']['application/json'];
117283
- type GetIntegrationsByDistributionProps = paths[typeof routeName$3X]['get']['parameters'];
117395
+ declare const routeName$3Y = "/v1/api/distributions/{distribution_id}/integrations";
117396
+ type GetIntegrationsByDistributionPathParams = paths[typeof routeName$3Y]['get']['parameters']['path'];
117397
+ type GetIntegrationsByDistributionResponse = paths[typeof routeName$3Y]['get']['responses'][201]['content']['application/json'];
117398
+ type GetIntegrationsByDistributionProps = paths[typeof routeName$3Y]['get']['parameters'];
117284
117399
  declare const getIntegrationsByDistribution: (props: GetIntegrationsByDistributionProps, wgApiClient: ClientType) => Promise<GetIntegrationsByDistributionResponse>;
117285
117400
 
117286
- declare const routeName$3W = "/v1/api/distributions/{distribution_id}/integrations";
117287
- type UpdateDistributionIntegrationsPathParams = paths[typeof routeName$3W]['put']['parameters']['path'];
117288
- type UpdateDistributionIntegrationsResponse = paths[typeof routeName$3W]['put']['responses'][201]['content']['application/json'];
117401
+ declare const routeName$3X = "/v1/api/distributions/{distribution_id}/integrations";
117402
+ type UpdateDistributionIntegrationsPathParams = paths[typeof routeName$3X]['put']['parameters']['path'];
117403
+ type UpdateDistributionIntegrationsResponse = paths[typeof routeName$3X]['put']['responses'][201]['content']['application/json'];
117289
117404
  interface UpdateDistributionIntegrationsProps {
117290
117405
  params: {
117291
117406
  path: UpdateDistributionIntegrationsPathParams;
@@ -117293,28 +117408,28 @@ interface UpdateDistributionIntegrationsProps {
117293
117408
  }
117294
117409
  declare const updateDistributionIntegrations: (props: UpdateDistributionIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateDistributionIntegrationsResponse>;
117295
117410
 
117296
- declare const routeName$3V = "/v1/api/distributions/settings";
117297
- type GetDistributionSettingsResponse = paths[typeof routeName$3V]['get']['responses'][200]['content']['application/json'];
117411
+ declare const routeName$3W = "/v1/api/distributions/settings";
117412
+ type GetDistributionSettingsResponse = paths[typeof routeName$3W]['get']['responses'][200]['content']['application/json'];
117298
117413
  declare const getDistributionSettings: (wgApiClient: ClientType) => Promise<GetDistributionSettingsResponse>;
117299
117414
 
117300
- declare const routeName$3U = "/v1/api/distributions/settings";
117301
- type UpdateDistributionSettingsBody = paths[typeof routeName$3U]['patch']['requestBody']['content']['application/json'];
117302
- type UpdateDistributionSettingsResponse = paths[typeof routeName$3U]['patch']['responses'][200]['content']['application/json'];
117415
+ declare const routeName$3V = "/v1/api/distributions/settings";
117416
+ type UpdateDistributionSettingsBody = paths[typeof routeName$3V]['patch']['requestBody']['content']['application/json'];
117417
+ type UpdateDistributionSettingsResponse = paths[typeof routeName$3V]['patch']['responses'][200]['content']['application/json'];
117303
117418
  interface UpdateDistributionSettingsProps {
117304
117419
  body: UpdateDistributionSettingsBody;
117305
117420
  }
117306
117421
  declare const updateDistributionSettings: (props: UpdateDistributionSettingsProps, wgApiClient: ClientType) => Promise<UpdateDistributionSettingsResponse>;
117307
117422
 
117308
- declare const routeName$3T = "/v1/api/distributions/faq";
117309
- type GetDistributionFaqQueryParams = paths[typeof routeName$3T]['get']['parameters']['query'];
117310
- type GetDistributionFaqResponse = paths[typeof routeName$3T]['get']['responses'][200]['content']['application/json'];
117311
- type GetDistributionFaqProps = paths[typeof routeName$3T]['get']['parameters'];
117423
+ declare const routeName$3U = "/v1/api/distributions/faq";
117424
+ type GetDistributionFaqQueryParams = paths[typeof routeName$3U]['get']['parameters']['query'];
117425
+ type GetDistributionFaqResponse = paths[typeof routeName$3U]['get']['responses'][200]['content']['application/json'];
117426
+ type GetDistributionFaqProps = paths[typeof routeName$3U]['get']['parameters'];
117312
117427
  declare const getDistributionFaq: (props: GetDistributionFaqProps, wgApiClient: ClientType) => Promise<GetDistributionFaqResponse>;
117313
117428
 
117314
- declare const routeName$3S = "/v1/api/distributions/faq";
117315
- type UpsertDistributionFaqBody = paths[typeof routeName$3S]['put']['requestBody']['content']['application/json'];
117316
- type UpsertDistributionFaqQueryParams = paths[typeof routeName$3S]['put']['parameters']['query'];
117317
- type UpsertDistributionFaqResponse = paths[typeof routeName$3S]['put']['responses'][200]['content']['application/json'];
117429
+ declare const routeName$3T = "/v1/api/distributions/faq";
117430
+ type UpsertDistributionFaqBody = paths[typeof routeName$3T]['put']['requestBody']['content']['application/json'];
117431
+ type UpsertDistributionFaqQueryParams = paths[typeof routeName$3T]['put']['parameters']['query'];
117432
+ type UpsertDistributionFaqResponse = paths[typeof routeName$3T]['put']['responses'][200]['content']['application/json'];
117318
117433
  interface UpsertDistributionFaqProps {
117319
117434
  body: UpsertDistributionFaqBody;
117320
117435
  params: {
@@ -117323,10 +117438,10 @@ interface UpsertDistributionFaqProps {
117323
117438
  }
117324
117439
  declare const upsertDistributionFaq: (props: UpsertDistributionFaqProps, wgApiClient: ClientType) => Promise<UpsertDistributionFaqResponse>;
117325
117440
 
117326
- declare const routeName$3R = "/v1/api/distributions/faq/{faq_id}";
117327
- type DeleteDistributionFaqPathParams = paths[typeof routeName$3R]['delete']['parameters']['path'];
117328
- type DeleteDistributionFaqQueryParams = paths[typeof routeName$3R]['delete']['parameters']['query'];
117329
- type DeleteDistributionFaqResponse = paths[typeof routeName$3R]['delete']['responses'][200]['content']['application/json'];
117441
+ declare const routeName$3S = "/v1/api/distributions/faq/{faq_id}";
117442
+ type DeleteDistributionFaqPathParams = paths[typeof routeName$3S]['delete']['parameters']['path'];
117443
+ type DeleteDistributionFaqQueryParams = paths[typeof routeName$3S]['delete']['parameters']['query'];
117444
+ type DeleteDistributionFaqResponse = paths[typeof routeName$3S]['delete']['responses'][200]['content']['application/json'];
117330
117445
  interface DeleteDistributionFaqProps {
117331
117446
  params: {
117332
117447
  query: DeleteDistributionFaqQueryParams;
@@ -117335,58 +117450,66 @@ interface DeleteDistributionFaqProps {
117335
117450
  }
117336
117451
  declare const deleteDistributionFaq: (props: DeleteDistributionFaqProps, wgApiClient: ClientType) => Promise<DeleteDistributionFaqResponse>;
117337
117452
 
117338
- declare const routeName$3Q = "/v1/api/document-extractor/supported-mime-types";
117339
- type GetSupportedMimeTypesResponse = paths[typeof routeName$3Q]['get']['responses'][200]['content']['application/json'];
117453
+ declare const routeName$3R = "/v1/api/document-extractor/supported-mime-types";
117454
+ type GetSupportedMimeTypesResponse = paths[typeof routeName$3R]['get']['responses'][200]['content']['application/json'];
117340
117455
  declare const getSupportedMimeTypes: (wgApiClient: ClientType) => Promise<GetSupportedMimeTypesResponse>;
117341
117456
 
117342
- declare const routeName$3P = "/v1/api/document-extractor/one";
117343
- type ExtractOneDocumentBody = paths[typeof routeName$3P]['post']['requestBody']['content']['application/json'];
117344
- type ExtractOneDocumentResponse = paths[typeof routeName$3P]['post']['responses'][201]['content']['application/json'];
117457
+ declare const routeName$3Q = "/v1/api/document-extractor/one";
117458
+ type ExtractOneDocumentBody = paths[typeof routeName$3Q]['post']['requestBody']['content']['application/json'];
117459
+ type ExtractOneDocumentResponse = paths[typeof routeName$3Q]['post']['responses'][201]['content']['application/json'];
117345
117460
  interface ExtractOneDocumentProps {
117346
117461
  body: ExtractOneDocumentBody;
117347
117462
  }
117348
117463
  declare const extractOneDocument: (props: ExtractOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractOneDocumentResponse>;
117349
117464
 
117350
- declare const routeName$3O = "/v1/api/document-extractor/one/offers";
117351
- type ExtractOffersForOneDocumentBody = paths[typeof routeName$3O]['post']['requestBody']['content']['application/json'];
117352
- type ExtractOffersForOneDocumentResponse = paths[typeof routeName$3O]['post']['responses'][201]['content']['application/json'];
117465
+ declare const routeName$3P = "/v1/api/document-extractor/one/offers";
117466
+ type ExtractOffersForOneDocumentBody = paths[typeof routeName$3P]['post']['requestBody']['content']['application/json'];
117467
+ type ExtractOffersForOneDocumentResponse = paths[typeof routeName$3P]['post']['responses'][201]['content']['application/json'];
117353
117468
  interface ExtractOffersForOneDocumentProps {
117354
117469
  body: ExtractOffersForOneDocumentBody;
117355
117470
  }
117356
117471
  declare const extractOffersForOneDocument: (props: ExtractOffersForOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractOffersForOneDocumentResponse>;
117357
117472
 
117358
- declare const routeName$3N = "/v1/api/document-extractor/one/insurance-policies";
117359
- type ExtractInsurancePoliciesForOneDocumentBody = paths[typeof routeName$3N]['post']['requestBody']['content']['application/json'];
117360
- type ExtractInsurancePoliciesForOneDocumentResponse = paths[typeof routeName$3N]['post']['responses'][201]['content']['application/json'];
117473
+ declare const routeName$3O = "/v1/api/document-extractor/one/insurance-policies";
117474
+ type ExtractInsurancePoliciesForOneDocumentBody = paths[typeof routeName$3O]['post']['requestBody']['content']['application/json'];
117475
+ type ExtractInsurancePoliciesForOneDocumentResponse = paths[typeof routeName$3O]['post']['responses'][201]['content']['application/json'];
117361
117476
  interface ExtractInsurancePoliciesForOneDocumentProps {
117362
117477
  body: ExtractInsurancePoliciesForOneDocumentBody;
117363
117478
  }
117364
117479
  declare const extractInsurancePoliciesForOneDocument: (props: ExtractInsurancePoliciesForOneDocumentProps, wgApiClient: ClientType) => Promise<ExtractInsurancePoliciesForOneDocumentResponse>;
117365
117480
 
117366
- declare const routeName$3M = "/v2/api/document-extractor/one";
117367
- type ExtractOneDocumentEnqueueBody = paths[typeof routeName$3M]['post']['requestBody']['content']['application/json'];
117368
- type ExtractOneDocumentEnqueueResponse = paths[typeof routeName$3M]['post']['responses'][201]['content']['application/json'];
117481
+ declare const routeName$3N = "/v2/api/document-extractor/one";
117482
+ type ExtractOneDocumentEnqueueBody = paths[typeof routeName$3N]['post']['requestBody']['content']['application/json'];
117483
+ type ExtractOneDocumentEnqueueResponse = paths[typeof routeName$3N]['post']['responses'][201]['content']['application/json'];
117369
117484
  interface ExtractOneDocumentEnqueueProps {
117370
117485
  body: ExtractOneDocumentEnqueueBody;
117371
117486
  }
117372
117487
  declare const extractOneDocumentEnqueue: (props: ExtractOneDocumentEnqueueProps, wgApiClient: ClientType) => Promise<ExtractOneDocumentEnqueueResponse>;
117373
117488
 
117374
- declare const routeName$3L = "/v2/api/document-extractor/one/offers";
117375
- type ExtractOffersForOneDocumentEnqueueBody = paths[typeof routeName$3L]['post']['requestBody']['content']['application/json'];
117376
- type ExtractOffersForOneDocumentEnqueueResponse = paths[typeof routeName$3L]['post']['responses'][201]['content']['application/json'];
117489
+ declare const routeName$3M = "/v2/api/document-extractor/one/offers";
117490
+ type ExtractOffersForOneDocumentEnqueueBody = paths[typeof routeName$3M]['post']['requestBody']['content']['application/json'];
117491
+ type ExtractOffersForOneDocumentEnqueueResponse = paths[typeof routeName$3M]['post']['responses'][201]['content']['application/json'];
117377
117492
  interface ExtractOffersForOneDocumentEnqueueProps {
117378
117493
  body: ExtractOffersForOneDocumentEnqueueBody;
117379
117494
  }
117380
117495
  declare const extractOffersForOneDocumentEnqueue: (props: ExtractOffersForOneDocumentEnqueueProps, wgApiClient: ClientType) => Promise<ExtractOffersForOneDocumentEnqueueResponse>;
117381
117496
 
117382
- declare const routeName$3K = "/v2/api/document-extractor/one/insurance-policies";
117383
- type ExtractInsurancePoliciesForOneDocumentEnqueueBody = paths[typeof routeName$3K]['post']['requestBody']['content']['application/json'];
117384
- type ExtractInsurancePoliciesForOneDocumentEnqueueResponse = paths[typeof routeName$3K]['post']['responses'][201]['content']['application/json'];
117497
+ declare const routeName$3L = "/v2/api/document-extractor/one/insurance-policies";
117498
+ type ExtractInsurancePoliciesForOneDocumentEnqueueBody = paths[typeof routeName$3L]['post']['requestBody']['content']['application/json'];
117499
+ type ExtractInsurancePoliciesForOneDocumentEnqueueResponse = paths[typeof routeName$3L]['post']['responses'][201]['content']['application/json'];
117385
117500
  interface ExtractInsurancePoliciesForOneDocumentEnqueueProps {
117386
117501
  body: ExtractInsurancePoliciesForOneDocumentEnqueueBody;
117387
117502
  }
117388
117503
  declare const extractInsurancePoliciesForOneDocumentEnqueue: (props: ExtractInsurancePoliciesForOneDocumentEnqueueProps, wgApiClient: ClientType) => Promise<ExtractInsurancePoliciesForOneDocumentEnqueueResponse>;
117389
117504
 
117505
+ declare const routeName$3K = "/v2/api/document-extractor/one/party";
117506
+ type ExtractPartyForOneDocumentEnqueueBody = paths[typeof routeName$3K]['post']['requestBody']['content']['application/json'];
117507
+ type ExtractPartyForOneDocumentEnqueueResponse = paths[typeof routeName$3K]['post']['responses'][201]['content']['application/json'];
117508
+ interface ExtractPartyForOneDocumentEnqueueProps {
117509
+ body: ExtractPartyForOneDocumentEnqueueBody;
117510
+ }
117511
+ declare const extractPartyForOneDocumentEnqueue: (props: ExtractPartyForOneDocumentEnqueueProps, wgApiClient: ClientType) => Promise<ExtractPartyForOneDocumentEnqueueResponse>;
117512
+
117390
117513
  declare const routeName$3J = "/v1/api/document-extractor/entities/{entity_id}";
117391
117514
  type GetExtractEnityInfoPathParams = paths[typeof routeName$3J]['get']['parameters']['path'];
117392
117515
  type GetExtractEnityInfoResponse = paths[typeof routeName$3J]['get']['responses'][200]['content']['application/json'];
@@ -119566,4 +119689,4 @@ interface ValidateYellowhiveQuestionnaireProps {
119566
119689
  }
119567
119690
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
119568
119691
 
119569
- 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 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 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 GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type 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 GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type 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 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 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 PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type 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 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 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 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 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 SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, 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 SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, 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 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 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 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 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 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 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 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 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, 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, 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, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, 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, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, 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, 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, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
119692
+ 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 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 GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type 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 GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type 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 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 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 PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type 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 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 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 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 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 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 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 SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, 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 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 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 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 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 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 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 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 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, 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, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, 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, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, 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, 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, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };