wg-api-sdk 1.0.67 → 1.0.68

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.
@@ -2388,6 +2388,26 @@ interface paths {
2388
2388
  patch?: never;
2389
2389
  trace?: never;
2390
2390
  };
2391
+ "/v1/api/connections/anva/task": {
2392
+ parameters: {
2393
+ query?: never;
2394
+ header?: never;
2395
+ path?: never;
2396
+ cookie?: never;
2397
+ };
2398
+ get?: never;
2399
+ put?: never;
2400
+ /**
2401
+ * Create Anva Task
2402
+ * @description This will send a task to ANVA system.
2403
+ */
2404
+ post: operations["create_anva_task_v1_api_connections_anva_task_post"];
2405
+ delete?: never;
2406
+ options?: never;
2407
+ head?: never;
2408
+ patch?: never;
2409
+ trace?: never;
2410
+ };
2391
2411
  "/v1/api/connections/anva/validate": {
2392
2412
  parameters: {
2393
2413
  query?: never;
@@ -8603,7 +8623,7 @@ interface components {
8603
8623
  * Timestamp
8604
8624
  * Format: date-time
8605
8625
  * @description Timestamp of when the error occured
8606
- * @default 2025-10-01T16:47:33.984353
8626
+ * @default 2025-10-02T14:03:44.829081
8607
8627
  */
8608
8628
  timestamp: string;
8609
8629
  /**
@@ -54979,7 +54999,7 @@ interface components {
54979
54999
  * @description An enumeration.
54980
55000
  * @enum {unknown}
54981
55001
  */
54982
- PaymentMethod: "TRANSFER" | "DIRECT_DEBIT" | "NONE";
55002
+ PaymentMethod: "DIRECT_DEBIT" | "INVOICE";
54983
55003
  /**
54984
55004
  * ThirdPartyConstructionWorkInsuranceType
54985
55005
  * @description An enumeration.
@@ -62253,6 +62273,23 @@ interface components {
62253
62273
  /** Value */
62254
62274
  value: string;
62255
62275
  };
62276
+ /** AnvaProducts */
62277
+ AnvaProducts: {
62278
+ /** Items */
62279
+ items: components["schemas"]["AnvaProduct"][];
62280
+ /** Count */
62281
+ count: number;
62282
+ };
62283
+ /** AnvaProduct */
62284
+ AnvaProduct: {
62285
+ /**
62286
+ * Id
62287
+ * Format: uuid
62288
+ */
62289
+ id: string;
62290
+ /** Coverages */
62291
+ coverages: number[];
62292
+ };
62256
62293
  /** ImportPartyResponse */
62257
62294
  ImportPartyResponse: {
62258
62295
  /**
@@ -62318,6 +62355,57 @@ interface components {
62318
62355
  */
62319
62356
  external_references: components["schemas"]["Reference"][];
62320
62357
  };
62358
+ /** create_task_in_anva_params */
62359
+ create_task_in_anva_params: {
62360
+ auth: components["schemas"]["Auth"];
62361
+ data: components["schemas"]["AnvaTaskCmd"];
62362
+ /** Anva Party Id */
62363
+ anva_party_id?: string;
62364
+ };
62365
+ /** AnvaTaskCmd */
62366
+ AnvaTaskCmd: {
62367
+ /** Title */
62368
+ title: string;
62369
+ /** Description */
62370
+ description: string;
62371
+ priority: components["schemas"]["ANVA_TASK_PRIORITY"];
62372
+ /**
62373
+ * Title 2
62374
+ * @description Extra info - extra subject line
62375
+ */
62376
+ title_2?: string;
62377
+ /**
62378
+ * Due Date
62379
+ * @description ISO 8601 date
62380
+ * @example 1970-01-01
62381
+ */
62382
+ due_date?: string;
62383
+ /**
62384
+ * Assigned To
62385
+ * @description Assign task to an existing employee, use employees search API
62386
+ */
62387
+ assigned_to?: string;
62388
+ /** Reason */
62389
+ reason?: string;
62390
+ /** Status */
62391
+ status?: string;
62392
+ /** Office Id */
62393
+ office_id?: string;
62394
+ /** Anva Policy Id */
62395
+ anva_policy_id?: string;
62396
+ /** Contact Person Name */
62397
+ contact_person_name?: string;
62398
+ /** Contact Person Email */
62399
+ contact_person_email?: string;
62400
+ /** Contact Person Telephonenr */
62401
+ contact_person_telephonenr?: string;
62402
+ };
62403
+ /**
62404
+ * ANVA_TASK_PRIORITY
62405
+ * @description An enumeration.
62406
+ * @enum {unknown}
62407
+ */
62408
+ ANVA_TASK_PRIORITY: 0 | 1 | 2 | 3;
62321
62409
  /** CreateReplyUUID */
62322
62410
  CreateReplyUUID: {
62323
62411
  /**
@@ -63339,16 +63427,6 @@ interface components {
63339
63427
  * @enum {unknown}
63340
63428
  */
63341
63429
  PREFERRED_WAY_OF_CONTACT: "DIGITAL" | "NO_PREFERENCE" | "IN_PERSON";
63342
- /** AnvaProduct */
63343
- AnvaProduct: {
63344
- /**
63345
- * Id
63346
- * Format: uuid
63347
- */
63348
- id: string;
63349
- /** Coverages */
63350
- coverages: number[];
63351
- };
63352
63430
  /** YellowHiveProductsInConversationCmd */
63353
63431
  YellowHiveProductsInConversationCmd: {
63354
63432
  /**
@@ -69104,9 +69182,14 @@ type SchemaAnvaInquiryDocument = components['schemas']['AnvaInquiryDocument'];
69104
69182
  type SchemaRelations = components['schemas']['Relations'];
69105
69183
  type SchemaEmployees = components['schemas']['Employees'];
69106
69184
  type SchemaMercuryModelsAnvaListItem = components['schemas']['mercury__models__anva__ListItem'];
69185
+ type SchemaAnvaProducts = components['schemas']['AnvaProducts'];
69186
+ type SchemaAnvaProduct = components['schemas']['AnvaProduct'];
69107
69187
  type SchemaImportPartyResponse = components['schemas']['ImportPartyResponse'];
69108
69188
  type SchemaReference = components['schemas']['Reference'];
69109
69189
  type SchemaImportPartyError = components['schemas']['ImportPartyError'];
69190
+ type SchemaCreateTaskInAnvaParams = components['schemas']['create_task_in_anva_params'];
69191
+ type SchemaAnvaTaskCmd = components['schemas']['AnvaTaskCmd'];
69192
+ type SchemaAnvaTaskPriority = components['schemas']['ANVA_TASK_PRIORITY'];
69110
69193
  type SchemaCreateReplyUuid = components['schemas']['CreateReplyUUID'];
69111
69194
  type SchemaTeams = components['schemas']['Teams'];
69112
69195
  type SchemaMercuryModelsFasterforwardListItem = components['schemas']['mercury__models__fasterforward__ListItem'];
@@ -69180,7 +69263,6 @@ type SchemaSessionReport = components['schemas']['SessionReport'];
69180
69263
  type SchemaExtractedQuestionnaireRequest = components['schemas']['ExtractedQuestionnaireRequest'];
69181
69264
  type SchemaPriceQualityRatio = components['schemas']['PRICE_QUALITY_RATIO'];
69182
69265
  type SchemaPreferredWayOfContact = components['schemas']['PREFERRED_WAY_OF_CONTACT'];
69183
- type SchemaAnvaProduct = components['schemas']['AnvaProduct'];
69184
69266
  type SchemaYellowHiveProductsInConversationCmd = components['schemas']['YellowHiveProductsInConversationCmd'];
69185
69267
  type SchemaExtractedQuestionnaireFilters = components['schemas']['ExtractedQuestionnaireFilters'];
69186
69268
  type SchemaAskLaterQuestionsResponse = components['schemas']['AskLaterQuestionsResponse'];
@@ -82020,7 +82102,7 @@ interface operations {
82020
82102
  [name: string]: unknown;
82021
82103
  };
82022
82104
  content: {
82023
- "application/json": unknown;
82105
+ "application/json": components["schemas"]["AnvaProducts"];
82024
82106
  };
82025
82107
  };
82026
82108
  /** @description Bad Request */
@@ -82444,6 +82526,98 @@ interface operations {
82444
82526
  };
82445
82527
  };
82446
82528
  };
82529
+ create_anva_task_v1_api_connections_anva_task_post: {
82530
+ parameters: {
82531
+ query?: {
82532
+ /**
82533
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
82534
+ * @example EN
82535
+ */
82536
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
82537
+ /**
82538
+ * @description Same as lang, but adds support to pass ?language as well
82539
+ * @example EN
82540
+ */
82541
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
82542
+ };
82543
+ header?: {
82544
+ /** @description Which release to target running in 'PRODUCTION' environment. */
82545
+ "x-release"?: string;
82546
+ };
82547
+ path?: never;
82548
+ cookie?: never;
82549
+ };
82550
+ requestBody: {
82551
+ content: {
82552
+ "application/json": components["schemas"]["create_task_in_anva_params"]["data"];
82553
+ };
82554
+ };
82555
+ responses: {
82556
+ /** @description Successful Response */
82557
+ 201: {
82558
+ headers: {
82559
+ [name: string]: unknown;
82560
+ };
82561
+ content: {
82562
+ "application/json": components["schemas"]["StatusReply"];
82563
+ };
82564
+ };
82565
+ /** @description Bad Request */
82566
+ 400: {
82567
+ headers: {
82568
+ [name: string]: unknown;
82569
+ };
82570
+ content: {
82571
+ "application/json": components["schemas"]["Error_4XX"];
82572
+ };
82573
+ };
82574
+ /** @description Unauthorized */
82575
+ 401: {
82576
+ headers: {
82577
+ [name: string]: unknown;
82578
+ };
82579
+ content: {
82580
+ "application/json": components["schemas"]["Error_401"];
82581
+ };
82582
+ };
82583
+ /** @description Forbidden */
82584
+ 403: {
82585
+ headers: {
82586
+ [name: string]: unknown;
82587
+ };
82588
+ content: {
82589
+ "application/json": components["schemas"]["Error_403"];
82590
+ };
82591
+ };
82592
+ /** @description Unprocessable Content */
82593
+ 422: {
82594
+ headers: {
82595
+ [name: string]: unknown;
82596
+ };
82597
+ content: {
82598
+ "application/json": components["schemas"]["Error_422"];
82599
+ };
82600
+ };
82601
+ /** @description Too Many Requests */
82602
+ 429: {
82603
+ headers: {
82604
+ [name: string]: unknown;
82605
+ };
82606
+ content: {
82607
+ "application/json": components["schemas"]["Error_429"];
82608
+ };
82609
+ };
82610
+ /** @description Internal Server Error */
82611
+ 500: {
82612
+ headers: {
82613
+ [name: string]: unknown;
82614
+ };
82615
+ content: {
82616
+ "application/json": components["schemas"]["ServerError"];
82617
+ };
82618
+ };
82619
+ };
82620
+ };
82447
82621
  validate_anva_connection_v1_api_connections_anva_validate_post: {
82448
82622
  parameters: {
82449
82623
  query?: {
@@ -112545,52 +112719,52 @@ type Middleware = Middleware$1;
112545
112719
  type ClientType = ReturnType<typeof createClient<paths>>;
112546
112720
  declare const wgApiClient: (options: ClientOptions) => ClientType;
112547
112721
 
112548
- declare const routeName$7j = "/v1/api/weather/info";
112549
- type GetWeatherInfoQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
112550
- type GetWeatherInfoResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
112551
- type GetWeatherInfoProps = paths[typeof routeName$7j]['get']['parameters'];
112722
+ declare const routeName$7k = "/v1/api/weather/info";
112723
+ type GetWeatherInfoQueryParams = paths[typeof routeName$7k]['get']['parameters']['query'];
112724
+ type GetWeatherInfoResponse = paths[typeof routeName$7k]['get']['responses'][200]['content']['application/json'];
112725
+ type GetWeatherInfoProps = paths[typeof routeName$7k]['get']['parameters'];
112552
112726
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
112553
112727
 
112554
- declare const routeName$7i = "/v1/api/address/cities";
112555
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
112556
- type SearchCitiesByCountryResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
112557
- type SearchCitiesByCountryProps = paths[typeof routeName$7i]['get']['parameters'];
112728
+ declare const routeName$7j = "/v1/api/address/cities";
112729
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$7j]['get']['parameters']['query'];
112730
+ type SearchCitiesByCountryResponse = paths[typeof routeName$7j]['get']['responses'][200]['content']['application/json'];
112731
+ type SearchCitiesByCountryProps = paths[typeof routeName$7j]['get']['parameters'];
112558
112732
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
112559
112733
 
112560
- declare const routeName$7h = "/v1/api/address/streets";
112561
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
112562
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
112563
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7h]['get']['parameters'];
112734
+ declare const routeName$7i = "/v1/api/address/streets";
112735
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7i]['get']['parameters']['query'];
112736
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7i]['get']['responses'][200]['content']['application/json'];
112737
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7i]['get']['parameters'];
112564
112738
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
112565
112739
 
112566
- declare const routeName$7g = "/v1/api/address/search";
112567
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$7g]['get']['parameters']['query'];
112568
- type SearchAddressesByCountryResponse = paths[typeof routeName$7g]['get']['responses'][200]['content']['application/json'];
112569
- type SearchAddressesByCountryProps = paths[typeof routeName$7g]['get']['parameters'];
112740
+ declare const routeName$7h = "/v1/api/address/search";
112741
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$7h]['get']['parameters']['query'];
112742
+ type SearchAddressesByCountryResponse = paths[typeof routeName$7h]['get']['responses'][200]['content']['application/json'];
112743
+ type SearchAddressesByCountryProps = paths[typeof routeName$7h]['get']['parameters'];
112570
112744
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
112571
112745
 
112572
- declare const routeName$7f = "/v1/api/address/info/premium";
112573
- type GetAddressInfoQueryParams = paths[typeof routeName$7f]['get']['parameters']['query'];
112574
- type GetAddressInfoResponse = paths[typeof routeName$7f]['get']['responses'][200]['content']['application/json'];
112575
- type GetAddressInfoProps = paths[typeof routeName$7f]['get']['parameters'];
112746
+ declare const routeName$7g = "/v1/api/address/info/premium";
112747
+ type GetAddressInfoQueryParams = paths[typeof routeName$7g]['get']['parameters']['query'];
112748
+ type GetAddressInfoResponse = paths[typeof routeName$7g]['get']['responses'][200]['content']['application/json'];
112749
+ type GetAddressInfoProps = paths[typeof routeName$7g]['get']['parameters'];
112576
112750
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
112577
112751
 
112578
- declare const routeName$7e = "/v1/api/address/info/freemium";
112579
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
112580
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
112581
- type GetAddressInfoFreemiumProps = paths[typeof routeName$7e]['get']['parameters'];
112752
+ declare const routeName$7f = "/v1/api/address/info/freemium";
112753
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7f]['get']['parameters']['query'];
112754
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$7f]['get']['responses'][200]['content']['application/json'];
112755
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$7f]['get']['parameters'];
112582
112756
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
112583
112757
 
112584
- declare const routeName$7d = "/v1/api/advisory-reports";
112585
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7d]['get']['parameters']['query'];
112586
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
112587
- type GetAllAdvisoryReportsProps = paths[typeof routeName$7d]['get']['parameters'];
112758
+ declare const routeName$7e = "/v1/api/advisory-reports";
112759
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
112760
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
112761
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$7e]['get']['parameters'];
112588
112762
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
112589
112763
 
112590
- declare const routeName$7c = "/v1/api/advisory-reports";
112591
- type CreateAdvisoryReportBody = paths[typeof routeName$7c]['post']['requestBody']['content']['application/json'];
112592
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$7c]['post']['parameters']['query'];
112593
- type CreateAdvisoryReportResponse = paths[typeof routeName$7c]['post']['responses'][201]['content']['application/json'];
112764
+ declare const routeName$7d = "/v1/api/advisory-reports";
112765
+ type CreateAdvisoryReportBody = paths[typeof routeName$7d]['post']['requestBody']['content']['application/json'];
112766
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$7d]['post']['parameters']['query'];
112767
+ type CreateAdvisoryReportResponse = paths[typeof routeName$7d]['post']['responses'][201]['content']['application/json'];
112594
112768
  interface CreateAdvisoryReportProps {
112595
112769
  body: CreateAdvisoryReportBody;
112596
112770
  params: {
@@ -112599,17 +112773,17 @@ interface CreateAdvisoryReportProps {
112599
112773
  }
112600
112774
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
112601
112775
 
112602
- declare const routeName$7b = "/v1/api/advisory-reports/{report_id}";
112603
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7b]['get']['parameters']['path'];
112604
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7b]['get']['parameters']['query'];
112605
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7b]['get']['responses'][200]['content']['application/json'];
112606
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7b]['get']['parameters'];
112776
+ declare const routeName$7c = "/v1/api/advisory-reports/{report_id}";
112777
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7c]['get']['parameters']['path'];
112778
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
112779
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
112780
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7c]['get']['parameters'];
112607
112781
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
112608
112782
 
112609
- declare const routeName$7a = "/v1/api/advisory-reports/{report_id}";
112610
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7a]['delete']['parameters']['path'];
112611
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7a]['delete']['parameters']['query'];
112612
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7a]['delete']['responses'][200]['content']['application/json'];
112783
+ declare const routeName$7b = "/v1/api/advisory-reports/{report_id}";
112784
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7b]['delete']['parameters']['path'];
112785
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7b]['delete']['parameters']['query'];
112786
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7b]['delete']['responses'][200]['content']['application/json'];
112613
112787
  interface DeleteAdvisoryReportRevisionProps {
112614
112788
  params: {
112615
112789
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -112618,11 +112792,11 @@ interface DeleteAdvisoryReportRevisionProps {
112618
112792
  }
112619
112793
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
112620
112794
 
112621
- declare const routeName$79 = "/v1/api/advisory-reports/{report_id}";
112622
- type UpdateAdvisoryReportBody = paths[typeof routeName$79]['patch']['requestBody']['content']['application/json'];
112623
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$79]['patch']['parameters']['path'];
112624
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$79]['patch']['parameters']['query'];
112625
- type UpdateAdvisoryReportResponse = paths[typeof routeName$79]['patch']['responses'][200]['content']['application/json'];
112795
+ declare const routeName$7a = "/v1/api/advisory-reports/{report_id}";
112796
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7a]['patch']['requestBody']['content']['application/json'];
112797
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7a]['patch']['parameters']['path'];
112798
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7a]['patch']['parameters']['query'];
112799
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7a]['patch']['responses'][200]['content']['application/json'];
112626
112800
  interface UpdateAdvisoryReportProps {
112627
112801
  body: UpdateAdvisoryReportBody;
112628
112802
  params: {
@@ -112632,18 +112806,18 @@ interface UpdateAdvisoryReportProps {
112632
112806
  }
112633
112807
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
112634
112808
 
112635
- declare const routeName$78 = "/v1/api/advisory-reports/{report_id}/events";
112636
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$78]['get']['parameters']['path'];
112637
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
112638
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
112639
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$78]['get']['parameters'];
112809
+ declare const routeName$79 = "/v1/api/advisory-reports/{report_id}/events";
112810
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$79]['get']['parameters']['path'];
112811
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$79]['get']['parameters']['query'];
112812
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
112813
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$79]['get']['parameters'];
112640
112814
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
112641
112815
 
112642
- declare const routeName$77 = "/v1/api/advisory-reports/{report_id}/email-inquiries";
112643
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$77]['post']['requestBody']['content']['application/json'];
112644
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
112645
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
112646
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$77]['post']['responses'][201]['content']['application/json'];
112816
+ declare const routeName$78 = "/v1/api/advisory-reports/{report_id}/email-inquiries";
112817
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$78]['post']['requestBody']['content']['application/json'];
112818
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$78]['post']['parameters']['path'];
112819
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$78]['post']['parameters']['query'];
112820
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$78]['post']['responses'][201]['content']['application/json'];
112647
112821
  interface SendAdvisoryReportAsMailProps {
112648
112822
  body: SendAdvisoryReportAsMailBody;
112649
112823
  params: {
@@ -112653,10 +112827,10 @@ interface SendAdvisoryReportAsMailProps {
112653
112827
  }
112654
112828
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
112655
112829
 
112656
- declare const routeName$76 = "/v1/api/advisory-reports/{report_id}/docx";
112657
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$76]['post']['parameters']['path'];
112658
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$76]['post']['parameters']['query'];
112659
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$76]['post']['responses'][200]['content']['application/json'];
112830
+ declare const routeName$77 = "/v1/api/advisory-reports/{report_id}/docx";
112831
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$77]['post']['parameters']['path'];
112832
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$77]['post']['parameters']['query'];
112833
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$77]['post']['responses'][200]['content']['application/json'];
112660
112834
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
112661
112835
  params: {
112662
112836
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -112665,17 +112839,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
112665
112839
  }
112666
112840
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
112667
112841
 
112668
- declare const routeName$75 = "/v1/api/advisory-reports/{report_id}/pdf";
112669
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$75]['get']['parameters']['path'];
112670
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$75]['get']['parameters']['query'];
112671
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$75]['get']['responses'][307]['content']['application/json'];
112672
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$75]['get']['parameters'];
112842
+ declare const routeName$76 = "/v1/api/advisory-reports/{report_id}/pdf";
112843
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$76]['get']['parameters']['path'];
112844
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$76]['get']['parameters']['query'];
112845
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$76]['get']['responses'][307]['content']['application/json'];
112846
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$76]['get']['parameters'];
112673
112847
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
112674
112848
 
112675
- declare const routeName$74 = "/v1/api/advisory-reports/{report_id}/pdf";
112676
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
112677
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
112678
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$74]['post']['responses'][200]['content']['application/json'];
112849
+ declare const routeName$75 = "/v1/api/advisory-reports/{report_id}/pdf";
112850
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$75]['post']['parameters']['path'];
112851
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$75]['post']['parameters']['query'];
112852
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$75]['post']['responses'][200]['content']['application/json'];
112679
112853
  interface GeneratePdfOfAdvisoryReportByIdProps {
112680
112854
  params: {
112681
112855
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -112684,10 +112858,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
112684
112858
  }
112685
112859
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
112686
112860
 
112687
- declare const routeName$73 = "/v1/api/advisory-report-front-page-pdf";
112688
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$73]['post']['requestBody']['content']['application/json'];
112689
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$73]['post']['parameters']['query'];
112690
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$73]['post']['responses'][201]['content']['application/json'];
112861
+ declare const routeName$74 = "/v1/api/advisory-report-front-page-pdf";
112862
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
112863
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
112864
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$74]['post']['responses'][201]['content']['application/json'];
112691
112865
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
112692
112866
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
112693
112867
  params: {
@@ -112696,11 +112870,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
112696
112870
  }
112697
112871
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
112698
112872
 
112699
- declare const routeName$72 = "/v1/api/advisory-reports/{report_id}/acceptances";
112700
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$72]['post']['requestBody']['content']['application/json'];
112701
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$72]['post']['parameters']['path'];
112702
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$72]['post']['parameters']['query'];
112703
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$72]['post']['responses'][200]['content']['application/json'];
112873
+ declare const routeName$73 = "/v1/api/advisory-reports/{report_id}/acceptances";
112874
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$73]['post']['requestBody']['content']['application/json'];
112875
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$73]['post']['parameters']['path'];
112876
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$73]['post']['parameters']['query'];
112877
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$73]['post']['responses'][200]['content']['application/json'];
112704
112878
  interface AcceptOrRejectAnAdvisoryReportProps {
112705
112879
  body: AcceptOrRejectAnAdvisoryReportBody;
112706
112880
  params: {
@@ -112710,11 +112884,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
112710
112884
  }
112711
112885
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
112712
112886
 
112713
- declare const routeName$71 = "/v1/api/advisory-reports/{report_id}/conversations";
112714
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$71]['post']['requestBody']['content']['application/json'];
112715
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$71]['post']['parameters']['path'];
112716
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
112717
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$71]['post']['responses'][201]['content']['application/json'];
112887
+ declare const routeName$72 = "/v1/api/advisory-reports/{report_id}/conversations";
112888
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$72]['post']['requestBody']['content']['application/json'];
112889
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$72]['post']['parameters']['path'];
112890
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$72]['post']['parameters']['query'];
112891
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$72]['post']['responses'][201]['content']['application/json'];
112718
112892
  interface LinkConversationToAdvisoryReportProps {
112719
112893
  body: LinkConversationToAdvisoryReportBody;
112720
112894
  params: {
@@ -112724,11 +112898,11 @@ interface LinkConversationToAdvisoryReportProps {
112724
112898
  }
112725
112899
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
112726
112900
 
112727
- declare const routeName$70 = "/v2/api/advisory-reports/{report_id}/revisions";
112728
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
112729
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$70]['post']['parameters']['path'];
112730
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
112731
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$70]['post']['responses'][201]['content']['application/json'];
112901
+ declare const routeName$71 = "/v2/api/advisory-reports/{report_id}/revisions";
112902
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$71]['post']['requestBody']['content']['application/json'];
112903
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$71]['post']['parameters']['path'];
112904
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
112905
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$71]['post']['responses'][201]['content']['application/json'];
112732
112906
  interface CreateAdvisoryReportRevisionV2Props {
112733
112907
  body: CreateAdvisoryReportRevisionV2Body;
112734
112908
  params: {
@@ -112738,11 +112912,11 @@ interface CreateAdvisoryReportRevisionV2Props {
112738
112912
  }
112739
112913
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
112740
112914
 
112741
- declare const routeName$6$ = "/v1/api/advisory-reports/{report_id}/revisions";
112742
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
112743
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
112744
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
112745
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
112915
+ declare const routeName$70 = "/v1/api/advisory-reports/{report_id}/revisions";
112916
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
112917
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$70]['post']['parameters']['path'];
112918
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
112919
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$70]['post']['responses'][201]['content']['application/json'];
112746
112920
  interface CreateAdvisoryReportRevisionProps {
112747
112921
  body: CreateAdvisoryReportRevisionBody;
112748
112922
  params: {
@@ -112752,10 +112926,10 @@ interface CreateAdvisoryReportRevisionProps {
112752
112926
  }
112753
112927
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
112754
112928
 
112755
- declare const routeName$6_ = "/v2/api/advisory-reports/{report_id}";
112756
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$6_]['delete']['parameters']['path'];
112757
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$6_]['delete']['parameters']['query'];
112758
- type DeleteAdvisoryReportResponse = paths[typeof routeName$6_]['delete']['responses'][200]['content']['application/json'];
112929
+ declare const routeName$6$ = "/v2/api/advisory-reports/{report_id}";
112930
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$6$]['delete']['parameters']['path'];
112931
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$6$]['delete']['parameters']['query'];
112932
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$6$]['delete']['responses'][200]['content']['application/json'];
112759
112933
  interface DeleteAdvisoryReportProps {
112760
112934
  params: {
112761
112935
  query: DeleteAdvisoryReportQueryParams;
@@ -112764,11 +112938,11 @@ interface DeleteAdvisoryReportProps {
112764
112938
  }
112765
112939
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
112766
112940
 
112767
- declare const routeName$6Z = "/v1/api/advisory-reports/{report_id}/clauses";
112768
- type PutClausesForReportBody = paths[typeof routeName$6Z]['put']['requestBody']['content']['application/json'];
112769
- type PutClausesForReportPathParams = paths[typeof routeName$6Z]['put']['parameters']['path'];
112770
- type PutClausesForReportQueryParams = paths[typeof routeName$6Z]['put']['parameters']['query'];
112771
- type PutClausesForReportResponse = paths[typeof routeName$6Z]['put']['responses'][200]['content']['application/json'];
112941
+ declare const routeName$6_ = "/v1/api/advisory-reports/{report_id}/clauses";
112942
+ type PutClausesForReportBody = paths[typeof routeName$6_]['put']['requestBody']['content']['application/json'];
112943
+ type PutClausesForReportPathParams = paths[typeof routeName$6_]['put']['parameters']['path'];
112944
+ type PutClausesForReportQueryParams = paths[typeof routeName$6_]['put']['parameters']['query'];
112945
+ type PutClausesForReportResponse = paths[typeof routeName$6_]['put']['responses'][200]['content']['application/json'];
112772
112946
  interface PutClausesForReportProps {
112773
112947
  body: PutClausesForReportBody;
112774
112948
  params: {
@@ -112778,9 +112952,9 @@ interface PutClausesForReportProps {
112778
112952
  }
112779
112953
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
112780
112954
 
112781
- declare const routeName$6Y = "/v1/api/advisory-reports/{report_id}/personalise-advices";
112782
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$6Y]['post']['parameters']['path'];
112783
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$6Y]['post']['responses'][200]['content']['application/json'];
112955
+ declare const routeName$6Z = "/v1/api/advisory-reports/{report_id}/personalise-advices";
112956
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$6Z]['post']['parameters']['path'];
112957
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$6Z]['post']['responses'][200]['content']['application/json'];
112784
112958
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
112785
112959
  params: {
112786
112960
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -112788,18 +112962,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
112788
112962
  }
112789
112963
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
112790
112964
 
112791
- declare const routeName$6X = "/v1/api/advisory-reports/{report_id}/settings/steps";
112792
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$6X]['get']['parameters']['path'];
112793
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
112794
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
112795
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$6X]['get']['parameters'];
112965
+ declare const routeName$6Y = "/v1/api/advisory-reports/{report_id}/settings/steps";
112966
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$6Y]['get']['parameters']['path'];
112967
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
112968
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
112969
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$6Y]['get']['parameters'];
112796
112970
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
112797
112971
 
112798
- declare const routeName$6W = "/v1/api/advisory-reports/{report_id}/settings/steps";
112799
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$6W]['put']['requestBody']['content']['application/json'];
112800
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$6W]['put']['parameters']['path'];
112801
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$6W]['put']['parameters']['query'];
112802
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$6W]['put']['responses'][200]['content']['application/json'];
112972
+ declare const routeName$6X = "/v1/api/advisory-reports/{report_id}/settings/steps";
112973
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$6X]['put']['requestBody']['content']['application/json'];
112974
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$6X]['put']['parameters']['path'];
112975
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$6X]['put']['parameters']['query'];
112976
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$6X]['put']['responses'][200]['content']['application/json'];
112803
112977
  interface CreateAdvisoryReportStepSettingsProps {
112804
112978
  body: CreateAdvisoryReportStepSettingsBody;
112805
112979
  params: {
@@ -112809,11 +112983,11 @@ interface CreateAdvisoryReportStepSettingsProps {
112809
112983
  }
112810
112984
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
112811
112985
 
112812
- declare const routeName$6V = "/v1/api/advisory-reports/{report_id}/risk-domains";
112813
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$6V]['post']['requestBody']['content']['application/json'];
112814
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6V]['post']['parameters']['path'];
112815
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6V]['post']['parameters']['query'];
112816
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6V]['post']['responses'][201]['content']['application/json'];
112986
+ declare const routeName$6W = "/v1/api/advisory-reports/{report_id}/risk-domains";
112987
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$6W]['post']['requestBody']['content']['application/json'];
112988
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6W]['post']['parameters']['path'];
112989
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6W]['post']['parameters']['query'];
112990
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6W]['post']['responses'][201]['content']['application/json'];
112817
112991
  interface CreateRiskDomainForAdvisoryReportByIdProps {
112818
112992
  body: CreateRiskDomainForAdvisoryReportByIdBody;
112819
112993
  params: {
@@ -112823,10 +112997,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
112823
112997
  }
112824
112998
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
112825
112999
 
112826
- declare const routeName$6U = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
112827
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6U]['delete']['parameters']['path'];
112828
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6U]['delete']['parameters']['query'];
112829
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6U]['delete']['responses'][200]['content']['application/json'];
113000
+ declare const routeName$6V = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
113001
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$6V]['delete']['parameters']['path'];
113002
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$6V]['delete']['parameters']['query'];
113003
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$6V]['delete']['responses'][200]['content']['application/json'];
112830
113004
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
112831
113005
  params: {
112832
113006
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -112835,11 +113009,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
112835
113009
  }
112836
113010
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
112837
113011
 
112838
- declare const routeName$6T = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
112839
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6T]['post']['requestBody']['content']['application/json'];
112840
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6T]['post']['parameters']['path'];
112841
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6T]['post']['parameters']['query'];
112842
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6T]['post']['responses'][201]['content']['application/json'];
113012
+ declare const routeName$6U = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
113013
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6U]['post']['requestBody']['content']['application/json'];
113014
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6U]['post']['parameters']['path'];
113015
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6U]['post']['parameters']['query'];
113016
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6U]['post']['responses'][201]['content']['application/json'];
112843
113017
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
112844
113018
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
112845
113019
  params: {
@@ -112849,10 +113023,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
112849
113023
  }
112850
113024
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
112851
113025
 
112852
- declare const routeName$6S = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
112853
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6S]['delete']['parameters']['path'];
112854
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6S]['delete']['parameters']['query'];
112855
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6S]['delete']['responses'][200]['content']['application/json'];
113026
+ declare const routeName$6T = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
113027
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6T]['delete']['parameters']['path'];
113028
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6T]['delete']['parameters']['query'];
113029
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6T]['delete']['responses'][200]['content']['application/json'];
112856
113030
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
112857
113031
  params: {
112858
113032
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -112861,11 +113035,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
112861
113035
  }
112862
113036
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
112863
113037
 
112864
- declare const routeName$6R = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
112865
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6R]['patch']['requestBody']['content']['application/json'];
112866
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6R]['patch']['parameters']['path'];
112867
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6R]['patch']['parameters']['query'];
112868
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6R]['patch']['responses'][201]['content']['application/json'];
113038
+ declare const routeName$6S = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
113039
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6S]['patch']['requestBody']['content']['application/json'];
113040
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6S]['patch']['parameters']['path'];
113041
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6S]['patch']['parameters']['query'];
113042
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6S]['patch']['responses'][201]['content']['application/json'];
112869
113043
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
112870
113044
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
112871
113045
  params: {
@@ -112875,11 +113049,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
112875
113049
  }
112876
113050
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
112877
113051
 
112878
- declare const routeName$6Q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
112879
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6Q]['put']['requestBody']['content']['application/json'];
112880
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6Q]['put']['parameters']['path'];
112881
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Q]['put']['parameters']['query'];
112882
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6Q]['put']['responses'][201]['content']['application/json'];
113052
+ declare const routeName$6R = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
113053
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$6R]['put']['requestBody']['content']['application/json'];
113054
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$6R]['put']['parameters']['path'];
113055
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$6R]['put']['parameters']['query'];
113056
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$6R]['put']['responses'][201]['content']['application/json'];
112883
113057
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
112884
113058
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
112885
113059
  params: {
@@ -112889,11 +113063,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
112889
113063
  }
112890
113064
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
112891
113065
 
112892
- declare const routeName$6P = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
112893
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6P]['post']['requestBody']['content']['application/json'];
112894
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6P]['post']['parameters']['path'];
112895
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
112896
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6P]['post']['responses'][201]['content']['application/json'];
113066
+ declare const routeName$6Q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
113067
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6Q]['post']['requestBody']['content']['application/json'];
113068
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6Q]['post']['parameters']['path'];
113069
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6Q]['post']['parameters']['query'];
113070
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6Q]['post']['responses'][201]['content']['application/json'];
112897
113071
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
112898
113072
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
112899
113073
  params: {
@@ -112903,10 +113077,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
112903
113077
  }
112904
113078
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
112905
113079
 
112906
- declare const routeName$6O = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
112907
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6O]['delete']['parameters']['path'];
112908
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6O]['delete']['parameters']['query'];
112909
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6O]['delete']['responses'][200]['content']['application/json'];
113080
+ declare const routeName$6P = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
113081
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6P]['delete']['parameters']['path'];
113082
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6P]['delete']['parameters']['query'];
113083
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6P]['delete']['responses'][200]['content']['application/json'];
112910
113084
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
112911
113085
  params: {
112912
113086
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -112915,11 +113089,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
112915
113089
  }
112916
113090
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
112917
113091
 
112918
- declare const routeName$6N = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
112919
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6N]['patch']['requestBody']['content']['application/json'];
112920
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6N]['patch']['parameters']['path'];
112921
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6N]['patch']['parameters']['query'];
112922
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6N]['patch']['responses'][200]['content']['application/json'];
113092
+ declare const routeName$6O = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
113093
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$6O]['patch']['requestBody']['content']['application/json'];
113094
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$6O]['patch']['parameters']['path'];
113095
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$6O]['patch']['parameters']['query'];
113096
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$6O]['patch']['responses'][200]['content']['application/json'];
112923
113097
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
112924
113098
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
112925
113099
  params: {
@@ -112929,11 +113103,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
112929
113103
  }
112930
113104
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
112931
113105
 
112932
- declare const routeName$6M = "/v1/api/advisory-reports/{report_id}/insurance-policies";
112933
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6M]['put']['requestBody']['content']['application/json'];
112934
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6M]['put']['parameters']['path'];
112935
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6M]['put']['parameters']['query'];
112936
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6M]['put']['responses'][200]['content']['application/json'];
113106
+ declare const routeName$6N = "/v1/api/advisory-reports/{report_id}/insurance-policies";
113107
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$6N]['put']['requestBody']['content']['application/json'];
113108
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6N]['put']['parameters']['path'];
113109
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6N]['put']['parameters']['query'];
113110
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6N]['put']['responses'][200]['content']['application/json'];
112937
113111
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
112938
113112
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
112939
113113
  params: {
@@ -112943,10 +113117,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
112943
113117
  }
112944
113118
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
112945
113119
 
112946
- declare const routeName$6L = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
112947
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6L]['delete']['parameters']['path'];
112948
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6L]['delete']['parameters']['query'];
112949
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6L]['delete']['responses'][200]['content']['application/json'];
113120
+ declare const routeName$6M = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
113121
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$6M]['delete']['parameters']['path'];
113122
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$6M]['delete']['parameters']['query'];
113123
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$6M]['delete']['responses'][200]['content']['application/json'];
112950
113124
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
112951
113125
  params: {
112952
113126
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -112955,11 +113129,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
112955
113129
  }
112956
113130
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
112957
113131
 
112958
- declare const routeName$6K = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
112959
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6K]['put']['requestBody']['content']['application/json'];
112960
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6K]['put']['parameters']['path'];
112961
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6K]['put']['parameters']['query'];
112962
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6K]['put']['responses'][200]['content']['application/json'];
113132
+ declare const routeName$6L = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
113133
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$6L]['put']['requestBody']['content']['application/json'];
113134
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$6L]['put']['parameters']['path'];
113135
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$6L]['put']['parameters']['query'];
113136
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$6L]['put']['responses'][200]['content']['application/json'];
112963
113137
  interface OrderInsurancePolciesOfAdvisoryReportProps {
112964
113138
  body: OrderInsurancePolciesOfAdvisoryReportBody;
112965
113139
  params: {
@@ -112969,11 +113143,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
112969
113143
  }
112970
113144
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
112971
113145
 
112972
- declare const routeName$6J = "/v1/api/advisory-reports/{report_id}/policy-packages";
112973
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6J]['put']['requestBody']['content']['application/json'];
112974
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6J]['put']['parameters']['path'];
112975
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6J]['put']['parameters']['query'];
112976
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6J]['put']['responses'][200]['content']['application/json'];
113146
+ declare const routeName$6K = "/v1/api/advisory-reports/{report_id}/policy-packages";
113147
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$6K]['put']['requestBody']['content']['application/json'];
113148
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$6K]['put']['parameters']['path'];
113149
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$6K]['put']['parameters']['query'];
113150
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$6K]['put']['responses'][200]['content']['application/json'];
112977
113151
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
112978
113152
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
112979
113153
  params: {
@@ -112983,58 +113157,58 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
112983
113157
  }
112984
113158
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
112985
113159
 
112986
- declare const routeName$6I = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
112987
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6I]['get']['parameters']['path'];
112988
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6I]['get']['parameters']['query'];
112989
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
112990
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6I]['get']['parameters'];
113160
+ declare const routeName$6J = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
113161
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
113162
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$6J]['get']['parameters']['query'];
113163
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
113164
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$6J]['get']['parameters'];
112991
113165
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
112992
113166
 
112993
- declare const routeName$6H = "/v1/api/affiliations";
112994
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
113167
+ declare const routeName$6I = "/v1/api/affiliations";
113168
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$6I]['get']['responses'][200]['content']['application/json'];
112995
113169
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
112996
113170
 
112997
- declare const routeName$6G = "/v1/api/anvaflows/labels";
112998
- type GetAnvaLabelsQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
112999
- type GetAnvaLabelsResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
113000
- type GetAnvaLabelsProps = paths[typeof routeName$6G]['get']['parameters'];
113171
+ declare const routeName$6H = "/v1/api/anvaflows/labels";
113172
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$6H]['get']['parameters']['query'];
113173
+ type GetAnvaLabelsResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
113174
+ type GetAnvaLabelsProps = paths[typeof routeName$6H]['get']['parameters'];
113001
113175
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
113002
113176
 
113003
- declare const routeName$6F = "/v1/api/anvaflows/supported-insurances";
113004
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$6F]['get']['parameters']['query'];
113005
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
113006
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$6F]['get']['parameters'];
113177
+ declare const routeName$6G = "/v1/api/anvaflows/supported-insurances";
113178
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$6G]['get']['parameters']['query'];
113179
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
113180
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$6G]['get']['parameters'];
113007
113181
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
113008
113182
 
113009
- declare const routeName$6E = "/v1/api/anvaflows/supported-tags";
113010
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
113011
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
113012
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$6E]['get']['parameters'];
113183
+ declare const routeName$6F = "/v1/api/anvaflows/supported-tags";
113184
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$6F]['get']['parameters']['query'];
113185
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
113186
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$6F]['get']['parameters'];
113013
113187
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
113014
113188
 
113015
- declare const routeName$6D = "/v1/api/anvaflows/supported-coverages";
113016
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
113017
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
113018
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$6D]['get']['parameters'];
113189
+ declare const routeName$6E = "/v1/api/anvaflows/supported-coverages";
113190
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$6E]['get']['parameters']['query'];
113191
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
113192
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$6E]['get']['parameters'];
113019
113193
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
113020
113194
 
113021
- declare const routeName$6C = "/v1/api/anvaflows/supported-adn-coverages";
113022
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
113023
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
113024
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$6C]['get']['parameters'];
113195
+ declare const routeName$6D = "/v1/api/anvaflows/supported-adn-coverages";
113196
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
113197
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
113198
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$6D]['get']['parameters'];
113025
113199
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
113026
113200
 
113027
- declare const routeName$6B = "/v1/api/anvaflows/supported-insurance-companies";
113028
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$6B]['get']['parameters']['query'];
113029
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$6B]['get']['responses'][200]['content']['application/json'];
113030
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$6B]['get']['parameters'];
113201
+ declare const routeName$6C = "/v1/api/anvaflows/supported-insurance-companies";
113202
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
113203
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
113204
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$6C]['get']['parameters'];
113031
113205
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
113032
113206
 
113033
- declare const routeName$6A = "/v1/api/anvaflows/{session_id}/calculate";
113034
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6A]['post']['requestBody']['content']['application/json'];
113035
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6A]['post']['parameters']['path'];
113036
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6A]['post']['parameters']['query'];
113037
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6A]['post']['responses'][200]['content']['application/json'];
113207
+ declare const routeName$6B = "/v1/api/anvaflows/{session_id}/calculate";
113208
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$6B]['post']['requestBody']['content']['application/json'];
113209
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$6B]['post']['parameters']['path'];
113210
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6B]['post']['parameters']['query'];
113211
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$6B]['post']['responses'][200]['content']['application/json'];
113038
113212
  interface CalculateAnvaquotesBySessionIdProps {
113039
113213
  body: CalculateAnvaquotesBySessionIdBody;
113040
113214
  params: {
@@ -113044,11 +113218,11 @@ interface CalculateAnvaquotesBySessionIdProps {
113044
113218
  }
113045
113219
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
113046
113220
 
113047
- declare const routeName$6z = "/v2/api/anvaflows/{session_id}/calculate";
113048
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
113049
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6z]['post']['parameters']['path'];
113050
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
113051
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6z]['post']['responses'][202]['content']['application/json'];
113221
+ declare const routeName$6A = "/v2/api/anvaflows/{session_id}/calculate";
113222
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$6A]['post']['requestBody']['content']['application/json'];
113223
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$6A]['post']['parameters']['path'];
113224
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$6A]['post']['parameters']['query'];
113225
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$6A]['post']['responses'][202]['content']['application/json'];
113052
113226
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
113053
113227
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
113054
113228
  params: {
@@ -113058,11 +113232,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
113058
113232
  }
113059
113233
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
113060
113234
 
113061
- declare const routeName$6y = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
113062
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6y]['post']['requestBody']['content']['application/json'];
113063
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6y]['post']['parameters']['path'];
113064
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6y]['post']['parameters']['query'];
113065
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6y]['post']['responses'][200]['content']['application/json'];
113235
+ declare const routeName$6z = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
113236
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
113237
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6z]['post']['parameters']['path'];
113238
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
113239
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6z]['post']['responses'][200]['content']['application/json'];
113066
113240
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
113067
113241
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
113068
113242
  params: {
@@ -113072,10 +113246,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
113072
113246
  }
113073
113247
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
113074
113248
 
113075
- declare const routeName$6x = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
113076
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6x]['post']['parameters']['path'];
113077
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
113078
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6x]['post']['responses'][201]['content']['application/json'];
113249
+ declare const routeName$6y = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
113250
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6y]['post']['parameters']['path'];
113251
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6y]['post']['parameters']['query'];
113252
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6y]['post']['responses'][201]['content']['application/json'];
113079
113253
  interface SendOfferToAnvaBySessionIdProps {
113080
113254
  params: {
113081
113255
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -113084,10 +113258,10 @@ interface SendOfferToAnvaBySessionIdProps {
113084
113258
  }
113085
113259
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
113086
113260
 
113087
- declare const routeName$6w = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
113088
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
113089
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
113090
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6w]['post']['responses'][202]['content']['application/json'];
113261
+ declare const routeName$6x = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
113262
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6x]['post']['parameters']['path'];
113263
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6x]['post']['parameters']['query'];
113264
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6x]['post']['responses'][202]['content']['application/json'];
113091
113265
  interface EnqueueSendOfferToAnvaBySessionIdProps {
113092
113266
  params: {
113093
113267
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -113096,11 +113270,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
113096
113270
  }
113097
113271
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
113098
113272
 
113099
- declare const routeName$6v = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
113100
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6v]['post']['requestBody']['content']['application/json'];
113101
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6v]['post']['parameters']['path'];
113102
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
113103
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6v]['post']['responses'][202]['content']['application/json'];
113273
+ declare const routeName$6w = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
113274
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6w]['post']['requestBody']['content']['application/json'];
113275
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6w]['post']['parameters']['path'];
113276
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
113277
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6w]['post']['responses'][202]['content']['application/json'];
113104
113278
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
113105
113279
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
113106
113280
  params: {
@@ -113110,11 +113284,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
113110
113284
  }
113111
113285
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
113112
113286
 
113113
- declare const routeName$6u = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
113114
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6u]['post']['requestBody']['content']['application/json'];
113115
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6u]['post']['parameters']['path'];
113116
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6u]['post']['parameters']['query'];
113117
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6u]['post']['responses'][200]['content']['application/json'];
113287
+ declare const routeName$6v = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
113288
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6v]['post']['requestBody']['content']['application/json'];
113289
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6v]['post']['parameters']['path'];
113290
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
113291
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6v]['post']['responses'][200]['content']['application/json'];
113118
113292
  interface RecalculateSimulationBySessionIdProps {
113119
113293
  body: RecalculateSimulationBySessionIdBody;
113120
113294
  params: {
@@ -113124,23 +113298,23 @@ interface RecalculateSimulationBySessionIdProps {
113124
113298
  }
113125
113299
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
113126
113300
 
113127
- declare const routeName$6t = "/v1/api/anvaflows/{session_id}/collection-methods";
113128
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6t]['get']['parameters']['path'];
113129
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
113130
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
113131
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$6t]['get']['parameters'];
113301
+ declare const routeName$6u = "/v1/api/anvaflows/{session_id}/collection-methods";
113302
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6u]['get']['parameters']['path'];
113303
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
113304
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
113305
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$6u]['get']['parameters'];
113132
113306
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
113133
113307
 
113134
- declare const routeName$6s = "/v1/api/anvaflows/closing-questions";
113135
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6s]['get']['parameters']['query'];
113136
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6s]['get']['responses'][200]['content']['application/json'];
113137
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$6s]['get']['parameters'];
113308
+ declare const routeName$6t = "/v1/api/anvaflows/closing-questions";
113309
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
113310
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
113311
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$6t]['get']['parameters'];
113138
113312
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
113139
113313
 
113140
- declare const routeName$6r = "/v1/api/anvaflows/closing-questions";
113141
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6r]['put']['requestBody']['content']['application/json'];
113142
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6r]['put']['parameters']['query'];
113143
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6r]['put']['responses'][200]['content']['application/json'];
113314
+ declare const routeName$6s = "/v1/api/anvaflows/closing-questions";
113315
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6s]['put']['requestBody']['content']['application/json'];
113316
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6s]['put']['parameters']['query'];
113317
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6s]['put']['responses'][200]['content']['application/json'];
113144
113318
  interface UpsertAnvaClosingQuestionsProps {
113145
113319
  body: UpsertAnvaClosingQuestionsBody;
113146
113320
  params: {
@@ -113149,10 +113323,10 @@ interface UpsertAnvaClosingQuestionsProps {
113149
113323
  }
113150
113324
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
113151
113325
 
113152
- declare const routeName$6q = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
113153
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6q]['delete']['parameters']['path'];
113154
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6q]['delete']['parameters']['query'];
113155
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6q]['delete']['responses'][200]['content']['application/json'];
113326
+ declare const routeName$6r = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
113327
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6r]['delete']['parameters']['path'];
113328
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6r]['delete']['parameters']['query'];
113329
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6r]['delete']['responses'][200]['content']['application/json'];
113156
113330
  interface DeleteAnvaClosingQuestionsProps {
113157
113331
  params: {
113158
113332
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -113161,11 +113335,11 @@ interface DeleteAnvaClosingQuestionsProps {
113161
113335
  }
113162
113336
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
113163
113337
 
113164
- declare const routeName$6p = "/v1/api/anvaflows/{session_id}/anva-party";
113165
- type CreateAnvaPartyBody = paths[typeof routeName$6p]['post']['requestBody']['content']['application/json'];
113166
- type CreateAnvaPartyPathParams = paths[typeof routeName$6p]['post']['parameters']['path'];
113167
- type CreateAnvaPartyQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
113168
- type CreateAnvaPartyResponse = paths[typeof routeName$6p]['post']['responses'][201]['content']['application/json'];
113338
+ declare const routeName$6q = "/v1/api/anvaflows/{session_id}/anva-party";
113339
+ type CreateAnvaPartyBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
113340
+ type CreateAnvaPartyPathParams = paths[typeof routeName$6q]['post']['parameters']['path'];
113341
+ type CreateAnvaPartyQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
113342
+ type CreateAnvaPartyResponse = paths[typeof routeName$6q]['post']['responses'][201]['content']['application/json'];
113169
113343
  interface CreateAnvaPartyProps {
113170
113344
  body: CreateAnvaPartyBody;
113171
113345
  params: {
@@ -113175,16 +113349,16 @@ interface CreateAnvaPartyProps {
113175
113349
  }
113176
113350
  declare const createAnvaParty: (props: CreateAnvaPartyProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyResponse>;
113177
113351
 
113178
- declare const routeName$6o = "/v1/api/anvaproducts";
113179
- type GetAnvaproductsQueryParams = paths[typeof routeName$6o]['get']['parameters']['query'];
113180
- type GetAnvaproductsResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
113181
- type GetAnvaproductsProps = paths[typeof routeName$6o]['get']['parameters'];
113352
+ declare const routeName$6p = "/v1/api/anvaproducts";
113353
+ type GetAnvaproductsQueryParams = paths[typeof routeName$6p]['get']['parameters']['query'];
113354
+ type GetAnvaproductsResponse = paths[typeof routeName$6p]['get']['responses'][200]['content']['application/json'];
113355
+ type GetAnvaproductsProps = paths[typeof routeName$6p]['get']['parameters'];
113182
113356
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
113183
113357
 
113184
- declare const routeName$6n = "/v1/api/anvaproducts/import";
113185
- type ImportAnvaproductBody = paths[typeof routeName$6n]['post']['requestBody']['content']['application/json'];
113186
- type ImportAnvaproductQueryParams = paths[typeof routeName$6n]['post']['parameters']['query'];
113187
- type ImportAnvaproductResponse = paths[typeof routeName$6n]['post']['responses'][200]['content']['application/json'];
113358
+ declare const routeName$6o = "/v1/api/anvaproducts/import";
113359
+ type ImportAnvaproductBody = paths[typeof routeName$6o]['post']['requestBody']['content']['application/json'];
113360
+ type ImportAnvaproductQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
113361
+ type ImportAnvaproductResponse = paths[typeof routeName$6o]['post']['responses'][200]['content']['application/json'];
113188
113362
  interface ImportAnvaproductProps {
113189
113363
  body: ImportAnvaproductBody;
113190
113364
  params: {
@@ -113193,18 +113367,18 @@ interface ImportAnvaproductProps {
113193
113367
  }
113194
113368
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
113195
113369
 
113196
- declare const routeName$6m = "/v1/api/anvaproducts/{anva_product_id}";
113197
- type GetAnvaproductByIdPathParams = paths[typeof routeName$6m]['get']['parameters']['path'];
113198
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$6m]['get']['parameters']['query'];
113199
- type GetAnvaproductByIdResponse = paths[typeof routeName$6m]['get']['responses'][200]['content']['application/json'];
113200
- type GetAnvaproductByIdProps = paths[typeof routeName$6m]['get']['parameters'];
113370
+ declare const routeName$6n = "/v1/api/anvaproducts/{anva_product_id}";
113371
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$6n]['get']['parameters']['path'];
113372
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$6n]['get']['parameters']['query'];
113373
+ type GetAnvaproductByIdResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
113374
+ type GetAnvaproductByIdProps = paths[typeof routeName$6n]['get']['parameters'];
113201
113375
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
113202
113376
 
113203
- declare const routeName$6l = "/v1/api/anvaproducts/{anva_product_id}";
113204
- type PatchAnvaproductByIdBody = paths[typeof routeName$6l]['patch']['requestBody']['content']['application/json'];
113205
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$6l]['patch']['parameters']['path'];
113206
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6l]['patch']['parameters']['query'];
113207
- type PatchAnvaproductByIdResponse = paths[typeof routeName$6l]['patch']['responses'][200]['content']['application/json'];
113377
+ declare const routeName$6m = "/v1/api/anvaproducts/{anva_product_id}";
113378
+ type PatchAnvaproductByIdBody = paths[typeof routeName$6m]['patch']['requestBody']['content']['application/json'];
113379
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$6m]['patch']['parameters']['path'];
113380
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6m]['patch']['parameters']['query'];
113381
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$6m]['patch']['responses'][200]['content']['application/json'];
113208
113382
  interface PatchAnvaproductByIdProps {
113209
113383
  body: PatchAnvaproductByIdBody;
113210
113384
  params: {
@@ -113214,11 +113388,11 @@ interface PatchAnvaproductByIdProps {
113214
113388
  }
113215
113389
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
113216
113390
 
113217
- declare const routeName$6k = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
113218
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6k]['patch']['requestBody']['content']['application/json'];
113219
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6k]['patch']['parameters']['path'];
113220
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6k]['patch']['parameters']['query'];
113221
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6k]['patch']['responses'][200]['content']['application/json'];
113391
+ declare const routeName$6l = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
113392
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6l]['patch']['requestBody']['content']['application/json'];
113393
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6l]['patch']['parameters']['path'];
113394
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6l]['patch']['parameters']['query'];
113395
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6l]['patch']['responses'][200]['content']['application/json'];
113222
113396
  interface PatchAnvaproductCoverageByIdProps {
113223
113397
  body: PatchAnvaproductCoverageByIdBody;
113224
113398
  params: {
@@ -113228,18 +113402,18 @@ interface PatchAnvaproductCoverageByIdProps {
113228
113402
  }
113229
113403
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
113230
113404
 
113231
- declare const routeName$6j = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
113232
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6j]['get']['parameters']['path'];
113233
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6j]['get']['parameters']['query'];
113234
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6j]['get']['responses'][200]['content']['application/json'];
113235
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6j]['get']['parameters'];
113405
+ declare const routeName$6k = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
113406
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6k]['get']['parameters']['path'];
113407
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6k]['get']['parameters']['query'];
113408
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6k]['get']['responses'][200]['content']['application/json'];
113409
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6k]['get']['parameters'];
113236
113410
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
113237
113411
 
113238
- declare const routeName$6i = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
113239
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6i]['put']['requestBody']['content']['application/json'];
113240
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6i]['put']['parameters']['path'];
113241
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6i]['put']['parameters']['query'];
113242
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6i]['put']['responses'][200]['content']['application/json'];
113412
+ declare const routeName$6j = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
113413
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6j]['put']['requestBody']['content']['application/json'];
113414
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6j]['put']['parameters']['path'];
113415
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6j]['put']['parameters']['query'];
113416
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6j]['put']['responses'][200]['content']['application/json'];
113243
113417
  interface UpdateAnvaflowsQuestionnaireProps {
113244
113418
  body: UpdateAnvaflowsQuestionnaireBody;
113245
113419
  params: {
@@ -113249,11 +113423,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
113249
113423
  }
113250
113424
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
113251
113425
 
113252
- declare const routeName$6h = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
113253
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6h]['post']['requestBody']['content']['application/json'];
113254
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6h]['post']['parameters']['path'];
113255
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6h]['post']['parameters']['query'];
113256
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6h]['post']['responses'][200]['content']['application/json'];
113426
+ declare const routeName$6i = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
113427
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6i]['post']['requestBody']['content']['application/json'];
113428
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6i]['post']['parameters']['path'];
113429
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6i]['post']['parameters']['query'];
113430
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6i]['post']['responses'][200]['content']['application/json'];
113257
113431
  interface ValidateAnvaflowsQuestionnaireProps {
113258
113432
  body: ValidateAnvaflowsQuestionnaireBody;
113259
113433
  params: {
@@ -113263,10 +113437,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
113263
113437
  }
113264
113438
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
113265
113439
 
113266
- declare const routeName$6g = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
113267
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6g]['post']['requestBody']['content']['application/json'];
113268
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
113269
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6g]['post']['responses'][200]['content']['application/json'];
113440
+ declare const routeName$6h = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
113441
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6h]['post']['requestBody']['content']['application/json'];
113442
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6h]['post']['parameters']['query'];
113443
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6h]['post']['responses'][200]['content']['application/json'];
113270
113444
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
113271
113445
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
113272
113446
  params: {
@@ -113275,20 +113449,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
113275
113449
  }
113276
113450
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
113277
113451
 
113278
- declare const routeName$6f = "/v1/api/brokers/me";
113279
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
113452
+ declare const routeName$6g = "/v1/api/brokers/me";
113453
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6g]['get']['responses'][200]['content']['application/json'];
113280
113454
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
113281
113455
 
113282
- declare const routeName$6e = "/v1/api/brokers/{broker_id}";
113283
- type GetTheBrokerByIdPathParams = paths[typeof routeName$6e]['get']['parameters']['path'];
113284
- type GetTheBrokerByIdResponse = paths[typeof routeName$6e]['get']['responses'][200]['content']['application/json'];
113285
- type GetTheBrokerByIdProps = paths[typeof routeName$6e]['get']['parameters'];
113456
+ declare const routeName$6f = "/v1/api/brokers/{broker_id}";
113457
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$6f]['get']['parameters']['path'];
113458
+ type GetTheBrokerByIdResponse = paths[typeof routeName$6f]['get']['responses'][200]['content']['application/json'];
113459
+ type GetTheBrokerByIdProps = paths[typeof routeName$6f]['get']['parameters'];
113286
113460
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
113287
113461
 
113288
- declare const routeName$6d = "/v1/api/brokers/{broker_id}";
113289
- type UpdateBrokerByBrokerBody = paths[typeof routeName$6d]['patch']['requestBody']['content']['application/json'];
113290
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6d]['patch']['parameters']['path'];
113291
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$6d]['patch']['responses'][200]['content']['application/json'];
113462
+ declare const routeName$6e = "/v1/api/brokers/{broker_id}";
113463
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$6e]['patch']['requestBody']['content']['application/json'];
113464
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6e]['patch']['parameters']['path'];
113465
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$6e]['patch']['responses'][200]['content']['application/json'];
113292
113466
  interface UpdateBrokerByBrokerProps {
113293
113467
  body: UpdateBrokerByBrokerBody;
113294
113468
  params: {
@@ -113297,16 +113471,16 @@ interface UpdateBrokerByBrokerProps {
113297
113471
  }
113298
113472
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
113299
113473
 
113300
- declare const routeName$6c = "/v1/api/brokers/{broker_id}/integrations";
113301
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$6c]['get']['parameters']['path'];
113302
- type GetBrokerIntegrationsResponse = paths[typeof routeName$6c]['get']['responses'][200]['content']['application/json'];
113303
- type GetBrokerIntegrationsProps = paths[typeof routeName$6c]['get']['parameters'];
113474
+ declare const routeName$6d = "/v1/api/brokers/{broker_id}/integrations";
113475
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$6d]['get']['parameters']['path'];
113476
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$6d]['get']['responses'][200]['content']['application/json'];
113477
+ type GetBrokerIntegrationsProps = paths[typeof routeName$6d]['get']['parameters'];
113304
113478
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
113305
113479
 
113306
- declare const routeName$6b = "/v1/api/brokers/{broker_id}/integrations";
113307
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$6b]['patch']['requestBody']['content']['application/json'];
113308
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6b]['patch']['parameters']['path'];
113309
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6b]['patch']['responses'][200]['content']['application/json'];
113480
+ declare const routeName$6c = "/v1/api/brokers/{broker_id}/integrations";
113481
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$6c]['patch']['requestBody']['content']['application/json'];
113482
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6c]['patch']['parameters']['path'];
113483
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6c]['patch']['responses'][200]['content']['application/json'];
113310
113484
  interface UpdateBrokerIntegrationsProps {
113311
113485
  body: UpdateBrokerIntegrationsBody;
113312
113486
  params: {
@@ -113315,37 +113489,37 @@ interface UpdateBrokerIntegrationsProps {
113315
113489
  }
113316
113490
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
113317
113491
 
113318
- declare const routeName$6a = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
113319
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
113320
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
113321
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6a]['get']['parameters'];
113492
+ declare const routeName$6b = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
113493
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6b]['get']['parameters']['path'];
113494
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6b]['get']['responses'][200]['content']['application/json'];
113495
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6b]['get']['parameters'];
113322
113496
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
113323
113497
 
113324
- declare const routeName$69 = "/v1/api/anva-producers/{anva_producer_id}";
113325
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
113326
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
113327
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$69]['get']['parameters'];
113498
+ declare const routeName$6a = "/v1/api/anva-producers/{anva_producer_id}";
113499
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6a]['get']['parameters']['path'];
113500
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6a]['get']['responses'][200]['content']['application/json'];
113501
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6a]['get']['parameters'];
113328
113502
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
113329
113503
 
113330
- declare const routeName$68 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
113331
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$68]['get']['parameters']['path'];
113332
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$68]['get']['parameters']['query'];
113333
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
113334
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$68]['get']['parameters'];
113504
+ declare const routeName$69 = "/v1/api/brokers/{broker_id}/checklists/onboarding";
113505
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
113506
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
113507
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
113508
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$69]['get']['parameters'];
113335
113509
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
113336
113510
 
113337
- declare const routeName$67 = "/v1/api/campaigns/{campaign_id}";
113338
- type GetCampaignByIdPathParams = paths[typeof routeName$67]['get']['parameters']['path'];
113339
- type GetCampaignByIdQueryParams = paths[typeof routeName$67]['get']['parameters']['query'];
113340
- type GetCampaignByIdResponse = paths[typeof routeName$67]['get']['responses'][200]['content']['application/json'];
113341
- type GetCampaignByIdProps = paths[typeof routeName$67]['get']['parameters'];
113511
+ declare const routeName$68 = "/v1/api/campaigns/{campaign_id}";
113512
+ type GetCampaignByIdPathParams = paths[typeof routeName$68]['get']['parameters']['path'];
113513
+ type GetCampaignByIdQueryParams = paths[typeof routeName$68]['get']['parameters']['query'];
113514
+ type GetCampaignByIdResponse = paths[typeof routeName$68]['get']['responses'][200]['content']['application/json'];
113515
+ type GetCampaignByIdProps = paths[typeof routeName$68]['get']['parameters'];
113342
113516
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
113343
113517
 
113344
- declare const routeName$66 = "/v1/api/campaigns/{campaign_id}";
113345
- type UpdateCampaignBody = paths[typeof routeName$66]['patch']['requestBody']['content']['application/json'];
113346
- type UpdateCampaignPathParams = paths[typeof routeName$66]['patch']['parameters']['path'];
113347
- type UpdateCampaignQueryParams = paths[typeof routeName$66]['patch']['parameters']['query'];
113348
- type UpdateCampaignResponse = paths[typeof routeName$66]['patch']['responses'][200]['content']['application/json'];
113518
+ declare const routeName$67 = "/v1/api/campaigns/{campaign_id}";
113519
+ type UpdateCampaignBody = paths[typeof routeName$67]['patch']['requestBody']['content']['application/json'];
113520
+ type UpdateCampaignPathParams = paths[typeof routeName$67]['patch']['parameters']['path'];
113521
+ type UpdateCampaignQueryParams = paths[typeof routeName$67]['patch']['parameters']['query'];
113522
+ type UpdateCampaignResponse = paths[typeof routeName$67]['patch']['responses'][200]['content']['application/json'];
113349
113523
  interface UpdateCampaignProps {
113350
113524
  body: UpdateCampaignBody;
113351
113525
  params: {
@@ -113355,16 +113529,16 @@ interface UpdateCampaignProps {
113355
113529
  }
113356
113530
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
113357
113531
 
113358
- declare const routeName$65 = "/v1/api/campaigns";
113359
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$65]['get']['parameters']['query'];
113360
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$65]['get']['responses'][200]['content']['application/json'];
113361
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$65]['get']['parameters'];
113532
+ declare const routeName$66 = "/v1/api/campaigns";
113533
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$66]['get']['parameters']['query'];
113534
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$66]['get']['responses'][200]['content']['application/json'];
113535
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$66]['get']['parameters'];
113362
113536
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
113363
113537
 
113364
- declare const routeName$64 = "/v1/api/campaigns";
113365
- type CreateCampaignBody = paths[typeof routeName$64]['post']['requestBody']['content']['application/json'];
113366
- type CreateCampaignQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
113367
- type CreateCampaignResponse = paths[typeof routeName$64]['post']['responses'][201]['content']['application/json'];
113538
+ declare const routeName$65 = "/v1/api/campaigns";
113539
+ type CreateCampaignBody = paths[typeof routeName$65]['post']['requestBody']['content']['application/json'];
113540
+ type CreateCampaignQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
113541
+ type CreateCampaignResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
113368
113542
  interface CreateCampaignProps {
113369
113543
  body: CreateCampaignBody;
113370
113544
  params: {
@@ -113373,17 +113547,17 @@ interface CreateCampaignProps {
113373
113547
  }
113374
113548
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
113375
113549
 
113376
- declare const routeName$63 = "/v1/api/campaigns/{campaign_id}/metrics";
113377
- type GetMetricsByCampaignPathParams = paths[typeof routeName$63]['get']['parameters']['path'];
113378
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$63]['get']['parameters']['query'];
113379
- type GetMetricsByCampaignResponse = paths[typeof routeName$63]['get']['responses'][200]['content']['application/json'];
113380
- type GetMetricsByCampaignProps = paths[typeof routeName$63]['get']['parameters'];
113550
+ declare const routeName$64 = "/v1/api/campaigns/{campaign_id}/metrics";
113551
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$64]['get']['parameters']['path'];
113552
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$64]['get']['parameters']['query'];
113553
+ type GetMetricsByCampaignResponse = paths[typeof routeName$64]['get']['responses'][200]['content']['application/json'];
113554
+ type GetMetricsByCampaignProps = paths[typeof routeName$64]['get']['parameters'];
113381
113555
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
113382
113556
 
113383
- declare const routeName$62 = "/v1/api/campaigns/{campaign_id}/targets";
113384
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$62]['patch']['parameters']['path'];
113385
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$62]['patch']['parameters']['query'];
113386
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$62]['patch']['responses'][200]['content']['application/json'];
113557
+ declare const routeName$63 = "/v1/api/campaigns/{campaign_id}/targets";
113558
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$63]['patch']['parameters']['path'];
113559
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$63]['patch']['parameters']['query'];
113560
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$63]['patch']['responses'][200]['content']['application/json'];
113387
113561
  interface UpdateTargetsByCampaignProps {
113388
113562
  params: {
113389
113563
  query: UpdateTargetsByCampaignQueryParams;
@@ -113392,15 +113566,15 @@ interface UpdateTargetsByCampaignProps {
113392
113566
  }
113393
113567
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
113394
113568
 
113395
- declare const routeName$61 = "/v1/api/campaign-templates";
113396
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
113397
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
113398
- type GetAllCampaignTemplatesProps = paths[typeof routeName$61]['get']['parameters'];
113569
+ declare const routeName$62 = "/v1/api/campaign-templates";
113570
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$62]['get']['parameters']['query'];
113571
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$62]['get']['responses'][200]['content']['application/json'];
113572
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$62]['get']['parameters'];
113399
113573
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
113400
113574
 
113401
- declare const routeName$60 = "/v1/api/campaigns/example-mails";
113402
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
113403
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$60]['post']['responses'][201]['content']['application/json'];
113575
+ declare const routeName$61 = "/v1/api/campaigns/example-mails";
113576
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$61]['post']['parameters']['query'];
113577
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$61]['post']['responses'][201]['content']['application/json'];
113404
113578
  interface SendExampleCampaignTargetMailProps {
113405
113579
  params: {
113406
113580
  query: SendExampleCampaignTargetMailQueryParams;
@@ -113408,16 +113582,16 @@ interface SendExampleCampaignTargetMailProps {
113408
113582
  }
113409
113583
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
113410
113584
 
113411
- declare const routeName$5$ = "/v1/api/distributions/campaign-settings";
113412
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$5$]['get']['parameters']['query'];
113413
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$5$]['get']['responses'][200]['content']['application/json'];
113414
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$5$]['get']['parameters'];
113585
+ declare const routeName$60 = "/v1/api/distributions/campaign-settings";
113586
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$60]['get']['parameters']['query'];
113587
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$60]['get']['responses'][200]['content']['application/json'];
113588
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$60]['get']['parameters'];
113415
113589
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
113416
113590
 
113417
- declare const routeName$5_ = "/v1/api/campaigns/dns-prefixes/generate";
113418
- type GenerateDnsPrefixBody = paths[typeof routeName$5_]['post']['requestBody']['content']['application/json'];
113419
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$5_]['post']['parameters']['query'];
113420
- type GenerateDnsPrefixResponse = paths[typeof routeName$5_]['post']['responses'][200]['content']['application/json'];
113591
+ declare const routeName$5$ = "/v1/api/campaigns/dns-prefixes/generate";
113592
+ type GenerateDnsPrefixBody = paths[typeof routeName$5$]['post']['requestBody']['content']['application/json'];
113593
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$5$]['post']['parameters']['query'];
113594
+ type GenerateDnsPrefixResponse = paths[typeof routeName$5$]['post']['responses'][200]['content']['application/json'];
113421
113595
  interface GenerateDnsPrefixProps {
113422
113596
  body: GenerateDnsPrefixBody;
113423
113597
  params: {
@@ -113426,16 +113600,16 @@ interface GenerateDnsPrefixProps {
113426
113600
  }
113427
113601
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
113428
113602
 
113429
- declare const routeName$5Z = "/v1/api/mail-templates/campaign-target";
113430
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$5Z]['get']['parameters']['query'];
113431
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$5Z]['get']['responses'][200]['content']['application/json'];
113432
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$5Z]['get']['parameters'];
113603
+ declare const routeName$5_ = "/v1/api/mail-templates/campaign-target";
113604
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$5_]['get']['parameters']['query'];
113605
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$5_]['get']['responses'][200]['content']['application/json'];
113606
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$5_]['get']['parameters'];
113433
113607
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
113434
113608
 
113435
- declare const routeName$5Y = "/v1/api/distributions/{distribution_id}/claims";
113436
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
113437
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
113438
- type CreateClaimAsCustomerResponse = paths[typeof routeName$5Y]['post']['responses'][201]['content']['application/json'];
113609
+ declare const routeName$5Z = "/v1/api/distributions/{distribution_id}/claims";
113610
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
113611
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
113612
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$5Z]['post']['responses'][201]['content']['application/json'];
113439
113613
  interface CreateClaimAsCustomerProps {
113440
113614
  params: {
113441
113615
  query: CreateClaimAsCustomerQueryParams;
@@ -113444,15 +113618,15 @@ interface CreateClaimAsCustomerProps {
113444
113618
  }
113445
113619
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
113446
113620
 
113447
- declare const routeName$5X = "/v1/api/claims";
113448
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$5X]['get']['parameters']['query'];
113449
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$5X]['get']['responses'][200]['content']['application/json'];
113450
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$5X]['get']['parameters'];
113621
+ declare const routeName$5Y = "/v1/api/claims";
113622
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$5Y]['get']['parameters']['query'];
113623
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$5Y]['get']['responses'][200]['content']['application/json'];
113624
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$5Y]['get']['parameters'];
113451
113625
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
113452
113626
 
113453
- declare const routeName$5W = "/v1/api/claims";
113454
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$5W]['post']['parameters']['query'];
113455
- type CreateClaimAsBrokerResponse = paths[typeof routeName$5W]['post']['responses'][201]['content']['application/json'];
113627
+ declare const routeName$5X = "/v1/api/claims";
113628
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
113629
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
113456
113630
  interface CreateClaimAsBrokerProps {
113457
113631
  params: {
113458
113632
  query: CreateClaimAsBrokerQueryParams;
@@ -113460,17 +113634,17 @@ interface CreateClaimAsBrokerProps {
113460
113634
  }
113461
113635
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
113462
113636
 
113463
- declare const routeName$5V = "/v1/api/claims/{claim_id}";
113464
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$5V]['get']['parameters']['path'];
113465
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$5V]['get']['parameters']['query'];
113466
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
113467
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$5V]['get']['parameters'];
113637
+ declare const routeName$5W = "/v1/api/claims/{claim_id}";
113638
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$5W]['get']['parameters']['path'];
113639
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$5W]['get']['parameters']['query'];
113640
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$5W]['get']['responses'][200]['content']['application/json'];
113641
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$5W]['get']['parameters'];
113468
113642
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
113469
113643
 
113470
- declare const routeName$5U = "/v1/api/claims/{claim_id}";
113471
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$5U]['delete']['parameters']['path'];
113472
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$5U]['delete']['parameters']['query'];
113473
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$5U]['delete']['responses'][200]['content']['application/json'];
113644
+ declare const routeName$5V = "/v1/api/claims/{claim_id}";
113645
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$5V]['delete']['parameters']['path'];
113646
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$5V]['delete']['parameters']['query'];
113647
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$5V]['delete']['responses'][200]['content']['application/json'];
113474
113648
  interface DeleteClaimAsBrokerByIdProps {
113475
113649
  params: {
113476
113650
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -113479,10 +113653,10 @@ interface DeleteClaimAsBrokerByIdProps {
113479
113653
  }
113480
113654
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
113481
113655
 
113482
- declare const routeName$5T = "/v1/api/claims/{claim_id}";
113483
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$5T]['patch']['parameters']['path'];
113484
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$5T]['patch']['parameters']['query'];
113485
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$5T]['patch']['responses'][200]['content']['application/json'];
113656
+ declare const routeName$5U = "/v1/api/claims/{claim_id}";
113657
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$5U]['patch']['parameters']['path'];
113658
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$5U]['patch']['parameters']['query'];
113659
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$5U]['patch']['responses'][200]['content']['application/json'];
113486
113660
  interface UpdateClaimAsBrokerByIdProps {
113487
113661
  params: {
113488
113662
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -113491,10 +113665,10 @@ interface UpdateClaimAsBrokerByIdProps {
113491
113665
  }
113492
113666
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
113493
113667
 
113494
- declare const routeName$5S = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
113495
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$5S]['put']['parameters']['path'];
113496
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$5S]['put']['parameters']['query'];
113497
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$5S]['put']['responses'][200]['content']['application/json'];
113668
+ declare const routeName$5T = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
113669
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$5T]['put']['parameters']['path'];
113670
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$5T]['put']['parameters']['query'];
113671
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$5T]['put']['responses'][200]['content']['application/json'];
113498
113672
  interface UpdateDeclarationRemarkProps {
113499
113673
  params: {
113500
113674
  query: UpdateDeclarationRemarkQueryParams;
@@ -113503,10 +113677,10 @@ interface UpdateDeclarationRemarkProps {
113503
113677
  }
113504
113678
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
113505
113679
 
113506
- declare const routeName$5R = "/v1/api/claims/{claim_id}/lock";
113507
- type CreateLockForClaimPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
113508
- type CreateLockForClaimQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
113509
- type CreateLockForClaimResponse = paths[typeof routeName$5R]['post']['responses'][201]['content']['application/json'];
113680
+ declare const routeName$5S = "/v1/api/claims/{claim_id}/lock";
113681
+ type CreateLockForClaimPathParams = paths[typeof routeName$5S]['post']['parameters']['path'];
113682
+ type CreateLockForClaimQueryParams = paths[typeof routeName$5S]['post']['parameters']['query'];
113683
+ type CreateLockForClaimResponse = paths[typeof routeName$5S]['post']['responses'][201]['content']['application/json'];
113510
113684
  interface CreateLockForClaimProps {
113511
113685
  params: {
113512
113686
  query: CreateLockForClaimQueryParams;
@@ -113515,10 +113689,10 @@ interface CreateLockForClaimProps {
113515
113689
  }
113516
113690
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
113517
113691
 
113518
- declare const routeName$5Q = "/v1/api/claims/{claim_id}/unlock";
113519
- type UnlockClaimPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
113520
- type UnlockClaimQueryParams = paths[typeof routeName$5Q]['post']['parameters']['query'];
113521
- type UnlockClaimResponse = paths[typeof routeName$5Q]['post']['responses'][200]['content']['application/json'];
113692
+ declare const routeName$5R = "/v1/api/claims/{claim_id}/unlock";
113693
+ type UnlockClaimPathParams = paths[typeof routeName$5R]['post']['parameters']['path'];
113694
+ type UnlockClaimQueryParams = paths[typeof routeName$5R]['post']['parameters']['query'];
113695
+ type UnlockClaimResponse = paths[typeof routeName$5R]['post']['responses'][200]['content']['application/json'];
113522
113696
  interface UnlockClaimProps {
113523
113697
  params: {
113524
113698
  query: UnlockClaimQueryParams;
@@ -113527,10 +113701,10 @@ interface UnlockClaimProps {
113527
113701
  }
113528
113702
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
113529
113703
 
113530
- declare const routeName$5P = "/v1/api/claims/{claim_id}/request_update";
113531
- type ClaimRequestUpdatePathParams = paths[typeof routeName$5P]['post']['parameters']['path'];
113532
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$5P]['post']['parameters']['query'];
113533
- type ClaimRequestUpdateResponse = paths[typeof routeName$5P]['post']['responses'][200]['content']['application/json'];
113704
+ declare const routeName$5Q = "/v1/api/claims/{claim_id}/request_update";
113705
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
113706
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$5Q]['post']['parameters']['query'];
113707
+ type ClaimRequestUpdateResponse = paths[typeof routeName$5Q]['post']['responses'][200]['content']['application/json'];
113534
113708
  interface ClaimRequestUpdateProps {
113535
113709
  params: {
113536
113710
  query: ClaimRequestUpdateQueryParams;
@@ -113539,10 +113713,10 @@ interface ClaimRequestUpdateProps {
113539
113713
  }
113540
113714
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
113541
113715
 
113542
- declare const routeName$5O = "/v1/api/claims/{claim_id}/validate";
113543
- type ValidateClaimPathParams = paths[typeof routeName$5O]['post']['parameters']['path'];
113544
- type ValidateClaimQueryParams = paths[typeof routeName$5O]['post']['parameters']['query'];
113545
- type ValidateClaimResponse = paths[typeof routeName$5O]['post']['responses'][200]['content']['application/json'];
113716
+ declare const routeName$5P = "/v1/api/claims/{claim_id}/validate";
113717
+ type ValidateClaimPathParams = paths[typeof routeName$5P]['post']['parameters']['path'];
113718
+ type ValidateClaimQueryParams = paths[typeof routeName$5P]['post']['parameters']['query'];
113719
+ type ValidateClaimResponse = paths[typeof routeName$5P]['post']['responses'][200]['content']['application/json'];
113546
113720
  interface ValidateClaimProps {
113547
113721
  params: {
113548
113722
  query: ValidateClaimQueryParams;
@@ -113551,10 +113725,10 @@ interface ValidateClaimProps {
113551
113725
  }
113552
113726
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
113553
113727
 
113554
- declare const routeName$5N = "/v1/api/claims/{claim_id}/documents";
113555
- type CreateDocumentForClaimPathParams = paths[typeof routeName$5N]['post']['parameters']['path'];
113556
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$5N]['post']['parameters']['query'];
113557
- type CreateDocumentForClaimResponse = paths[typeof routeName$5N]['post']['responses'][201]['content']['application/json'];
113728
+ declare const routeName$5O = "/v1/api/claims/{claim_id}/documents";
113729
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$5O]['post']['parameters']['path'];
113730
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$5O]['post']['parameters']['query'];
113731
+ type CreateDocumentForClaimResponse = paths[typeof routeName$5O]['post']['responses'][201]['content']['application/json'];
113558
113732
  interface CreateDocumentForClaimProps {
113559
113733
  params: {
113560
113734
  query: CreateDocumentForClaimQueryParams;
@@ -113563,17 +113737,17 @@ interface CreateDocumentForClaimProps {
113563
113737
  }
113564
113738
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
113565
113739
 
113566
- declare const routeName$5M = "/v1/api/claims/{claim_id}/documents/{document_id}";
113567
- type DownloadDocumentByIdPathParams = paths[typeof routeName$5M]['get']['parameters']['path'];
113568
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$5M]['get']['parameters']['query'];
113569
- type DownloadDocumentByIdResponse = paths[typeof routeName$5M]['get']['responses'][307]['content']['application/json'];
113570
- type DownloadDocumentByIdProps = paths[typeof routeName$5M]['get']['parameters'];
113740
+ declare const routeName$5N = "/v1/api/claims/{claim_id}/documents/{document_id}";
113741
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
113742
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
113743
+ type DownloadDocumentByIdResponse = paths[typeof routeName$5N]['get']['responses'][307]['content']['application/json'];
113744
+ type DownloadDocumentByIdProps = paths[typeof routeName$5N]['get']['parameters'];
113571
113745
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
113572
113746
 
113573
- declare const routeName$5L = "/v1/api/claims/{claim_id}/documents/{document_id}";
113574
- type DeleteDocumentByIdPathParams = paths[typeof routeName$5L]['delete']['parameters']['path'];
113575
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$5L]['delete']['parameters']['query'];
113576
- type DeleteDocumentByIdResponse = paths[typeof routeName$5L]['delete']['responses'][200]['content']['application/json'];
113747
+ declare const routeName$5M = "/v1/api/claims/{claim_id}/documents/{document_id}";
113748
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$5M]['delete']['parameters']['path'];
113749
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$5M]['delete']['parameters']['query'];
113750
+ type DeleteDocumentByIdResponse = paths[typeof routeName$5M]['delete']['responses'][200]['content']['application/json'];
113577
113751
  interface DeleteDocumentByIdProps {
113578
113752
  params: {
113579
113753
  query: DeleteDocumentByIdQueryParams;
@@ -113582,10 +113756,10 @@ interface DeleteDocumentByIdProps {
113582
113756
  }
113583
113757
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
113584
113758
 
113585
- declare const routeName$5K = "/v1/api/claims/{claim_id}/documents/{document_id}";
113586
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$5K]['patch']['parameters']['path'];
113587
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$5K]['patch']['parameters']['query'];
113588
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$5K]['patch']['responses'][200]['content']['application/json'];
113759
+ declare const routeName$5L = "/v1/api/claims/{claim_id}/documents/{document_id}";
113760
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$5L]['patch']['parameters']['path'];
113761
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$5L]['patch']['parameters']['query'];
113762
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$5L]['patch']['responses'][200]['content']['application/json'];
113589
113763
  interface UpdateDocumentMetadataByIdProps {
113590
113764
  params: {
113591
113765
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -113594,17 +113768,17 @@ interface UpdateDocumentMetadataByIdProps {
113594
113768
  }
113595
113769
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
113596
113770
 
113597
- declare const routeName$5J = "/v1/api/claims/customer/token/{token}";
113598
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5J]['get']['parameters']['path'];
113599
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5J]['get']['parameters']['query'];
113600
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$5J]['get']['responses'][200]['content']['application/json'];
113601
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$5J]['get']['parameters'];
113771
+ declare const routeName$5K = "/v1/api/claims/customer/token/{token}";
113772
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5K]['get']['parameters']['path'];
113773
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5K]['get']['parameters']['query'];
113774
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$5K]['get']['responses'][200]['content']['application/json'];
113775
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$5K]['get']['parameters'];
113602
113776
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
113603
113777
 
113604
- declare const routeName$5I = "/v1/api/claims/customer/token/{token}";
113605
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5I]['patch']['parameters']['path'];
113606
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5I]['patch']['parameters']['query'];
113607
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$5I]['patch']['responses'][200]['content']['application/json'];
113778
+ declare const routeName$5J = "/v1/api/claims/customer/token/{token}";
113779
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$5J]['patch']['parameters']['path'];
113780
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$5J]['patch']['parameters']['query'];
113781
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$5J]['patch']['responses'][200]['content']['application/json'];
113608
113782
  interface UpdateClaimAsCustomerWithTokenProps {
113609
113783
  params: {
113610
113784
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -113613,10 +113787,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
113613
113787
  }
113614
113788
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
113615
113789
 
113616
- declare const routeName$5H = "/v1/api/claims/customer/token/{token}/entities";
113617
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5H]['post']['parameters']['path'];
113618
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5H]['post']['parameters']['query'];
113619
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5H]['post']['responses'][201]['content']['application/json'];
113790
+ declare const routeName$5I = "/v1/api/claims/customer/token/{token}/entities";
113791
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5I]['post']['parameters']['path'];
113792
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5I]['post']['parameters']['query'];
113793
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5I]['post']['responses'][201]['content']['application/json'];
113620
113794
  interface CreateEntityAsCustomerWithTokenProps {
113621
113795
  params: {
113622
113796
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -113625,10 +113799,10 @@ interface CreateEntityAsCustomerWithTokenProps {
113625
113799
  }
113626
113800
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
113627
113801
 
113628
- declare const routeName$5G = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
113629
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5G]['delete']['parameters']['path'];
113630
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5G]['delete']['parameters']['query'];
113631
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$5G]['delete']['responses'][200]['content']['application/json'];
113802
+ declare const routeName$5H = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
113803
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5H]['delete']['parameters']['path'];
113804
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5H]['delete']['parameters']['query'];
113805
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$5H]['delete']['responses'][200]['content']['application/json'];
113632
113806
  interface DeleteEntityByIdAsCustomerWithTokenProps {
113633
113807
  params: {
113634
113808
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -113637,10 +113811,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
113637
113811
  }
113638
113812
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
113639
113813
 
113640
- declare const routeName$5F = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
113641
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5F]['patch']['parameters']['path'];
113642
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5F]['patch']['parameters']['query'];
113643
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5F]['patch']['responses'][200]['content']['application/json'];
113814
+ declare const routeName$5G = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
113815
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$5G]['patch']['parameters']['path'];
113816
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$5G]['patch']['parameters']['query'];
113817
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$5G]['patch']['responses'][200]['content']['application/json'];
113644
113818
  interface UpdateEntityAsCustomerWithTokenProps {
113645
113819
  params: {
113646
113820
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -113649,10 +113823,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
113649
113823
  }
113650
113824
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
113651
113825
 
113652
- declare const routeName$5E = "/v1/api/claims/upload/{claim_doc_category}";
113653
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$5E]['post']['parameters']['path'];
113654
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$5E]['post']['parameters']['query'];
113655
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$5E]['post']['responses'][200]['content']['application/json'];
113826
+ declare const routeName$5F = "/v1/api/claims/upload/{claim_doc_category}";
113827
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$5F]['post']['parameters']['path'];
113828
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$5F]['post']['parameters']['query'];
113829
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$5F]['post']['responses'][200]['content']['application/json'];
113656
113830
  interface UploadClaimDocumentAsBrokerProps {
113657
113831
  params: {
113658
113832
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -113661,10 +113835,10 @@ interface UploadClaimDocumentAsBrokerProps {
113661
113835
  }
113662
113836
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
113663
113837
 
113664
- declare const routeName$5D = "/v1/api/claims/customer/upload/{claim_doc_category}";
113665
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$5D]['post']['parameters']['path'];
113666
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
113667
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$5D]['post']['responses'][200]['content']['application/json'];
113838
+ declare const routeName$5E = "/v1/api/claims/customer/upload/{claim_doc_category}";
113839
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$5E]['post']['parameters']['path'];
113840
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$5E]['post']['parameters']['query'];
113841
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$5E]['post']['responses'][200]['content']['application/json'];
113668
113842
  interface CreateUploadLinkAsCustomerProps {
113669
113843
  params: {
113670
113844
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -113673,9 +113847,9 @@ interface CreateUploadLinkAsCustomerProps {
113673
113847
  }
113674
113848
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
113675
113849
 
113676
- declare const routeName$5C = "/v1/api/claims/generate/token";
113677
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
113678
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$5C]['post']['responses'][201]['content']['application/json'];
113850
+ declare const routeName$5D = "/v1/api/claims/generate/token";
113851
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$5D]['post']['parameters']['query'];
113852
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$5D]['post']['responses'][201]['content']['application/json'];
113679
113853
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
113680
113854
  params: {
113681
113855
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -113683,17 +113857,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
113683
113857
  }
113684
113858
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
113685
113859
 
113686
- declare const routeName$5B = "/v1/api/claims/customer/token/{token}/events";
113687
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5B]['get']['parameters']['path'];
113688
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
113689
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
113690
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$5B]['get']['parameters'];
113860
+ declare const routeName$5C = "/v1/api/claims/customer/token/{token}/events";
113861
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$5C]['get']['parameters']['path'];
113862
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
113863
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
113864
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$5C]['get']['parameters'];
113691
113865
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
113692
113866
 
113693
- declare const routeName$5A = "/v1/api/claims/customer/token/{token}/documents";
113694
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5A]['post']['parameters']['path'];
113695
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5A]['post']['parameters']['query'];
113696
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5A]['post']['responses'][200]['content']['application/json'];
113867
+ declare const routeName$5B = "/v1/api/claims/customer/token/{token}/documents";
113868
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$5B]['post']['parameters']['path'];
113869
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$5B]['post']['parameters']['query'];
113870
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$5B]['post']['responses'][200]['content']['application/json'];
113697
113871
  interface CreateDocumentForClaimAsCustomerProps {
113698
113872
  params: {
113699
113873
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -113702,10 +113876,10 @@ interface CreateDocumentForClaimAsCustomerProps {
113702
113876
  }
113703
113877
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
113704
113878
 
113705
- declare const routeName$5z = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
113706
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5z]['delete']['parameters']['path'];
113707
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5z]['delete']['parameters']['query'];
113708
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5z]['delete']['responses'][200]['content']['application/json'];
113879
+ declare const routeName$5A = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
113880
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5A]['delete']['parameters']['path'];
113881
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5A]['delete']['parameters']['query'];
113882
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5A]['delete']['responses'][200]['content']['application/json'];
113709
113883
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
113710
113884
  params: {
113711
113885
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -113714,10 +113888,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
113714
113888
  }
113715
113889
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
113716
113890
 
113717
- declare const routeName$5y = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
113718
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5y]['patch']['parameters']['path'];
113719
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5y]['patch']['parameters']['query'];
113720
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5y]['patch']['responses'][200]['content']['application/json'];
113891
+ declare const routeName$5z = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
113892
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5z]['patch']['parameters']['path'];
113893
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5z]['patch']['parameters']['query'];
113894
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5z]['patch']['responses'][200]['content']['application/json'];
113721
113895
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
113722
113896
  params: {
113723
113897
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -113726,10 +113900,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
113726
113900
  }
113727
113901
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
113728
113902
 
113729
- declare const routeName$5x = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
113730
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5x]['post']['parameters']['path'];
113731
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5x]['post']['parameters']['query'];
113732
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5x]['post']['responses'][200]['content']['application/json'];
113903
+ declare const routeName$5y = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
113904
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
113905
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
113906
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5y]['post']['responses'][200]['content']['application/json'];
113733
113907
  interface CreateNoteOnEventAsCustomerProps {
113734
113908
  params: {
113735
113909
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -113738,10 +113912,10 @@ interface CreateNoteOnEventAsCustomerProps {
113738
113912
  }
113739
113913
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
113740
113914
 
113741
- declare const routeName$5w = "/v1/api/claims/{claim_id}/entities";
113742
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$5w]['post']['parameters']['path'];
113743
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5w]['post']['parameters']['query'];
113744
- type CreateEntityAsBrokerResponse = paths[typeof routeName$5w]['post']['responses'][201]['content']['application/json'];
113915
+ declare const routeName$5x = "/v1/api/claims/{claim_id}/entities";
113916
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$5x]['post']['parameters']['path'];
113917
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5x]['post']['parameters']['query'];
113918
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$5x]['post']['responses'][201]['content']['application/json'];
113745
113919
  interface CreateEntityAsBrokerProps {
113746
113920
  params: {
113747
113921
  query: CreateEntityAsBrokerQueryParams;
@@ -113750,10 +113924,10 @@ interface CreateEntityAsBrokerProps {
113750
113924
  }
113751
113925
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
113752
113926
 
113753
- declare const routeName$5v = "/v1/api/claims/{claim_id}/entities/{entity_id}";
113754
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5v]['delete']['parameters']['path'];
113755
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5v]['delete']['parameters']['query'];
113756
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5v]['delete']['responses'][200]['content']['application/json'];
113927
+ declare const routeName$5w = "/v1/api/claims/{claim_id}/entities/{entity_id}";
113928
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5w]['delete']['parameters']['path'];
113929
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5w]['delete']['parameters']['query'];
113930
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5w]['delete']['responses'][200]['content']['application/json'];
113757
113931
  interface DeleteEntityAsBrokerByIdProps {
113758
113932
  params: {
113759
113933
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -113762,10 +113936,10 @@ interface DeleteEntityAsBrokerByIdProps {
113762
113936
  }
113763
113937
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
113764
113938
 
113765
- declare const routeName$5u = "/v1/api/claims/{claim_id}/entities/{entity_id}";
113766
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5u]['patch']['parameters']['path'];
113767
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5u]['patch']['parameters']['query'];
113768
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5u]['patch']['responses'][200]['content']['application/json'];
113939
+ declare const routeName$5v = "/v1/api/claims/{claim_id}/entities/{entity_id}";
113940
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5v]['patch']['parameters']['path'];
113941
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5v]['patch']['parameters']['query'];
113942
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5v]['patch']['responses'][200]['content']['application/json'];
113769
113943
  interface UpdateEntityAsBrokerByIdProps {
113770
113944
  params: {
113771
113945
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -113774,17 +113948,17 @@ interface UpdateEntityAsBrokerByIdProps {
113774
113948
  }
113775
113949
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
113776
113950
 
113777
- declare const routeName$5t = "/v1/api/claims/{claim_id}/events";
113778
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5t]['get']['parameters']['path'];
113779
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5t]['get']['parameters']['query'];
113780
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5t]['get']['responses'][200]['content']['application/json'];
113781
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5t]['get']['parameters'];
113951
+ declare const routeName$5u = "/v1/api/claims/{claim_id}/events";
113952
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5u]['get']['parameters']['path'];
113953
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
113954
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
113955
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5u]['get']['parameters'];
113782
113956
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
113783
113957
 
113784
- declare const routeName$5s = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
113785
- type SendClaimToKeypointPathParams = paths[typeof routeName$5s]['post']['parameters']['path'];
113786
- type SendClaimToKeypointQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
113787
- type SendClaimToKeypointResponse = paths[typeof routeName$5s]['post']['responses'][201]['content']['application/json'];
113958
+ declare const routeName$5t = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
113959
+ type SendClaimToKeypointPathParams = paths[typeof routeName$5t]['post']['parameters']['path'];
113960
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
113961
+ type SendClaimToKeypointResponse = paths[typeof routeName$5t]['post']['responses'][201]['content']['application/json'];
113788
113962
  interface SendClaimToKeypointProps {
113789
113963
  params: {
113790
113964
  query: SendClaimToKeypointQueryParams;
@@ -113793,10 +113967,10 @@ interface SendClaimToKeypointProps {
113793
113967
  }
113794
113968
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
113795
113969
 
113796
- declare const routeName$5r = "/v1/api/claims/{claim_id}/customer/followup-page/email";
113797
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5r]['post']['parameters']['path'];
113798
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5r]['post']['parameters']['query'];
113799
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5r]['post']['responses'][200]['content']['application/json'];
113970
+ declare const routeName$5s = "/v1/api/claims/{claim_id}/customer/followup-page/email";
113971
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5s]['post']['parameters']['path'];
113972
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5s]['post']['parameters']['query'];
113973
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5s]['post']['responses'][200]['content']['application/json'];
113800
113974
  interface SendMailFollowupPageToCustomerProps {
113801
113975
  params: {
113802
113976
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -113805,21 +113979,21 @@ interface SendMailFollowupPageToCustomerProps {
113805
113979
  }
113806
113980
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
113807
113981
 
113808
- declare const routeName$5q = "/v1/api/claims/categories/CAR";
113809
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
113982
+ declare const routeName$5r = "/v1/api/claims/categories/CAR";
113983
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
113810
113984
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
113811
113985
 
113812
- declare const routeName$5p = "/v1/api/claims/info/{claim_type}/{claim_category}";
113813
- type GetInfoForClaimPathParams = paths[typeof routeName$5p]['get']['parameters']['path'];
113814
- type GetInfoForClaimQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
113815
- type GetInfoForClaimResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
113816
- type GetInfoForClaimProps = paths[typeof routeName$5p]['get']['parameters'];
113986
+ declare const routeName$5q = "/v1/api/claims/info/{claim_type}/{claim_category}";
113987
+ type GetInfoForClaimPathParams = paths[typeof routeName$5q]['get']['parameters']['path'];
113988
+ type GetInfoForClaimQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
113989
+ type GetInfoForClaimResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
113990
+ type GetInfoForClaimProps = paths[typeof routeName$5q]['get']['parameters'];
113817
113991
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
113818
113992
 
113819
- declare const routeName$5o = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
113820
- type CreateNoteOnEventPathParams = paths[typeof routeName$5o]['post']['parameters']['path'];
113821
- type CreateNoteOnEventQueryParams = paths[typeof routeName$5o]['post']['parameters']['query'];
113822
- type CreateNoteOnEventResponse = paths[typeof routeName$5o]['post']['responses'][201]['content']['application/json'];
113993
+ declare const routeName$5p = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
113994
+ type CreateNoteOnEventPathParams = paths[typeof routeName$5p]['post']['parameters']['path'];
113995
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$5p]['post']['parameters']['query'];
113996
+ type CreateNoteOnEventResponse = paths[typeof routeName$5p]['post']['responses'][201]['content']['application/json'];
113823
113997
  interface CreateNoteOnEventProps {
113824
113998
  params: {
113825
113999
  query: CreateNoteOnEventQueryParams;
@@ -113828,10 +114002,10 @@ interface CreateNoteOnEventProps {
113828
114002
  }
113829
114003
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
113830
114004
 
113831
- declare const routeName$5n = "/v1/api/claims/notes/{note_id}";
113832
- type DeleteNotePathParams = paths[typeof routeName$5n]['delete']['parameters']['path'];
113833
- type DeleteNoteQueryParams = paths[typeof routeName$5n]['delete']['parameters']['query'];
113834
- type DeleteNoteResponse = paths[typeof routeName$5n]['delete']['responses'][200]['content']['application/json'];
114005
+ declare const routeName$5o = "/v1/api/claims/notes/{note_id}";
114006
+ type DeleteNotePathParams = paths[typeof routeName$5o]['delete']['parameters']['path'];
114007
+ type DeleteNoteQueryParams = paths[typeof routeName$5o]['delete']['parameters']['query'];
114008
+ type DeleteNoteResponse = paths[typeof routeName$5o]['delete']['responses'][200]['content']['application/json'];
113835
114009
  interface DeleteNoteProps {
113836
114010
  params: {
113837
114011
  query: DeleteNoteQueryParams;
@@ -113840,10 +114014,10 @@ interface DeleteNoteProps {
113840
114014
  }
113841
114015
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
113842
114016
 
113843
- declare const routeName$5m = "/v1/api/claims/notes/{note_id}";
113844
- type UpdateNotePathParams = paths[typeof routeName$5m]['patch']['parameters']['path'];
113845
- type UpdateNoteQueryParams = paths[typeof routeName$5m]['patch']['parameters']['query'];
113846
- type UpdateNoteResponse = paths[typeof routeName$5m]['patch']['responses'][200]['content']['application/json'];
114017
+ declare const routeName$5n = "/v1/api/claims/notes/{note_id}";
114018
+ type UpdateNotePathParams = paths[typeof routeName$5n]['patch']['parameters']['path'];
114019
+ type UpdateNoteQueryParams = paths[typeof routeName$5n]['patch']['parameters']['query'];
114020
+ type UpdateNoteResponse = paths[typeof routeName$5n]['patch']['responses'][200]['content']['application/json'];
113847
114021
  interface UpdateNoteProps {
113848
114022
  params: {
113849
114023
  query: UpdateNoteQueryParams;
@@ -113852,17 +114026,17 @@ interface UpdateNoteProps {
113852
114026
  }
113853
114027
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
113854
114028
 
113855
- declare const routeName$5l = "/v1/api/claims/{claim_id}/report";
113856
- type ClaimReportByIdPathParams = paths[typeof routeName$5l]['get']['parameters']['path'];
113857
- type ClaimReportByIdQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
113858
- type ClaimReportByIdResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
113859
- type ClaimReportByIdProps = paths[typeof routeName$5l]['get']['parameters'];
114029
+ declare const routeName$5m = "/v1/api/claims/{claim_id}/report";
114030
+ type ClaimReportByIdPathParams = paths[typeof routeName$5m]['get']['parameters']['path'];
114031
+ type ClaimReportByIdQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
114032
+ type ClaimReportByIdResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
114033
+ type ClaimReportByIdProps = paths[typeof routeName$5m]['get']['parameters'];
113860
114034
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
113861
114035
 
113862
- declare const routeName$5k = "/v1/api/claims/{claim_id}/report/email";
113863
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$5k]['post']['parameters']['path'];
113864
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5k]['post']['parameters']['query'];
113865
- type SendMailClaimReportByIdResponse = paths[typeof routeName$5k]['post']['responses'][200]['content']['application/json'];
114036
+ declare const routeName$5l = "/v1/api/claims/{claim_id}/report/email";
114037
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$5l]['post']['parameters']['path'];
114038
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5l]['post']['parameters']['query'];
114039
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$5l]['post']['responses'][200]['content']['application/json'];
113866
114040
  interface SendMailClaimReportByIdProps {
113867
114041
  params: {
113868
114042
  query: SendMailClaimReportByIdQueryParams;
@@ -113871,16 +114045,16 @@ interface SendMailClaimReportByIdProps {
113871
114045
  }
113872
114046
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
113873
114047
 
113874
- declare const routeName$5j = "/v1/api/brokers/{broker_id}/connections";
113875
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5j]['get']['parameters']['path'];
113876
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
113877
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5j]['get']['parameters'];
114048
+ declare const routeName$5k = "/v1/api/brokers/{broker_id}/connections";
114049
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5k]['get']['parameters']['path'];
114050
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
114051
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5k]['get']['parameters'];
113878
114052
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
113879
114053
 
113880
- declare const routeName$5i = "/v1/api/brokers/{broker_id}/connections/{key}";
113881
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5i]['post']['requestBody']['content']['application/json'];
113882
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5i]['post']['parameters']['path'];
113883
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5i]['post']['responses'][201]['content']['application/json'];
114054
+ declare const routeName$5j = "/v1/api/brokers/{broker_id}/connections/{key}";
114055
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5j]['post']['requestBody']['content']['application/json'];
114056
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5j]['post']['parameters']['path'];
114057
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5j]['post']['responses'][201]['content']['application/json'];
113884
114058
  interface CreateBrokerConnectionsByIdProps {
113885
114059
  body: CreateBrokerConnectionsByIdBody;
113886
114060
  params: {
@@ -113889,9 +114063,9 @@ interface CreateBrokerConnectionsByIdProps {
113889
114063
  }
113890
114064
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
113891
114065
 
113892
- declare const routeName$5h = "/v1/api/brokers/{broker_id}/connections/{key}";
113893
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5h]['delete']['parameters']['path'];
113894
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5h]['delete']['responses'][200]['content']['application/json'];
114066
+ declare const routeName$5i = "/v1/api/brokers/{broker_id}/connections/{key}";
114067
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5i]['delete']['parameters']['path'];
114068
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5i]['delete']['responses'][200]['content']['application/json'];
113895
114069
  interface DeleteBrokerConnectionByKeyProps {
113896
114070
  params: {
113897
114071
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -113899,10 +114073,10 @@ interface DeleteBrokerConnectionByKeyProps {
113899
114073
  }
113900
114074
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
113901
114075
 
113902
- declare const routeName$5g = "/v1/api/brokers/{broker_id}/connections/{key}";
113903
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5g]['patch']['requestBody']['content']['application/json'];
113904
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5g]['patch']['parameters']['path'];
113905
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5g]['patch']['responses'][200]['content']['application/json'];
114076
+ declare const routeName$5h = "/v1/api/brokers/{broker_id}/connections/{key}";
114077
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5h]['patch']['requestBody']['content']['application/json'];
114078
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5h]['patch']['parameters']['path'];
114079
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5h]['patch']['responses'][200]['content']['application/json'];
113906
114080
  interface UpdateBrokerConnectionByKeyProps {
113907
114081
  body: UpdateBrokerConnectionByKeyBody;
113908
114082
  params: {
@@ -113911,10 +114085,10 @@ interface UpdateBrokerConnectionByKeyProps {
113911
114085
  }
113912
114086
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
113913
114087
 
113914
- declare const routeName$5f = "/v1/api/distributions/{distribution_id}/connections/{key}";
113915
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$5f]['post']['requestBody']['content']['application/json'];
113916
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5f]['post']['parameters']['path'];
113917
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5f]['post']['responses'][201]['content']['application/json'];
114088
+ declare const routeName$5g = "/v1/api/distributions/{distribution_id}/connections/{key}";
114089
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$5g]['post']['requestBody']['content']['application/json'];
114090
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5g]['post']['parameters']['path'];
114091
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5g]['post']['responses'][201]['content']['application/json'];
113918
114092
  interface CreateDistributionConnectionByIdProps {
113919
114093
  body: CreateDistributionConnectionByIdBody;
113920
114094
  params: {
@@ -113923,9 +114097,9 @@ interface CreateDistributionConnectionByIdProps {
113923
114097
  }
113924
114098
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
113925
114099
 
113926
- declare const routeName$5e = "/v1/api/distributions/{distribution_id}/connections/{key}";
113927
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5e]['delete']['parameters']['path'];
113928
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5e]['delete']['responses'][200]['content']['application/json'];
114100
+ declare const routeName$5f = "/v1/api/distributions/{distribution_id}/connections/{key}";
114101
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5f]['delete']['parameters']['path'];
114102
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5f]['delete']['responses'][200]['content']['application/json'];
113929
114103
  interface DeleteDistributionConnectionByKeyProps {
113930
114104
  params: {
113931
114105
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -113933,10 +114107,10 @@ interface DeleteDistributionConnectionByKeyProps {
113933
114107
  }
113934
114108
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
113935
114109
 
113936
- declare const routeName$5d = "/v1/api/distributions/{distribution_id}/connections/{key}";
113937
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5d]['patch']['requestBody']['content']['application/json'];
113938
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5d]['patch']['parameters']['path'];
113939
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5d]['patch']['responses'][200]['content']['application/json'];
114110
+ declare const routeName$5e = "/v1/api/distributions/{distribution_id}/connections/{key}";
114111
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5e]['patch']['requestBody']['content']['application/json'];
114112
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5e]['patch']['parameters']['path'];
114113
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5e]['patch']['responses'][200]['content']['application/json'];
113940
114114
  interface UpdateDistributionConnectionByKeyProps {
113941
114115
  body: UpdateDistributionConnectionByKeyBody;
113942
114116
  params: {
@@ -113945,35 +114119,35 @@ interface UpdateDistributionConnectionByKeyProps {
113945
114119
  }
113946
114120
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
113947
114121
 
113948
- declare const routeName$5c = "/v1/api/distributions/{distribution_id}/connections";
113949
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5c]['get']['parameters']['path'];
113950
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
113951
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
113952
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5c]['get']['parameters'];
114122
+ declare const routeName$5d = "/v1/api/distributions/{distribution_id}/connections";
114123
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5d]['get']['parameters']['path'];
114124
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5d]['get']['parameters']['query'];
114125
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5d]['get']['responses'][200]['content']['application/json'];
114126
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5d]['get']['parameters'];
113953
114127
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
113954
114128
 
113955
- declare const routeName$5b = "/v1/api/connections/anva/parties";
113956
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5b]['get']['parameters']['query'];
113957
- type GetAnvaPartiesResponse = paths[typeof routeName$5b]['get']['responses'][200]['content']['application/json'];
113958
- type GetAnvaPartiesProps = paths[typeof routeName$5b]['get']['parameters'];
114129
+ declare const routeName$5c = "/v1/api/connections/anva/parties";
114130
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$5c]['get']['parameters']['query'];
114131
+ type GetAnvaPartiesResponse = paths[typeof routeName$5c]['get']['responses'][200]['content']['application/json'];
114132
+ type GetAnvaPartiesProps = paths[typeof routeName$5c]['get']['parameters'];
113959
114133
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
113960
114134
 
113961
- declare const routeName$5a = "/v1/api/connections/anva/employees";
113962
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$5a]['get']['parameters']['query'];
113963
- type GetAnvaEmployeesResponse = paths[typeof routeName$5a]['get']['responses'][200]['content']['application/json'];
113964
- type GetAnvaEmployeesProps = paths[typeof routeName$5a]['get']['parameters'];
114135
+ declare const routeName$5b = "/v1/api/connections/anva/employees";
114136
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$5b]['get']['parameters']['query'];
114137
+ type GetAnvaEmployeesResponse = paths[typeof routeName$5b]['get']['responses'][200]['content']['application/json'];
114138
+ type GetAnvaEmployeesProps = paths[typeof routeName$5b]['get']['parameters'];
113965
114139
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
113966
114140
 
113967
- declare const routeName$59 = "/v1/api/connections/anva/products";
113968
- type GetAnvaProductsQueryParams = paths[typeof routeName$59]['get']['parameters']['query'];
113969
- type GetAnvaProductsResponse = paths[typeof routeName$59]['get']['responses'][200]['content']['application/json'];
113970
- type GetAnvaProductsProps = paths[typeof routeName$59]['get']['parameters'];
114141
+ declare const routeName$5a = "/v1/api/connections/anva/products";
114142
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5a]['get']['parameters']['query'];
114143
+ type GetAnvaProductsResponse = paths[typeof routeName$5a]['get']['responses'][200]['content']['application/json'];
114144
+ type GetAnvaProductsProps = paths[typeof routeName$5a]['get']['parameters'];
113971
114145
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
113972
114146
 
113973
- declare const routeName$58 = "/v1/api/connections/anva/parties/{anva_id}/imports";
113974
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$58]['post']['parameters']['path'];
113975
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$58]['post']['parameters']['query'];
113976
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$58]['post']['responses'][201]['content']['application/json'];
114147
+ declare const routeName$59 = "/v1/api/connections/anva/parties/{anva_id}/imports";
114148
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$59]['post']['parameters']['path'];
114149
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$59]['post']['parameters']['query'];
114150
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$59]['post']['responses'][201]['content']['application/json'];
113977
114151
  interface ImportAnvaPartyInWegroupProps {
113978
114152
  params: {
113979
114153
  query: ImportAnvaPartyInWegroupQueryParams;
@@ -113982,26 +114156,38 @@ interface ImportAnvaPartyInWegroupProps {
113982
114156
  }
113983
114157
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
113984
114158
 
113985
- declare const routeName$57 = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
113986
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$57]['get']['parameters']['path'];
113987
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$57]['get']['parameters']['query'];
113988
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$57]['get']['responses'][307]['content']['application/json'];
113989
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$57]['get']['parameters'];
114159
+ declare const routeName$58 = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
114160
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$58]['get']['parameters']['path'];
114161
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$58]['get']['parameters']['query'];
114162
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$58]['get']['responses'][307]['content']['application/json'];
114163
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$58]['get']['parameters'];
113990
114164
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
113991
114165
 
113992
- declare const routeName$56 = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
113993
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$56]['get']['parameters']['path'];
113994
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$56]['get']['parameters']['query'];
113995
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$56]['get']['responses'][307]['content']['application/json'];
113996
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$56]['get']['parameters'];
114166
+ declare const routeName$57 = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
114167
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$57]['get']['parameters']['path'];
114168
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$57]['get']['parameters']['query'];
114169
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$57]['get']['responses'][307]['content']['application/json'];
114170
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$57]['get']['parameters'];
113997
114171
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
113998
114172
 
113999
- declare const routeName$55 = "/v1/api/connections/anva/documents/import";
114000
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$55]['get']['parameters']['query'];
114001
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$55]['get']['responses'][307]['content']['application/json'];
114002
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$55]['get']['parameters'];
114173
+ declare const routeName$56 = "/v1/api/connections/anva/documents/import";
114174
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$56]['get']['parameters']['query'];
114175
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$56]['get']['responses'][307]['content']['application/json'];
114176
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$56]['get']['parameters'];
114003
114177
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
114004
114178
 
114179
+ declare const routeName$55 = "/v1/api/connections/anva/task";
114180
+ type CreateAnvaTaskBody = paths[typeof routeName$55]['post']['requestBody']['content']['application/json'];
114181
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$55]['post']['parameters']['query'];
114182
+ type CreateAnvaTaskResponse = paths[typeof routeName$55]['post']['responses'][201]['content']['application/json'];
114183
+ interface CreateAnvaTaskProps {
114184
+ body: CreateAnvaTaskBody;
114185
+ params: {
114186
+ query: CreateAnvaTaskQueryParams;
114187
+ };
114188
+ }
114189
+ declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
114190
+
114005
114191
  declare const routeName$54 = "/v1/api/connections/anva/validate";
114006
114192
  type ValidateAnvaConnectionQueryParams = paths[typeof routeName$54]['post']['parameters']['query'];
114007
114193
  type ValidateAnvaConnectionResponse = paths[typeof routeName$54]['post']['responses'][200]['content']['application/json'];
@@ -116946,4 +117132,4 @@ interface ValidateYellowhiveQuestionnaireProps {
116946
117132
  }
116947
117133
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
116948
117134
 
116949
- 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 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 ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type 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 GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, 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 GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type 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 GetEmailAnalyzerJobResultByIdPathParams, type GetEmailAnalyzerJobResultByIdQueryParams, type GetEmailAnalyzerJobResultByIdResponse, 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 GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type 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 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 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 SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductTag, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type 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 SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentQueryModel, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartydocumentquerymodel, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBase, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type 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 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 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 SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type 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 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 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 SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, 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 SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobRecord, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, 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 SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, 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 SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type 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 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, 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, extractManyDocumentInBatch, extractOffersForOneDocument, extractOneDocument, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailAnalyzerJobResultById, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFlowInfoById, getFlowsInfo, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, 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, 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, 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 };
117135
+ 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 CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, 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 ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type 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 GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, 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 GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type 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 GetEmailAnalyzerJobResultByIdPathParams, type GetEmailAnalyzerJobResultByIdQueryParams, type GetEmailAnalyzerJobResultByIdResponse, 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 GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type 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 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 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 SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductTag, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaProducts, 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 SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentQueryModel, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartydocumentquerymodel, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBase, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type 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 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 SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type 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 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 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 SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, 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 SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobRecord, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, 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 SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type 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 SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, 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 SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type 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 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, 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, extractManyDocumentInBatch, extractOffersForOneDocument, extractOneDocument, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasEmployees, getDiasParties, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailAnalyzerJobResultById, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFlowInfoById, getFlowsInfo, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, 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, 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, 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 };