wg-api-sdk 4.30.261 → 4.30.263

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.
@@ -2685,6 +2685,63 @@ interface paths {
2685
2685
  patch?: never;
2686
2686
  trace?: never;
2687
2687
  };
2688
+ "/v1/api/connections/outlook/mails": {
2689
+ parameters: {
2690
+ query?: never;
2691
+ header?: never;
2692
+ path?: never;
2693
+ cookie?: never;
2694
+ };
2695
+ /**
2696
+ * Get Outlook Mails
2697
+ * @description Retrieves outlook emails by broker id
2698
+ */
2699
+ get: operations["get_outlook_mails_v1_api_connections_outlook_mails_get"];
2700
+ put?: never;
2701
+ post?: never;
2702
+ delete?: never;
2703
+ options?: never;
2704
+ head?: never;
2705
+ patch?: never;
2706
+ trace?: never;
2707
+ };
2708
+ "/v1/api/connections/outlook/mailfolders": {
2709
+ parameters: {
2710
+ query?: never;
2711
+ header?: never;
2712
+ path?: never;
2713
+ cookie?: never;
2714
+ };
2715
+ /**
2716
+ * Get Outlook Mailfolders
2717
+ * @description Retrieves outlook mail folders by broker id from Microsoft Graph API
2718
+ */
2719
+ get: operations["get_outlook_mailfolders_v1_api_connections_outlook_mailfolders_get"];
2720
+ put?: never;
2721
+ post?: never;
2722
+ delete?: never;
2723
+ options?: never;
2724
+ head?: never;
2725
+ patch?: never;
2726
+ trace?: never;
2727
+ };
2728
+ "/v1/api/connections/outlook": {
2729
+ parameters: {
2730
+ query?: never;
2731
+ header?: never;
2732
+ path?: never;
2733
+ cookie?: never;
2734
+ };
2735
+ /** Get Outlook Connection Details */
2736
+ get: operations["get_outlook_connection_details_v1_api_connections_outlook_get"];
2737
+ put?: never;
2738
+ post?: never;
2739
+ delete?: never;
2740
+ options?: never;
2741
+ head?: never;
2742
+ patch?: never;
2743
+ trace?: never;
2744
+ };
2688
2745
  "/v1/api/integrations/anva/parties": {
2689
2746
  parameters: {
2690
2747
  query?: never;
@@ -9108,7 +9165,7 @@ interface components {
9108
9165
  * Timestamp
9109
9166
  * Format: date-time
9110
9167
  * @description Timestamp of when the error occured
9111
- * @default 2026-02-13T14:33:37.913623
9168
+ * @default 2026-02-17T13:43:03.249473
9112
9169
  */
9113
9170
  timestamp: string;
9114
9171
  /**
@@ -51550,6 +51607,123 @@ interface components {
51550
51607
  /** Template */
51551
51608
  template: string;
51552
51609
  };
51610
+ /** BrokerConnectionOutlookEmails */
51611
+ BrokerConnectionOutlookEmails: {
51612
+ /** Items */
51613
+ items: components["schemas"]["OutlookEmail"][];
51614
+ /** Count */
51615
+ count: number;
51616
+ };
51617
+ /** OutlookEmail */
51618
+ OutlookEmail: {
51619
+ /** Id */
51620
+ id: number;
51621
+ /**
51622
+ * Created At
51623
+ * Format: date-time
51624
+ */
51625
+ created_at: string;
51626
+ /** Outlook Id */
51627
+ outlook_id: string;
51628
+ /** Outlook Message Id */
51629
+ outlook_message_id: string;
51630
+ /** Outlook Conversation Id */
51631
+ outlook_conversation_id: string;
51632
+ /** Folder Id */
51633
+ folder_id: string;
51634
+ /** Folder */
51635
+ folder: string;
51636
+ /** Subject */
51637
+ subject: string;
51638
+ /** Body Html */
51639
+ body_html?: string;
51640
+ /** Body Text */
51641
+ body_text?: string;
51642
+ /** Body Preview */
51643
+ body_preview?: string;
51644
+ /**
51645
+ * Sent At
51646
+ * Format: date-time
51647
+ */
51648
+ sent_at: string;
51649
+ /** Has Attachments */
51650
+ has_attachments: boolean;
51651
+ /** Link */
51652
+ link: string;
51653
+ from_recipient?: components["schemas"]["OutlookMailRecepient"];
51654
+ to_recipient?: components["schemas"]["OutlookMailRecepient"];
51655
+ /** Cc Recipients */
51656
+ cc_recipients: components["schemas"]["OutlookMailRecepient"][];
51657
+ /** Bcc Recipients */
51658
+ bcc_recipients: components["schemas"]["OutlookMailRecepient"][];
51659
+ /** Reply To */
51660
+ reply_to: components["schemas"]["OutlookMailRecepient"][];
51661
+ /** Headers */
51662
+ headers?: components["schemas"]["OutlookMailHeader"][];
51663
+ };
51664
+ /** OutlookMailRecepient */
51665
+ OutlookMailRecepient: {
51666
+ /** Name */
51667
+ name: string;
51668
+ /** Email */
51669
+ email: string;
51670
+ };
51671
+ /** OutlookMailHeader */
51672
+ OutlookMailHeader: {
51673
+ /** Name */
51674
+ name: string;
51675
+ /** Value */
51676
+ value: string;
51677
+ };
51678
+ /** BrokerConnectionOutlookMailFolders */
51679
+ BrokerConnectionOutlookMailFolders: {
51680
+ /** Items */
51681
+ items: components["schemas"]["BrokerConnectionOutlookMailFolder"][];
51682
+ /** Count */
51683
+ count: number;
51684
+ };
51685
+ /** BrokerConnectionOutlookMailFolder */
51686
+ BrokerConnectionOutlookMailFolder: {
51687
+ /** Id */
51688
+ id: string;
51689
+ /** Name */
51690
+ name: string;
51691
+ /** Unread Count */
51692
+ unread_count: number;
51693
+ /** Total Count */
51694
+ total_count: number;
51695
+ };
51696
+ /** OutlookConnectionDetails */
51697
+ OutlookConnectionDetails: {
51698
+ /**
51699
+ * Created At
51700
+ * Format: date-time
51701
+ */
51702
+ created_at: string;
51703
+ /**
51704
+ * Last Run
51705
+ * Format: date-time
51706
+ */
51707
+ last_run: string;
51708
+ /** Initial Sync Completed */
51709
+ initial_sync_completed: boolean;
51710
+ /** Is Syncing */
51711
+ is_syncing: boolean;
51712
+ /** Total Emails Synced */
51713
+ total_emails_synced?: number;
51714
+ /** Last Error Message */
51715
+ last_error_message?: string;
51716
+ /**
51717
+ * Sync Started At
51718
+ * Format: date-time
51719
+ */
51720
+ sync_started_at?: string;
51721
+ /**
51722
+ * Sync Completed At
51723
+ * Format: date-time
51724
+ */
51725
+ sync_completed_at?: string;
51726
+ };
51553
51727
  /** PromotionQueryModel */
51554
51728
  PromotionQueryModel: {
51555
51729
  /** Code */
@@ -53348,7 +53522,7 @@ interface components {
53348
53522
  /**
53349
53523
  * Quote Specifications
53350
53524
  * @default {
53351
- * "contract_commencement_date": "2026-02-13"
53525
+ * "contract_commencement_date": "2026-02-17"
53352
53526
  * }
53353
53527
  */
53354
53528
  quote_specifications: components["schemas"]["QuoteSpecification"];
@@ -64437,6 +64611,13 @@ interface components {
64437
64611
  /** Total Premium */
64438
64612
  total_premium: number;
64439
64613
  payment_interval: components["schemas"]["PAYMENT_INTERVAL"];
64614
+ /** @default [
64615
+ * "MONTHLY",
64616
+ * "QUARTERLY",
64617
+ * "HALF_ANNUAL",
64618
+ * "ANNUAL"
64619
+ * ] */
64620
+ supported_payment_intervals: components["schemas"]["PAYMENT_INTERVAL"][];
64440
64621
  /**
64441
64622
  * Start Date
64442
64623
  * Format: date
@@ -64951,13 +65132,8 @@ interface components {
64951
65132
  insurance_policy_ids?: string[];
64952
65133
  /** Yellowhive Product Ids */
64953
65134
  yellowhive_product_ids?: string[];
64954
- /** Dias Product Ids */
64955
- dias_product_ids?: string[];
64956
- dias_type?: components["schemas"]["DIAS_QUESTION_TYPE"];
64957
- /** Dias Entity Id */
64958
- dias_entity_id?: number;
64959
- /** Dias Coverage Codes */
64960
- dias_coverage_codes?: number[];
65135
+ /** Dias Entities */
65136
+ dias_entities?: components["schemas"]["DiasEntityLink"][];
64961
65137
  };
64962
65138
  /** FieldMappingManager */
64963
65139
  FieldMappingManager: {
@@ -65237,12 +65413,23 @@ interface components {
65237
65413
  /** Ref */
65238
65414
  ref: string;
65239
65415
  };
65416
+ /** DiasEntityLink */
65417
+ DiasEntityLink: {
65418
+ /**
65419
+ * Dias Product Id
65420
+ * Format: uuid
65421
+ */
65422
+ dias_product_id: string;
65423
+ dias_entity_type: components["schemas"]["DIAS_ENTITY_TYPE"];
65424
+ /** Dias Entity Id */
65425
+ dias_entity_id: number;
65426
+ };
65240
65427
  /**
65241
- * DIAS_QUESTION_TYPE
65428
+ * DIAS_ENTITY_TYPE
65242
65429
  * @description An enumeration.
65243
65430
  * @enum {string}
65244
65431
  */
65245
- DIAS_QUESTION_TYPE: "COVERAGE" | "PARTY" | "OBJECT";
65432
+ DIAS_ENTITY_TYPE: "COVERAGE" | "PARTY" | "OBJECT";
65246
65433
  /** TagContentItem */
65247
65434
  TagContentItem: {
65248
65435
  /** Tag */
@@ -66083,6 +66270,10 @@ interface components {
66083
66270
  required_object_codes: number[];
66084
66271
  /** Required Party Codes */
66085
66272
  required_party_codes: number[];
66273
+ /** Expires Automatically */
66274
+ expires_automatically: boolean;
66275
+ /** Distributor Dias Id */
66276
+ distributor_dias_id: number;
66086
66277
  };
66087
66278
  /** DiasCoverage */
66088
66279
  DiasCoverage: {
@@ -71350,6 +71541,13 @@ type SchemaGenerateDnsPrefixParams = components['schemas']['generate_dns_prefix_
71350
71541
  type SchemaCampaignVerifiedDnsPrefix = components['schemas']['CampaignVerifiedDnsPrefix'];
71351
71542
  type SchemaCampaignGenerateDnsPrefix = components['schemas']['CampaignGenerateDnsPrefix'];
71352
71543
  type SchemaCampaignMailTemplateQueryModel = components['schemas']['CampaignMailTemplateQueryModel'];
71544
+ type SchemaBrokerConnectionOutlookEmails = components['schemas']['BrokerConnectionOutlookEmails'];
71545
+ type SchemaOutlookEmail = components['schemas']['OutlookEmail'];
71546
+ type SchemaOutlookMailRecepient = components['schemas']['OutlookMailRecepient'];
71547
+ type SchemaOutlookMailHeader = components['schemas']['OutlookMailHeader'];
71548
+ type SchemaBrokerConnectionOutlookMailFolders = components['schemas']['BrokerConnectionOutlookMailFolders'];
71549
+ type SchemaBrokerConnectionOutlookMailFolder = components['schemas']['BrokerConnectionOutlookMailFolder'];
71550
+ type SchemaOutlookConnectionDetails = components['schemas']['OutlookConnectionDetails'];
71353
71551
  type SchemaPromotionQueryModel = components['schemas']['PromotionQueryModel'];
71354
71552
  type SchemaMultiAffiliationInfoQueryModel = components['schemas']['MultiAffiliationInfoQueryModel'];
71355
71553
  type SchemaAffiliationInfo = components['schemas']['AffiliationInfo'];
@@ -71928,7 +72126,8 @@ type SchemaAddressRules = components['schemas']['AddressRules'];
71928
72126
  type SchemaErrorMessages = components['schemas']['ErrorMessages'];
71929
72127
  type SchemaValidator = components['schemas']['Validator'];
71930
72128
  type SchemaExternalRef = components['schemas']['ExternalRef'];
71931
- type SchemaDiasQuestionType = components['schemas']['DIAS_QUESTION_TYPE'];
72129
+ type SchemaDiasEntityLink = components['schemas']['DiasEntityLink'];
72130
+ type SchemaDiasEntityType = components['schemas']['DIAS_ENTITY_TYPE'];
71932
72131
  type SchemaTagContentItem = components['schemas']['TagContentItem'];
71933
72132
  type SchemaHandleCreateDocumentFromQuestionnaireParams = components['schemas']['handle_create_document_from_questionnaire_params'];
71934
72133
  type SchemaSessionReport = components['schemas']['SessionReport'];
@@ -86614,6 +86813,321 @@ interface operations {
86614
86813
  };
86615
86814
  };
86616
86815
  };
86816
+ get_outlook_mails_v1_api_connections_outlook_mails_get: {
86817
+ parameters: {
86818
+ query?: {
86819
+ q?: string;
86820
+ /**
86821
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
86822
+ * @example EN
86823
+ */
86824
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
86825
+ /**
86826
+ * @description Same as lang, but adds support to pass ?language as well
86827
+ * @example EN
86828
+ */
86829
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
86830
+ page?: number;
86831
+ pagelen?: number;
86832
+ };
86833
+ header?: {
86834
+ /** @description Which release to target running in 'STAGING' environment. */
86835
+ "x-release"?: string;
86836
+ };
86837
+ path?: never;
86838
+ cookie?: never;
86839
+ };
86840
+ requestBody?: never;
86841
+ responses: {
86842
+ /** @description Successful Response */
86843
+ 200: {
86844
+ headers: {
86845
+ [name: string]: unknown;
86846
+ };
86847
+ content: {
86848
+ "application/json": {
86849
+ /** Items */
86850
+ items: components["schemas"]["OutlookEmail"][];
86851
+ /** Pagination */
86852
+ pagination: {
86853
+ /**
86854
+ * Count
86855
+ * @default 1
86856
+ * @example 2
86857
+ */
86858
+ count: number;
86859
+ /**
86860
+ * Next
86861
+ * @example https://api.phoenix.dev.staging.wegroup.be/v1/api/broker/v1/api/themes?page=3&pagelen=20
86862
+ */
86863
+ next?: string;
86864
+ /**
86865
+ * Previous
86866
+ * @example https://api.phoenix.dev.staging.wegroup.be/v1/api/broker/v1/api/themes?page=1&pagelen=20
86867
+ */
86868
+ previous?: string;
86869
+ /**
86870
+ * Requested Pagelen
86871
+ * @default 20
86872
+ * @example 20
86873
+ */
86874
+ requested_pagelen: number;
86875
+ /**
86876
+ * Pagelen
86877
+ * @default 20
86878
+ * @example 20
86879
+ */
86880
+ pagelen: number;
86881
+ /** Msg */
86882
+ msg?: string;
86883
+ /**
86884
+ * Pages
86885
+ * @default 0
86886
+ * @example 1
86887
+ */
86888
+ pages: number;
86889
+ /**
86890
+ * Current
86891
+ * @default 0
86892
+ * @example 1
86893
+ */
86894
+ current: number;
86895
+ };
86896
+ };
86897
+ };
86898
+ };
86899
+ /** @description Bad Request */
86900
+ 400: {
86901
+ headers: {
86902
+ [name: string]: unknown;
86903
+ };
86904
+ content: {
86905
+ "application/json": components["schemas"]["Error_4XX"];
86906
+ };
86907
+ };
86908
+ /** @description Unauthorized */
86909
+ 401: {
86910
+ headers: {
86911
+ [name: string]: unknown;
86912
+ };
86913
+ content: {
86914
+ "application/json": components["schemas"]["Error_401"];
86915
+ };
86916
+ };
86917
+ /** @description Forbidden */
86918
+ 403: {
86919
+ headers: {
86920
+ [name: string]: unknown;
86921
+ };
86922
+ content: {
86923
+ "application/json": components["schemas"]["Error_403"];
86924
+ };
86925
+ };
86926
+ /** @description Unprocessable Content */
86927
+ 422: {
86928
+ headers: {
86929
+ [name: string]: unknown;
86930
+ };
86931
+ content: {
86932
+ "application/json": components["schemas"]["Error_422"];
86933
+ };
86934
+ };
86935
+ /** @description Too Many Requests */
86936
+ 429: {
86937
+ headers: {
86938
+ [name: string]: unknown;
86939
+ };
86940
+ content: {
86941
+ "application/json": components["schemas"]["Error_429"];
86942
+ };
86943
+ };
86944
+ /** @description Internal Server Error */
86945
+ 500: {
86946
+ headers: {
86947
+ [name: string]: unknown;
86948
+ };
86949
+ content: {
86950
+ "application/json": components["schemas"]["ServerError"];
86951
+ };
86952
+ };
86953
+ };
86954
+ };
86955
+ get_outlook_mailfolders_v1_api_connections_outlook_mailfolders_get: {
86956
+ parameters: {
86957
+ query?: {
86958
+ /**
86959
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
86960
+ * @example EN
86961
+ */
86962
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
86963
+ /**
86964
+ * @description Same as lang, but adds support to pass ?language as well
86965
+ * @example EN
86966
+ */
86967
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
86968
+ };
86969
+ header?: {
86970
+ /** @description Which release to target running in 'STAGING' environment. */
86971
+ "x-release"?: string;
86972
+ };
86973
+ path?: never;
86974
+ cookie?: never;
86975
+ };
86976
+ requestBody?: never;
86977
+ responses: {
86978
+ /** @description Successful Response */
86979
+ 200: {
86980
+ headers: {
86981
+ [name: string]: unknown;
86982
+ };
86983
+ content: {
86984
+ "application/json": components["schemas"]["BrokerConnectionOutlookMailFolders"];
86985
+ };
86986
+ };
86987
+ /** @description Bad Request */
86988
+ 400: {
86989
+ headers: {
86990
+ [name: string]: unknown;
86991
+ };
86992
+ content: {
86993
+ "application/json": components["schemas"]["Error_4XX"];
86994
+ };
86995
+ };
86996
+ /** @description Unauthorized */
86997
+ 401: {
86998
+ headers: {
86999
+ [name: string]: unknown;
87000
+ };
87001
+ content: {
87002
+ "application/json": components["schemas"]["Error_401"];
87003
+ };
87004
+ };
87005
+ /** @description Forbidden */
87006
+ 403: {
87007
+ headers: {
87008
+ [name: string]: unknown;
87009
+ };
87010
+ content: {
87011
+ "application/json": components["schemas"]["Error_403"];
87012
+ };
87013
+ };
87014
+ /** @description Unprocessable Content */
87015
+ 422: {
87016
+ headers: {
87017
+ [name: string]: unknown;
87018
+ };
87019
+ content: {
87020
+ "application/json": components["schemas"]["Error_422"];
87021
+ };
87022
+ };
87023
+ /** @description Too Many Requests */
87024
+ 429: {
87025
+ headers: {
87026
+ [name: string]: unknown;
87027
+ };
87028
+ content: {
87029
+ "application/json": components["schemas"]["Error_429"];
87030
+ };
87031
+ };
87032
+ /** @description Internal Server Error */
87033
+ 500: {
87034
+ headers: {
87035
+ [name: string]: unknown;
87036
+ };
87037
+ content: {
87038
+ "application/json": components["schemas"]["ServerError"];
87039
+ };
87040
+ };
87041
+ };
87042
+ };
87043
+ get_outlook_connection_details_v1_api_connections_outlook_get: {
87044
+ parameters: {
87045
+ query?: {
87046
+ /**
87047
+ * @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
87048
+ * @example EN
87049
+ */
87050
+ lang?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
87051
+ /**
87052
+ * @description Same as lang, but adds support to pass ?language as well
87053
+ * @example EN
87054
+ */
87055
+ language?: components["schemas"]["LANGUAGE_CODES"] | components["schemas"]["LOWER_CASE_LANGUAGE_CODES"];
87056
+ };
87057
+ header?: {
87058
+ /** @description Which release to target running in 'STAGING' environment. */
87059
+ "x-release"?: string;
87060
+ };
87061
+ path?: never;
87062
+ cookie?: never;
87063
+ };
87064
+ requestBody?: never;
87065
+ responses: {
87066
+ /** @description Successful Response */
87067
+ 200: {
87068
+ headers: {
87069
+ [name: string]: unknown;
87070
+ };
87071
+ content: {
87072
+ "application/json": components["schemas"]["OutlookConnectionDetails"];
87073
+ };
87074
+ };
87075
+ /** @description Bad Request */
87076
+ 400: {
87077
+ headers: {
87078
+ [name: string]: unknown;
87079
+ };
87080
+ content: {
87081
+ "application/json": components["schemas"]["Error_4XX"];
87082
+ };
87083
+ };
87084
+ /** @description Unauthorized */
87085
+ 401: {
87086
+ headers: {
87087
+ [name: string]: unknown;
87088
+ };
87089
+ content: {
87090
+ "application/json": components["schemas"]["Error_401"];
87091
+ };
87092
+ };
87093
+ /** @description Forbidden */
87094
+ 403: {
87095
+ headers: {
87096
+ [name: string]: unknown;
87097
+ };
87098
+ content: {
87099
+ "application/json": components["schemas"]["Error_403"];
87100
+ };
87101
+ };
87102
+ /** @description Unprocessable Content */
87103
+ 422: {
87104
+ headers: {
87105
+ [name: string]: unknown;
87106
+ };
87107
+ content: {
87108
+ "application/json": components["schemas"]["Error_422"];
87109
+ };
87110
+ };
87111
+ /** @description Too Many Requests */
87112
+ 429: {
87113
+ headers: {
87114
+ [name: string]: unknown;
87115
+ };
87116
+ content: {
87117
+ "application/json": components["schemas"]["Error_429"];
87118
+ };
87119
+ };
87120
+ /** @description Internal Server Error */
87121
+ 500: {
87122
+ headers: {
87123
+ [name: string]: unknown;
87124
+ };
87125
+ content: {
87126
+ "application/json": components["schemas"]["ServerError"];
87127
+ };
87128
+ };
87129
+ };
87130
+ };
86617
87131
  __v1_api_integrations_anva_parties_get: {
86618
87132
  parameters: {
86619
87133
  query?: {
@@ -118147,52 +118661,52 @@ type Middleware = Middleware$1;
118147
118661
  type ClientType = ReturnType<typeof createClient<paths>>;
118148
118662
  declare const wgApiClient: (options: ClientOptions) => ClientType;
118149
118663
 
118150
- declare const routeName$7O = "/v1/api/weather/info";
118151
- type GetWeatherInfoQueryParams = paths[typeof routeName$7O]['get']['parameters']['query'];
118152
- type GetWeatherInfoResponse = paths[typeof routeName$7O]['get']['responses'][200]['content']['application/json'];
118153
- type GetWeatherInfoProps = paths[typeof routeName$7O]['get']['parameters'];
118664
+ declare const routeName$7R = "/v1/api/weather/info";
118665
+ type GetWeatherInfoQueryParams = paths[typeof routeName$7R]['get']['parameters']['query'];
118666
+ type GetWeatherInfoResponse = paths[typeof routeName$7R]['get']['responses'][200]['content']['application/json'];
118667
+ type GetWeatherInfoProps = paths[typeof routeName$7R]['get']['parameters'];
118154
118668
  declare const getWeatherInfo: (props: GetWeatherInfoProps, wgApiClient: ClientType) => Promise<GetWeatherInfoResponse>;
118155
118669
 
118156
- declare const routeName$7N = "/v1/api/address/cities";
118157
- type SearchCitiesByCountryQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
118158
- type SearchCitiesByCountryResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
118159
- type SearchCitiesByCountryProps = paths[typeof routeName$7N]['get']['parameters'];
118670
+ declare const routeName$7Q = "/v1/api/address/cities";
118671
+ type SearchCitiesByCountryQueryParams = paths[typeof routeName$7Q]['get']['parameters']['query'];
118672
+ type SearchCitiesByCountryResponse = paths[typeof routeName$7Q]['get']['responses'][200]['content']['application/json'];
118673
+ type SearchCitiesByCountryProps = paths[typeof routeName$7Q]['get']['parameters'];
118160
118674
  declare const searchCitiesByCountry: (props: SearchCitiesByCountryProps, wgApiClient: ClientType) => Promise<SearchCitiesByCountryResponse>;
118161
118675
 
118162
- declare const routeName$7M = "/v1/api/address/streets";
118163
- type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
118164
- type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
118165
- type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7M]['get']['parameters'];
118676
+ declare const routeName$7P = "/v1/api/address/streets";
118677
+ type SeachStreetsByCityAndCountryQueryParams = paths[typeof routeName$7P]['get']['parameters']['query'];
118678
+ type SeachStreetsByCityAndCountryResponse = paths[typeof routeName$7P]['get']['responses'][200]['content']['application/json'];
118679
+ type SeachStreetsByCityAndCountryProps = paths[typeof routeName$7P]['get']['parameters'];
118166
118680
  declare const seachStreetsByCityAndCountry: (props: SeachStreetsByCityAndCountryProps, wgApiClient: ClientType) => Promise<SeachStreetsByCityAndCountryResponse>;
118167
118681
 
118168
- declare const routeName$7L = "/v1/api/address/search";
118169
- type SearchAddressesByCountryQueryParams = paths[typeof routeName$7L]['get']['parameters']['query'];
118170
- type SearchAddressesByCountryResponse = paths[typeof routeName$7L]['get']['responses'][200]['content']['application/json'];
118171
- type SearchAddressesByCountryProps = paths[typeof routeName$7L]['get']['parameters'];
118682
+ declare const routeName$7O = "/v1/api/address/search";
118683
+ type SearchAddressesByCountryQueryParams = paths[typeof routeName$7O]['get']['parameters']['query'];
118684
+ type SearchAddressesByCountryResponse = paths[typeof routeName$7O]['get']['responses'][200]['content']['application/json'];
118685
+ type SearchAddressesByCountryProps = paths[typeof routeName$7O]['get']['parameters'];
118172
118686
  declare const searchAddressesByCountry: (props: SearchAddressesByCountryProps, wgApiClient: ClientType) => Promise<SearchAddressesByCountryResponse>;
118173
118687
 
118174
- declare const routeName$7K = "/v1/api/address/info/premium";
118175
- type GetAddressInfoQueryParams = paths[typeof routeName$7K]['get']['parameters']['query'];
118176
- type GetAddressInfoResponse = paths[typeof routeName$7K]['get']['responses'][200]['content']['application/json'];
118177
- type GetAddressInfoProps = paths[typeof routeName$7K]['get']['parameters'];
118688
+ declare const routeName$7N = "/v1/api/address/info/premium";
118689
+ type GetAddressInfoQueryParams = paths[typeof routeName$7N]['get']['parameters']['query'];
118690
+ type GetAddressInfoResponse = paths[typeof routeName$7N]['get']['responses'][200]['content']['application/json'];
118691
+ type GetAddressInfoProps = paths[typeof routeName$7N]['get']['parameters'];
118178
118692
  declare const getAddressInfo: (props: GetAddressInfoProps, wgApiClient: ClientType) => Promise<GetAddressInfoResponse>;
118179
118693
 
118180
- declare const routeName$7J = "/v1/api/address/info/freemium";
118181
- type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7J]['get']['parameters']['query'];
118182
- type GetAddressInfoFreemiumResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
118183
- type GetAddressInfoFreemiumProps = paths[typeof routeName$7J]['get']['parameters'];
118694
+ declare const routeName$7M = "/v1/api/address/info/freemium";
118695
+ type GetAddressInfoFreemiumQueryParams = paths[typeof routeName$7M]['get']['parameters']['query'];
118696
+ type GetAddressInfoFreemiumResponse = paths[typeof routeName$7M]['get']['responses'][200]['content']['application/json'];
118697
+ type GetAddressInfoFreemiumProps = paths[typeof routeName$7M]['get']['parameters'];
118184
118698
  declare const getAddressInfoFreemium: (props: GetAddressInfoFreemiumProps, wgApiClient: ClientType) => Promise<GetAddressInfoFreemiumResponse>;
118185
118699
 
118186
- declare const routeName$7I = "/v1/api/advisory-reports";
118187
- type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7I]['get']['parameters']['query'];
118188
- type GetAllAdvisoryReportsResponse = paths[typeof routeName$7I]['get']['responses'][200]['content']['application/json'];
118189
- type GetAllAdvisoryReportsProps = paths[typeof routeName$7I]['get']['parameters'];
118700
+ declare const routeName$7L = "/v1/api/advisory-reports";
118701
+ type GetAllAdvisoryReportsQueryParams = paths[typeof routeName$7L]['get']['parameters']['query'];
118702
+ type GetAllAdvisoryReportsResponse = paths[typeof routeName$7L]['get']['responses'][200]['content']['application/json'];
118703
+ type GetAllAdvisoryReportsProps = paths[typeof routeName$7L]['get']['parameters'];
118190
118704
  declare const getAllAdvisoryReports: (props: GetAllAdvisoryReportsProps, wgApiClient: ClientType) => Promise<GetAllAdvisoryReportsResponse>;
118191
118705
 
118192
- declare const routeName$7H = "/v1/api/advisory-reports";
118193
- type CreateAdvisoryReportBody = paths[typeof routeName$7H]['post']['requestBody']['content']['application/json'];
118194
- type CreateAdvisoryReportQueryParams = paths[typeof routeName$7H]['post']['parameters']['query'];
118195
- type CreateAdvisoryReportResponse = paths[typeof routeName$7H]['post']['responses'][201]['content']['application/json'];
118706
+ declare const routeName$7K = "/v1/api/advisory-reports";
118707
+ type CreateAdvisoryReportBody = paths[typeof routeName$7K]['post']['requestBody']['content']['application/json'];
118708
+ type CreateAdvisoryReportQueryParams = paths[typeof routeName$7K]['post']['parameters']['query'];
118709
+ type CreateAdvisoryReportResponse = paths[typeof routeName$7K]['post']['responses'][201]['content']['application/json'];
118196
118710
  interface CreateAdvisoryReportProps {
118197
118711
  body: CreateAdvisoryReportBody;
118198
118712
  params: {
@@ -118201,17 +118715,17 @@ interface CreateAdvisoryReportProps {
118201
118715
  }
118202
118716
  declare const createAdvisoryReport: (props: CreateAdvisoryReportProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportResponse>;
118203
118717
 
118204
- declare const routeName$7G = "/v1/api/advisory-reports/{report_id}";
118205
- type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7G]['get']['parameters']['path'];
118206
- type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7G]['get']['parameters']['query'];
118207
- type GetAdvisoryReportByIdResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
118208
- type GetAdvisoryReportByIdProps = paths[typeof routeName$7G]['get']['parameters'];
118718
+ declare const routeName$7J = "/v1/api/advisory-reports/{report_id}";
118719
+ type GetAdvisoryReportByIdPathParams = paths[typeof routeName$7J]['get']['parameters']['path'];
118720
+ type GetAdvisoryReportByIdQueryParams = paths[typeof routeName$7J]['get']['parameters']['query'];
118721
+ type GetAdvisoryReportByIdResponse = paths[typeof routeName$7J]['get']['responses'][200]['content']['application/json'];
118722
+ type GetAdvisoryReportByIdProps = paths[typeof routeName$7J]['get']['parameters'];
118209
118723
  declare const getAdvisoryReportById: (props: GetAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportByIdResponse>;
118210
118724
 
118211
- declare const routeName$7F = "/v1/api/advisory-reports/{report_id}";
118212
- type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7F]['delete']['parameters']['path'];
118213
- type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7F]['delete']['parameters']['query'];
118214
- type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7F]['delete']['responses'][200]['content']['application/json'];
118725
+ declare const routeName$7I = "/v1/api/advisory-reports/{report_id}";
118726
+ type DeleteAdvisoryReportRevisionPathParams = paths[typeof routeName$7I]['delete']['parameters']['path'];
118727
+ type DeleteAdvisoryReportRevisionQueryParams = paths[typeof routeName$7I]['delete']['parameters']['query'];
118728
+ type DeleteAdvisoryReportRevisionResponse = paths[typeof routeName$7I]['delete']['responses'][200]['content']['application/json'];
118215
118729
  interface DeleteAdvisoryReportRevisionProps {
118216
118730
  params: {
118217
118731
  query: DeleteAdvisoryReportRevisionQueryParams;
@@ -118220,11 +118734,11 @@ interface DeleteAdvisoryReportRevisionProps {
118220
118734
  }
118221
118735
  declare const deleteAdvisoryReportRevision: (props: DeleteAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportRevisionResponse>;
118222
118736
 
118223
- declare const routeName$7E = "/v1/api/advisory-reports/{report_id}";
118224
- type UpdateAdvisoryReportBody = paths[typeof routeName$7E]['patch']['requestBody']['content']['application/json'];
118225
- type UpdateAdvisoryReportPathParams = paths[typeof routeName$7E]['patch']['parameters']['path'];
118226
- type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7E]['patch']['parameters']['query'];
118227
- type UpdateAdvisoryReportResponse = paths[typeof routeName$7E]['patch']['responses'][200]['content']['application/json'];
118737
+ declare const routeName$7H = "/v1/api/advisory-reports/{report_id}";
118738
+ type UpdateAdvisoryReportBody = paths[typeof routeName$7H]['patch']['requestBody']['content']['application/json'];
118739
+ type UpdateAdvisoryReportPathParams = paths[typeof routeName$7H]['patch']['parameters']['path'];
118740
+ type UpdateAdvisoryReportQueryParams = paths[typeof routeName$7H]['patch']['parameters']['query'];
118741
+ type UpdateAdvisoryReportResponse = paths[typeof routeName$7H]['patch']['responses'][200]['content']['application/json'];
118228
118742
  interface UpdateAdvisoryReportProps {
118229
118743
  body: UpdateAdvisoryReportBody;
118230
118744
  params: {
@@ -118234,18 +118748,18 @@ interface UpdateAdvisoryReportProps {
118234
118748
  }
118235
118749
  declare const updateAdvisoryReport: (props: UpdateAdvisoryReportProps, wgApiClient: ClientType) => Promise<UpdateAdvisoryReportResponse>;
118236
118750
 
118237
- declare const routeName$7D = "/v1/api/advisory-reports/{report_id}/events";
118238
- type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7D]['get']['parameters']['path'];
118239
- type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7D]['get']['parameters']['query'];
118240
- type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7D]['get']['responses'][200]['content']['application/json'];
118241
- type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7D]['get']['parameters'];
118751
+ declare const routeName$7G = "/v1/api/advisory-reports/{report_id}/events";
118752
+ type GetEventsByAdvisoryReportIdPathParams = paths[typeof routeName$7G]['get']['parameters']['path'];
118753
+ type GetEventsByAdvisoryReportIdQueryParams = paths[typeof routeName$7G]['get']['parameters']['query'];
118754
+ type GetEventsByAdvisoryReportIdResponse = paths[typeof routeName$7G]['get']['responses'][200]['content']['application/json'];
118755
+ type GetEventsByAdvisoryReportIdProps = paths[typeof routeName$7G]['get']['parameters'];
118242
118756
  declare const getEventsByAdvisoryReportId: (props: GetEventsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetEventsByAdvisoryReportIdResponse>;
118243
118757
 
118244
- declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/email-inquiries";
118245
- type SendAdvisoryReportAsMailBody = paths[typeof routeName$7C]['post']['requestBody']['content']['application/json'];
118246
- type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7C]['post']['parameters']['path'];
118247
- type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7C]['post']['parameters']['query'];
118248
- type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7C]['post']['responses'][201]['content']['application/json'];
118758
+ declare const routeName$7F = "/v1/api/advisory-reports/{report_id}/email-inquiries";
118759
+ type SendAdvisoryReportAsMailBody = paths[typeof routeName$7F]['post']['requestBody']['content']['application/json'];
118760
+ type SendAdvisoryReportAsMailPathParams = paths[typeof routeName$7F]['post']['parameters']['path'];
118761
+ type SendAdvisoryReportAsMailQueryParams = paths[typeof routeName$7F]['post']['parameters']['query'];
118762
+ type SendAdvisoryReportAsMailResponse = paths[typeof routeName$7F]['post']['responses'][201]['content']['application/json'];
118249
118763
  interface SendAdvisoryReportAsMailProps {
118250
118764
  body: SendAdvisoryReportAsMailBody;
118251
118765
  params: {
@@ -118255,10 +118769,10 @@ interface SendAdvisoryReportAsMailProps {
118255
118769
  }
118256
118770
  declare const sendAdvisoryReportAsMail: (props: SendAdvisoryReportAsMailProps, wgApiClient: ClientType) => Promise<SendAdvisoryReportAsMailResponse>;
118257
118771
 
118258
- declare const routeName$7B = "/v1/api/advisory-reports/{report_id}/docx";
118259
- type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7B]['post']['parameters']['path'];
118260
- type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7B]['post']['parameters']['query'];
118261
- type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7B]['post']['responses'][200]['content']['application/json'];
118772
+ declare const routeName$7E = "/v1/api/advisory-reports/{report_id}/docx";
118773
+ type GenerateDocxDocumentOfAdvisoryReportByIdPathParams = paths[typeof routeName$7E]['post']['parameters']['path'];
118774
+ type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7E]['post']['parameters']['query'];
118775
+ type GenerateDocxDocumentOfAdvisoryReportByIdResponse = paths[typeof routeName$7E]['post']['responses'][200]['content']['application/json'];
118262
118776
  interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
118263
118777
  params: {
118264
118778
  query: GenerateDocxDocumentOfAdvisoryReportByIdQueryParams;
@@ -118267,17 +118781,17 @@ interface GenerateDocxDocumentOfAdvisoryReportByIdProps {
118267
118781
  }
118268
118782
  declare const generateDocxDocumentOfAdvisoryReportById: (props: GenerateDocxDocumentOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GenerateDocxDocumentOfAdvisoryReportByIdResponse>;
118269
118783
 
118270
- declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/pdf";
118271
- type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7A]['get']['parameters']['path'];
118272
- type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7A]['get']['parameters']['query'];
118273
- type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7A]['get']['responses'][307]['content']['application/json'];
118274
- type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7A]['get']['parameters'];
118784
+ declare const routeName$7D = "/v1/api/advisory-reports/{report_id}/pdf";
118785
+ type GetPdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7D]['get']['parameters']['path'];
118786
+ type GetPdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7D]['get']['parameters']['query'];
118787
+ type GetPdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7D]['get']['responses'][307]['content']['application/json'];
118788
+ type GetPdfOfAdvisoryReportByIdProps = paths[typeof routeName$7D]['get']['parameters'];
118275
118789
  declare const getPdfOfAdvisoryReportById: (props: GetPdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GetPdfOfAdvisoryReportByIdResponse>;
118276
118790
 
118277
- declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/pdf";
118278
- type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7z]['post']['parameters']['path'];
118279
- type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7z]['post']['parameters']['query'];
118280
- type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7z]['post']['responses'][200]['content']['application/json'];
118791
+ declare const routeName$7C = "/v1/api/advisory-reports/{report_id}/pdf";
118792
+ type GeneratePdfOfAdvisoryReportByIdPathParams = paths[typeof routeName$7C]['post']['parameters']['path'];
118793
+ type GeneratePdfOfAdvisoryReportByIdQueryParams = paths[typeof routeName$7C]['post']['parameters']['query'];
118794
+ type GeneratePdfOfAdvisoryReportByIdResponse = paths[typeof routeName$7C]['post']['responses'][200]['content']['application/json'];
118281
118795
  interface GeneratePdfOfAdvisoryReportByIdProps {
118282
118796
  params: {
118283
118797
  query: GeneratePdfOfAdvisoryReportByIdQueryParams;
@@ -118286,10 +118800,10 @@ interface GeneratePdfOfAdvisoryReportByIdProps {
118286
118800
  }
118287
118801
  declare const generatePdfOfAdvisoryReportById: (props: GeneratePdfOfAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<GeneratePdfOfAdvisoryReportByIdResponse>;
118288
118802
 
118289
- declare const routeName$7y = "/v1/api/advisory-report-front-page-pdf";
118290
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
118291
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
118292
- type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
118803
+ declare const routeName$7B = "/v1/api/advisory-report-front-page-pdf";
118804
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody = paths[typeof routeName$7B]['post']['requestBody']['content']['application/json'];
118805
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams = paths[typeof routeName$7B]['post']['parameters']['query'];
118806
+ type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse = paths[typeof routeName$7B]['post']['responses'][201]['content']['application/json'];
118293
118807
  interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
118294
118808
  body: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody;
118295
118809
  params: {
@@ -118298,11 +118812,11 @@ interface GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps {
118298
118812
  }
118299
118813
  declare const generateStandaloneFrontPagePdfOfAdvisoryReportAsExample: (props: GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleProps, wgApiClient: ClientType) => Promise<GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse>;
118300
118814
 
118301
- declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/acceptances";
118302
- type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7x]['post']['requestBody']['content']['application/json'];
118303
- type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
118304
- type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
118305
- type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7x]['post']['responses'][200]['content']['application/json'];
118815
+ declare const routeName$7A = "/v1/api/advisory-reports/{report_id}/acceptances";
118816
+ type AcceptOrRejectAnAdvisoryReportBody = paths[typeof routeName$7A]['post']['requestBody']['content']['application/json'];
118817
+ type AcceptOrRejectAnAdvisoryReportPathParams = paths[typeof routeName$7A]['post']['parameters']['path'];
118818
+ type AcceptOrRejectAnAdvisoryReportQueryParams = paths[typeof routeName$7A]['post']['parameters']['query'];
118819
+ type AcceptOrRejectAnAdvisoryReportResponse = paths[typeof routeName$7A]['post']['responses'][200]['content']['application/json'];
118306
118820
  interface AcceptOrRejectAnAdvisoryReportProps {
118307
118821
  body: AcceptOrRejectAnAdvisoryReportBody;
118308
118822
  params: {
@@ -118312,11 +118826,11 @@ interface AcceptOrRejectAnAdvisoryReportProps {
118312
118826
  }
118313
118827
  declare const acceptOrRejectAnAdvisoryReport: (props: AcceptOrRejectAnAdvisoryReportProps, wgApiClient: ClientType) => Promise<AcceptOrRejectAnAdvisoryReportResponse>;
118314
118828
 
118315
- declare const routeName$7w = "/v1/api/advisory-reports/{report_id}/conversations";
118316
- type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7w]['post']['requestBody']['content']['application/json'];
118317
- type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7w]['post']['parameters']['path'];
118318
- type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7w]['post']['parameters']['query'];
118319
- type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7w]['post']['responses'][201]['content']['application/json'];
118829
+ declare const routeName$7z = "/v1/api/advisory-reports/{report_id}/conversations";
118830
+ type LinkConversationToAdvisoryReportBody = paths[typeof routeName$7z]['post']['requestBody']['content']['application/json'];
118831
+ type LinkConversationToAdvisoryReportPathParams = paths[typeof routeName$7z]['post']['parameters']['path'];
118832
+ type LinkConversationToAdvisoryReportQueryParams = paths[typeof routeName$7z]['post']['parameters']['query'];
118833
+ type LinkConversationToAdvisoryReportResponse = paths[typeof routeName$7z]['post']['responses'][201]['content']['application/json'];
118320
118834
  interface LinkConversationToAdvisoryReportProps {
118321
118835
  body: LinkConversationToAdvisoryReportBody;
118322
118836
  params: {
@@ -118326,11 +118840,11 @@ interface LinkConversationToAdvisoryReportProps {
118326
118840
  }
118327
118841
  declare const linkConversationToAdvisoryReport: (props: LinkConversationToAdvisoryReportProps, wgApiClient: ClientType) => Promise<LinkConversationToAdvisoryReportResponse>;
118328
118842
 
118329
- declare const routeName$7v = "/v2/api/advisory-reports/{report_id}/revisions";
118330
- type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7v]['post']['requestBody']['content']['application/json'];
118331
- type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7v]['post']['parameters']['path'];
118332
- type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7v]['post']['parameters']['query'];
118333
- type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7v]['post']['responses'][201]['content']['application/json'];
118843
+ declare const routeName$7y = "/v2/api/advisory-reports/{report_id}/revisions";
118844
+ type CreateAdvisoryReportRevisionV2Body = paths[typeof routeName$7y]['post']['requestBody']['content']['application/json'];
118845
+ type CreateAdvisoryReportRevisionV2PathParams = paths[typeof routeName$7y]['post']['parameters']['path'];
118846
+ type CreateAdvisoryReportRevisionV2QueryParams = paths[typeof routeName$7y]['post']['parameters']['query'];
118847
+ type CreateAdvisoryReportRevisionV2Response = paths[typeof routeName$7y]['post']['responses'][201]['content']['application/json'];
118334
118848
  interface CreateAdvisoryReportRevisionV2Props {
118335
118849
  body: CreateAdvisoryReportRevisionV2Body;
118336
118850
  params: {
@@ -118340,11 +118854,11 @@ interface CreateAdvisoryReportRevisionV2Props {
118340
118854
  }
118341
118855
  declare const createAdvisoryReportRevisionV2: (props: CreateAdvisoryReportRevisionV2Props, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionV2Response>;
118342
118856
 
118343
- declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/revisions";
118344
- type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7u]['post']['requestBody']['content']['application/json'];
118345
- type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7u]['post']['parameters']['path'];
118346
- type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7u]['post']['parameters']['query'];
118347
- type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7u]['post']['responses'][201]['content']['application/json'];
118857
+ declare const routeName$7x = "/v1/api/advisory-reports/{report_id}/revisions";
118858
+ type CreateAdvisoryReportRevisionBody = paths[typeof routeName$7x]['post']['requestBody']['content']['application/json'];
118859
+ type CreateAdvisoryReportRevisionPathParams = paths[typeof routeName$7x]['post']['parameters']['path'];
118860
+ type CreateAdvisoryReportRevisionQueryParams = paths[typeof routeName$7x]['post']['parameters']['query'];
118861
+ type CreateAdvisoryReportRevisionResponse = paths[typeof routeName$7x]['post']['responses'][201]['content']['application/json'];
118348
118862
  interface CreateAdvisoryReportRevisionProps {
118349
118863
  body: CreateAdvisoryReportRevisionBody;
118350
118864
  params: {
@@ -118354,10 +118868,10 @@ interface CreateAdvisoryReportRevisionProps {
118354
118868
  }
118355
118869
  declare const createAdvisoryReportRevision: (props: CreateAdvisoryReportRevisionProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportRevisionResponse>;
118356
118870
 
118357
- declare const routeName$7t = "/v2/api/advisory-reports/{report_id}";
118358
- type DeleteAdvisoryReportPathParams = paths[typeof routeName$7t]['delete']['parameters']['path'];
118359
- type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7t]['delete']['parameters']['query'];
118360
- type DeleteAdvisoryReportResponse = paths[typeof routeName$7t]['delete']['responses'][200]['content']['application/json'];
118871
+ declare const routeName$7w = "/v2/api/advisory-reports/{report_id}";
118872
+ type DeleteAdvisoryReportPathParams = paths[typeof routeName$7w]['delete']['parameters']['path'];
118873
+ type DeleteAdvisoryReportQueryParams = paths[typeof routeName$7w]['delete']['parameters']['query'];
118874
+ type DeleteAdvisoryReportResponse = paths[typeof routeName$7w]['delete']['responses'][200]['content']['application/json'];
118361
118875
  interface DeleteAdvisoryReportProps {
118362
118876
  params: {
118363
118877
  query: DeleteAdvisoryReportQueryParams;
@@ -118366,11 +118880,11 @@ interface DeleteAdvisoryReportProps {
118366
118880
  }
118367
118881
  declare const deleteAdvisoryReport: (props: DeleteAdvisoryReportProps, wgApiClient: ClientType) => Promise<DeleteAdvisoryReportResponse>;
118368
118882
 
118369
- declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/clauses";
118370
- type PutClausesForReportBody = paths[typeof routeName$7s]['put']['requestBody']['content']['application/json'];
118371
- type PutClausesForReportPathParams = paths[typeof routeName$7s]['put']['parameters']['path'];
118372
- type PutClausesForReportQueryParams = paths[typeof routeName$7s]['put']['parameters']['query'];
118373
- type PutClausesForReportResponse = paths[typeof routeName$7s]['put']['responses'][200]['content']['application/json'];
118883
+ declare const routeName$7v = "/v1/api/advisory-reports/{report_id}/clauses";
118884
+ type PutClausesForReportBody = paths[typeof routeName$7v]['put']['requestBody']['content']['application/json'];
118885
+ type PutClausesForReportPathParams = paths[typeof routeName$7v]['put']['parameters']['path'];
118886
+ type PutClausesForReportQueryParams = paths[typeof routeName$7v]['put']['parameters']['query'];
118887
+ type PutClausesForReportResponse = paths[typeof routeName$7v]['put']['responses'][200]['content']['application/json'];
118374
118888
  interface PutClausesForReportProps {
118375
118889
  body: PutClausesForReportBody;
118376
118890
  params: {
@@ -118380,9 +118894,9 @@ interface PutClausesForReportProps {
118380
118894
  }
118381
118895
  declare const putClausesForReport: (props: PutClausesForReportProps, wgApiClient: ClientType) => Promise<PutClausesForReportResponse>;
118382
118896
 
118383
- declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/personalise-advices";
118384
- type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7r]['post']['parameters']['path'];
118385
- type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7r]['post']['responses'][200]['content']['application/json'];
118897
+ declare const routeName$7u = "/v1/api/advisory-reports/{report_id}/personalise-advices";
118898
+ type GeneratePersonalizationAdviceForAdvisoryReportPathParams = paths[typeof routeName$7u]['post']['parameters']['path'];
118899
+ type GeneratePersonalizationAdviceForAdvisoryReportResponse = paths[typeof routeName$7u]['post']['responses'][200]['content']['application/json'];
118386
118900
  interface GeneratePersonalizationAdviceForAdvisoryReportProps {
118387
118901
  params: {
118388
118902
  path: GeneratePersonalizationAdviceForAdvisoryReportPathParams;
@@ -118390,18 +118904,18 @@ interface GeneratePersonalizationAdviceForAdvisoryReportProps {
118390
118904
  }
118391
118905
  declare const generatePersonalizationAdviceForAdvisoryReport: (props: GeneratePersonalizationAdviceForAdvisoryReportProps, wgApiClient: ClientType) => Promise<GeneratePersonalizationAdviceForAdvisoryReportResponse>;
118392
118906
 
118393
- declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/settings/steps";
118394
- type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7q]['get']['parameters']['path'];
118395
- type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7q]['get']['parameters']['query'];
118396
- type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7q]['get']['responses'][200]['content']['application/json'];
118397
- type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7q]['get']['parameters'];
118907
+ declare const routeName$7t = "/v1/api/advisory-reports/{report_id}/settings/steps";
118908
+ type GetStepSettingsByAdvisoryReportIdPathParams = paths[typeof routeName$7t]['get']['parameters']['path'];
118909
+ type GetStepSettingsByAdvisoryReportIdQueryParams = paths[typeof routeName$7t]['get']['parameters']['query'];
118910
+ type GetStepSettingsByAdvisoryReportIdResponse = paths[typeof routeName$7t]['get']['responses'][200]['content']['application/json'];
118911
+ type GetStepSettingsByAdvisoryReportIdProps = paths[typeof routeName$7t]['get']['parameters'];
118398
118912
  declare const getStepSettingsByAdvisoryReportId: (props: GetStepSettingsByAdvisoryReportIdProps, wgApiClient: ClientType) => Promise<GetStepSettingsByAdvisoryReportIdResponse>;
118399
118913
 
118400
- declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/settings/steps";
118401
- type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7p]['put']['requestBody']['content']['application/json'];
118402
- type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7p]['put']['parameters']['path'];
118403
- type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7p]['put']['parameters']['query'];
118404
- type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7p]['put']['responses'][200]['content']['application/json'];
118914
+ declare const routeName$7s = "/v1/api/advisory-reports/{report_id}/settings/steps";
118915
+ type CreateAdvisoryReportStepSettingsBody = paths[typeof routeName$7s]['put']['requestBody']['content']['application/json'];
118916
+ type CreateAdvisoryReportStepSettingsPathParams = paths[typeof routeName$7s]['put']['parameters']['path'];
118917
+ type CreateAdvisoryReportStepSettingsQueryParams = paths[typeof routeName$7s]['put']['parameters']['query'];
118918
+ type CreateAdvisoryReportStepSettingsResponse = paths[typeof routeName$7s]['put']['responses'][200]['content']['application/json'];
118405
118919
  interface CreateAdvisoryReportStepSettingsProps {
118406
118920
  body: CreateAdvisoryReportStepSettingsBody;
118407
118921
  params: {
@@ -118411,11 +118925,11 @@ interface CreateAdvisoryReportStepSettingsProps {
118411
118925
  }
118412
118926
  declare const createAdvisoryReportStepSettings: (props: CreateAdvisoryReportStepSettingsProps, wgApiClient: ClientType) => Promise<CreateAdvisoryReportStepSettingsResponse>;
118413
118927
 
118414
- declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/risk-domains";
118415
- type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7o]['post']['requestBody']['content']['application/json'];
118416
- type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['post']['parameters']['path'];
118417
- type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['post']['parameters']['query'];
118418
- type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['post']['responses'][201]['content']['application/json'];
118928
+ declare const routeName$7r = "/v1/api/advisory-reports/{report_id}/risk-domains";
118929
+ type CreateRiskDomainForAdvisoryReportByIdBody = paths[typeof routeName$7r]['post']['requestBody']['content']['application/json'];
118930
+ type CreateRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7r]['post']['parameters']['path'];
118931
+ type CreateRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7r]['post']['parameters']['query'];
118932
+ type CreateRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7r]['post']['responses'][201]['content']['application/json'];
118419
118933
  interface CreateRiskDomainForAdvisoryReportByIdProps {
118420
118934
  body: CreateRiskDomainForAdvisoryReportByIdBody;
118421
118935
  params: {
@@ -118425,10 +118939,10 @@ interface CreateRiskDomainForAdvisoryReportByIdProps {
118425
118939
  }
118426
118940
  declare const createRiskDomainForAdvisoryReportById: (props: CreateRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainForAdvisoryReportByIdResponse>;
118427
118941
 
118428
- declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
118429
- type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7n]['delete']['parameters']['path'];
118430
- type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7n]['delete']['parameters']['query'];
118431
- type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7n]['delete']['responses'][200]['content']['application/json'];
118942
+ declare const routeName$7q = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}";
118943
+ type DeleteRiskDomainForAdvisoryReportByIdPathParams = paths[typeof routeName$7q]['delete']['parameters']['path'];
118944
+ type DeleteRiskDomainForAdvisoryReportByIdQueryParams = paths[typeof routeName$7q]['delete']['parameters']['query'];
118945
+ type DeleteRiskDomainForAdvisoryReportByIdResponse = paths[typeof routeName$7q]['delete']['responses'][200]['content']['application/json'];
118432
118946
  interface DeleteRiskDomainForAdvisoryReportByIdProps {
118433
118947
  params: {
118434
118948
  query: DeleteRiskDomainForAdvisoryReportByIdQueryParams;
@@ -118437,11 +118951,11 @@ interface DeleteRiskDomainForAdvisoryReportByIdProps {
118437
118951
  }
118438
118952
  declare const deleteRiskDomainForAdvisoryReportById: (props: DeleteRiskDomainForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainForAdvisoryReportByIdResponse>;
118439
118953
 
118440
- declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
118441
- type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7m]['post']['requestBody']['content']['application/json'];
118442
- type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['post']['parameters']['path'];
118443
- type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['post']['parameters']['query'];
118444
- type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['post']['responses'][201]['content']['application/json'];
118954
+ declare const routeName$7p = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice";
118955
+ type CreateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7p]['post']['requestBody']['content']['application/json'];
118956
+ type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7p]['post']['parameters']['path'];
118957
+ type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7p]['post']['parameters']['query'];
118958
+ type CreateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7p]['post']['responses'][201]['content']['application/json'];
118445
118959
  interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
118446
118960
  body: CreateRiskDomainAdviceForAdvisoryReportByIdBody;
118447
118961
  params: {
@@ -118451,10 +118965,10 @@ interface CreateRiskDomainAdviceForAdvisoryReportByIdProps {
118451
118965
  }
118452
118966
  declare const createRiskDomainAdviceForAdvisoryReportById: (props: CreateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainAdviceForAdvisoryReportByIdResponse>;
118453
118967
 
118454
- declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118455
- type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7l]['delete']['parameters']['path'];
118456
- type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7l]['delete']['parameters']['query'];
118457
- type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7l]['delete']['responses'][200]['content']['application/json'];
118968
+ declare const routeName$7o = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118969
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7o]['delete']['parameters']['path'];
118970
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7o]['delete']['parameters']['query'];
118971
+ type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7o]['delete']['responses'][200]['content']['application/json'];
118458
118972
  interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
118459
118973
  params: {
118460
118974
  query: DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams;
@@ -118463,11 +118977,11 @@ interface DeleteRiskDomainAdviceForAdvisoryReportByIdProps {
118463
118977
  }
118464
118978
  declare const deleteRiskDomainAdviceForAdvisoryReportById: (props: DeleteRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainAdviceForAdvisoryReportByIdResponse>;
118465
118979
 
118466
- declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118467
- type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7k]['patch']['requestBody']['content']['application/json'];
118468
- type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7k]['patch']['parameters']['path'];
118469
- type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7k]['patch']['parameters']['query'];
118470
- type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7k]['patch']['responses'][201]['content']['application/json'];
118980
+ declare const routeName$7n = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}";
118981
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7n]['patch']['requestBody']['content']['application/json'];
118982
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7n]['patch']['parameters']['path'];
118983
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7n]['patch']['parameters']['query'];
118984
+ type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7n]['patch']['responses'][201]['content']['application/json'];
118471
118985
  interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
118472
118986
  body: UpdateRiskDomainAdviceForAdvisoryReportByIdBody;
118473
118987
  params: {
@@ -118477,11 +118991,11 @@ interface UpdateRiskDomainAdviceForAdvisoryReportByIdProps {
118477
118991
  }
118478
118992
  declare const updateRiskDomainAdviceForAdvisoryReportById: (props: UpdateRiskDomainAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainAdviceForAdvisoryReportByIdResponse>;
118479
118993
 
118480
- declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
118481
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7j]['put']['requestBody']['content']['application/json'];
118482
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7j]['put']['parameters']['path'];
118483
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7j]['put']['parameters']['query'];
118484
- type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7j]['put']['responses'][201]['content']['application/json'];
118994
+ declare const routeName$7m = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/advice/{advice_id}/actions";
118995
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody = paths[typeof routeName$7m]['put']['requestBody']['content']['application/json'];
118996
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams = paths[typeof routeName$7m]['put']['parameters']['path'];
118997
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams = paths[typeof routeName$7m]['put']['parameters']['query'];
118998
+ type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse = paths[typeof routeName$7m]['put']['responses'][201]['content']['application/json'];
118485
118999
  interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
118486
119000
  body: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody;
118487
119001
  params: {
@@ -118491,11 +119005,11 @@ interface CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps {
118491
119005
  }
118492
119006
  declare const createRiskDomainActionFromAdviceForAdvisoryReportById: (props: CreateRiskDomainActionFromAdviceForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse>;
118493
119007
 
118494
- declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
118495
- type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7i]['post']['requestBody']['content']['application/json'];
118496
- type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['post']['parameters']['path'];
118497
- type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['post']['parameters']['query'];
118498
- type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7i]['post']['responses'][201]['content']['application/json'];
119008
+ declare const routeName$7l = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions";
119009
+ type CreateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7l]['post']['requestBody']['content']['application/json'];
119010
+ type CreateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7l]['post']['parameters']['path'];
119011
+ type CreateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7l]['post']['parameters']['query'];
119012
+ type CreateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7l]['post']['responses'][201]['content']['application/json'];
118499
119013
  interface CreateRiskDomainActionForAdvisoryReportByIdProps {
118500
119014
  body: CreateRiskDomainActionForAdvisoryReportByIdBody;
118501
119015
  params: {
@@ -118505,10 +119019,10 @@ interface CreateRiskDomainActionForAdvisoryReportByIdProps {
118505
119019
  }
118506
119020
  declare const createRiskDomainActionForAdvisoryReportById: (props: CreateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateRiskDomainActionForAdvisoryReportByIdResponse>;
118507
119021
 
118508
- declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118509
- type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['delete']['parameters']['path'];
118510
- type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['delete']['parameters']['query'];
118511
- type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7h]['delete']['responses'][200]['content']['application/json'];
119022
+ declare const routeName$7k = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
119023
+ type DeleteRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7k]['delete']['parameters']['path'];
119024
+ type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7k]['delete']['parameters']['query'];
119025
+ type DeleteRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7k]['delete']['responses'][200]['content']['application/json'];
118512
119026
  interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
118513
119027
  params: {
118514
119028
  query: DeleteRiskDomainActionForAdvisoryReportByIdQueryParams;
@@ -118517,11 +119031,11 @@ interface DeleteRiskDomainActionForAdvisoryReportByIdProps {
118517
119031
  }
118518
119032
  declare const deleteRiskDomainActionForAdvisoryReportById: (props: DeleteRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteRiskDomainActionForAdvisoryReportByIdResponse>;
118519
119033
 
118520
- declare const routeName$7g = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
118521
- type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7g]['patch']['requestBody']['content']['application/json'];
118522
- type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7g]['patch']['parameters']['path'];
118523
- type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7g]['patch']['parameters']['query'];
118524
- type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7g]['patch']['responses'][200]['content']['application/json'];
119034
+ declare const routeName$7j = "/v1/api/advisory-reports/{report_id}/risk-domains/{risk_domain_id}/actions/{action_id}";
119035
+ type UpdateRiskDomainActionForAdvisoryReportByIdBody = paths[typeof routeName$7j]['patch']['requestBody']['content']['application/json'];
119036
+ type UpdateRiskDomainActionForAdvisoryReportByIdPathParams = paths[typeof routeName$7j]['patch']['parameters']['path'];
119037
+ type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams = paths[typeof routeName$7j]['patch']['parameters']['query'];
119038
+ type UpdateRiskDomainActionForAdvisoryReportByIdResponse = paths[typeof routeName$7j]['patch']['responses'][200]['content']['application/json'];
118525
119039
  interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
118526
119040
  body: UpdateRiskDomainActionForAdvisoryReportByIdBody;
118527
119041
  params: {
@@ -118531,11 +119045,11 @@ interface UpdateRiskDomainActionForAdvisoryReportByIdProps {
118531
119045
  }
118532
119046
  declare const updateRiskDomainActionForAdvisoryReportById: (props: UpdateRiskDomainActionForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<UpdateRiskDomainActionForAdvisoryReportByIdResponse>;
118533
119047
 
118534
- declare const routeName$7f = "/v1/api/advisory-reports/{report_id}/insurance-policies";
118535
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7f]['put']['requestBody']['content']['application/json'];
118536
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7f]['put']['parameters']['path'];
118537
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7f]['put']['parameters']['query'];
118538
- type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7f]['put']['responses'][200]['content']['application/json'];
119048
+ declare const routeName$7i = "/v1/api/advisory-reports/{report_id}/insurance-policies";
119049
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody = paths[typeof routeName$7i]['put']['requestBody']['content']['application/json'];
119050
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7i]['put']['parameters']['path'];
119051
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7i]['put']['parameters']['query'];
119052
+ type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7i]['put']['responses'][200]['content']['application/json'];
118539
119053
  interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
118540
119054
  body: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody;
118541
119055
  params: {
@@ -118545,10 +119059,10 @@ interface CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps {
118545
119059
  }
118546
119060
  declare const createOrReplaceInsurancePolicyForAdvisoryReportById: (props: CreateOrReplaceInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse>;
118547
119061
 
118548
- declare const routeName$7e = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
118549
- type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7e]['delete']['parameters']['path'];
118550
- type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7e]['delete']['parameters']['query'];
118551
- type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7e]['delete']['responses'][200]['content']['application/json'];
119062
+ declare const routeName$7h = "/v1/api/advisory-reports/{report_id}/insurance-policies/{insurance_policy_id}";
119063
+ type DeleteInsurancePolicyForAdvisoryReportByIdPathParams = paths[typeof routeName$7h]['delete']['parameters']['path'];
119064
+ type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams = paths[typeof routeName$7h]['delete']['parameters']['query'];
119065
+ type DeleteInsurancePolicyForAdvisoryReportByIdResponse = paths[typeof routeName$7h]['delete']['responses'][200]['content']['application/json'];
118552
119066
  interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
118553
119067
  params: {
118554
119068
  query: DeleteInsurancePolicyForAdvisoryReportByIdQueryParams;
@@ -118557,11 +119071,11 @@ interface DeleteInsurancePolicyForAdvisoryReportByIdProps {
118557
119071
  }
118558
119072
  declare const deleteInsurancePolicyForAdvisoryReportById: (props: DeleteInsurancePolicyForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<DeleteInsurancePolicyForAdvisoryReportByIdResponse>;
118559
119073
 
118560
- declare const routeName$7d = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
118561
- type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7d]['put']['requestBody']['content']['application/json'];
118562
- type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7d]['put']['parameters']['path'];
118563
- type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7d]['put']['parameters']['query'];
118564
- type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7d]['put']['responses'][200]['content']['application/json'];
119074
+ declare const routeName$7g = "/v1/api/advisory-reports/{report_id}/insurance-policies/order";
119075
+ type OrderInsurancePolciesOfAdvisoryReportBody = paths[typeof routeName$7g]['put']['requestBody']['content']['application/json'];
119076
+ type OrderInsurancePolciesOfAdvisoryReportPathParams = paths[typeof routeName$7g]['put']['parameters']['path'];
119077
+ type OrderInsurancePolciesOfAdvisoryReportQueryParams = paths[typeof routeName$7g]['put']['parameters']['query'];
119078
+ type OrderInsurancePolciesOfAdvisoryReportResponse = paths[typeof routeName$7g]['put']['responses'][200]['content']['application/json'];
118565
119079
  interface OrderInsurancePolciesOfAdvisoryReportProps {
118566
119080
  body: OrderInsurancePolciesOfAdvisoryReportBody;
118567
119081
  params: {
@@ -118571,11 +119085,11 @@ interface OrderInsurancePolciesOfAdvisoryReportProps {
118571
119085
  }
118572
119086
  declare const orderInsurancePolciesOfAdvisoryReport: (props: OrderInsurancePolciesOfAdvisoryReportProps, wgApiClient: ClientType) => Promise<OrderInsurancePolciesOfAdvisoryReportResponse>;
118573
119087
 
118574
- declare const routeName$7c = "/v1/api/advisory-reports/{report_id}/policy-packages";
118575
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7c]['put']['requestBody']['content']['application/json'];
118576
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7c]['put']['parameters']['path'];
118577
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7c]['put']['parameters']['query'];
118578
- type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7c]['put']['responses'][200]['content']['application/json'];
119088
+ declare const routeName$7f = "/v1/api/advisory-reports/{report_id}/policy-packages";
119089
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody = paths[typeof routeName$7f]['put']['requestBody']['content']['application/json'];
119090
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams = paths[typeof routeName$7f]['put']['parameters']['path'];
119091
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams = paths[typeof routeName$7f]['put']['parameters']['query'];
119092
+ type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse = paths[typeof routeName$7f]['put']['responses'][200]['content']['application/json'];
118579
119093
  interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
118580
119094
  body: CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody;
118581
119095
  params: {
@@ -118585,39 +119099,39 @@ interface CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps {
118585
119099
  }
118586
119100
  declare const createOrReplacePolicyPackagesForAdvisoryReportById: (props: CreateOrReplacePolicyPackagesForAdvisoryReportByIdProps, wgApiClient: ClientType) => Promise<CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse>;
118587
119101
 
118588
- declare const routeName$7b = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
118589
- type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7b]['get']['parameters']['path'];
118590
- type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7b]['get']['parameters']['query'];
118591
- type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7b]['get']['responses'][200]['content']['application/json'];
118592
- type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7b]['get']['parameters'];
119102
+ declare const routeName$7e = "/v1/api/advisory-reports/{report_id_1}/diff/{report_id_2}";
119103
+ type GetAdvisoryReportRevisionDiffPathParams = paths[typeof routeName$7e]['get']['parameters']['path'];
119104
+ type GetAdvisoryReportRevisionDiffQueryParams = paths[typeof routeName$7e]['get']['parameters']['query'];
119105
+ type GetAdvisoryReportRevisionDiffResponse = paths[typeof routeName$7e]['get']['responses'][200]['content']['application/json'];
119106
+ type GetAdvisoryReportRevisionDiffProps = paths[typeof routeName$7e]['get']['parameters'];
118593
119107
  declare const getAdvisoryReportRevisionDiff: (props: GetAdvisoryReportRevisionDiffProps, wgApiClient: ClientType) => Promise<GetAdvisoryReportRevisionDiffResponse>;
118594
119108
 
118595
- declare const routeName$7a = "/v1/api/affiliations";
118596
- type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
119109
+ declare const routeName$7d = "/v1/api/affiliations";
119110
+ type GetAllAvailableAffiliationsResponse = paths[typeof routeName$7d]['get']['responses'][200]['content']['application/json'];
118597
119111
  declare const getAllAvailableAffiliations: (wgApiClient: ClientType) => Promise<GetAllAvailableAffiliationsResponse>;
118598
119112
 
118599
- declare const routeName$79 = "/v1/api/anvaflows/labels";
118600
- type GetAnvaLabelsQueryParams = paths[typeof routeName$79]['get']['parameters']['query'];
118601
- type GetAnvaLabelsResponse = paths[typeof routeName$79]['get']['responses'][200]['content']['application/json'];
118602
- type GetAnvaLabelsProps = paths[typeof routeName$79]['get']['parameters'];
119113
+ declare const routeName$7c = "/v1/api/anvaflows/labels";
119114
+ type GetAnvaLabelsQueryParams = paths[typeof routeName$7c]['get']['parameters']['query'];
119115
+ type GetAnvaLabelsResponse = paths[typeof routeName$7c]['get']['responses'][200]['content']['application/json'];
119116
+ type GetAnvaLabelsProps = paths[typeof routeName$7c]['get']['parameters'];
118603
119117
  declare const getAnvaLabels: (props: GetAnvaLabelsProps, wgApiClient: ClientType) => Promise<GetAnvaLabelsResponse>;
118604
119118
 
118605
- declare const routeName$78 = "/v1/api/anvaflows/supported-insurances";
118606
- type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
118607
- type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
118608
- type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$78]['get']['parameters'];
119119
+ declare const routeName$7b = "/v1/api/anvaflows/supported-insurances";
119120
+ type GetSupportedAnvaflowInsurancesQueryParams = paths[typeof routeName$7b]['get']['parameters']['query'];
119121
+ type GetSupportedAnvaflowInsurancesResponse = paths[typeof routeName$7b]['get']['responses'][200]['content']['application/json'];
119122
+ type GetSupportedAnvaflowInsurancesProps = paths[typeof routeName$7b]['get']['parameters'];
118609
119123
  declare const getSupportedAnvaflowInsurances: (props: GetSupportedAnvaflowInsurancesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsurancesResponse>;
118610
119124
 
118611
- declare const routeName$77 = "/v1/api/anvaflows/supported-tags";
118612
- type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$77]['get']['parameters']['query'];
118613
- type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
118614
- type GetSupportedAnvaflowTagsProps = paths[typeof routeName$77]['get']['parameters'];
119125
+ declare const routeName$7a = "/v1/api/anvaflows/supported-tags";
119126
+ type GetSupportedAnvaflowTagsQueryParams = paths[typeof routeName$7a]['get']['parameters']['query'];
119127
+ type GetSupportedAnvaflowTagsResponse = paths[typeof routeName$7a]['get']['responses'][200]['content']['application/json'];
119128
+ type GetSupportedAnvaflowTagsProps = paths[typeof routeName$7a]['get']['parameters'];
118615
119129
  declare const getSupportedAnvaflowTags: (props: GetSupportedAnvaflowTagsProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowTagsResponse>;
118616
119130
 
118617
- declare const routeName$76 = "/v1/api/anvaflows/supported-tags";
118618
- type CreateAnvaflowTagsBody = paths[typeof routeName$76]['put']['requestBody']['content']['application/json'];
118619
- type CreateAnvaflowTagsQueryParams = paths[typeof routeName$76]['put']['parameters']['query'];
118620
- type CreateAnvaflowTagsResponse = paths[typeof routeName$76]['put']['responses'][200]['content']['application/json'];
119131
+ declare const routeName$79 = "/v1/api/anvaflows/supported-tags";
119132
+ type CreateAnvaflowTagsBody = paths[typeof routeName$79]['put']['requestBody']['content']['application/json'];
119133
+ type CreateAnvaflowTagsQueryParams = paths[typeof routeName$79]['put']['parameters']['query'];
119134
+ type CreateAnvaflowTagsResponse = paths[typeof routeName$79]['put']['responses'][200]['content']['application/json'];
118621
119135
  interface CreateAnvaflowTagsProps {
118622
119136
  body: CreateAnvaflowTagsBody;
118623
119137
  params: {
@@ -118626,35 +119140,35 @@ interface CreateAnvaflowTagsProps {
118626
119140
  }
118627
119141
  declare const createAnvaflowTags: (props: CreateAnvaflowTagsProps, wgApiClient: ClientType) => Promise<CreateAnvaflowTagsResponse>;
118628
119142
 
118629
- declare const routeName$75 = "/v1/api/anvaflows/supported-coverages";
118630
- type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$75]['get']['parameters']['query'];
118631
- type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$75]['get']['responses'][200]['content']['application/json'];
118632
- type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$75]['get']['parameters'];
119143
+ declare const routeName$78 = "/v1/api/anvaflows/supported-coverages";
119144
+ type GetSupportedAnvaflowCoveragesQueryParams = paths[typeof routeName$78]['get']['parameters']['query'];
119145
+ type GetSupportedAnvaflowCoveragesResponse = paths[typeof routeName$78]['get']['responses'][200]['content']['application/json'];
119146
+ type GetSupportedAnvaflowCoveragesProps = paths[typeof routeName$78]['get']['parameters'];
118633
119147
  declare const getSupportedAnvaflowCoverages: (props: GetSupportedAnvaflowCoveragesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesResponse>;
118634
119148
 
118635
- declare const routeName$74 = "/v1/api/anvaflows/supported-adn-coverages";
118636
- type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$74]['get']['parameters']['query'];
118637
- type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$74]['get']['responses'][200]['content']['application/json'];
118638
- type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$74]['get']['parameters'];
119149
+ declare const routeName$77 = "/v1/api/anvaflows/supported-adn-coverages";
119150
+ type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams = paths[typeof routeName$77]['get']['parameters']['query'];
119151
+ type GetSupportedAnvaflowCoveragesGroupedByAdnResponse = paths[typeof routeName$77]['get']['responses'][200]['content']['application/json'];
119152
+ type GetSupportedAnvaflowCoveragesGroupedByAdnProps = paths[typeof routeName$77]['get']['parameters'];
118639
119153
  declare const getSupportedAnvaflowCoveragesGroupedByAdn: (props: GetSupportedAnvaflowCoveragesGroupedByAdnProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowCoveragesGroupedByAdnResponse>;
118640
119154
 
118641
- declare const routeName$73 = "/v1/api/anvaflows/supported-insurance-companies";
118642
- type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$73]['get']['parameters']['query'];
118643
- type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$73]['get']['responses'][200]['content']['application/json'];
118644
- type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$73]['get']['parameters'];
119155
+ declare const routeName$76 = "/v1/api/anvaflows/supported-insurance-companies";
119156
+ type GetSupportedAnvaflowInsuranceCompaniesQueryParams = paths[typeof routeName$76]['get']['parameters']['query'];
119157
+ type GetSupportedAnvaflowInsuranceCompaniesResponse = paths[typeof routeName$76]['get']['responses'][200]['content']['application/json'];
119158
+ type GetSupportedAnvaflowInsuranceCompaniesProps = paths[typeof routeName$76]['get']['parameters'];
118645
119159
  declare const getSupportedAnvaflowInsuranceCompanies: (props: GetSupportedAnvaflowInsuranceCompaniesProps, wgApiClient: ClientType) => Promise<GetSupportedAnvaflowInsuranceCompaniesResponse>;
118646
119160
 
118647
- declare const routeName$72 = "/v1/api/anvaflows/mutation-reasons";
118648
- type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$72]['get']['parameters']['query'];
118649
- type GetAnvaMutationReasonsResponse = paths[typeof routeName$72]['get']['responses'][200]['content']['application/json'];
118650
- type GetAnvaMutationReasonsProps = paths[typeof routeName$72]['get']['parameters'];
119161
+ declare const routeName$75 = "/v1/api/anvaflows/mutation-reasons";
119162
+ type GetAnvaMutationReasonsQueryParams = paths[typeof routeName$75]['get']['parameters']['query'];
119163
+ type GetAnvaMutationReasonsResponse = paths[typeof routeName$75]['get']['responses'][200]['content']['application/json'];
119164
+ type GetAnvaMutationReasonsProps = paths[typeof routeName$75]['get']['parameters'];
118651
119165
  declare const getAnvaMutationReasons: (props: GetAnvaMutationReasonsProps, wgApiClient: ClientType) => Promise<GetAnvaMutationReasonsResponse>;
118652
119166
 
118653
- declare const routeName$71 = "/v1/api/anvaflows/{session_id}/calculate";
118654
- type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$71]['post']['requestBody']['content']['application/json'];
118655
- type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$71]['post']['parameters']['path'];
118656
- type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
118657
- type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$71]['post']['responses'][200]['content']['application/json'];
119167
+ declare const routeName$74 = "/v1/api/anvaflows/{session_id}/calculate";
119168
+ type CalculateAnvaquotesBySessionIdBody = paths[typeof routeName$74]['post']['requestBody']['content']['application/json'];
119169
+ type CalculateAnvaquotesBySessionIdPathParams = paths[typeof routeName$74]['post']['parameters']['path'];
119170
+ type CalculateAnvaquotesBySessionIdQueryParams = paths[typeof routeName$74]['post']['parameters']['query'];
119171
+ type CalculateAnvaquotesBySessionIdResponse = paths[typeof routeName$74]['post']['responses'][200]['content']['application/json'];
118658
119172
  interface CalculateAnvaquotesBySessionIdProps {
118659
119173
  body: CalculateAnvaquotesBySessionIdBody;
118660
119174
  params: {
@@ -118664,11 +119178,11 @@ interface CalculateAnvaquotesBySessionIdProps {
118664
119178
  }
118665
119179
  declare const calculateAnvaquotesBySessionId: (props: CalculateAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<CalculateAnvaquotesBySessionIdResponse>;
118666
119180
 
118667
- declare const routeName$70 = "/v2/api/anvaflows/{session_id}/calculate";
118668
- type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$70]['post']['requestBody']['content']['application/json'];
118669
- type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$70]['post']['parameters']['path'];
118670
- type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
118671
- type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$70]['post']['responses'][202]['content']['application/json'];
119181
+ declare const routeName$73 = "/v2/api/anvaflows/{session_id}/calculate";
119182
+ type EnqueueCalculationAnvaquotesBySessionIdBody = paths[typeof routeName$73]['post']['requestBody']['content']['application/json'];
119183
+ type EnqueueCalculationAnvaquotesBySessionIdPathParams = paths[typeof routeName$73]['post']['parameters']['path'];
119184
+ type EnqueueCalculationAnvaquotesBySessionIdQueryParams = paths[typeof routeName$73]['post']['parameters']['query'];
119185
+ type EnqueueCalculationAnvaquotesBySessionIdResponse = paths[typeof routeName$73]['post']['responses'][202]['content']['application/json'];
118672
119186
  interface EnqueueCalculationAnvaquotesBySessionIdProps {
118673
119187
  body: EnqueueCalculationAnvaquotesBySessionIdBody;
118674
119188
  params: {
@@ -118678,11 +119192,11 @@ interface EnqueueCalculationAnvaquotesBySessionIdProps {
118678
119192
  }
118679
119193
  declare const enqueueCalculationAnvaquotesBySessionId: (props: EnqueueCalculationAnvaquotesBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueCalculationAnvaquotesBySessionIdResponse>;
118680
119194
 
118681
- declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
118682
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
118683
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
118684
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
118685
- type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$6$]['post']['responses'][200]['content']['application/json'];
119195
+ declare const routeName$72 = "/v1/api/anvaflows/{session_id}/anvaproducts/{anva_product_id}/calculate";
119196
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody = paths[typeof routeName$72]['post']['requestBody']['content']['application/json'];
119197
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams = paths[typeof routeName$72]['post']['parameters']['path'];
119198
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams = paths[typeof routeName$72]['post']['parameters']['query'];
119199
+ type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse = paths[typeof routeName$72]['post']['responses'][200]['content']['application/json'];
118686
119200
  interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
118687
119201
  body: RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody;
118688
119202
  params: {
@@ -118692,10 +119206,10 @@ interface RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps {
118692
119206
  }
118693
119207
  declare const recalculateOneAnvaquoteByAnvaProductIdSessionId: (props: RecalculateOneAnvaquoteByAnvaProductIdSessionIdProps, wgApiClient: ClientType) => Promise<RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse>;
118694
119208
 
118695
- declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
118696
- type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
118697
- type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
118698
- type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6_]['post']['responses'][201]['content']['application/json'];
119209
+ declare const routeName$71 = "/v1/api/anvaflows/{session_id}/send-offer-to-anva";
119210
+ type SendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$71]['post']['parameters']['path'];
119211
+ type SendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$71]['post']['parameters']['query'];
119212
+ type SendOfferToAnvaBySessionIdResponse = paths[typeof routeName$71]['post']['responses'][201]['content']['application/json'];
118699
119213
  interface SendOfferToAnvaBySessionIdProps {
118700
119214
  params: {
118701
119215
  query: SendOfferToAnvaBySessionIdQueryParams;
@@ -118704,10 +119218,10 @@ interface SendOfferToAnvaBySessionIdProps {
118704
119218
  }
118705
119219
  declare const sendOfferToAnvaBySessionId: (props: SendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferToAnvaBySessionIdResponse>;
118706
119220
 
118707
- declare const routeName$6Z = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
118708
- type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$6Z]['post']['parameters']['path'];
118709
- type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
118710
- type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$6Z]['post']['responses'][202]['content']['application/json'];
119221
+ declare const routeName$70 = "/v2/api/anvaflows/{session_id}/send-offer-to-anva";
119222
+ type EnqueueSendOfferToAnvaBySessionIdPathParams = paths[typeof routeName$70]['post']['parameters']['path'];
119223
+ type EnqueueSendOfferToAnvaBySessionIdQueryParams = paths[typeof routeName$70]['post']['parameters']['query'];
119224
+ type EnqueueSendOfferToAnvaBySessionIdResponse = paths[typeof routeName$70]['post']['responses'][202]['content']['application/json'];
118711
119225
  interface EnqueueSendOfferToAnvaBySessionIdProps {
118712
119226
  params: {
118713
119227
  query: EnqueueSendOfferToAnvaBySessionIdQueryParams;
@@ -118716,11 +119230,11 @@ interface EnqueueSendOfferToAnvaBySessionIdProps {
118716
119230
  }
118717
119231
  declare const enqueueSendOfferToAnvaBySessionId: (props: EnqueueSendOfferToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendOfferToAnvaBySessionIdResponse>;
118718
119232
 
118719
- declare const routeName$6Y = "/v1/api/anvaflows/{session_id}/send-offer-mail";
118720
- type SendOfferMailBySessionIdBody = paths[typeof routeName$6Y]['post']['requestBody']['content']['application/json'];
118721
- type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6Y]['post']['parameters']['path'];
118722
- type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6Y]['post']['parameters']['query'];
118723
- type SendOfferMailBySessionIdResponse = paths[typeof routeName$6Y]['post']['responses'][201]['content']['application/json'];
119233
+ declare const routeName$6$ = "/v1/api/anvaflows/{session_id}/send-offer-mail";
119234
+ type SendOfferMailBySessionIdBody = paths[typeof routeName$6$]['post']['requestBody']['content']['application/json'];
119235
+ type SendOfferMailBySessionIdPathParams = paths[typeof routeName$6$]['post']['parameters']['path'];
119236
+ type SendOfferMailBySessionIdQueryParams = paths[typeof routeName$6$]['post']['parameters']['query'];
119237
+ type SendOfferMailBySessionIdResponse = paths[typeof routeName$6$]['post']['responses'][201]['content']['application/json'];
118724
119238
  interface SendOfferMailBySessionIdProps {
118725
119239
  body: SendOfferMailBySessionIdBody;
118726
119240
  params: {
@@ -118730,11 +119244,11 @@ interface SendOfferMailBySessionIdProps {
118730
119244
  }
118731
119245
  declare const sendOfferMailBySessionId: (props: SendOfferMailBySessionIdProps, wgApiClient: ClientType) => Promise<SendOfferMailBySessionIdResponse>;
118732
119246
 
118733
- declare const routeName$6X = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
118734
- type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6X]['post']['requestBody']['content']['application/json'];
118735
- type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6X]['post']['parameters']['path'];
118736
- type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6X]['post']['parameters']['query'];
118737
- type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6X]['post']['responses'][202]['content']['application/json'];
119247
+ declare const routeName$6_ = "/v1/api/anvaflows/{session_id}/send-custom-quotes-to-anva";
119248
+ type EnqueueSendCustomQuotesToAnvaBySessionIdBody = paths[typeof routeName$6_]['post']['requestBody']['content']['application/json'];
119249
+ type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams = paths[typeof routeName$6_]['post']['parameters']['path'];
119250
+ type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams = paths[typeof routeName$6_]['post']['parameters']['query'];
119251
+ type EnqueueSendCustomQuotesToAnvaBySessionIdResponse = paths[typeof routeName$6_]['post']['responses'][202]['content']['application/json'];
118738
119252
  interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
118739
119253
  body: EnqueueSendCustomQuotesToAnvaBySessionIdBody;
118740
119254
  params: {
@@ -118744,11 +119258,11 @@ interface EnqueueSendCustomQuotesToAnvaBySessionIdProps {
118744
119258
  }
118745
119259
  declare const enqueueSendCustomQuotesToAnvaBySessionId: (props: EnqueueSendCustomQuotesToAnvaBySessionIdProps, wgApiClient: ClientType) => Promise<EnqueueSendCustomQuotesToAnvaBySessionIdResponse>;
118746
119260
 
118747
- declare const routeName$6W = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
118748
- type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6W]['post']['requestBody']['content']['application/json'];
118749
- type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6W]['post']['parameters']['path'];
118750
- type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6W]['post']['parameters']['query'];
118751
- type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6W]['post']['responses'][200]['content']['application/json'];
119261
+ declare const routeName$6Z = "/v1/api/anvaflows/{session_id}/recalculate-simulation";
119262
+ type RecalculateSimulationBySessionIdBody = paths[typeof routeName$6Z]['post']['requestBody']['content']['application/json'];
119263
+ type RecalculateSimulationBySessionIdPathParams = paths[typeof routeName$6Z]['post']['parameters']['path'];
119264
+ type RecalculateSimulationBySessionIdQueryParams = paths[typeof routeName$6Z]['post']['parameters']['query'];
119265
+ type RecalculateSimulationBySessionIdResponse = paths[typeof routeName$6Z]['post']['responses'][200]['content']['application/json'];
118752
119266
  interface RecalculateSimulationBySessionIdProps {
118753
119267
  body: RecalculateSimulationBySessionIdBody;
118754
119268
  params: {
@@ -118758,23 +119272,23 @@ interface RecalculateSimulationBySessionIdProps {
118758
119272
  }
118759
119273
  declare const recalculateSimulationBySessionId: (props: RecalculateSimulationBySessionIdProps, wgApiClient: ClientType) => Promise<RecalculateSimulationBySessionIdResponse>;
118760
119274
 
118761
- declare const routeName$6V = "/v1/api/anvaflows/{session_id}/collection-methods";
118762
- type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6V]['get']['parameters']['path'];
118763
- type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6V]['get']['parameters']['query'];
118764
- type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6V]['get']['responses'][200]['content']['application/json'];
118765
- type GetAnvaCollectionMethodsProps = paths[typeof routeName$6V]['get']['parameters'];
119275
+ declare const routeName$6Y = "/v1/api/anvaflows/{session_id}/collection-methods";
119276
+ type GetAnvaCollectionMethodsPathParams = paths[typeof routeName$6Y]['get']['parameters']['path'];
119277
+ type GetAnvaCollectionMethodsQueryParams = paths[typeof routeName$6Y]['get']['parameters']['query'];
119278
+ type GetAnvaCollectionMethodsResponse = paths[typeof routeName$6Y]['get']['responses'][200]['content']['application/json'];
119279
+ type GetAnvaCollectionMethodsProps = paths[typeof routeName$6Y]['get']['parameters'];
118766
119280
  declare const getAnvaCollectionMethods: (props: GetAnvaCollectionMethodsProps, wgApiClient: ClientType) => Promise<GetAnvaCollectionMethodsResponse>;
118767
119281
 
118768
- declare const routeName$6U = "/v1/api/anvaflows/closing-questions";
118769
- type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6U]['get']['parameters']['query'];
118770
- type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6U]['get']['responses'][200]['content']['application/json'];
118771
- type GetAnvaClosingQuestionsProps = paths[typeof routeName$6U]['get']['parameters'];
119282
+ declare const routeName$6X = "/v1/api/anvaflows/closing-questions";
119283
+ type GetAnvaClosingQuestionsQueryParams = paths[typeof routeName$6X]['get']['parameters']['query'];
119284
+ type GetAnvaClosingQuestionsResponse = paths[typeof routeName$6X]['get']['responses'][200]['content']['application/json'];
119285
+ type GetAnvaClosingQuestionsProps = paths[typeof routeName$6X]['get']['parameters'];
118772
119286
  declare const getAnvaClosingQuestions: (props: GetAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<GetAnvaClosingQuestionsResponse>;
118773
119287
 
118774
- declare const routeName$6T = "/v1/api/anvaflows/closing-questions";
118775
- type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6T]['put']['requestBody']['content']['application/json'];
118776
- type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6T]['put']['parameters']['query'];
118777
- type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6T]['put']['responses'][200]['content']['application/json'];
119288
+ declare const routeName$6W = "/v1/api/anvaflows/closing-questions";
119289
+ type UpsertAnvaClosingQuestionsBody = paths[typeof routeName$6W]['put']['requestBody']['content']['application/json'];
119290
+ type UpsertAnvaClosingQuestionsQueryParams = paths[typeof routeName$6W]['put']['parameters']['query'];
119291
+ type UpsertAnvaClosingQuestionsResponse = paths[typeof routeName$6W]['put']['responses'][200]['content']['application/json'];
118778
119292
  interface UpsertAnvaClosingQuestionsProps {
118779
119293
  body: UpsertAnvaClosingQuestionsBody;
118780
119294
  params: {
@@ -118783,10 +119297,10 @@ interface UpsertAnvaClosingQuestionsProps {
118783
119297
  }
118784
119298
  declare const upsertAnvaClosingQuestions: (props: UpsertAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<UpsertAnvaClosingQuestionsResponse>;
118785
119299
 
118786
- declare const routeName$6S = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
118787
- type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6S]['delete']['parameters']['path'];
118788
- type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6S]['delete']['parameters']['query'];
118789
- type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6S]['delete']['responses'][200]['content']['application/json'];
119300
+ declare const routeName$6V = "/v1/api/anvaflows/closing-questions/{closing_question_id}";
119301
+ type DeleteAnvaClosingQuestionsPathParams = paths[typeof routeName$6V]['delete']['parameters']['path'];
119302
+ type DeleteAnvaClosingQuestionsQueryParams = paths[typeof routeName$6V]['delete']['parameters']['query'];
119303
+ type DeleteAnvaClosingQuestionsResponse = paths[typeof routeName$6V]['delete']['responses'][200]['content']['application/json'];
118790
119304
  interface DeleteAnvaClosingQuestionsProps {
118791
119305
  params: {
118792
119306
  query: DeleteAnvaClosingQuestionsQueryParams;
@@ -118795,11 +119309,11 @@ interface DeleteAnvaClosingQuestionsProps {
118795
119309
  }
118796
119310
  declare const deleteAnvaClosingQuestions: (props: DeleteAnvaClosingQuestionsProps, wgApiClient: ClientType) => Promise<DeleteAnvaClosingQuestionsResponse>;
118797
119311
 
118798
- declare const routeName$6R = "/v1/api/anvaflows/{session_id}/anva-party";
118799
- type CreateAnvaPartyBody = paths[typeof routeName$6R]['post']['requestBody']['content']['application/json'];
118800
- type CreateAnvaPartyPathParams = paths[typeof routeName$6R]['post']['parameters']['path'];
118801
- type CreateAnvaPartyQueryParams = paths[typeof routeName$6R]['post']['parameters']['query'];
118802
- type CreateAnvaPartyResponse = paths[typeof routeName$6R]['post']['responses'][201]['content']['application/json'];
119312
+ declare const routeName$6U = "/v1/api/anvaflows/{session_id}/anva-party";
119313
+ type CreateAnvaPartyBody = paths[typeof routeName$6U]['post']['requestBody']['content']['application/json'];
119314
+ type CreateAnvaPartyPathParams = paths[typeof routeName$6U]['post']['parameters']['path'];
119315
+ type CreateAnvaPartyQueryParams = paths[typeof routeName$6U]['post']['parameters']['query'];
119316
+ type CreateAnvaPartyResponse = paths[typeof routeName$6U]['post']['responses'][201]['content']['application/json'];
118803
119317
  interface CreateAnvaPartyProps {
118804
119318
  body: CreateAnvaPartyBody;
118805
119319
  params: {
@@ -118809,16 +119323,16 @@ interface CreateAnvaPartyProps {
118809
119323
  }
118810
119324
  declare const createAnvaParty: (props: CreateAnvaPartyProps, wgApiClient: ClientType) => Promise<CreateAnvaPartyResponse>;
118811
119325
 
118812
- declare const routeName$6Q = "/v1/api/anvaproducts";
118813
- type GetAnvaproductsQueryParams = paths[typeof routeName$6Q]['get']['parameters']['query'];
118814
- type GetAnvaproductsResponse = paths[typeof routeName$6Q]['get']['responses'][200]['content']['application/json'];
118815
- type GetAnvaproductsProps = paths[typeof routeName$6Q]['get']['parameters'];
119326
+ declare const routeName$6T = "/v1/api/anvaproducts";
119327
+ type GetAnvaproductsQueryParams = paths[typeof routeName$6T]['get']['parameters']['query'];
119328
+ type GetAnvaproductsResponse = paths[typeof routeName$6T]['get']['responses'][200]['content']['application/json'];
119329
+ type GetAnvaproductsProps = paths[typeof routeName$6T]['get']['parameters'];
118816
119330
  declare const getAnvaproducts: (props: GetAnvaproductsProps, wgApiClient: ClientType) => Promise<GetAnvaproductsResponse>;
118817
119331
 
118818
- declare const routeName$6P = "/v1/api/anvaproducts/import";
118819
- type ImportAnvaproductBody = paths[typeof routeName$6P]['post']['requestBody']['content']['application/json'];
118820
- type ImportAnvaproductQueryParams = paths[typeof routeName$6P]['post']['parameters']['query'];
118821
- type ImportAnvaproductResponse = paths[typeof routeName$6P]['post']['responses'][200]['content']['application/json'];
119332
+ declare const routeName$6S = "/v1/api/anvaproducts/import";
119333
+ type ImportAnvaproductBody = paths[typeof routeName$6S]['post']['requestBody']['content']['application/json'];
119334
+ type ImportAnvaproductQueryParams = paths[typeof routeName$6S]['post']['parameters']['query'];
119335
+ type ImportAnvaproductResponse = paths[typeof routeName$6S]['post']['responses'][200]['content']['application/json'];
118822
119336
  interface ImportAnvaproductProps {
118823
119337
  body: ImportAnvaproductBody;
118824
119338
  params: {
@@ -118827,18 +119341,18 @@ interface ImportAnvaproductProps {
118827
119341
  }
118828
119342
  declare const importAnvaproduct: (props: ImportAnvaproductProps, wgApiClient: ClientType) => Promise<ImportAnvaproductResponse>;
118829
119343
 
118830
- declare const routeName$6O = "/v1/api/anvaproducts/{anva_product_id}";
118831
- type GetAnvaproductByIdPathParams = paths[typeof routeName$6O]['get']['parameters']['path'];
118832
- type GetAnvaproductByIdQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
118833
- type GetAnvaproductByIdResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
118834
- type GetAnvaproductByIdProps = paths[typeof routeName$6O]['get']['parameters'];
119344
+ declare const routeName$6R = "/v1/api/anvaproducts/{anva_product_id}";
119345
+ type GetAnvaproductByIdPathParams = paths[typeof routeName$6R]['get']['parameters']['path'];
119346
+ type GetAnvaproductByIdQueryParams = paths[typeof routeName$6R]['get']['parameters']['query'];
119347
+ type GetAnvaproductByIdResponse = paths[typeof routeName$6R]['get']['responses'][200]['content']['application/json'];
119348
+ type GetAnvaproductByIdProps = paths[typeof routeName$6R]['get']['parameters'];
118835
119349
  declare const getAnvaproductById: (props: GetAnvaproductByIdProps, wgApiClient: ClientType) => Promise<GetAnvaproductByIdResponse>;
118836
119350
 
118837
- declare const routeName$6N = "/v1/api/anvaproducts/{anva_product_id}";
118838
- type PatchAnvaproductByIdBody = paths[typeof routeName$6N]['patch']['requestBody']['content']['application/json'];
118839
- type PatchAnvaproductByIdPathParams = paths[typeof routeName$6N]['patch']['parameters']['path'];
118840
- type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6N]['patch']['parameters']['query'];
118841
- type PatchAnvaproductByIdResponse = paths[typeof routeName$6N]['patch']['responses'][200]['content']['application/json'];
119351
+ declare const routeName$6Q = "/v1/api/anvaproducts/{anva_product_id}";
119352
+ type PatchAnvaproductByIdBody = paths[typeof routeName$6Q]['patch']['requestBody']['content']['application/json'];
119353
+ type PatchAnvaproductByIdPathParams = paths[typeof routeName$6Q]['patch']['parameters']['path'];
119354
+ type PatchAnvaproductByIdQueryParams = paths[typeof routeName$6Q]['patch']['parameters']['query'];
119355
+ type PatchAnvaproductByIdResponse = paths[typeof routeName$6Q]['patch']['responses'][200]['content']['application/json'];
118842
119356
  interface PatchAnvaproductByIdProps {
118843
119357
  body: PatchAnvaproductByIdBody;
118844
119358
  params: {
@@ -118848,11 +119362,11 @@ interface PatchAnvaproductByIdProps {
118848
119362
  }
118849
119363
  declare const patchAnvaproductById: (props: PatchAnvaproductByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductByIdResponse>;
118850
119364
 
118851
- declare const routeName$6M = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
118852
- type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6M]['patch']['requestBody']['content']['application/json'];
118853
- type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6M]['patch']['parameters']['path'];
118854
- type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6M]['patch']['parameters']['query'];
118855
- type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6M]['patch']['responses'][200]['content']['application/json'];
119365
+ declare const routeName$6P = "/v1/api/anvaproducts/{anva_product_id}/coverages/{coverage_code}";
119366
+ type PatchAnvaproductCoverageByIdBody = paths[typeof routeName$6P]['patch']['requestBody']['content']['application/json'];
119367
+ type PatchAnvaproductCoverageByIdPathParams = paths[typeof routeName$6P]['patch']['parameters']['path'];
119368
+ type PatchAnvaproductCoverageByIdQueryParams = paths[typeof routeName$6P]['patch']['parameters']['query'];
119369
+ type PatchAnvaproductCoverageByIdResponse = paths[typeof routeName$6P]['patch']['responses'][200]['content']['application/json'];
118856
119370
  interface PatchAnvaproductCoverageByIdProps {
118857
119371
  body: PatchAnvaproductCoverageByIdBody;
118858
119372
  params: {
@@ -118862,18 +119376,18 @@ interface PatchAnvaproductCoverageByIdProps {
118862
119376
  }
118863
119377
  declare const patchAnvaproductCoverageById: (props: PatchAnvaproductCoverageByIdProps, wgApiClient: ClientType) => Promise<PatchAnvaproductCoverageByIdResponse>;
118864
119378
 
118865
- declare const routeName$6L = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118866
- type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6L]['get']['parameters']['path'];
118867
- type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6L]['get']['parameters']['query'];
118868
- type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6L]['get']['responses'][200]['content']['application/json'];
118869
- type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6L]['get']['parameters'];
119379
+ declare const routeName$6O = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
119380
+ type RetrieveAnvaflowsQuestionnairesPathParams = paths[typeof routeName$6O]['get']['parameters']['path'];
119381
+ type RetrieveAnvaflowsQuestionnairesQueryParams = paths[typeof routeName$6O]['get']['parameters']['query'];
119382
+ type RetrieveAnvaflowsQuestionnairesResponse = paths[typeof routeName$6O]['get']['responses'][200]['content']['application/json'];
119383
+ type RetrieveAnvaflowsQuestionnairesProps = paths[typeof routeName$6O]['get']['parameters'];
118870
119384
  declare const retrieveAnvaflowsQuestionnaires: (props: RetrieveAnvaflowsQuestionnairesProps, wgApiClient: ClientType) => Promise<RetrieveAnvaflowsQuestionnairesResponse>;
118871
119385
 
118872
- declare const routeName$6K = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
118873
- type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6K]['put']['requestBody']['content']['application/json'];
118874
- type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6K]['put']['parameters']['path'];
118875
- type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6K]['put']['parameters']['query'];
118876
- type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6K]['put']['responses'][200]['content']['application/json'];
119386
+ declare const routeName$6N = "/v1/api/anvaproducts/{anva_product_id}/questionnaires";
119387
+ type UpdateAnvaflowsQuestionnaireBody = paths[typeof routeName$6N]['put']['requestBody']['content']['application/json'];
119388
+ type UpdateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6N]['put']['parameters']['path'];
119389
+ type UpdateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6N]['put']['parameters']['query'];
119390
+ type UpdateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6N]['put']['responses'][200]['content']['application/json'];
118877
119391
  interface UpdateAnvaflowsQuestionnaireProps {
118878
119392
  body: UpdateAnvaflowsQuestionnaireBody;
118879
119393
  params: {
@@ -118883,11 +119397,11 @@ interface UpdateAnvaflowsQuestionnaireProps {
118883
119397
  }
118884
119398
  declare const updateAnvaflowsQuestionnaire: (props: UpdateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<UpdateAnvaflowsQuestionnaireResponse>;
118885
119399
 
118886
- declare const routeName$6J = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
118887
- type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6J]['post']['requestBody']['content']['application/json'];
118888
- type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6J]['post']['parameters']['path'];
118889
- type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6J]['post']['parameters']['query'];
118890
- type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6J]['post']['responses'][200]['content']['application/json'];
119400
+ declare const routeName$6M = "/v1/api/anvaproducts/{anva_product_id}/questionnaires/validate";
119401
+ type ValidateAnvaflowsQuestionnaireBody = paths[typeof routeName$6M]['post']['requestBody']['content']['application/json'];
119402
+ type ValidateAnvaflowsQuestionnairePathParams = paths[typeof routeName$6M]['post']['parameters']['path'];
119403
+ type ValidateAnvaflowsQuestionnaireQueryParams = paths[typeof routeName$6M]['post']['parameters']['query'];
119404
+ type ValidateAnvaflowsQuestionnaireResponse = paths[typeof routeName$6M]['post']['responses'][200]['content']['application/json'];
118891
119405
  interface ValidateAnvaflowsQuestionnaireProps {
118892
119406
  body: ValidateAnvaflowsQuestionnaireBody;
118893
119407
  params: {
@@ -118897,10 +119411,10 @@ interface ValidateAnvaflowsQuestionnaireProps {
118897
119411
  }
118898
119412
  declare const validateAnvaflowsQuestionnaire: (props: ValidateAnvaflowsQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateAnvaflowsQuestionnaireResponse>;
118899
119413
 
118900
- declare const routeName$6I = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
118901
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6I]['post']['requestBody']['content']['application/json'];
118902
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6I]['post']['parameters']['query'];
118903
- type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6I]['post']['responses'][200]['content']['application/json'];
119414
+ declare const routeName$6L = "/v1/api/anvaproducts/questionnaires/update-all-questions-by-anvalabels";
119415
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody = paths[typeof routeName$6L]['post']['requestBody']['content']['application/json'];
119416
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams = paths[typeof routeName$6L]['post']['parameters']['query'];
119417
+ type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse = paths[typeof routeName$6L]['post']['responses'][200]['content']['application/json'];
118904
119418
  interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
118905
119419
  body: UpdateQuestionForAllQuestionnairesByAnvaLabelsBody;
118906
119420
  params: {
@@ -118909,20 +119423,20 @@ interface UpdateQuestionForAllQuestionnairesByAnvaLabelsProps {
118909
119423
  }
118910
119424
  declare const updateQuestionForAllQuestionnairesByAnvaLabels: (props: UpdateQuestionForAllQuestionnairesByAnvaLabelsProps, wgApiClient: ClientType) => Promise<UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse>;
118911
119425
 
118912
- declare const routeName$6H = "/v1/api/brokers/me";
118913
- type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
119426
+ declare const routeName$6K = "/v1/api/brokers/me";
119427
+ type GetCurrentBrokerOfTheUserResponse = paths[typeof routeName$6K]['get']['responses'][200]['content']['application/json'];
118914
119428
  declare const getCurrentBrokerOfTheUser: (wgApiClient: ClientType) => Promise<GetCurrentBrokerOfTheUserResponse>;
118915
119429
 
118916
- declare const routeName$6G = "/v1/api/brokers/{broker_id}";
118917
- type GetTheBrokerByIdPathParams = paths[typeof routeName$6G]['get']['parameters']['path'];
118918
- type GetTheBrokerByIdResponse = paths[typeof routeName$6G]['get']['responses'][200]['content']['application/json'];
118919
- type GetTheBrokerByIdProps = paths[typeof routeName$6G]['get']['parameters'];
119430
+ declare const routeName$6J = "/v1/api/brokers/{broker_id}";
119431
+ type GetTheBrokerByIdPathParams = paths[typeof routeName$6J]['get']['parameters']['path'];
119432
+ type GetTheBrokerByIdResponse = paths[typeof routeName$6J]['get']['responses'][200]['content']['application/json'];
119433
+ type GetTheBrokerByIdProps = paths[typeof routeName$6J]['get']['parameters'];
118920
119434
  declare const getTheBrokerById: (props: GetTheBrokerByIdProps, wgApiClient: ClientType) => Promise<GetTheBrokerByIdResponse>;
118921
119435
 
118922
- declare const routeName$6F = "/v1/api/brokers/{broker_id}";
118923
- type UpdateBrokerByBrokerBody = paths[typeof routeName$6F]['patch']['requestBody']['content']['application/json'];
118924
- type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6F]['patch']['parameters']['path'];
118925
- type UpdateBrokerByBrokerResponse = paths[typeof routeName$6F]['patch']['responses'][200]['content']['application/json'];
119436
+ declare const routeName$6I = "/v1/api/brokers/{broker_id}";
119437
+ type UpdateBrokerByBrokerBody = paths[typeof routeName$6I]['patch']['requestBody']['content']['application/json'];
119438
+ type UpdateBrokerByBrokerPathParams = paths[typeof routeName$6I]['patch']['parameters']['path'];
119439
+ type UpdateBrokerByBrokerResponse = paths[typeof routeName$6I]['patch']['responses'][200]['content']['application/json'];
118926
119440
  interface UpdateBrokerByBrokerProps {
118927
119441
  body: UpdateBrokerByBrokerBody;
118928
119442
  params: {
@@ -118931,16 +119445,16 @@ interface UpdateBrokerByBrokerProps {
118931
119445
  }
118932
119446
  declare const updateBrokerByBroker: (props: UpdateBrokerByBrokerProps, wgApiClient: ClientType) => Promise<UpdateBrokerByBrokerResponse>;
118933
119447
 
118934
- declare const routeName$6E = "/v1/api/brokers/{broker_id}/integrations";
118935
- type GetBrokerIntegrationsPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
118936
- type GetBrokerIntegrationsResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
118937
- type GetBrokerIntegrationsProps = paths[typeof routeName$6E]['get']['parameters'];
119448
+ declare const routeName$6H = "/v1/api/brokers/{broker_id}/integrations";
119449
+ type GetBrokerIntegrationsPathParams = paths[typeof routeName$6H]['get']['parameters']['path'];
119450
+ type GetBrokerIntegrationsResponse = paths[typeof routeName$6H]['get']['responses'][200]['content']['application/json'];
119451
+ type GetBrokerIntegrationsProps = paths[typeof routeName$6H]['get']['parameters'];
118938
119452
  declare const getBrokerIntegrations: (props: GetBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<GetBrokerIntegrationsResponse>;
118939
119453
 
118940
- declare const routeName$6D = "/v1/api/brokers/{broker_id}/integrations";
118941
- type UpdateBrokerIntegrationsBody = paths[typeof routeName$6D]['patch']['requestBody']['content']['application/json'];
118942
- type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6D]['patch']['parameters']['path'];
118943
- type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6D]['patch']['responses'][200]['content']['application/json'];
119454
+ declare const routeName$6G = "/v1/api/brokers/{broker_id}/integrations";
119455
+ type UpdateBrokerIntegrationsBody = paths[typeof routeName$6G]['patch']['requestBody']['content']['application/json'];
119456
+ type UpdateBrokerIntegrationsPathParams = paths[typeof routeName$6G]['patch']['parameters']['path'];
119457
+ type UpdateBrokerIntegrationsResponse = paths[typeof routeName$6G]['patch']['responses'][200]['content']['application/json'];
118944
119458
  interface UpdateBrokerIntegrationsProps {
118945
119459
  body: UpdateBrokerIntegrationsBody;
118946
119460
  params: {
@@ -118949,37 +119463,37 @@ interface UpdateBrokerIntegrationsProps {
118949
119463
  }
118950
119464
  declare const updateBrokerIntegrations: (props: UpdateBrokerIntegrationsProps, wgApiClient: ClientType) => Promise<UpdateBrokerIntegrationsResponse>;
118951
119465
 
118952
- declare const routeName$6C = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
118953
- type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
118954
- type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
118955
- type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6C]['get']['parameters'];
119466
+ declare const routeName$6F = "/v1/api/anva-relation-managers/{anva_relation_manager_id}";
119467
+ type GetBrokerByAnvaRelationMangerIdPathParams = paths[typeof routeName$6F]['get']['parameters']['path'];
119468
+ type GetBrokerByAnvaRelationMangerIdResponse = paths[typeof routeName$6F]['get']['responses'][200]['content']['application/json'];
119469
+ type GetBrokerByAnvaRelationMangerIdProps = paths[typeof routeName$6F]['get']['parameters'];
118956
119470
  declare const getBrokerByAnvaRelationMangerId: (props: GetBrokerByAnvaRelationMangerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaRelationMangerIdResponse>;
118957
119471
 
118958
- declare const routeName$6B = "/v1/api/anva-producers/{anva_producer_id}";
118959
- type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6B]['get']['parameters']['path'];
118960
- type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6B]['get']['responses'][200]['content']['application/json'];
118961
- type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6B]['get']['parameters'];
119472
+ declare const routeName$6E = "/v1/api/anva-producers/{anva_producer_id}";
119473
+ type GetBrokerByAnvaProducerIdPathParams = paths[typeof routeName$6E]['get']['parameters']['path'];
119474
+ type GetBrokerByAnvaProducerIdResponse = paths[typeof routeName$6E]['get']['responses'][200]['content']['application/json'];
119475
+ type GetBrokerByAnvaProducerIdProps = paths[typeof routeName$6E]['get']['parameters'];
118962
119476
  declare const getBrokerByAnvaProducerId: (props: GetBrokerByAnvaProducerIdProps, wgApiClient: ClientType) => Promise<GetBrokerByAnvaProducerIdResponse>;
118963
119477
 
118964
- declare const routeName$6A = "/v1/api/brokers/{broker_id}/checklists/onboarding";
118965
- type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6A]['get']['parameters']['path'];
118966
- type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
118967
- type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
118968
- type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6A]['get']['parameters'];
119478
+ declare const routeName$6D = "/v1/api/brokers/{broker_id}/checklists/onboarding";
119479
+ type GetOnboardingChecklistByBrokerPathParams = paths[typeof routeName$6D]['get']['parameters']['path'];
119480
+ type GetOnboardingChecklistByBrokerQueryParams = paths[typeof routeName$6D]['get']['parameters']['query'];
119481
+ type GetOnboardingChecklistByBrokerResponse = paths[typeof routeName$6D]['get']['responses'][200]['content']['application/json'];
119482
+ type GetOnboardingChecklistByBrokerProps = paths[typeof routeName$6D]['get']['parameters'];
118969
119483
  declare const getOnboardingChecklistByBroker: (props: GetOnboardingChecklistByBrokerProps, wgApiClient: ClientType) => Promise<GetOnboardingChecklistByBrokerResponse>;
118970
119484
 
118971
- declare const routeName$6z = "/v1/api/campaigns/{campaign_id}";
118972
- type GetCampaignByIdPathParams = paths[typeof routeName$6z]['get']['parameters']['path'];
118973
- type GetCampaignByIdQueryParams = paths[typeof routeName$6z]['get']['parameters']['query'];
118974
- type GetCampaignByIdResponse = paths[typeof routeName$6z]['get']['responses'][200]['content']['application/json'];
118975
- type GetCampaignByIdProps = paths[typeof routeName$6z]['get']['parameters'];
119485
+ declare const routeName$6C = "/v1/api/campaigns/{campaign_id}";
119486
+ type GetCampaignByIdPathParams = paths[typeof routeName$6C]['get']['parameters']['path'];
119487
+ type GetCampaignByIdQueryParams = paths[typeof routeName$6C]['get']['parameters']['query'];
119488
+ type GetCampaignByIdResponse = paths[typeof routeName$6C]['get']['responses'][200]['content']['application/json'];
119489
+ type GetCampaignByIdProps = paths[typeof routeName$6C]['get']['parameters'];
118976
119490
  declare const getCampaignById: (props: GetCampaignByIdProps, wgApiClient: ClientType) => Promise<GetCampaignByIdResponse>;
118977
119491
 
118978
- declare const routeName$6y = "/v1/api/campaigns/{campaign_id}";
118979
- type UpdateCampaignBody = paths[typeof routeName$6y]['patch']['requestBody']['content']['application/json'];
118980
- type UpdateCampaignPathParams = paths[typeof routeName$6y]['patch']['parameters']['path'];
118981
- type UpdateCampaignQueryParams = paths[typeof routeName$6y]['patch']['parameters']['query'];
118982
- type UpdateCampaignResponse = paths[typeof routeName$6y]['patch']['responses'][200]['content']['application/json'];
119492
+ declare const routeName$6B = "/v1/api/campaigns/{campaign_id}";
119493
+ type UpdateCampaignBody = paths[typeof routeName$6B]['patch']['requestBody']['content']['application/json'];
119494
+ type UpdateCampaignPathParams = paths[typeof routeName$6B]['patch']['parameters']['path'];
119495
+ type UpdateCampaignQueryParams = paths[typeof routeName$6B]['patch']['parameters']['query'];
119496
+ type UpdateCampaignResponse = paths[typeof routeName$6B]['patch']['responses'][200]['content']['application/json'];
118983
119497
  interface UpdateCampaignProps {
118984
119498
  body: UpdateCampaignBody;
118985
119499
  params: {
@@ -118989,16 +119503,16 @@ interface UpdateCampaignProps {
118989
119503
  }
118990
119504
  declare const updateCampaign: (props: UpdateCampaignProps, wgApiClient: ClientType) => Promise<UpdateCampaignResponse>;
118991
119505
 
118992
- declare const routeName$6x = "/v1/api/campaigns";
118993
- type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6x]['get']['parameters']['query'];
118994
- type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6x]['get']['responses'][200]['content']['application/json'];
118995
- type GetAllCampaignsByDistributionProps = paths[typeof routeName$6x]['get']['parameters'];
119506
+ declare const routeName$6A = "/v1/api/campaigns";
119507
+ type GetAllCampaignsByDistributionQueryParams = paths[typeof routeName$6A]['get']['parameters']['query'];
119508
+ type GetAllCampaignsByDistributionResponse = paths[typeof routeName$6A]['get']['responses'][200]['content']['application/json'];
119509
+ type GetAllCampaignsByDistributionProps = paths[typeof routeName$6A]['get']['parameters'];
118996
119510
  declare const getAllCampaignsByDistribution: (props: GetAllCampaignsByDistributionProps, wgApiClient: ClientType) => Promise<GetAllCampaignsByDistributionResponse>;
118997
119511
 
118998
- declare const routeName$6w = "/v1/api/campaigns";
118999
- type CreateCampaignBody = paths[typeof routeName$6w]['post']['requestBody']['content']['application/json'];
119000
- type CreateCampaignQueryParams = paths[typeof routeName$6w]['post']['parameters']['query'];
119001
- type CreateCampaignResponse = paths[typeof routeName$6w]['post']['responses'][201]['content']['application/json'];
119512
+ declare const routeName$6z = "/v1/api/campaigns";
119513
+ type CreateCampaignBody = paths[typeof routeName$6z]['post']['requestBody']['content']['application/json'];
119514
+ type CreateCampaignQueryParams = paths[typeof routeName$6z]['post']['parameters']['query'];
119515
+ type CreateCampaignResponse = paths[typeof routeName$6z]['post']['responses'][201]['content']['application/json'];
119002
119516
  interface CreateCampaignProps {
119003
119517
  body: CreateCampaignBody;
119004
119518
  params: {
@@ -119007,17 +119521,17 @@ interface CreateCampaignProps {
119007
119521
  }
119008
119522
  declare const createCampaign: (props: CreateCampaignProps, wgApiClient: ClientType) => Promise<CreateCampaignResponse>;
119009
119523
 
119010
- declare const routeName$6v = "/v1/api/campaigns/{campaign_id}/metrics";
119011
- type GetMetricsByCampaignPathParams = paths[typeof routeName$6v]['get']['parameters']['path'];
119012
- type GetMetricsByCampaignQueryParams = paths[typeof routeName$6v]['get']['parameters']['query'];
119013
- type GetMetricsByCampaignResponse = paths[typeof routeName$6v]['get']['responses'][200]['content']['application/json'];
119014
- type GetMetricsByCampaignProps = paths[typeof routeName$6v]['get']['parameters'];
119524
+ declare const routeName$6y = "/v1/api/campaigns/{campaign_id}/metrics";
119525
+ type GetMetricsByCampaignPathParams = paths[typeof routeName$6y]['get']['parameters']['path'];
119526
+ type GetMetricsByCampaignQueryParams = paths[typeof routeName$6y]['get']['parameters']['query'];
119527
+ type GetMetricsByCampaignResponse = paths[typeof routeName$6y]['get']['responses'][200]['content']['application/json'];
119528
+ type GetMetricsByCampaignProps = paths[typeof routeName$6y]['get']['parameters'];
119015
119529
  declare const getMetricsByCampaign: (props: GetMetricsByCampaignProps, wgApiClient: ClientType) => Promise<GetMetricsByCampaignResponse>;
119016
119530
 
119017
- declare const routeName$6u = "/v1/api/campaigns/{campaign_id}/targets";
119018
- type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6u]['patch']['parameters']['path'];
119019
- type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6u]['patch']['parameters']['query'];
119020
- type UpdateTargetsByCampaignResponse = paths[typeof routeName$6u]['patch']['responses'][200]['content']['application/json'];
119531
+ declare const routeName$6x = "/v1/api/campaigns/{campaign_id}/targets";
119532
+ type UpdateTargetsByCampaignPathParams = paths[typeof routeName$6x]['patch']['parameters']['path'];
119533
+ type UpdateTargetsByCampaignQueryParams = paths[typeof routeName$6x]['patch']['parameters']['query'];
119534
+ type UpdateTargetsByCampaignResponse = paths[typeof routeName$6x]['patch']['responses'][200]['content']['application/json'];
119021
119535
  interface UpdateTargetsByCampaignProps {
119022
119536
  params: {
119023
119537
  query: UpdateTargetsByCampaignQueryParams;
@@ -119026,15 +119540,15 @@ interface UpdateTargetsByCampaignProps {
119026
119540
  }
119027
119541
  declare const updateTargetsByCampaign: (props: UpdateTargetsByCampaignProps, wgApiClient: ClientType) => Promise<UpdateTargetsByCampaignResponse>;
119028
119542
 
119029
- declare const routeName$6t = "/v1/api/campaign-templates";
119030
- type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6t]['get']['parameters']['query'];
119031
- type GetAllCampaignTemplatesResponse = paths[typeof routeName$6t]['get']['responses'][200]['content']['application/json'];
119032
- type GetAllCampaignTemplatesProps = paths[typeof routeName$6t]['get']['parameters'];
119543
+ declare const routeName$6w = "/v1/api/campaign-templates";
119544
+ type GetAllCampaignTemplatesQueryParams = paths[typeof routeName$6w]['get']['parameters']['query'];
119545
+ type GetAllCampaignTemplatesResponse = paths[typeof routeName$6w]['get']['responses'][200]['content']['application/json'];
119546
+ type GetAllCampaignTemplatesProps = paths[typeof routeName$6w]['get']['parameters'];
119033
119547
  declare const getAllCampaignTemplates: (props: GetAllCampaignTemplatesProps, wgApiClient: ClientType) => Promise<GetAllCampaignTemplatesResponse>;
119034
119548
 
119035
- declare const routeName$6s = "/v1/api/campaigns/example-mails";
119036
- type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6s]['post']['parameters']['query'];
119037
- type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6s]['post']['responses'][201]['content']['application/json'];
119549
+ declare const routeName$6v = "/v1/api/campaigns/example-mails";
119550
+ type SendExampleCampaignTargetMailQueryParams = paths[typeof routeName$6v]['post']['parameters']['query'];
119551
+ type SendExampleCampaignTargetMailResponse = paths[typeof routeName$6v]['post']['responses'][201]['content']['application/json'];
119038
119552
  interface SendExampleCampaignTargetMailProps {
119039
119553
  params: {
119040
119554
  query: SendExampleCampaignTargetMailQueryParams;
@@ -119042,16 +119556,16 @@ interface SendExampleCampaignTargetMailProps {
119042
119556
  }
119043
119557
  declare const sendExampleCampaignTargetMail: (props: SendExampleCampaignTargetMailProps, wgApiClient: ClientType) => Promise<SendExampleCampaignTargetMailResponse>;
119044
119558
 
119045
- declare const routeName$6r = "/v1/api/distributions/campaign-settings";
119046
- type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6r]['get']['parameters']['query'];
119047
- type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6r]['get']['responses'][200]['content']['application/json'];
119048
- type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6r]['get']['parameters'];
119559
+ declare const routeName$6u = "/v1/api/distributions/campaign-settings";
119560
+ type GetCampaignSettingsByDistributionQueryParams = paths[typeof routeName$6u]['get']['parameters']['query'];
119561
+ type GetCampaignSettingsByDistributionResponse = paths[typeof routeName$6u]['get']['responses'][200]['content']['application/json'];
119562
+ type GetCampaignSettingsByDistributionProps = paths[typeof routeName$6u]['get']['parameters'];
119049
119563
  declare const getCampaignSettingsByDistribution: (props: GetCampaignSettingsByDistributionProps, wgApiClient: ClientType) => Promise<GetCampaignSettingsByDistributionResponse>;
119050
119564
 
119051
- declare const routeName$6q = "/v1/api/campaigns/dns-prefixes/generate";
119052
- type GenerateDnsPrefixBody = paths[typeof routeName$6q]['post']['requestBody']['content']['application/json'];
119053
- type GenerateDnsPrefixQueryParams = paths[typeof routeName$6q]['post']['parameters']['query'];
119054
- type GenerateDnsPrefixResponse = paths[typeof routeName$6q]['post']['responses'][200]['content']['application/json'];
119565
+ declare const routeName$6t = "/v1/api/campaigns/dns-prefixes/generate";
119566
+ type GenerateDnsPrefixBody = paths[typeof routeName$6t]['post']['requestBody']['content']['application/json'];
119567
+ type GenerateDnsPrefixQueryParams = paths[typeof routeName$6t]['post']['parameters']['query'];
119568
+ type GenerateDnsPrefixResponse = paths[typeof routeName$6t]['post']['responses'][200]['content']['application/json'];
119055
119569
  interface GenerateDnsPrefixProps {
119056
119570
  body: GenerateDnsPrefixBody;
119057
119571
  params: {
@@ -119060,16 +119574,16 @@ interface GenerateDnsPrefixProps {
119060
119574
  }
119061
119575
  declare const generateDnsPrefix: (props: GenerateDnsPrefixProps, wgApiClient: ClientType) => Promise<GenerateDnsPrefixResponse>;
119062
119576
 
119063
- declare const routeName$6p = "/v1/api/mail-templates/campaign-target";
119064
- type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6p]['get']['parameters']['query'];
119065
- type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6p]['get']['responses'][200]['content']['application/json'];
119066
- type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6p]['get']['parameters'];
119577
+ declare const routeName$6s = "/v1/api/mail-templates/campaign-target";
119578
+ type GetCampaignTargetMailTemplateQueryParams = paths[typeof routeName$6s]['get']['parameters']['query'];
119579
+ type GetCampaignTargetMailTemplateResponse = paths[typeof routeName$6s]['get']['responses'][200]['content']['application/json'];
119580
+ type GetCampaignTargetMailTemplateProps = paths[typeof routeName$6s]['get']['parameters'];
119067
119581
  declare const getCampaignTargetMailTemplate: (props: GetCampaignTargetMailTemplateProps, wgApiClient: ClientType) => Promise<GetCampaignTargetMailTemplateResponse>;
119068
119582
 
119069
- declare const routeName$6o = "/v1/api/distributions/{distribution_id}/claims";
119070
- type CreateClaimAsCustomerPathParams = paths[typeof routeName$6o]['post']['parameters']['path'];
119071
- type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6o]['post']['parameters']['query'];
119072
- type CreateClaimAsCustomerResponse = paths[typeof routeName$6o]['post']['responses'][201]['content']['application/json'];
119583
+ declare const routeName$6r = "/v1/api/distributions/{distribution_id}/claims";
119584
+ type CreateClaimAsCustomerPathParams = paths[typeof routeName$6r]['post']['parameters']['path'];
119585
+ type CreateClaimAsCustomerQueryParams = paths[typeof routeName$6r]['post']['parameters']['query'];
119586
+ type CreateClaimAsCustomerResponse = paths[typeof routeName$6r]['post']['responses'][201]['content']['application/json'];
119073
119587
  interface CreateClaimAsCustomerProps {
119074
119588
  params: {
119075
119589
  query: CreateClaimAsCustomerQueryParams;
@@ -119078,15 +119592,15 @@ interface CreateClaimAsCustomerProps {
119078
119592
  }
119079
119593
  declare const createClaimAsCustomer: (props: CreateClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateClaimAsCustomerResponse>;
119080
119594
 
119081
- declare const routeName$6n = "/v1/api/claims";
119082
- type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6n]['get']['parameters']['query'];
119083
- type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6n]['get']['responses'][200]['content']['application/json'];
119084
- type GetAllClaimsAsBrokerProps = paths[typeof routeName$6n]['get']['parameters'];
119595
+ declare const routeName$6q = "/v1/api/claims";
119596
+ type GetAllClaimsAsBrokerQueryParams = paths[typeof routeName$6q]['get']['parameters']['query'];
119597
+ type GetAllClaimsAsBrokerResponse = paths[typeof routeName$6q]['get']['responses'][200]['content']['application/json'];
119598
+ type GetAllClaimsAsBrokerProps = paths[typeof routeName$6q]['get']['parameters'];
119085
119599
  declare const getAllClaimsAsBroker: (props: GetAllClaimsAsBrokerProps, wgApiClient: ClientType) => Promise<GetAllClaimsAsBrokerResponse>;
119086
119600
 
119087
- declare const routeName$6m = "/v1/api/claims";
119088
- type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6m]['post']['parameters']['query'];
119089
- type CreateClaimAsBrokerResponse = paths[typeof routeName$6m]['post']['responses'][201]['content']['application/json'];
119601
+ declare const routeName$6p = "/v1/api/claims";
119602
+ type CreateClaimAsBrokerQueryParams = paths[typeof routeName$6p]['post']['parameters']['query'];
119603
+ type CreateClaimAsBrokerResponse = paths[typeof routeName$6p]['post']['responses'][201]['content']['application/json'];
119090
119604
  interface CreateClaimAsBrokerProps {
119091
119605
  params: {
119092
119606
  query: CreateClaimAsBrokerQueryParams;
@@ -119094,17 +119608,17 @@ interface CreateClaimAsBrokerProps {
119094
119608
  }
119095
119609
  declare const createClaimAsBroker: (props: CreateClaimAsBrokerProps, wgApiClient: ClientType) => Promise<CreateClaimAsBrokerResponse>;
119096
119610
 
119097
- declare const routeName$6l = "/v1/api/claims/{claim_id}";
119098
- type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6l]['get']['parameters']['path'];
119099
- type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6l]['get']['parameters']['query'];
119100
- type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6l]['get']['responses'][200]['content']['application/json'];
119101
- type GetClaimAsBrokerByIdProps = paths[typeof routeName$6l]['get']['parameters'];
119611
+ declare const routeName$6o = "/v1/api/claims/{claim_id}";
119612
+ type GetClaimAsBrokerByIdPathParams = paths[typeof routeName$6o]['get']['parameters']['path'];
119613
+ type GetClaimAsBrokerByIdQueryParams = paths[typeof routeName$6o]['get']['parameters']['query'];
119614
+ type GetClaimAsBrokerByIdResponse = paths[typeof routeName$6o]['get']['responses'][200]['content']['application/json'];
119615
+ type GetClaimAsBrokerByIdProps = paths[typeof routeName$6o]['get']['parameters'];
119102
119616
  declare const getClaimAsBrokerById: (props: GetClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimAsBrokerByIdResponse>;
119103
119617
 
119104
- declare const routeName$6k = "/v1/api/claims/{claim_id}";
119105
- type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6k]['delete']['parameters']['path'];
119106
- type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6k]['delete']['parameters']['query'];
119107
- type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6k]['delete']['responses'][200]['content']['application/json'];
119618
+ declare const routeName$6n = "/v1/api/claims/{claim_id}";
119619
+ type DeleteClaimAsBrokerByIdPathParams = paths[typeof routeName$6n]['delete']['parameters']['path'];
119620
+ type DeleteClaimAsBrokerByIdQueryParams = paths[typeof routeName$6n]['delete']['parameters']['query'];
119621
+ type DeleteClaimAsBrokerByIdResponse = paths[typeof routeName$6n]['delete']['responses'][200]['content']['application/json'];
119108
119622
  interface DeleteClaimAsBrokerByIdProps {
119109
119623
  params: {
119110
119624
  query: DeleteClaimAsBrokerByIdQueryParams;
@@ -119113,10 +119627,10 @@ interface DeleteClaimAsBrokerByIdProps {
119113
119627
  }
119114
119628
  declare const deleteClaimAsBrokerById: (props: DeleteClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteClaimAsBrokerByIdResponse>;
119115
119629
 
119116
- declare const routeName$6j = "/v1/api/claims/{claim_id}";
119117
- type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6j]['patch']['parameters']['path'];
119118
- type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6j]['patch']['parameters']['query'];
119119
- type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6j]['patch']['responses'][200]['content']['application/json'];
119630
+ declare const routeName$6m = "/v1/api/claims/{claim_id}";
119631
+ type UpdateClaimAsBrokerByIdPathParams = paths[typeof routeName$6m]['patch']['parameters']['path'];
119632
+ type UpdateClaimAsBrokerByIdQueryParams = paths[typeof routeName$6m]['patch']['parameters']['query'];
119633
+ type UpdateClaimAsBrokerByIdResponse = paths[typeof routeName$6m]['patch']['responses'][200]['content']['application/json'];
119120
119634
  interface UpdateClaimAsBrokerByIdProps {
119121
119635
  params: {
119122
119636
  query: UpdateClaimAsBrokerByIdQueryParams;
@@ -119125,10 +119639,10 @@ interface UpdateClaimAsBrokerByIdProps {
119125
119639
  }
119126
119640
  declare const updateClaimAsBrokerById: (props: UpdateClaimAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateClaimAsBrokerByIdResponse>;
119127
119641
 
119128
- declare const routeName$6i = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
119129
- type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6i]['put']['parameters']['path'];
119130
- type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6i]['put']['parameters']['query'];
119131
- type UpdateDeclarationRemarkResponse = paths[typeof routeName$6i]['put']['responses'][200]['content']['application/json'];
119642
+ declare const routeName$6l = "/v1/api/claims/{claim_id}/connections/keypoint/declaration/remark";
119643
+ type UpdateDeclarationRemarkPathParams = paths[typeof routeName$6l]['put']['parameters']['path'];
119644
+ type UpdateDeclarationRemarkQueryParams = paths[typeof routeName$6l]['put']['parameters']['query'];
119645
+ type UpdateDeclarationRemarkResponse = paths[typeof routeName$6l]['put']['responses'][200]['content']['application/json'];
119132
119646
  interface UpdateDeclarationRemarkProps {
119133
119647
  params: {
119134
119648
  query: UpdateDeclarationRemarkQueryParams;
@@ -119137,10 +119651,10 @@ interface UpdateDeclarationRemarkProps {
119137
119651
  }
119138
119652
  declare const updateDeclarationRemark: (props: UpdateDeclarationRemarkProps, wgApiClient: ClientType) => Promise<UpdateDeclarationRemarkResponse>;
119139
119653
 
119140
- declare const routeName$6h = "/v1/api/claims/{claim_id}/lock";
119141
- type CreateLockForClaimPathParams = paths[typeof routeName$6h]['post']['parameters']['path'];
119142
- type CreateLockForClaimQueryParams = paths[typeof routeName$6h]['post']['parameters']['query'];
119143
- type CreateLockForClaimResponse = paths[typeof routeName$6h]['post']['responses'][201]['content']['application/json'];
119654
+ declare const routeName$6k = "/v1/api/claims/{claim_id}/lock";
119655
+ type CreateLockForClaimPathParams = paths[typeof routeName$6k]['post']['parameters']['path'];
119656
+ type CreateLockForClaimQueryParams = paths[typeof routeName$6k]['post']['parameters']['query'];
119657
+ type CreateLockForClaimResponse = paths[typeof routeName$6k]['post']['responses'][201]['content']['application/json'];
119144
119658
  interface CreateLockForClaimProps {
119145
119659
  params: {
119146
119660
  query: CreateLockForClaimQueryParams;
@@ -119149,10 +119663,10 @@ interface CreateLockForClaimProps {
119149
119663
  }
119150
119664
  declare const createLockForClaim: (props: CreateLockForClaimProps, wgApiClient: ClientType) => Promise<CreateLockForClaimResponse>;
119151
119665
 
119152
- declare const routeName$6g = "/v1/api/claims/{claim_id}/unlock";
119153
- type UnlockClaimPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
119154
- type UnlockClaimQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
119155
- type UnlockClaimResponse = paths[typeof routeName$6g]['post']['responses'][200]['content']['application/json'];
119666
+ declare const routeName$6j = "/v1/api/claims/{claim_id}/unlock";
119667
+ type UnlockClaimPathParams = paths[typeof routeName$6j]['post']['parameters']['path'];
119668
+ type UnlockClaimQueryParams = paths[typeof routeName$6j]['post']['parameters']['query'];
119669
+ type UnlockClaimResponse = paths[typeof routeName$6j]['post']['responses'][200]['content']['application/json'];
119156
119670
  interface UnlockClaimProps {
119157
119671
  params: {
119158
119672
  query: UnlockClaimQueryParams;
@@ -119161,10 +119675,10 @@ interface UnlockClaimProps {
119161
119675
  }
119162
119676
  declare const unlockClaim: (props: UnlockClaimProps, wgApiClient: ClientType) => Promise<UnlockClaimResponse>;
119163
119677
 
119164
- declare const routeName$6f = "/v1/api/claims/{claim_id}/request_update";
119165
- type ClaimRequestUpdatePathParams = paths[typeof routeName$6f]['post']['parameters']['path'];
119166
- type ClaimRequestUpdateQueryParams = paths[typeof routeName$6f]['post']['parameters']['query'];
119167
- type ClaimRequestUpdateResponse = paths[typeof routeName$6f]['post']['responses'][200]['content']['application/json'];
119678
+ declare const routeName$6i = "/v1/api/claims/{claim_id}/request_update";
119679
+ type ClaimRequestUpdatePathParams = paths[typeof routeName$6i]['post']['parameters']['path'];
119680
+ type ClaimRequestUpdateQueryParams = paths[typeof routeName$6i]['post']['parameters']['query'];
119681
+ type ClaimRequestUpdateResponse = paths[typeof routeName$6i]['post']['responses'][200]['content']['application/json'];
119168
119682
  interface ClaimRequestUpdateProps {
119169
119683
  params: {
119170
119684
  query: ClaimRequestUpdateQueryParams;
@@ -119173,10 +119687,10 @@ interface ClaimRequestUpdateProps {
119173
119687
  }
119174
119688
  declare const claimRequestUpdate: (props: ClaimRequestUpdateProps, wgApiClient: ClientType) => Promise<ClaimRequestUpdateResponse>;
119175
119689
 
119176
- declare const routeName$6e = "/v1/api/claims/{claim_id}/validate";
119177
- type ValidateClaimPathParams = paths[typeof routeName$6e]['post']['parameters']['path'];
119178
- type ValidateClaimQueryParams = paths[typeof routeName$6e]['post']['parameters']['query'];
119179
- type ValidateClaimResponse = paths[typeof routeName$6e]['post']['responses'][200]['content']['application/json'];
119690
+ declare const routeName$6h = "/v1/api/claims/{claim_id}/validate";
119691
+ type ValidateClaimPathParams = paths[typeof routeName$6h]['post']['parameters']['path'];
119692
+ type ValidateClaimQueryParams = paths[typeof routeName$6h]['post']['parameters']['query'];
119693
+ type ValidateClaimResponse = paths[typeof routeName$6h]['post']['responses'][200]['content']['application/json'];
119180
119694
  interface ValidateClaimProps {
119181
119695
  params: {
119182
119696
  query: ValidateClaimQueryParams;
@@ -119185,10 +119699,10 @@ interface ValidateClaimProps {
119185
119699
  }
119186
119700
  declare const validateClaim: (props: ValidateClaimProps, wgApiClient: ClientType) => Promise<ValidateClaimResponse>;
119187
119701
 
119188
- declare const routeName$6d = "/v1/api/claims/{claim_id}/documents";
119189
- type CreateDocumentForClaimPathParams = paths[typeof routeName$6d]['post']['parameters']['path'];
119190
- type CreateDocumentForClaimQueryParams = paths[typeof routeName$6d]['post']['parameters']['query'];
119191
- type CreateDocumentForClaimResponse = paths[typeof routeName$6d]['post']['responses'][201]['content']['application/json'];
119702
+ declare const routeName$6g = "/v1/api/claims/{claim_id}/documents";
119703
+ type CreateDocumentForClaimPathParams = paths[typeof routeName$6g]['post']['parameters']['path'];
119704
+ type CreateDocumentForClaimQueryParams = paths[typeof routeName$6g]['post']['parameters']['query'];
119705
+ type CreateDocumentForClaimResponse = paths[typeof routeName$6g]['post']['responses'][201]['content']['application/json'];
119192
119706
  interface CreateDocumentForClaimProps {
119193
119707
  params: {
119194
119708
  query: CreateDocumentForClaimQueryParams;
@@ -119197,17 +119711,17 @@ interface CreateDocumentForClaimProps {
119197
119711
  }
119198
119712
  declare const createDocumentForClaim: (props: CreateDocumentForClaimProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimResponse>;
119199
119713
 
119200
- declare const routeName$6c = "/v1/api/claims/{claim_id}/documents/{document_id}";
119201
- type DownloadDocumentByIdPathParams = paths[typeof routeName$6c]['get']['parameters']['path'];
119202
- type DownloadDocumentByIdQueryParams = paths[typeof routeName$6c]['get']['parameters']['query'];
119203
- type DownloadDocumentByIdResponse = paths[typeof routeName$6c]['get']['responses'][307]['content']['application/json'];
119204
- type DownloadDocumentByIdProps = paths[typeof routeName$6c]['get']['parameters'];
119714
+ declare const routeName$6f = "/v1/api/claims/{claim_id}/documents/{document_id}";
119715
+ type DownloadDocumentByIdPathParams = paths[typeof routeName$6f]['get']['parameters']['path'];
119716
+ type DownloadDocumentByIdQueryParams = paths[typeof routeName$6f]['get']['parameters']['query'];
119717
+ type DownloadDocumentByIdResponse = paths[typeof routeName$6f]['get']['responses'][307]['content']['application/json'];
119718
+ type DownloadDocumentByIdProps = paths[typeof routeName$6f]['get']['parameters'];
119205
119719
  declare const downloadDocumentById: (props: DownloadDocumentByIdProps, wgApiClient: ClientType) => Promise<DownloadDocumentByIdResponse>;
119206
119720
 
119207
- declare const routeName$6b = "/v1/api/claims/{claim_id}/documents/{document_id}";
119208
- type DeleteDocumentByIdPathParams = paths[typeof routeName$6b]['delete']['parameters']['path'];
119209
- type DeleteDocumentByIdQueryParams = paths[typeof routeName$6b]['delete']['parameters']['query'];
119210
- type DeleteDocumentByIdResponse = paths[typeof routeName$6b]['delete']['responses'][200]['content']['application/json'];
119721
+ declare const routeName$6e = "/v1/api/claims/{claim_id}/documents/{document_id}";
119722
+ type DeleteDocumentByIdPathParams = paths[typeof routeName$6e]['delete']['parameters']['path'];
119723
+ type DeleteDocumentByIdQueryParams = paths[typeof routeName$6e]['delete']['parameters']['query'];
119724
+ type DeleteDocumentByIdResponse = paths[typeof routeName$6e]['delete']['responses'][200]['content']['application/json'];
119211
119725
  interface DeleteDocumentByIdProps {
119212
119726
  params: {
119213
119727
  query: DeleteDocumentByIdQueryParams;
@@ -119216,10 +119730,10 @@ interface DeleteDocumentByIdProps {
119216
119730
  }
119217
119731
  declare const deleteDocumentById: (props: DeleteDocumentByIdProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdResponse>;
119218
119732
 
119219
- declare const routeName$6a = "/v1/api/claims/{claim_id}/documents/{document_id}";
119220
- type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6a]['patch']['parameters']['path'];
119221
- type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6a]['patch']['parameters']['query'];
119222
- type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6a]['patch']['responses'][200]['content']['application/json'];
119733
+ declare const routeName$6d = "/v1/api/claims/{claim_id}/documents/{document_id}";
119734
+ type UpdateDocumentMetadataByIdPathParams = paths[typeof routeName$6d]['patch']['parameters']['path'];
119735
+ type UpdateDocumentMetadataByIdQueryParams = paths[typeof routeName$6d]['patch']['parameters']['query'];
119736
+ type UpdateDocumentMetadataByIdResponse = paths[typeof routeName$6d]['patch']['responses'][200]['content']['application/json'];
119223
119737
  interface UpdateDocumentMetadataByIdProps {
119224
119738
  params: {
119225
119739
  query: UpdateDocumentMetadataByIdQueryParams;
@@ -119228,17 +119742,17 @@ interface UpdateDocumentMetadataByIdProps {
119228
119742
  }
119229
119743
  declare const updateDocumentMetadataById: (props: UpdateDocumentMetadataByIdProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdResponse>;
119230
119744
 
119231
- declare const routeName$69 = "/v1/api/claims/customer/token/{token}";
119232
- type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$69]['get']['parameters']['path'];
119233
- type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$69]['get']['parameters']['query'];
119234
- type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$69]['get']['responses'][200]['content']['application/json'];
119235
- type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$69]['get']['parameters'];
119745
+ declare const routeName$6c = "/v1/api/claims/customer/token/{token}";
119746
+ type GetClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6c]['get']['parameters']['path'];
119747
+ type GetClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6c]['get']['parameters']['query'];
119748
+ type GetClaimAsCustomerWithTokenResponse = paths[typeof routeName$6c]['get']['responses'][200]['content']['application/json'];
119749
+ type GetClaimAsCustomerWithTokenProps = paths[typeof routeName$6c]['get']['parameters'];
119236
119750
  declare const getClaimAsCustomerWithToken: (props: GetClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<GetClaimAsCustomerWithTokenResponse>;
119237
119751
 
119238
- declare const routeName$68 = "/v1/api/claims/customer/token/{token}";
119239
- type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$68]['patch']['parameters']['path'];
119240
- type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['patch']['parameters']['query'];
119241
- type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$68]['patch']['responses'][200]['content']['application/json'];
119752
+ declare const routeName$6b = "/v1/api/claims/customer/token/{token}";
119753
+ type UpdateClaimAsCustomerWithTokenPathParams = paths[typeof routeName$6b]['patch']['parameters']['path'];
119754
+ type UpdateClaimAsCustomerWithTokenQueryParams = paths[typeof routeName$6b]['patch']['parameters']['query'];
119755
+ type UpdateClaimAsCustomerWithTokenResponse = paths[typeof routeName$6b]['patch']['responses'][200]['content']['application/json'];
119242
119756
  interface UpdateClaimAsCustomerWithTokenProps {
119243
119757
  params: {
119244
119758
  query: UpdateClaimAsCustomerWithTokenQueryParams;
@@ -119247,10 +119761,10 @@ interface UpdateClaimAsCustomerWithTokenProps {
119247
119761
  }
119248
119762
  declare const updateClaimAsCustomerWithToken: (props: UpdateClaimAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateClaimAsCustomerWithTokenResponse>;
119249
119763
 
119250
- declare const routeName$67 = "/v1/api/claims/customer/token/{token}/entities";
119251
- type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$67]['post']['parameters']['path'];
119252
- type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$67]['post']['parameters']['query'];
119253
- type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$67]['post']['responses'][201]['content']['application/json'];
119764
+ declare const routeName$6a = "/v1/api/claims/customer/token/{token}/entities";
119765
+ type CreateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$6a]['post']['parameters']['path'];
119766
+ type CreateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$6a]['post']['parameters']['query'];
119767
+ type CreateEntityAsCustomerWithTokenResponse = paths[typeof routeName$6a]['post']['responses'][201]['content']['application/json'];
119254
119768
  interface CreateEntityAsCustomerWithTokenProps {
119255
119769
  params: {
119256
119770
  query: CreateEntityAsCustomerWithTokenQueryParams;
@@ -119259,10 +119773,10 @@ interface CreateEntityAsCustomerWithTokenProps {
119259
119773
  }
119260
119774
  declare const createEntityAsCustomerWithToken: (props: CreateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<CreateEntityAsCustomerWithTokenResponse>;
119261
119775
 
119262
- declare const routeName$66 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
119263
- type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$66]['delete']['parameters']['path'];
119264
- type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$66]['delete']['parameters']['query'];
119265
- type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$66]['delete']['responses'][200]['content']['application/json'];
119776
+ declare const routeName$69 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
119777
+ type DeleteEntityByIdAsCustomerWithTokenPathParams = paths[typeof routeName$69]['delete']['parameters']['path'];
119778
+ type DeleteEntityByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$69]['delete']['parameters']['query'];
119779
+ type DeleteEntityByIdAsCustomerWithTokenResponse = paths[typeof routeName$69]['delete']['responses'][200]['content']['application/json'];
119266
119780
  interface DeleteEntityByIdAsCustomerWithTokenProps {
119267
119781
  params: {
119268
119782
  query: DeleteEntityByIdAsCustomerWithTokenQueryParams;
@@ -119271,10 +119785,10 @@ interface DeleteEntityByIdAsCustomerWithTokenProps {
119271
119785
  }
119272
119786
  declare const deleteEntityByIdAsCustomerWithToken: (props: DeleteEntityByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteEntityByIdAsCustomerWithTokenResponse>;
119273
119787
 
119274
- declare const routeName$65 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
119275
- type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$65]['patch']['parameters']['path'];
119276
- type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$65]['patch']['parameters']['query'];
119277
- type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$65]['patch']['responses'][200]['content']['application/json'];
119788
+ declare const routeName$68 = "/v1/api/claims/customer/token/{token}/entities/{entity_id}";
119789
+ type UpdateEntityAsCustomerWithTokenPathParams = paths[typeof routeName$68]['patch']['parameters']['path'];
119790
+ type UpdateEntityAsCustomerWithTokenQueryParams = paths[typeof routeName$68]['patch']['parameters']['query'];
119791
+ type UpdateEntityAsCustomerWithTokenResponse = paths[typeof routeName$68]['patch']['responses'][200]['content']['application/json'];
119278
119792
  interface UpdateEntityAsCustomerWithTokenProps {
119279
119793
  params: {
119280
119794
  query: UpdateEntityAsCustomerWithTokenQueryParams;
@@ -119283,10 +119797,10 @@ interface UpdateEntityAsCustomerWithTokenProps {
119283
119797
  }
119284
119798
  declare const updateEntityAsCustomerWithToken: (props: UpdateEntityAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateEntityAsCustomerWithTokenResponse>;
119285
119799
 
119286
- declare const routeName$64 = "/v1/api/claims/upload/{claim_doc_category}";
119287
- type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$64]['post']['parameters']['path'];
119288
- type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$64]['post']['parameters']['query'];
119289
- type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$64]['post']['responses'][200]['content']['application/json'];
119800
+ declare const routeName$67 = "/v1/api/claims/upload/{claim_doc_category}";
119801
+ type UploadClaimDocumentAsBrokerPathParams = paths[typeof routeName$67]['post']['parameters']['path'];
119802
+ type UploadClaimDocumentAsBrokerQueryParams = paths[typeof routeName$67]['post']['parameters']['query'];
119803
+ type UploadClaimDocumentAsBrokerResponse = paths[typeof routeName$67]['post']['responses'][200]['content']['application/json'];
119290
119804
  interface UploadClaimDocumentAsBrokerProps {
119291
119805
  params: {
119292
119806
  query: UploadClaimDocumentAsBrokerQueryParams;
@@ -119295,10 +119809,10 @@ interface UploadClaimDocumentAsBrokerProps {
119295
119809
  }
119296
119810
  declare const uploadClaimDocumentAsBroker: (props: UploadClaimDocumentAsBrokerProps, wgApiClient: ClientType) => Promise<UploadClaimDocumentAsBrokerResponse>;
119297
119811
 
119298
- declare const routeName$63 = "/v1/api/claims/customer/upload/{claim_doc_category}";
119299
- type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$63]['post']['parameters']['path'];
119300
- type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
119301
- type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$63]['post']['responses'][200]['content']['application/json'];
119812
+ declare const routeName$66 = "/v1/api/claims/customer/upload/{claim_doc_category}";
119813
+ type CreateUploadLinkAsCustomerPathParams = paths[typeof routeName$66]['post']['parameters']['path'];
119814
+ type CreateUploadLinkAsCustomerQueryParams = paths[typeof routeName$66]['post']['parameters']['query'];
119815
+ type CreateUploadLinkAsCustomerResponse = paths[typeof routeName$66]['post']['responses'][200]['content']['application/json'];
119302
119816
  interface CreateUploadLinkAsCustomerProps {
119303
119817
  params: {
119304
119818
  query: CreateUploadLinkAsCustomerQueryParams;
@@ -119307,9 +119821,9 @@ interface CreateUploadLinkAsCustomerProps {
119307
119821
  }
119308
119822
  declare const createUploadLinkAsCustomer: (props: CreateUploadLinkAsCustomerProps, wgApiClient: ClientType) => Promise<CreateUploadLinkAsCustomerResponse>;
119309
119823
 
119310
- declare const routeName$62 = "/v1/api/claims/generate/token";
119311
- type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$62]['post']['parameters']['query'];
119312
- type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$62]['post']['responses'][201]['content']['application/json'];
119824
+ declare const routeName$65 = "/v1/api/claims/generate/token";
119825
+ type GenerateTokenForSocialLoginFlowAsBrokerQueryParams = paths[typeof routeName$65]['post']['parameters']['query'];
119826
+ type GenerateTokenForSocialLoginFlowAsBrokerResponse = paths[typeof routeName$65]['post']['responses'][201]['content']['application/json'];
119313
119827
  interface GenerateTokenForSocialLoginFlowAsBrokerProps {
119314
119828
  params: {
119315
119829
  query: GenerateTokenForSocialLoginFlowAsBrokerQueryParams;
@@ -119317,17 +119831,17 @@ interface GenerateTokenForSocialLoginFlowAsBrokerProps {
119317
119831
  }
119318
119832
  declare const generateTokenForSocialLoginFlowAsBroker: (props: GenerateTokenForSocialLoginFlowAsBrokerProps, wgApiClient: ClientType) => Promise<GenerateTokenForSocialLoginFlowAsBrokerResponse>;
119319
119833
 
119320
- declare const routeName$61 = "/v1/api/claims/customer/token/{token}/events";
119321
- type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$61]['get']['parameters']['path'];
119322
- type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$61]['get']['parameters']['query'];
119323
- type GetClaimEventsAsCustomerResponse = paths[typeof routeName$61]['get']['responses'][200]['content']['application/json'];
119324
- type GetClaimEventsAsCustomerProps = paths[typeof routeName$61]['get']['parameters'];
119834
+ declare const routeName$64 = "/v1/api/claims/customer/token/{token}/events";
119835
+ type GetClaimEventsAsCustomerPathParams = paths[typeof routeName$64]['get']['parameters']['path'];
119836
+ type GetClaimEventsAsCustomerQueryParams = paths[typeof routeName$64]['get']['parameters']['query'];
119837
+ type GetClaimEventsAsCustomerResponse = paths[typeof routeName$64]['get']['responses'][200]['content']['application/json'];
119838
+ type GetClaimEventsAsCustomerProps = paths[typeof routeName$64]['get']['parameters'];
119325
119839
  declare const getClaimEventsAsCustomer: (props: GetClaimEventsAsCustomerProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsCustomerResponse>;
119326
119840
 
119327
- declare const routeName$60 = "/v1/api/claims/customer/token/{token}/documents";
119328
- type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
119329
- type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
119330
- type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$60]['post']['responses'][200]['content']['application/json'];
119841
+ declare const routeName$63 = "/v1/api/claims/customer/token/{token}/documents";
119842
+ type CreateDocumentForClaimAsCustomerPathParams = paths[typeof routeName$63]['post']['parameters']['path'];
119843
+ type CreateDocumentForClaimAsCustomerQueryParams = paths[typeof routeName$63]['post']['parameters']['query'];
119844
+ type CreateDocumentForClaimAsCustomerResponse = paths[typeof routeName$63]['post']['responses'][200]['content']['application/json'];
119331
119845
  interface CreateDocumentForClaimAsCustomerProps {
119332
119846
  params: {
119333
119847
  query: CreateDocumentForClaimAsCustomerQueryParams;
@@ -119336,10 +119850,10 @@ interface CreateDocumentForClaimAsCustomerProps {
119336
119850
  }
119337
119851
  declare const createDocumentForClaimAsCustomer: (props: CreateDocumentForClaimAsCustomerProps, wgApiClient: ClientType) => Promise<CreateDocumentForClaimAsCustomerResponse>;
119338
119852
 
119339
- declare const routeName$5$ = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119340
- type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5$]['delete']['parameters']['path'];
119341
- type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5$]['delete']['parameters']['query'];
119342
- type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$5$]['delete']['responses'][200]['content']['application/json'];
119853
+ declare const routeName$62 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119854
+ type DeleteDocumentByIdAsCustomerWithTokenPathParams = paths[typeof routeName$62]['delete']['parameters']['path'];
119855
+ type DeleteDocumentByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$62]['delete']['parameters']['query'];
119856
+ type DeleteDocumentByIdAsCustomerWithTokenResponse = paths[typeof routeName$62]['delete']['responses'][200]['content']['application/json'];
119343
119857
  interface DeleteDocumentByIdAsCustomerWithTokenProps {
119344
119858
  params: {
119345
119859
  query: DeleteDocumentByIdAsCustomerWithTokenQueryParams;
@@ -119348,10 +119862,10 @@ interface DeleteDocumentByIdAsCustomerWithTokenProps {
119348
119862
  }
119349
119863
  declare const deleteDocumentByIdAsCustomerWithToken: (props: DeleteDocumentByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<DeleteDocumentByIdAsCustomerWithTokenResponse>;
119350
119864
 
119351
- declare const routeName$5_ = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119352
- type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$5_]['patch']['parameters']['path'];
119353
- type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$5_]['patch']['parameters']['query'];
119354
- type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$5_]['patch']['responses'][200]['content']['application/json'];
119865
+ declare const routeName$61 = "/v1/api/claims/customer/token/{token}/documents/{document_id}";
119866
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams = paths[typeof routeName$61]['patch']['parameters']['path'];
119867
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams = paths[typeof routeName$61]['patch']['parameters']['query'];
119868
+ type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse = paths[typeof routeName$61]['patch']['responses'][200]['content']['application/json'];
119355
119869
  interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
119356
119870
  params: {
119357
119871
  query: UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams;
@@ -119360,10 +119874,10 @@ interface UpdateDocumentMetadataByIdAsCustomerWithTokenProps {
119360
119874
  }
119361
119875
  declare const updateDocumentMetadataByIdAsCustomerWithToken: (props: UpdateDocumentMetadataByIdAsCustomerWithTokenProps, wgApiClient: ClientType) => Promise<UpdateDocumentMetadataByIdAsCustomerWithTokenResponse>;
119362
119876
 
119363
- declare const routeName$5Z = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
119364
- type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$5Z]['post']['parameters']['path'];
119365
- type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$5Z]['post']['parameters']['query'];
119366
- type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$5Z]['post']['responses'][200]['content']['application/json'];
119877
+ declare const routeName$60 = "/v1/api/claims/customer/token/{token}/events/{event_id}/notes";
119878
+ type CreateNoteOnEventAsCustomerPathParams = paths[typeof routeName$60]['post']['parameters']['path'];
119879
+ type CreateNoteOnEventAsCustomerQueryParams = paths[typeof routeName$60]['post']['parameters']['query'];
119880
+ type CreateNoteOnEventAsCustomerResponse = paths[typeof routeName$60]['post']['responses'][200]['content']['application/json'];
119367
119881
  interface CreateNoteOnEventAsCustomerProps {
119368
119882
  params: {
119369
119883
  query: CreateNoteOnEventAsCustomerQueryParams;
@@ -119372,10 +119886,10 @@ interface CreateNoteOnEventAsCustomerProps {
119372
119886
  }
119373
119887
  declare const createNoteOnEventAsCustomer: (props: CreateNoteOnEventAsCustomerProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventAsCustomerResponse>;
119374
119888
 
119375
- declare const routeName$5Y = "/v1/api/claims/{claim_id}/entities";
119376
- type CreateEntityAsBrokerPathParams = paths[typeof routeName$5Y]['post']['parameters']['path'];
119377
- type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5Y]['post']['parameters']['query'];
119378
- type CreateEntityAsBrokerResponse = paths[typeof routeName$5Y]['post']['responses'][201]['content']['application/json'];
119889
+ declare const routeName$5$ = "/v1/api/claims/{claim_id}/entities";
119890
+ type CreateEntityAsBrokerPathParams = paths[typeof routeName$5$]['post']['parameters']['path'];
119891
+ type CreateEntityAsBrokerQueryParams = paths[typeof routeName$5$]['post']['parameters']['query'];
119892
+ type CreateEntityAsBrokerResponse = paths[typeof routeName$5$]['post']['responses'][201]['content']['application/json'];
119379
119893
  interface CreateEntityAsBrokerProps {
119380
119894
  params: {
119381
119895
  query: CreateEntityAsBrokerQueryParams;
@@ -119384,10 +119898,10 @@ interface CreateEntityAsBrokerProps {
119384
119898
  }
119385
119899
  declare const createEntityAsBroker: (props: CreateEntityAsBrokerProps, wgApiClient: ClientType) => Promise<CreateEntityAsBrokerResponse>;
119386
119900
 
119387
- declare const routeName$5X = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119388
- type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5X]['delete']['parameters']['path'];
119389
- type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5X]['delete']['parameters']['query'];
119390
- type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5X]['delete']['responses'][200]['content']['application/json'];
119901
+ declare const routeName$5_ = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119902
+ type DeleteEntityAsBrokerByIdPathParams = paths[typeof routeName$5_]['delete']['parameters']['path'];
119903
+ type DeleteEntityAsBrokerByIdQueryParams = paths[typeof routeName$5_]['delete']['parameters']['query'];
119904
+ type DeleteEntityAsBrokerByIdResponse = paths[typeof routeName$5_]['delete']['responses'][200]['content']['application/json'];
119391
119905
  interface DeleteEntityAsBrokerByIdProps {
119392
119906
  params: {
119393
119907
  query: DeleteEntityAsBrokerByIdQueryParams;
@@ -119396,10 +119910,10 @@ interface DeleteEntityAsBrokerByIdProps {
119396
119910
  }
119397
119911
  declare const deleteEntityAsBrokerById: (props: DeleteEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<DeleteEntityAsBrokerByIdResponse>;
119398
119912
 
119399
- declare const routeName$5W = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119400
- type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5W]['patch']['parameters']['path'];
119401
- type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5W]['patch']['parameters']['query'];
119402
- type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5W]['patch']['responses'][200]['content']['application/json'];
119913
+ declare const routeName$5Z = "/v1/api/claims/{claim_id}/entities/{entity_id}";
119914
+ type UpdateEntityAsBrokerByIdPathParams = paths[typeof routeName$5Z]['patch']['parameters']['path'];
119915
+ type UpdateEntityAsBrokerByIdQueryParams = paths[typeof routeName$5Z]['patch']['parameters']['query'];
119916
+ type UpdateEntityAsBrokerByIdResponse = paths[typeof routeName$5Z]['patch']['responses'][200]['content']['application/json'];
119403
119917
  interface UpdateEntityAsBrokerByIdProps {
119404
119918
  params: {
119405
119919
  query: UpdateEntityAsBrokerByIdQueryParams;
@@ -119408,17 +119922,17 @@ interface UpdateEntityAsBrokerByIdProps {
119408
119922
  }
119409
119923
  declare const updateEntityAsBrokerById: (props: UpdateEntityAsBrokerByIdProps, wgApiClient: ClientType) => Promise<UpdateEntityAsBrokerByIdResponse>;
119410
119924
 
119411
- declare const routeName$5V = "/v1/api/claims/{claim_id}/events";
119412
- type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5V]['get']['parameters']['path'];
119413
- type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5V]['get']['parameters']['query'];
119414
- type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
119415
- type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5V]['get']['parameters'];
119925
+ declare const routeName$5Y = "/v1/api/claims/{claim_id}/events";
119926
+ type GetClaimEventsAsBrokerByIdPathParams = paths[typeof routeName$5Y]['get']['parameters']['path'];
119927
+ type GetClaimEventsAsBrokerByIdQueryParams = paths[typeof routeName$5Y]['get']['parameters']['query'];
119928
+ type GetClaimEventsAsBrokerByIdResponse = paths[typeof routeName$5Y]['get']['responses'][200]['content']['application/json'];
119929
+ type GetClaimEventsAsBrokerByIdProps = paths[typeof routeName$5Y]['get']['parameters'];
119416
119930
  declare const getClaimEventsAsBrokerById: (props: GetClaimEventsAsBrokerByIdProps, wgApiClient: ClientType) => Promise<GetClaimEventsAsBrokerByIdResponse>;
119417
119931
 
119418
- declare const routeName$5U = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
119419
- type SendClaimToKeypointPathParams = paths[typeof routeName$5U]['post']['parameters']['path'];
119420
- type SendClaimToKeypointQueryParams = paths[typeof routeName$5U]['post']['parameters']['query'];
119421
- type SendClaimToKeypointResponse = paths[typeof routeName$5U]['post']['responses'][201]['content']['application/json'];
119932
+ declare const routeName$5X = "/v1/api/claims/{claim_id}/connections/keypoint/declaration";
119933
+ type SendClaimToKeypointPathParams = paths[typeof routeName$5X]['post']['parameters']['path'];
119934
+ type SendClaimToKeypointQueryParams = paths[typeof routeName$5X]['post']['parameters']['query'];
119935
+ type SendClaimToKeypointResponse = paths[typeof routeName$5X]['post']['responses'][201]['content']['application/json'];
119422
119936
  interface SendClaimToKeypointProps {
119423
119937
  params: {
119424
119938
  query: SendClaimToKeypointQueryParams;
@@ -119427,10 +119941,10 @@ interface SendClaimToKeypointProps {
119427
119941
  }
119428
119942
  declare const sendClaimToKeypoint: (props: SendClaimToKeypointProps, wgApiClient: ClientType) => Promise<SendClaimToKeypointResponse>;
119429
119943
 
119430
- declare const routeName$5T = "/v1/api/claims/{claim_id}/customer/followup-page/email";
119431
- type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
119432
- type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5T]['post']['parameters']['query'];
119433
- type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5T]['post']['responses'][200]['content']['application/json'];
119944
+ declare const routeName$5W = "/v1/api/claims/{claim_id}/customer/followup-page/email";
119945
+ type SendMailFollowupPageToCustomerPathParams = paths[typeof routeName$5W]['post']['parameters']['path'];
119946
+ type SendMailFollowupPageToCustomerQueryParams = paths[typeof routeName$5W]['post']['parameters']['query'];
119947
+ type SendMailFollowupPageToCustomerResponse = paths[typeof routeName$5W]['post']['responses'][200]['content']['application/json'];
119434
119948
  interface SendMailFollowupPageToCustomerProps {
119435
119949
  params: {
119436
119950
  query: SendMailFollowupPageToCustomerQueryParams;
@@ -119439,21 +119953,21 @@ interface SendMailFollowupPageToCustomerProps {
119439
119953
  }
119440
119954
  declare const sendMailFollowupPageToCustomer: (props: SendMailFollowupPageToCustomerProps, wgApiClient: ClientType) => Promise<SendMailFollowupPageToCustomerResponse>;
119441
119955
 
119442
- declare const routeName$5S = "/v1/api/claims/categories/CAR";
119443
- type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5S]['get']['responses'][200]['content']['application/json'];
119956
+ declare const routeName$5V = "/v1/api/claims/categories/CAR";
119957
+ type GetAllCarClaimCategoriesResponse = paths[typeof routeName$5V]['get']['responses'][200]['content']['application/json'];
119444
119958
  declare const getAllCarClaimCategories: (wgApiClient: ClientType) => Promise<GetAllCarClaimCategoriesResponse>;
119445
119959
 
119446
- declare const routeName$5R = "/v1/api/claims/info/{claim_type}/{claim_category}";
119447
- type GetInfoForClaimPathParams = paths[typeof routeName$5R]['get']['parameters']['path'];
119448
- type GetInfoForClaimQueryParams = paths[typeof routeName$5R]['get']['parameters']['query'];
119449
- type GetInfoForClaimResponse = paths[typeof routeName$5R]['get']['responses'][200]['content']['application/json'];
119450
- type GetInfoForClaimProps = paths[typeof routeName$5R]['get']['parameters'];
119960
+ declare const routeName$5U = "/v1/api/claims/info/{claim_type}/{claim_category}";
119961
+ type GetInfoForClaimPathParams = paths[typeof routeName$5U]['get']['parameters']['path'];
119962
+ type GetInfoForClaimQueryParams = paths[typeof routeName$5U]['get']['parameters']['query'];
119963
+ type GetInfoForClaimResponse = paths[typeof routeName$5U]['get']['responses'][200]['content']['application/json'];
119964
+ type GetInfoForClaimProps = paths[typeof routeName$5U]['get']['parameters'];
119451
119965
  declare const getInfoForClaim: (props: GetInfoForClaimProps, wgApiClient: ClientType) => Promise<GetInfoForClaimResponse>;
119452
119966
 
119453
- declare const routeName$5Q = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
119454
- type CreateNoteOnEventPathParams = paths[typeof routeName$5Q]['post']['parameters']['path'];
119455
- type CreateNoteOnEventQueryParams = paths[typeof routeName$5Q]['post']['parameters']['query'];
119456
- type CreateNoteOnEventResponse = paths[typeof routeName$5Q]['post']['responses'][201]['content']['application/json'];
119967
+ declare const routeName$5T = "/v1/api/claims/{claim_id}/events/{event_id}/notes";
119968
+ type CreateNoteOnEventPathParams = paths[typeof routeName$5T]['post']['parameters']['path'];
119969
+ type CreateNoteOnEventQueryParams = paths[typeof routeName$5T]['post']['parameters']['query'];
119970
+ type CreateNoteOnEventResponse = paths[typeof routeName$5T]['post']['responses'][201]['content']['application/json'];
119457
119971
  interface CreateNoteOnEventProps {
119458
119972
  params: {
119459
119973
  query: CreateNoteOnEventQueryParams;
@@ -119462,10 +119976,10 @@ interface CreateNoteOnEventProps {
119462
119976
  }
119463
119977
  declare const createNoteOnEvent: (props: CreateNoteOnEventProps, wgApiClient: ClientType) => Promise<CreateNoteOnEventResponse>;
119464
119978
 
119465
- declare const routeName$5P = "/v1/api/claims/notes/{note_id}";
119466
- type DeleteNotePathParams = paths[typeof routeName$5P]['delete']['parameters']['path'];
119467
- type DeleteNoteQueryParams = paths[typeof routeName$5P]['delete']['parameters']['query'];
119468
- type DeleteNoteResponse = paths[typeof routeName$5P]['delete']['responses'][200]['content']['application/json'];
119979
+ declare const routeName$5S = "/v1/api/claims/notes/{note_id}";
119980
+ type DeleteNotePathParams = paths[typeof routeName$5S]['delete']['parameters']['path'];
119981
+ type DeleteNoteQueryParams = paths[typeof routeName$5S]['delete']['parameters']['query'];
119982
+ type DeleteNoteResponse = paths[typeof routeName$5S]['delete']['responses'][200]['content']['application/json'];
119469
119983
  interface DeleteNoteProps {
119470
119984
  params: {
119471
119985
  query: DeleteNoteQueryParams;
@@ -119474,10 +119988,10 @@ interface DeleteNoteProps {
119474
119988
  }
119475
119989
  declare const deleteNote: (props: DeleteNoteProps, wgApiClient: ClientType) => Promise<DeleteNoteResponse>;
119476
119990
 
119477
- declare const routeName$5O = "/v1/api/claims/notes/{note_id}";
119478
- type UpdateNotePathParams = paths[typeof routeName$5O]['patch']['parameters']['path'];
119479
- type UpdateNoteQueryParams = paths[typeof routeName$5O]['patch']['parameters']['query'];
119480
- type UpdateNoteResponse = paths[typeof routeName$5O]['patch']['responses'][200]['content']['application/json'];
119991
+ declare const routeName$5R = "/v1/api/claims/notes/{note_id}";
119992
+ type UpdateNotePathParams = paths[typeof routeName$5R]['patch']['parameters']['path'];
119993
+ type UpdateNoteQueryParams = paths[typeof routeName$5R]['patch']['parameters']['query'];
119994
+ type UpdateNoteResponse = paths[typeof routeName$5R]['patch']['responses'][200]['content']['application/json'];
119481
119995
  interface UpdateNoteProps {
119482
119996
  params: {
119483
119997
  query: UpdateNoteQueryParams;
@@ -119486,17 +120000,17 @@ interface UpdateNoteProps {
119486
120000
  }
119487
120001
  declare const updateNote: (props: UpdateNoteProps, wgApiClient: ClientType) => Promise<UpdateNoteResponse>;
119488
120002
 
119489
- declare const routeName$5N = "/v1/api/claims/{claim_id}/report";
119490
- type ClaimReportByIdPathParams = paths[typeof routeName$5N]['get']['parameters']['path'];
119491
- type ClaimReportByIdQueryParams = paths[typeof routeName$5N]['get']['parameters']['query'];
119492
- type ClaimReportByIdResponse = paths[typeof routeName$5N]['get']['responses'][200]['content']['application/json'];
119493
- type ClaimReportByIdProps = paths[typeof routeName$5N]['get']['parameters'];
120003
+ declare const routeName$5Q = "/v1/api/claims/{claim_id}/report";
120004
+ type ClaimReportByIdPathParams = paths[typeof routeName$5Q]['get']['parameters']['path'];
120005
+ type ClaimReportByIdQueryParams = paths[typeof routeName$5Q]['get']['parameters']['query'];
120006
+ type ClaimReportByIdResponse = paths[typeof routeName$5Q]['get']['responses'][200]['content']['application/json'];
120007
+ type ClaimReportByIdProps = paths[typeof routeName$5Q]['get']['parameters'];
119494
120008
  declare const claimReportById: (props: ClaimReportByIdProps, wgApiClient: ClientType) => Promise<ClaimReportByIdResponse>;
119495
120009
 
119496
- declare const routeName$5M = "/v1/api/claims/{claim_id}/report/email";
119497
- type SendMailClaimReportByIdPathParams = paths[typeof routeName$5M]['post']['parameters']['path'];
119498
- type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5M]['post']['parameters']['query'];
119499
- type SendMailClaimReportByIdResponse = paths[typeof routeName$5M]['post']['responses'][200]['content']['application/json'];
120010
+ declare const routeName$5P = "/v1/api/claims/{claim_id}/report/email";
120011
+ type SendMailClaimReportByIdPathParams = paths[typeof routeName$5P]['post']['parameters']['path'];
120012
+ type SendMailClaimReportByIdQueryParams = paths[typeof routeName$5P]['post']['parameters']['query'];
120013
+ type SendMailClaimReportByIdResponse = paths[typeof routeName$5P]['post']['responses'][200]['content']['application/json'];
119500
120014
  interface SendMailClaimReportByIdProps {
119501
120015
  params: {
119502
120016
  query: SendMailClaimReportByIdQueryParams;
@@ -119505,16 +120019,16 @@ interface SendMailClaimReportByIdProps {
119505
120019
  }
119506
120020
  declare const sendMailClaimReportById: (props: SendMailClaimReportByIdProps, wgApiClient: ClientType) => Promise<SendMailClaimReportByIdResponse>;
119507
120021
 
119508
- declare const routeName$5L = "/v1/api/brokers/{broker_id}/connections";
119509
- type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5L]['get']['parameters']['path'];
119510
- type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5L]['get']['responses'][200]['content']['application/json'];
119511
- type GetBrokerConnectionsByIdProps = paths[typeof routeName$5L]['get']['parameters'];
120022
+ declare const routeName$5O = "/v1/api/brokers/{broker_id}/connections";
120023
+ type GetBrokerConnectionsByIdPathParams = paths[typeof routeName$5O]['get']['parameters']['path'];
120024
+ type GetBrokerConnectionsByIdResponse = paths[typeof routeName$5O]['get']['responses'][200]['content']['application/json'];
120025
+ type GetBrokerConnectionsByIdProps = paths[typeof routeName$5O]['get']['parameters'];
119512
120026
  declare const getBrokerConnectionsById: (props: GetBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetBrokerConnectionsByIdResponse>;
119513
120027
 
119514
- declare const routeName$5K = "/v1/api/brokers/{broker_id}/connections/{key}";
119515
- type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5K]['post']['requestBody']['content']['application/json'];
119516
- type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5K]['post']['parameters']['path'];
119517
- type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5K]['post']['responses'][201]['content']['application/json'];
120028
+ declare const routeName$5N = "/v1/api/brokers/{broker_id}/connections/{key}";
120029
+ type CreateBrokerConnectionsByIdBody = paths[typeof routeName$5N]['post']['requestBody']['content']['application/json'];
120030
+ type CreateBrokerConnectionsByIdPathParams = paths[typeof routeName$5N]['post']['parameters']['path'];
120031
+ type CreateBrokerConnectionsByIdResponse = paths[typeof routeName$5N]['post']['responses'][201]['content']['application/json'];
119518
120032
  interface CreateBrokerConnectionsByIdProps {
119519
120033
  body: CreateBrokerConnectionsByIdBody;
119520
120034
  params: {
@@ -119523,9 +120037,9 @@ interface CreateBrokerConnectionsByIdProps {
119523
120037
  }
119524
120038
  declare const createBrokerConnectionsById: (props: CreateBrokerConnectionsByIdProps, wgApiClient: ClientType) => Promise<CreateBrokerConnectionsByIdResponse>;
119525
120039
 
119526
- declare const routeName$5J = "/v1/api/brokers/{broker_id}/connections/{key}";
119527
- type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5J]['delete']['parameters']['path'];
119528
- type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5J]['delete']['responses'][200]['content']['application/json'];
120040
+ declare const routeName$5M = "/v1/api/brokers/{broker_id}/connections/{key}";
120041
+ type DeleteBrokerConnectionByKeyPathParams = paths[typeof routeName$5M]['delete']['parameters']['path'];
120042
+ type DeleteBrokerConnectionByKeyResponse = paths[typeof routeName$5M]['delete']['responses'][200]['content']['application/json'];
119529
120043
  interface DeleteBrokerConnectionByKeyProps {
119530
120044
  params: {
119531
120045
  path: DeleteBrokerConnectionByKeyPathParams;
@@ -119533,10 +120047,10 @@ interface DeleteBrokerConnectionByKeyProps {
119533
120047
  }
119534
120048
  declare const deleteBrokerConnectionByKey: (props: DeleteBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteBrokerConnectionByKeyResponse>;
119535
120049
 
119536
- declare const routeName$5I = "/v1/api/brokers/{broker_id}/connections/{key}";
119537
- type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5I]['patch']['requestBody']['content']['application/json'];
119538
- type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5I]['patch']['parameters']['path'];
119539
- type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5I]['patch']['responses'][200]['content']['application/json'];
120050
+ declare const routeName$5L = "/v1/api/brokers/{broker_id}/connections/{key}";
120051
+ type UpdateBrokerConnectionByKeyBody = paths[typeof routeName$5L]['patch']['requestBody']['content']['application/json'];
120052
+ type UpdateBrokerConnectionByKeyPathParams = paths[typeof routeName$5L]['patch']['parameters']['path'];
120053
+ type UpdateBrokerConnectionByKeyResponse = paths[typeof routeName$5L]['patch']['responses'][200]['content']['application/json'];
119540
120054
  interface UpdateBrokerConnectionByKeyProps {
119541
120055
  body: UpdateBrokerConnectionByKeyBody;
119542
120056
  params: {
@@ -119545,10 +120059,10 @@ interface UpdateBrokerConnectionByKeyProps {
119545
120059
  }
119546
120060
  declare const updateBrokerConnectionByKey: (props: UpdateBrokerConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateBrokerConnectionByKeyResponse>;
119547
120061
 
119548
- declare const routeName$5H = "/v1/api/distributions/{distribution_id}/connections/{key}";
119549
- type CreateDistributionConnectionByIdBody = paths[typeof routeName$5H]['post']['requestBody']['content']['application/json'];
119550
- type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5H]['post']['parameters']['path'];
119551
- type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5H]['post']['responses'][201]['content']['application/json'];
120062
+ declare const routeName$5K = "/v1/api/distributions/{distribution_id}/connections/{key}";
120063
+ type CreateDistributionConnectionByIdBody = paths[typeof routeName$5K]['post']['requestBody']['content']['application/json'];
120064
+ type CreateDistributionConnectionByIdPathParams = paths[typeof routeName$5K]['post']['parameters']['path'];
120065
+ type CreateDistributionConnectionByIdResponse = paths[typeof routeName$5K]['post']['responses'][201]['content']['application/json'];
119552
120066
  interface CreateDistributionConnectionByIdProps {
119553
120067
  body: CreateDistributionConnectionByIdBody;
119554
120068
  params: {
@@ -119557,9 +120071,9 @@ interface CreateDistributionConnectionByIdProps {
119557
120071
  }
119558
120072
  declare const createDistributionConnectionById: (props: CreateDistributionConnectionByIdProps, wgApiClient: ClientType) => Promise<CreateDistributionConnectionByIdResponse>;
119559
120073
 
119560
- declare const routeName$5G = "/v1/api/distributions/{distribution_id}/connections/{key}";
119561
- type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5G]['delete']['parameters']['path'];
119562
- type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5G]['delete']['responses'][200]['content']['application/json'];
120074
+ declare const routeName$5J = "/v1/api/distributions/{distribution_id}/connections/{key}";
120075
+ type DeleteDistributionConnectionByKeyPathParams = paths[typeof routeName$5J]['delete']['parameters']['path'];
120076
+ type DeleteDistributionConnectionByKeyResponse = paths[typeof routeName$5J]['delete']['responses'][200]['content']['application/json'];
119563
120077
  interface DeleteDistributionConnectionByKeyProps {
119564
120078
  params: {
119565
120079
  path: DeleteDistributionConnectionByKeyPathParams;
@@ -119567,10 +120081,10 @@ interface DeleteDistributionConnectionByKeyProps {
119567
120081
  }
119568
120082
  declare const deleteDistributionConnectionByKey: (props: DeleteDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<DeleteDistributionConnectionByKeyResponse>;
119569
120083
 
119570
- declare const routeName$5F = "/v1/api/distributions/{distribution_id}/connections/{key}";
119571
- type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5F]['patch']['requestBody']['content']['application/json'];
119572
- type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5F]['patch']['parameters']['path'];
119573
- type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5F]['patch']['responses'][200]['content']['application/json'];
120084
+ declare const routeName$5I = "/v1/api/distributions/{distribution_id}/connections/{key}";
120085
+ type UpdateDistributionConnectionByKeyBody = paths[typeof routeName$5I]['patch']['requestBody']['content']['application/json'];
120086
+ type UpdateDistributionConnectionByKeyPathParams = paths[typeof routeName$5I]['patch']['parameters']['path'];
120087
+ type UpdateDistributionConnectionByKeyResponse = paths[typeof routeName$5I]['patch']['responses'][200]['content']['application/json'];
119574
120088
  interface UpdateDistributionConnectionByKeyProps {
119575
120089
  body: UpdateDistributionConnectionByKeyBody;
119576
120090
  params: {
@@ -119579,41 +120093,41 @@ interface UpdateDistributionConnectionByKeyProps {
119579
120093
  }
119580
120094
  declare const updateDistributionConnectionByKey: (props: UpdateDistributionConnectionByKeyProps, wgApiClient: ClientType) => Promise<UpdateDistributionConnectionByKeyResponse>;
119581
120095
 
119582
- declare const routeName$5E = "/v1/api/distributions/{distribution_id}/connections";
119583
- type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5E]['get']['parameters']['path'];
119584
- type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
119585
- type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5E]['get']['responses'][200]['content']['application/json'];
119586
- type GetDistributionConnectionsByIdProps = paths[typeof routeName$5E]['get']['parameters'];
120096
+ declare const routeName$5H = "/v1/api/distributions/{distribution_id}/connections";
120097
+ type GetDistributionConnectionsByIdPathParams = paths[typeof routeName$5H]['get']['parameters']['path'];
120098
+ type GetDistributionConnectionsByIdQueryParams = paths[typeof routeName$5H]['get']['parameters']['query'];
120099
+ type GetDistributionConnectionsByIdResponse = paths[typeof routeName$5H]['get']['responses'][200]['content']['application/json'];
120100
+ type GetDistributionConnectionsByIdProps = paths[typeof routeName$5H]['get']['parameters'];
119587
120101
  declare const getDistributionConnectionsById: (props: GetDistributionConnectionsByIdProps, wgApiClient: ClientType) => Promise<GetDistributionConnectionsByIdResponse>;
119588
120102
 
119589
- declare const routeName$5D = "/v1/api/connections/anva/parties";
119590
- type GetAnvaPartiesQueryParams = paths[typeof routeName$5D]['get']['parameters']['query'];
119591
- type GetAnvaPartiesResponse = paths[typeof routeName$5D]['get']['responses'][200]['content']['application/json'];
119592
- type GetAnvaPartiesProps = paths[typeof routeName$5D]['get']['parameters'];
120103
+ declare const routeName$5G = "/v1/api/connections/anva/parties";
120104
+ type GetAnvaPartiesQueryParams = paths[typeof routeName$5G]['get']['parameters']['query'];
120105
+ type GetAnvaPartiesResponse = paths[typeof routeName$5G]['get']['responses'][200]['content']['application/json'];
120106
+ type GetAnvaPartiesProps = paths[typeof routeName$5G]['get']['parameters'];
119593
120107
  declare const getAnvaParties: (props: GetAnvaPartiesProps, wgApiClient: ClientType) => Promise<GetAnvaPartiesResponse>;
119594
120108
 
119595
- declare const routeName$5C = "/v1/api/connections/anva/employees";
119596
- type GetAnvaEmployeesQueryParams = paths[typeof routeName$5C]['get']['parameters']['query'];
119597
- type GetAnvaEmployeesResponse = paths[typeof routeName$5C]['get']['responses'][200]['content']['application/json'];
119598
- type GetAnvaEmployeesProps = paths[typeof routeName$5C]['get']['parameters'];
120109
+ declare const routeName$5F = "/v1/api/connections/anva/employees";
120110
+ type GetAnvaEmployeesQueryParams = paths[typeof routeName$5F]['get']['parameters']['query'];
120111
+ type GetAnvaEmployeesResponse = paths[typeof routeName$5F]['get']['responses'][200]['content']['application/json'];
120112
+ type GetAnvaEmployeesProps = paths[typeof routeName$5F]['get']['parameters'];
119599
120113
  declare const getAnvaEmployees: (props: GetAnvaEmployeesProps, wgApiClient: ClientType) => Promise<GetAnvaEmployeesResponse>;
119600
120114
 
119601
- declare const routeName$5B = "/v1/api/connections/anva/agents";
119602
- type GetAnvaAgentsQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
119603
- type GetAnvaAgentsResponse = paths[typeof routeName$5B]['get']['responses'][200]['content']['application/json'];
119604
- type GetAnvaAgentsProps = paths[typeof routeName$5B]['get']['parameters'];
120115
+ declare const routeName$5E = "/v1/api/connections/anva/agents";
120116
+ type GetAnvaAgentsQueryParams = paths[typeof routeName$5E]['get']['parameters']['query'];
120117
+ type GetAnvaAgentsResponse = paths[typeof routeName$5E]['get']['responses'][200]['content']['application/json'];
120118
+ type GetAnvaAgentsProps = paths[typeof routeName$5E]['get']['parameters'];
119605
120119
  declare const getAnvaAgents: (props: GetAnvaAgentsProps, wgApiClient: ClientType) => Promise<GetAnvaAgentsResponse>;
119606
120120
 
119607
- declare const routeName$5A = "/v1/api/connections/anva/products";
119608
- type GetAnvaProductsQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
119609
- type GetAnvaProductsResponse = paths[typeof routeName$5A]['get']['responses'][200]['content']['application/json'];
119610
- type GetAnvaProductsProps = paths[typeof routeName$5A]['get']['parameters'];
120121
+ declare const routeName$5D = "/v1/api/connections/anva/products";
120122
+ type GetAnvaProductsQueryParams = paths[typeof routeName$5D]['get']['parameters']['query'];
120123
+ type GetAnvaProductsResponse = paths[typeof routeName$5D]['get']['responses'][200]['content']['application/json'];
120124
+ type GetAnvaProductsProps = paths[typeof routeName$5D]['get']['parameters'];
119611
120125
  declare const getAnvaProducts: (props: GetAnvaProductsProps, wgApiClient: ClientType) => Promise<GetAnvaProductsResponse>;
119612
120126
 
119613
- declare const routeName$5z = "/v1/api/connections/anva/parties/{anva_id}/imports";
119614
- type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5z]['post']['parameters']['path'];
119615
- type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5z]['post']['parameters']['query'];
119616
- type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5z]['post']['responses'][201]['content']['application/json'];
120127
+ declare const routeName$5C = "/v1/api/connections/anva/parties/{anva_id}/imports";
120128
+ type ImportAnvaPartyInWegroupPathParams = paths[typeof routeName$5C]['post']['parameters']['path'];
120129
+ type ImportAnvaPartyInWegroupQueryParams = paths[typeof routeName$5C]['post']['parameters']['query'];
120130
+ type ImportAnvaPartyInWegroupResponse = paths[typeof routeName$5C]['post']['responses'][201]['content']['application/json'];
119617
120131
  interface ImportAnvaPartyInWegroupProps {
119618
120132
  params: {
119619
120133
  query: ImportAnvaPartyInWegroupQueryParams;
@@ -119622,31 +120136,31 @@ interface ImportAnvaPartyInWegroupProps {
119622
120136
  }
119623
120137
  declare const importAnvaPartyInWegroup: (props: ImportAnvaPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaPartyInWegroupResponse>;
119624
120138
 
119625
- declare const routeName$5y = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
119626
- type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5y]['get']['parameters']['path'];
119627
- type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5y]['get']['parameters']['query'];
119628
- type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5y]['get']['responses'][307]['content']['application/json'];
119629
- type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5y]['get']['parameters'];
120139
+ declare const routeName$5B = "/v1/api/connections/anva/parties/{anva_party_id}/policies/{anva_policy_id}/policy-document/imports";
120140
+ type ImportAnvaInsurancePolicyDocumentInWegroupPathParams = paths[typeof routeName$5B]['get']['parameters']['path'];
120141
+ type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams = paths[typeof routeName$5B]['get']['parameters']['query'];
120142
+ type ImportAnvaInsurancePolicyDocumentInWegroupResponse = paths[typeof routeName$5B]['get']['responses'][307]['content']['application/json'];
120143
+ type ImportAnvaInsurancePolicyDocumentInWegroupProps = paths[typeof routeName$5B]['get']['parameters'];
119630
120144
  declare const importAnvaInsurancePolicyDocumentInWegroup: (props: ImportAnvaInsurancePolicyDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyDocumentInWegroupResponse>;
119631
120145
 
119632
- declare const routeName$5x = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
119633
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5x]['get']['parameters']['path'];
119634
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5x]['get']['parameters']['query'];
119635
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5x]['get']['responses'][307]['content']['application/json'];
119636
- type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5x]['get']['parameters'];
120146
+ declare const routeName$5A = "/v1/api/connections/anva/parties/{anva_party_id}/policy-packages/{anva_policy_id}/policy-document/imports";
120147
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams = paths[typeof routeName$5A]['get']['parameters']['path'];
120148
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams = paths[typeof routeName$5A]['get']['parameters']['query'];
120149
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse = paths[typeof routeName$5A]['get']['responses'][307]['content']['application/json'];
120150
+ type ImportAnvaInsurancePolicyPackageDocumentInWegroupProps = paths[typeof routeName$5A]['get']['parameters'];
119637
120151
  declare const importAnvaInsurancePolicyPackageDocumentInWegroup: (props: ImportAnvaInsurancePolicyPackageDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse>;
119638
120152
 
119639
- declare const routeName$5w = "/v1/api/connections/anva/documents/import";
119640
- type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5w]['get']['parameters']['query'];
119641
- type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5w]['get']['responses'][307]['content']['application/json'];
119642
- type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5w]['get']['parameters'];
120153
+ declare const routeName$5z = "/v1/api/connections/anva/documents/import";
120154
+ type ImportAnvaDocumentInWegroupQueryParams = paths[typeof routeName$5z]['get']['parameters']['query'];
120155
+ type ImportAnvaDocumentInWegroupResponse = paths[typeof routeName$5z]['get']['responses'][307]['content']['application/json'];
120156
+ type ImportAnvaDocumentInWegroupProps = paths[typeof routeName$5z]['get']['parameters'];
119643
120157
  declare const importAnvaDocumentInWegroup: (props: ImportAnvaDocumentInWegroupProps, wgApiClient: ClientType) => Promise<ImportAnvaDocumentInWegroupResponse>;
119644
120158
 
119645
- declare const routeName$5v = "/v1/api/connections/anva/parties/{anva_party_id}/task";
119646
- type CreateAnvaTaskBody = paths[typeof routeName$5v]['post']['requestBody']['content']['application/json'];
119647
- type CreateAnvaTaskPathParams = paths[typeof routeName$5v]['post']['parameters']['path'];
119648
- type CreateAnvaTaskQueryParams = paths[typeof routeName$5v]['post']['parameters']['query'];
119649
- type CreateAnvaTaskResponse = paths[typeof routeName$5v]['post']['responses'][201]['content']['application/json'];
120159
+ declare const routeName$5y = "/v1/api/connections/anva/parties/{anva_party_id}/task";
120160
+ type CreateAnvaTaskBody = paths[typeof routeName$5y]['post']['requestBody']['content']['application/json'];
120161
+ type CreateAnvaTaskPathParams = paths[typeof routeName$5y]['post']['parameters']['path'];
120162
+ type CreateAnvaTaskQueryParams = paths[typeof routeName$5y]['post']['parameters']['query'];
120163
+ type CreateAnvaTaskResponse = paths[typeof routeName$5y]['post']['responses'][201]['content']['application/json'];
119650
120164
  interface CreateAnvaTaskProps {
119651
120165
  body: CreateAnvaTaskBody;
119652
120166
  params: {
@@ -119656,9 +120170,9 @@ interface CreateAnvaTaskProps {
119656
120170
  }
119657
120171
  declare const createAnvaTask: (props: CreateAnvaTaskProps, wgApiClient: ClientType) => Promise<CreateAnvaTaskResponse>;
119658
120172
 
119659
- declare const routeName$5u = "/v1/api/connections/anva/validate";
119660
- type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5u]['post']['parameters']['query'];
119661
- type ValidateAnvaConnectionResponse = paths[typeof routeName$5u]['post']['responses'][200]['content']['application/json'];
120173
+ declare const routeName$5x = "/v1/api/connections/anva/validate";
120174
+ type ValidateAnvaConnectionQueryParams = paths[typeof routeName$5x]['post']['parameters']['query'];
120175
+ type ValidateAnvaConnectionResponse = paths[typeof routeName$5x]['post']['responses'][200]['content']['application/json'];
119662
120176
  interface ValidateAnvaConnectionProps {
119663
120177
  params: {
119664
120178
  query: ValidateAnvaConnectionQueryParams;
@@ -119666,9 +120180,9 @@ interface ValidateAnvaConnectionProps {
119666
120180
  }
119667
120181
  declare const validateAnvaConnection: (props: ValidateAnvaConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaConnectionResponse>;
119668
120182
 
119669
- declare const routeName$5t = "/v1/api/connections/anva_dwh/validate";
119670
- type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
119671
- type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5t]['post']['responses'][200]['content']['application/json'];
120183
+ declare const routeName$5w = "/v1/api/connections/anva_dwh/validate";
120184
+ type ValidateAnvaDwhConnectionQueryParams = paths[typeof routeName$5w]['post']['parameters']['query'];
120185
+ type ValidateAnvaDwhConnectionResponse = paths[typeof routeName$5w]['post']['responses'][200]['content']['application/json'];
119672
120186
  interface ValidateAnvaDwhConnectionProps {
119673
120187
  params: {
119674
120188
  query: ValidateAnvaDwhConnectionQueryParams;
@@ -119676,22 +120190,22 @@ interface ValidateAnvaDwhConnectionProps {
119676
120190
  }
119677
120191
  declare const validateAnvaDwhConnection: (props: ValidateAnvaDwhConnectionProps, wgApiClient: ClientType) => Promise<ValidateAnvaDwhConnectionResponse>;
119678
120192
 
119679
- declare const routeName$5s = "/v1/api/connections/dias/parties";
119680
- type GetDiasPartiesQueryParams = paths[typeof routeName$5s]['get']['parameters']['query'];
119681
- type GetDiasPartiesResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
119682
- type GetDiasPartiesProps = paths[typeof routeName$5s]['get']['parameters'];
120193
+ declare const routeName$5v = "/v1/api/connections/dias/parties";
120194
+ type GetDiasPartiesQueryParams = paths[typeof routeName$5v]['get']['parameters']['query'];
120195
+ type GetDiasPartiesResponse = paths[typeof routeName$5v]['get']['responses'][200]['content']['application/json'];
120196
+ type GetDiasPartiesProps = paths[typeof routeName$5v]['get']['parameters'];
119683
120197
  declare const getDiasParties: (props: GetDiasPartiesProps, wgApiClient: ClientType) => Promise<GetDiasPartiesResponse>;
119684
120198
 
119685
- declare const routeName$5r = "/v1/api/connections/dias/employees";
119686
- type GetDiasEmployeesQueryParams = paths[typeof routeName$5r]['get']['parameters']['query'];
119687
- type GetDiasEmployeesResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
119688
- type GetDiasEmployeesProps = paths[typeof routeName$5r]['get']['parameters'];
120199
+ declare const routeName$5u = "/v1/api/connections/dias/employees";
120200
+ type GetDiasEmployeesQueryParams = paths[typeof routeName$5u]['get']['parameters']['query'];
120201
+ type GetDiasEmployeesResponse = paths[typeof routeName$5u]['get']['responses'][200]['content']['application/json'];
120202
+ type GetDiasEmployeesProps = paths[typeof routeName$5u]['get']['parameters'];
119689
120203
  declare const getDiasEmployees: (props: GetDiasEmployeesProps, wgApiClient: ClientType) => Promise<GetDiasEmployeesResponse>;
119690
120204
 
119691
- declare const routeName$5q = "/v1/api/connections/dias/parties/{dias_id}/imports";
119692
- type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5q]['post']['parameters']['path'];
119693
- type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5q]['post']['parameters']['query'];
119694
- type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5q]['post']['responses'][201]['content']['application/json'];
120205
+ declare const routeName$5t = "/v1/api/connections/dias/parties/{dias_id}/imports";
120206
+ type ImportDiasPartyInWegroupPathParams = paths[typeof routeName$5t]['post']['parameters']['path'];
120207
+ type ImportDiasPartyInWegroupQueryParams = paths[typeof routeName$5t]['post']['parameters']['query'];
120208
+ type ImportDiasPartyInWegroupResponse = paths[typeof routeName$5t]['post']['responses'][201]['content']['application/json'];
119695
120209
  interface ImportDiasPartyInWegroupProps {
119696
120210
  params: {
119697
120211
  query: ImportDiasPartyInWegroupQueryParams;
@@ -119700,37 +120214,37 @@ interface ImportDiasPartyInWegroupProps {
119700
120214
  }
119701
120215
  declare const importDiasPartyInWegroup: (props: ImportDiasPartyInWegroupProps, wgApiClient: ClientType) => Promise<ImportDiasPartyInWegroupResponse>;
119702
120216
 
119703
- declare const routeName$5p = "/v1/api/connections/dias/products";
119704
- type GetDiasProductsQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
119705
- type GetDiasProductsResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
119706
- type GetDiasProductsProps = paths[typeof routeName$5p]['get']['parameters'];
120217
+ declare const routeName$5s = "/v1/api/connections/dias/products";
120218
+ type GetDiasProductsQueryParams = paths[typeof routeName$5s]['get']['parameters']['query'];
120219
+ type GetDiasProductsResponse = paths[typeof routeName$5s]['get']['responses'][200]['content']['application/json'];
120220
+ type GetDiasProductsProps = paths[typeof routeName$5s]['get']['parameters'];
119707
120221
  declare const getDiasProducts: (props: GetDiasProductsProps, wgApiClient: ClientType) => Promise<GetDiasProductsResponse>;
119708
120222
 
119709
- declare const routeName$5o = "/v1/api/connections/dias/afdbranches";
119710
- type GetDiasAfdbranchesResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
120223
+ declare const routeName$5r = "/v1/api/connections/dias/afdbranches";
120224
+ type GetDiasAfdbranchesResponse = paths[typeof routeName$5r]['get']['responses'][200]['content']['application/json'];
119711
120225
  declare const getDiasAfdbranches: (wgApiClient: ClientType) => Promise<GetDiasAfdbranchesResponse>;
119712
120226
 
119713
- declare const routeName$5n = "/v1/api/connections/fasterforward/employees";
119714
- type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5n]['get']['parameters']['query'];
119715
- type GetFasterforwardEmployeesResponse = paths[typeof routeName$5n]['get']['responses'][200]['content']['application/json'];
119716
- type GetFasterforwardEmployeesProps = paths[typeof routeName$5n]['get']['parameters'];
120227
+ declare const routeName$5q = "/v1/api/connections/fasterforward/employees";
120228
+ type GetFasterforwardEmployeesQueryParams = paths[typeof routeName$5q]['get']['parameters']['query'];
120229
+ type GetFasterforwardEmployeesResponse = paths[typeof routeName$5q]['get']['responses'][200]['content']['application/json'];
120230
+ type GetFasterforwardEmployeesProps = paths[typeof routeName$5q]['get']['parameters'];
119717
120231
  declare const getFasterforwardEmployees: (props: GetFasterforwardEmployeesProps, wgApiClient: ClientType) => Promise<GetFasterforwardEmployeesResponse>;
119718
120232
 
119719
- declare const routeName$5m = "/v1/api/connections/assu/employees";
119720
- type GetAssuEmployeesQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
119721
- type GetAssuEmployeesResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
119722
- type GetAssuEmployeesProps = paths[typeof routeName$5m]['get']['parameters'];
120233
+ declare const routeName$5p = "/v1/api/connections/assu/employees";
120234
+ type GetAssuEmployeesQueryParams = paths[typeof routeName$5p]['get']['parameters']['query'];
120235
+ type GetAssuEmployeesResponse = paths[typeof routeName$5p]['get']['responses'][200]['content']['application/json'];
120236
+ type GetAssuEmployeesProps = paths[typeof routeName$5p]['get']['parameters'];
119723
120237
  declare const getAssuEmployees: (props: GetAssuEmployeesProps, wgApiClient: ClientType) => Promise<GetAssuEmployeesResponse>;
119724
120238
 
119725
- declare const routeName$5l = "/v1/api/connections/fasterforward/teams";
119726
- type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
119727
- type GetFasterforwardTeamsResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
119728
- type GetFasterforwardTeamsProps = paths[typeof routeName$5l]['get']['parameters'];
120239
+ declare const routeName$5o = "/v1/api/connections/fasterforward/teams";
120240
+ type GetFasterforwardTeamsQueryParams = paths[typeof routeName$5o]['get']['parameters']['query'];
120241
+ type GetFasterforwardTeamsResponse = paths[typeof routeName$5o]['get']['responses'][200]['content']['application/json'];
120242
+ type GetFasterforwardTeamsProps = paths[typeof routeName$5o]['get']['parameters'];
119729
120243
  declare const getFasterforwardTeams: (props: GetFasterforwardTeamsProps, wgApiClient: ClientType) => Promise<GetFasterforwardTeamsResponse>;
119730
120244
 
119731
- declare const routeName$5k = "/v1/api/connections/fasterforward/validate";
119732
- type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5k]['post']['parameters']['query'];
119733
- type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5k]['post']['responses'][200]['content']['application/json'];
120245
+ declare const routeName$5n = "/v1/api/connections/fasterforward/validate";
120246
+ type ValidateFasterforwardConnectionQueryParams = paths[typeof routeName$5n]['post']['parameters']['query'];
120247
+ type ValidateFasterforwardConnectionResponse = paths[typeof routeName$5n]['post']['responses'][200]['content']['application/json'];
119734
120248
  interface ValidateFasterforwardConnectionProps {
119735
120249
  params: {
119736
120250
  query: ValidateFasterforwardConnectionQueryParams;
@@ -119738,6 +120252,24 @@ interface ValidateFasterforwardConnectionProps {
119738
120252
  }
119739
120253
  declare const validateFasterforwardConnection: (props: ValidateFasterforwardConnectionProps, wgApiClient: ClientType) => Promise<ValidateFasterforwardConnectionResponse>;
119740
120254
 
120255
+ declare const routeName$5m = "/v1/api/connections/outlook/mails";
120256
+ type GetOutlookMailsQueryParams = paths[typeof routeName$5m]['get']['parameters']['query'];
120257
+ type GetOutlookMailsResponse = paths[typeof routeName$5m]['get']['responses'][200]['content']['application/json'];
120258
+ type GetOutlookMailsProps = paths[typeof routeName$5m]['get']['parameters'];
120259
+ declare const getOutlookMails: (props: GetOutlookMailsProps, wgApiClient: ClientType) => Promise<GetOutlookMailsResponse>;
120260
+
120261
+ declare const routeName$5l = "/v1/api/connections/outlook/mailfolders";
120262
+ type GetOutlookMailfoldersQueryParams = paths[typeof routeName$5l]['get']['parameters']['query'];
120263
+ type GetOutlookMailfoldersResponse = paths[typeof routeName$5l]['get']['responses'][200]['content']['application/json'];
120264
+ type GetOutlookMailfoldersProps = paths[typeof routeName$5l]['get']['parameters'];
120265
+ declare const getOutlookMailfolders: (props: GetOutlookMailfoldersProps, wgApiClient: ClientType) => Promise<GetOutlookMailfoldersResponse>;
120266
+
120267
+ declare const routeName$5k = "/v1/api/connections/outlook";
120268
+ type GetOutlookConnectionDetailsQueryParams = paths[typeof routeName$5k]['get']['parameters']['query'];
120269
+ type GetOutlookConnectionDetailsResponse = paths[typeof routeName$5k]['get']['responses'][200]['content']['application/json'];
120270
+ type GetOutlookConnectionDetailsProps = paths[typeof routeName$5k]['get']['parameters'];
120271
+ declare const getOutlookConnectionDetails: (props: GetOutlookConnectionDetailsProps, wgApiClient: ClientType) => Promise<GetOutlookConnectionDetailsResponse>;
120272
+
119741
120273
  declare const routeName$5j = "/v1/api/integrations/anva/parties";
119742
120274
  type V1ApiIntegrationsAnvaPartiesGetQueryParams = paths[typeof routeName$5j]['get']['parameters']['query'];
119743
120275
  type V1ApiIntegrationsAnvaPartiesGetResponse = paths[typeof routeName$5j]['get']['responses'][200]['content']['application/json'];
@@ -122839,4 +123371,4 @@ interface ValidateYellowhiveQuestionnaireProps {
122839
123371
  }
122840
123372
  declare const validateYellowhiveQuestionnaire: (props: ValidateYellowhiveQuestionnaireProps, wgApiClient: ClientType) => Promise<ValidateYellowhiveQuestionnaireResponse>;
122841
123373
 
122842
- export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasContactPersonBody, type CreateDiasContactPersonPathParams, type CreateDiasContactPersonQueryParams, type CreateDiasContactPersonResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasContactPersonCreateCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuestionType, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasContactPersonParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasContactPerson, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };
123374
+ export { type $defs, type AcceptOrRejectAnAdvisoryReportBody, type AcceptOrRejectAnAdvisoryReportPathParams, type AcceptOrRejectAnAdvisoryReportQueryParams, type AcceptOrRejectAnAdvisoryReportResponse, type AnalyzeEmailBody, type AnalyzeEmailPathParams, type AnalyzeEmailResponse, type AnswerAFlowDirectlyBody, type AnswerAFlowDirectlyPathParams, type AnswerAFlowDirectlyQueryParams, type AnswerAFlowDirectlyResponse, type AnswerAFlowSessionBody, type AnswerAFlowSessionPathParams, type AnswerAFlowSessionQueryParams, type AnswerAFlowSessionResponse, type BlockCustomerFromAccessingPartyPathParams, type BlockCustomerFromAccessingPartyResponse, type CalculateAnvaquotesBySessionIdBody, type CalculateAnvaquotesBySessionIdPathParams, type CalculateAnvaquotesBySessionIdQueryParams, type CalculateAnvaquotesBySessionIdResponse, type CalculateCarLeaseQuoteBody, type CalculateCarLeaseQuoteQueryParams, type CalculateCarLeaseQuoteResponse, type CalculateDiasQuotesBySessionIdBody, type CalculateDiasQuotesBySessionIdPathParams, type CalculateDiasQuotesBySessionIdQueryParams, type CalculateDiasQuotesBySessionIdResponse, type CalculateQuotesV2Body, type CalculateQuotesV2PathParams, type CalculateQuotesV2QueryParams, type CalculateQuotesV2Response, type CalculateYellowhiveQuotesBySessionIdBody, type CalculateYellowhiveQuotesBySessionIdPathParams, type CalculateYellowhiveQuotesBySessionIdQueryParams, type CalculateYellowhiveQuotesBySessionIdResponse, type ClaimReportByIdPathParams, type ClaimReportByIdQueryParams, type ClaimReportByIdResponse, type ClaimRequestUpdatePathParams, type ClaimRequestUpdateQueryParams, type ClaimRequestUpdateResponse, type ClientType, type CommentOnActivityPathParams, type CommentOnActivityQueryParams, type CommentOnActivityResponse, type CreateAccidentsForPartyBody, type CreateAccidentsForPartyPathParams, type CreateAccidentsForPartyQueryParams, type CreateAccidentsForPartyResponse, type CreateAccountBody, type CreateAccountQueryParams, type CreateAccountResponse, type CreateAdvisoryReportBody, type CreateAdvisoryReportQueryParams, type CreateAdvisoryReportResponse, type CreateAdvisoryReportRevisionBody, type CreateAdvisoryReportRevisionPathParams, type CreateAdvisoryReportRevisionQueryParams, type CreateAdvisoryReportRevisionResponse, type CreateAdvisoryReportRevisionV2Body, type CreateAdvisoryReportRevisionV2PathParams, type CreateAdvisoryReportRevisionV2QueryParams, type CreateAdvisoryReportRevisionV2Response, type CreateAdvisoryReportStepSettingsBody, type CreateAdvisoryReportStepSettingsPathParams, type CreateAdvisoryReportStepSettingsQueryParams, type CreateAdvisoryReportStepSettingsResponse, type CreateAnvaPartyBody, type CreateAnvaPartyPathParams, type CreateAnvaPartyQueryParams, type CreateAnvaPartyResponse, type CreateAnvaTaskBody, type CreateAnvaTaskPathParams, type CreateAnvaTaskQueryParams, type CreateAnvaTaskResponse, type CreateAnvaflowTagsBody, type CreateAnvaflowTagsQueryParams, type CreateAnvaflowTagsResponse, type CreateBicycleRiskObjectBody, type CreateBicycleRiskObjectPathParams, type CreateBicycleRiskObjectQueryParams, type CreateBicycleRiskObjectResponse, type CreateBoatRiskObjectBody, type CreateBoatRiskObjectPathParams, type CreateBoatRiskObjectQueryParams, type CreateBoatRiskObjectResponse, type CreateBrokerConnectionsByIdBody, type CreateBrokerConnectionsByIdPathParams, type CreateBrokerConnectionsByIdResponse, type CreateCampaignBody, type CreateCampaignQueryParams, type CreateCampaignResponse, type CreateCarRiskObjectBody, type CreateCarRiskObjectPathParams, type CreateCarRiskObjectQueryParams, type CreateCarRiskObjectResponse, type CreateClaimAsBrokerQueryParams, type CreateClaimAsBrokerResponse, type CreateClaimAsCustomerPathParams, type CreateClaimAsCustomerQueryParams, type CreateClaimAsCustomerResponse, type CreateCompanyLeadBody, type CreateCompanyLeadPathParams, type CreateCompanyLeadQueryParams, type CreateCompanyLeadResponse, type CreateConversationBody, type CreateConversationPathParams, type CreateConversationQueryParams, type CreateConversationReminderPathParams, type CreateConversationReminderResponse, type CreateConversationResponse, type CreateCustomerLeadBody, type CreateCustomerLeadPathParams, type CreateCustomerLeadQueryParams, type CreateCustomerLeadResponse, type CreateDiasContactPersonBody, type CreateDiasContactPersonPathParams, type CreateDiasContactPersonQueryParams, type CreateDiasContactPersonResponse, type CreateDistributionConnectionByIdBody, type CreateDistributionConnectionByIdPathParams, type CreateDistributionConnectionByIdResponse, type CreateDistributionTagBody, type CreateDistributionTagQueryParams, type CreateDistributionTagResponse, type CreateDocumentForClaimAsCustomerPathParams, type CreateDocumentForClaimAsCustomerQueryParams, type CreateDocumentForClaimAsCustomerResponse, type CreateDocumentForClaimPathParams, type CreateDocumentForClaimQueryParams, type CreateDocumentForClaimResponse, type CreateDocumentForPartyBody, type CreateDocumentForPartyPathParams, type CreateDocumentForPartyQueryParams, type CreateDocumentForPartyResponse, type CreateEntityAsBrokerPathParams, type CreateEntityAsBrokerQueryParams, type CreateEntityAsBrokerResponse, type CreateEntityAsCustomerWithTokenPathParams, type CreateEntityAsCustomerWithTokenQueryParams, type CreateEntityAsCustomerWithTokenResponse, type CreateFamilyRiskObjectBody, type CreateFamilyRiskObjectPathParams, type CreateFamilyRiskObjectQueryParams, type CreateFamilyRiskObjectResponse, type CreateInsurancePoliciesForPartyBody, type CreateInsurancePoliciesForPartyPathParams, type CreateInsurancePoliciesForPartyResponse, type CreateInsuranceProductClauseForDistributionBody, type CreateInsuranceProductClauseForDistributionQueryParams, type CreateInsuranceProductClauseForDistributionResponse, type CreateLegalPartyBody, type CreateLegalPartyResponse, type CreateLegalRiskObjectBody, type CreateLegalRiskObjectPathParams, type CreateLegalRiskObjectQueryParams, type CreateLegalRiskObjectResponse, type CreateLockForClaimPathParams, type CreateLockForClaimQueryParams, type CreateLockForClaimResponse, type CreateMiscellaneousRiskObjectBody, type CreateMiscellaneousRiskObjectPathParams, type CreateMiscellaneousRiskObjectQueryParams, type CreateMiscellaneousRiskObjectResponse, type CreateNaturalPartyBody, type CreateNaturalPartyResponse, type CreateNoteOnEventAsCustomerPathParams, type CreateNoteOnEventAsCustomerQueryParams, type CreateNoteOnEventAsCustomerResponse, type CreateNoteOnEventPathParams, type CreateNoteOnEventQueryParams, type CreateNoteOnEventResponse, type CreateOfferRevisionBody, type CreateOfferRevisionPathParams, type CreateOfferRevisionResponse, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdBody, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdPathParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdQueryParams, type CreateOrReplaceInsurancePolicyForAdvisoryReportByIdResponse, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdBody, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdPathParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdQueryParams, type CreateOrReplacePolicyPackagesForAdvisoryReportByIdResponse, type CreatePartyActivitiesAsCustomerBody, type CreatePartyActivitiesAsCustomerResponse, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationBody, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationQueryParams, type CreatePartyByEnrichingWithEnrichingWithCompanyRegistrationResponse, type CreatePartyGroupRiskObjectBody, type CreatePartyGroupRiskObjectPathParams, type CreatePartyGroupRiskObjectQueryParams, type CreatePartyGroupRiskObjectResponse, type CreatePartyNoteBody, type CreatePartyNotePathParams, type CreatePartyNoteResponse, type CreatePartyOffersBody, type CreatePartyOffersPathParams, type CreatePartyOffersQueryParams, type CreatePartyOffersResponse, type CreatePartyRelationsBody, type CreatePartyRelationsQueryParams, type CreatePartyRelationsResponse, type CreateProfileaseCarLeaseOfferBody, type CreateProfileaseCarLeaseOfferQueryParams, type CreateProfileaseCarLeaseOfferResponse, type CreateProflowSessionByBatchIdPathParams, type CreateProflowSessionByBatchIdQueryParams, type CreateProflowSessionByBatchIdResponse, type CreateRecommendationByPartyIdBody, type CreateRecommendationByPartyIdPathParams, type CreateRecommendationByPartyIdQueryParams, type CreateRecommendationByPartyIdResponse, type CreateRecommendationBySessionIdBody, type CreateRecommendationBySessionIdQueryParams, type CreateRecommendationBySessionIdResponse, type CreateReferenceForPartyBody, type CreateReferenceForPartyPathParams, type CreateReferenceForPartyResponse, type CreateReferencesForRiskObjectBody, type CreateReferencesForRiskObjectPathParams, type CreateReferencesForRiskObjectQueryParams, type CreateReferencesForRiskObjectResponse, type CreateRelationBetweenRiskObjectAndPartyBody, type CreateRelationBetweenRiskObjectAndPartyPathParams, type CreateRelationBetweenRiskObjectAndPartyQueryParams, type CreateRelationBetweenRiskObjectAndPartyResponse, type CreateRiskDomainActionForAdvisoryReportByIdBody, type CreateRiskDomainActionForAdvisoryReportByIdPathParams, type CreateRiskDomainActionForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionForAdvisoryReportByIdResponse, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdBody, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainActionFromAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainAdviceForAdvisoryReportByIdBody, type CreateRiskDomainAdviceForAdvisoryReportByIdPathParams, type CreateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type CreateRiskDomainAdviceForAdvisoryReportByIdResponse, type CreateRiskDomainForAdvisoryReportByIdBody, type CreateRiskDomainForAdvisoryReportByIdPathParams, type CreateRiskDomainForAdvisoryReportByIdQueryParams, type CreateRiskDomainForAdvisoryReportByIdResponse, type CreateSemiTrailerRiskObjectBody, type CreateSemiTrailerRiskObjectPathParams, type CreateSemiTrailerRiskObjectQueryParams, type CreateSemiTrailerRiskObjectResponse, type CreateToolkitAccountBody, type CreateToolkitAccountQueryParams, type CreateToolkitAccountResponse, type CreateToolkitBrokerBody, type CreateToolkitBrokerQueryParams, type CreateToolkitBrokerResponse, type CreateTrailerRiskObjectBody, type CreateTrailerRiskObjectPathParams, type CreateTrailerRiskObjectQueryParams, type CreateTrailerRiskObjectResponse, type CreateTrialBrokerBody, type CreateTrialBrokerQueryParams, type CreateTrialBrokerResponse, type CreateUploadLinkAsCustomerPathParams, type CreateUploadLinkAsCustomerQueryParams, type CreateUploadLinkAsCustomerResponse, type CreateUspItemForDistributionBody, type CreateUspItemForDistributionQueryParams, type CreateUspItemForDistributionResponse, type CreateYellowhiveContactPersonBody, type CreateYellowhiveContactPersonPathParams, type CreateYellowhiveContactPersonQueryParams, type CreateYellowhiveContactPersonResponse, type DeleteAdvisoryReportPathParams, type DeleteAdvisoryReportQueryParams, type DeleteAdvisoryReportResponse, type DeleteAdvisoryReportRevisionPathParams, type DeleteAdvisoryReportRevisionQueryParams, type DeleteAdvisoryReportRevisionResponse, type DeleteAllSessionsBySessionIdPathParams, type DeleteAllSessionsBySessionIdResponse, type DeleteAnvaClosingQuestionsPathParams, type DeleteAnvaClosingQuestionsQueryParams, type DeleteAnvaClosingQuestionsResponse, type DeleteBrokerConnectionByKeyPathParams, type DeleteBrokerConnectionByKeyResponse, type DeleteClaimAsBrokerByIdPathParams, type DeleteClaimAsBrokerByIdQueryParams, type DeleteClaimAsBrokerByIdResponse, type DeleteCommentOnActivityPathParams, type DeleteCommentOnActivityQueryParams, type DeleteCommentOnActivityResponse, type DeleteDistributionConnectionByKeyPathParams, type DeleteDistributionConnectionByKeyResponse, type DeleteDistributionFaqPathParams, type DeleteDistributionFaqQueryParams, type DeleteDistributionFaqResponse, type DeleteDistributionTagPathParams, type DeleteDistributionTagQueryParams, type DeleteDistributionTagResponse, type DeleteDocumentByIdAsCustomerWithTokenPathParams, type DeleteDocumentByIdAsCustomerWithTokenQueryParams, type DeleteDocumentByIdAsCustomerWithTokenResponse, type DeleteDocumentByIdPathParams, type DeleteDocumentByIdQueryParams, type DeleteDocumentByIdResponse, type DeleteDocumentForPartyPathParams, type DeleteDocumentForPartyResponse, type DeleteEntityAsBrokerByIdPathParams, type DeleteEntityAsBrokerByIdQueryParams, type DeleteEntityAsBrokerByIdResponse, type DeleteEntityByIdAsCustomerWithTokenPathParams, type DeleteEntityByIdAsCustomerWithTokenQueryParams, type DeleteEntityByIdAsCustomerWithTokenResponse, type DeleteEntityBySessionIdAndFlowIdPathParams, type DeleteEntityBySessionIdAndFlowIdQueryParams, type DeleteEntityBySessionIdAndFlowIdResponse, type DeleteInsurancePoliciesForPartyPathParams, type DeleteInsurancePoliciesForPartyResponse, type DeleteInsurancePolicyForAdvisoryReportByIdPathParams, type DeleteInsurancePolicyForAdvisoryReportByIdQueryParams, type DeleteInsurancePolicyForAdvisoryReportByIdResponse, type DeleteInsuranceProductClauseForDistributionPathParams, type DeleteInsuranceProductClauseForDistributionQueryParams, type DeleteInsuranceProductClauseForDistributionResponse, type DeleteNotePathParams, type DeleteNoteQueryParams, type DeleteNoteResponse, type DeletePartyActivitiesAsCustomerPathParams, type DeletePartyActivitiesAsCustomerResponse, type DeletePartyEntityBySessionIdAndFlowIdPathParams, type DeletePartyEntityBySessionIdAndFlowIdQueryParams, type DeletePartyEntityBySessionIdAndFlowIdResponse, type DeletePartyNoteByIdPathParams, type DeletePartyNoteByIdResponse, type DeletePartyRelationsPathParams, type DeletePartyRelationsResponse, type DeletePolicyPackagesForPartyPathParams, type DeletePolicyPackagesForPartyResponse, type DeleteRelationBetweenRiskObjectAndPartyPathParams, type DeleteRelationBetweenRiskObjectAndPartyQueryParams, type DeleteRelationBetweenRiskObjectAndPartyResponse, type DeleteRiskDomainActionForAdvisoryReportByIdPathParams, type DeleteRiskDomainActionForAdvisoryReportByIdQueryParams, type DeleteRiskDomainActionForAdvisoryReportByIdResponse, type DeleteRiskDomainAdviceForAdvisoryReportByIdPathParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdQueryParams, type DeleteRiskDomainAdviceForAdvisoryReportByIdResponse, type DeleteRiskDomainForAdvisoryReportByIdPathParams, type DeleteRiskDomainForAdvisoryReportByIdQueryParams, type DeleteRiskDomainForAdvisoryReportByIdResponse, type DeleteRiskObjectByIdPathParams, type DeleteRiskObjectByIdResponse, type DeleteSessionBySessionIdPathParams, type DeleteSessionBySessionIdResponse, type DeleteUspByDistributionAndIdPathParams, type DeleteUspByDistributionAndIdQueryParams, type DeleteUspByDistributionAndIdResponse, type DelinkPartyToUserBody, type DelinkPartyToUserResponse, type Disable2FaByUserBody, type Disable2FaByUserResponse, type Disable2FaForCustomerPathParams, type Disable2FaForCustomerResponse, type DownloadDocumentByIdPathParams, type DownloadDocumentByIdQueryParams, type DownloadDocumentByIdResponse, type EditInsuranceProductAdviceByDistributionBody, type EditInsuranceProductAdviceByDistributionPathParams, type EditInsuranceProductAdviceByDistributionResponse, type EditInsuranceProductDescriptionsByDistributionPathParams, type EditInsuranceProductDescriptionsByDistributionResponse, type Enable2FaBody, type Enable2FaResponse, type EnqueueCalculationAnvaquotesBySessionIdBody, type EnqueueCalculationAnvaquotesBySessionIdPathParams, type EnqueueCalculationAnvaquotesBySessionIdQueryParams, type EnqueueCalculationAnvaquotesBySessionIdResponse, type EnqueueSendCustomQuotesToAnvaBySessionIdBody, type EnqueueSendCustomQuotesToAnvaBySessionIdPathParams, type EnqueueSendCustomQuotesToAnvaBySessionIdQueryParams, type EnqueueSendCustomQuotesToAnvaBySessionIdResponse, type EnqueueSendOfferToAnvaBySessionIdPathParams, type EnqueueSendOfferToAnvaBySessionIdQueryParams, type EnqueueSendOfferToAnvaBySessionIdResponse, type EnrichPartyByIdWithExternalCompanyDataPathParams, type EnrichPartyByIdWithExternalCompanyDataQueryParams, type EnrichPartyByIdWithExternalCompanyDataResponse, type ExportAdvisoryReportByIdBody, type ExportAdvisoryReportByIdPathParams, type ExportAdvisoryReportByIdQueryParams, type ExportAdvisoryReportByIdResponse, type ExportPartyByIdPathParams, type ExportPartyByIdResponse, type ExportQuoteByIdBody, type ExportQuoteByIdPathParams, type ExportQuoteByIdQueryParams, type ExportQuoteByIdResponse, type ExtractInsurancePoliciesForOneDocumentBody, type ExtractInsurancePoliciesForOneDocumentEnqueueBody, type ExtractInsurancePoliciesForOneDocumentEnqueueResponse, type ExtractInsurancePoliciesForOneDocumentResponse, type ExtractManyDocumentInBatchBody, type ExtractManyDocumentInBatchResponse, type ExtractOffersForOneDocumentBody, type ExtractOffersForOneDocumentEnqueueBody, type ExtractOffersForOneDocumentEnqueueResponse, type ExtractOffersForOneDocumentResponse, type ExtractOneDocumentBody, type ExtractOneDocumentEnqueueBody, type ExtractOneDocumentEnqueueResponse, type ExtractOneDocumentResponse, type ExtractPartyForOneDocumentEnqueueBody, type ExtractPartyForOneDocumentEnqueueResponse, type ExtractWebsiteThemeBody, type ExtractWebsiteThemeResponse, type GenerateCompanyDescriptionBody, type GenerateCompanyDescriptionResponse, type GenerateDistributionAboutUsCompletionBody, type GenerateDistributionAboutUsCompletionResponse, type GenerateDnsPrefixBody, type GenerateDnsPrefixQueryParams, type GenerateDnsPrefixResponse, type GenerateDocxDocumentOfAdvisoryReportByIdPathParams, type GenerateDocxDocumentOfAdvisoryReportByIdQueryParams, type GenerateDocxDocumentOfAdvisoryReportByIdResponse, type GenerateFlowQuestionnaireDocumentBody, type GenerateFlowQuestionnaireDocumentPathParams, type GenerateFlowQuestionnaireDocumentQueryParams, type GenerateFlowQuestionnaireDocumentResponse, type GenerateFlowQuestionnairePathParams, type GenerateFlowQuestionnaireQueryParams, type GenerateFlowQuestionnaireResponse, type GenerateOfferRequestForInsuranceCompanyDocxBody, type GenerateOfferRequestForInsuranceCompanyDocxResponse, type GenerateOfferRequestForInsuranceCompanyPdfBody, type GenerateOfferRequestForInsuranceCompanyPdfResponse, type GeneratePdfOfAdvisoryReportByIdPathParams, type GeneratePdfOfAdvisoryReportByIdQueryParams, type GeneratePdfOfAdvisoryReportByIdResponse, type GeneratePersonalizationAdviceForAdvisoryReportPathParams, type GeneratePersonalizationAdviceForAdvisoryReportResponse, type GeneratePossibleProductsBySessionV2Body, type GeneratePossibleProductsBySessionV2PathParams, type GeneratePossibleProductsBySessionV2QueryParams, type GeneratePossibleProductsBySessionV2Response, type GenerateQuestionsToPrefillByCarBody, type GenerateQuestionsToPrefillByCarPathParams, type GenerateQuestionsToPrefillByCarQueryParams, type GenerateQuestionsToPrefillByCarResponse, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleBody, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleQueryParams, type GenerateStandaloneFrontPagePdfOfAdvisoryReportAsExampleResponse, type GenerateTokenForSocialLoginFlowAsBrokerQueryParams, type GenerateTokenForSocialLoginFlowAsBrokerResponse, type Get2FaByUserResponse, type GetActivityByPartyPathParams, type GetActivityByPartyQueryParams, type GetActivityByPartyResponse, type GetAddressInfoFreemiumQueryParams, type GetAddressInfoFreemiumResponse, type GetAddressInfoQueryParams, type GetAddressInfoResponse, type GetAdvicesPerInsuranceProductPathParams, type GetAdvicesPerInsuranceProductResponse, type GetAdvisoryReportByIdPathParams, type GetAdvisoryReportByIdQueryParams, type GetAdvisoryReportByIdResponse, type GetAdvisoryReportExportOptionsPathParams, type GetAdvisoryReportExportOptionsResponse, type GetAdvisoryReportRevisionDiffPathParams, type GetAdvisoryReportRevisionDiffQueryParams, type GetAdvisoryReportRevisionDiffResponse, type GetAllActivityTypesQueryParams, type GetAllActivityTypesResponse, type GetAllAdvisoryReportsQueryParams, type GetAllAdvisoryReportsResponse, type GetAllAvailableAffiliationsResponse, type GetAllAvailablePlansResponse, type GetAllAvailableThemesInWegroupQueryParams, type GetAllAvailableThemesInWegroupResponse, type GetAllBrokersLinkedToCurrentUserResponse, type GetAllCampaignTemplatesQueryParams, type GetAllCampaignTemplatesResponse, type GetAllCampaignsByDistributionQueryParams, type GetAllCampaignsByDistributionResponse, type GetAllCarClaimCategoriesResponse, type GetAllClaimsAsBrokerQueryParams, type GetAllClaimsAsBrokerResponse, type GetAllConversationsQueryParams, type GetAllConversationsResponse, type GetAllCustomersByDistributionQueryParams, type GetAllCustomersByDistributionResponse, type GetAllEnumsResponse, type GetAllLeadsByDistributionPathParams, type GetAllLeadsByDistributionResponse, type GetAllLeaseOffersByDistributionPathParams, type GetAllLeaseOffersByDistributionQueryParams, type GetAllLeaseOffersByDistributionResponse, type GetAllPartiesByDistributionPathParams, type GetAllPartiesByDistributionQueryParams, type GetAllPartiesByDistributionResponse, type GetAllPartiesByDistributionV2PathParams, type GetAllPartiesByDistributionV2QueryParams, type GetAllPartiesByDistributionV2Response, type GetAllRiskObjectsByPartyIdPathParams, type GetAllRiskObjectsByPartyIdQueryParams, type GetAllRiskObjectsByPartyIdResponse, type GetAllRiskObjectsByPartyIdV2PathParams, type GetAllRiskObjectsByPartyIdV2QueryParams, type GetAllRiskObjectsByPartyIdV2Response, type GetAllSessionsBySessionIdPathParams, type GetAllSessionsBySessionIdQueryParams, type GetAllSessionsBySessionIdResponse, type GetAllVehicleBrandsQueryParams, type GetAllVehicleBrandsResponse, type GetAllVehicleSeriesByBrandKeyPathParams, type GetAllVehicleSeriesByBrandKeyQueryParams, type GetAllVehicleSeriesByBrandKeyResponse, type GetAllVehicleVersionsBySeriesIdPathParams, type GetAllVehicleVersionsBySeriesIdQueryParams, type GetAllVehicleVersionsBySeriesIdResponse, type GetAnvaAgentsQueryParams, type GetAnvaAgentsResponse, type GetAnvaClosingQuestionsQueryParams, type GetAnvaClosingQuestionsResponse, type GetAnvaCollectionMethodsPathParams, type GetAnvaCollectionMethodsQueryParams, type GetAnvaCollectionMethodsResponse, type GetAnvaEmployeesQueryParams, type GetAnvaEmployeesResponse, type GetAnvaLabelsQueryParams, type GetAnvaLabelsResponse, type GetAnvaMutationReasonsQueryParams, type GetAnvaMutationReasonsResponse, type GetAnvaPartiesQueryParams, type GetAnvaPartiesResponse, type GetAnvaProductsQueryParams, type GetAnvaProductsResponse, type GetAnvaproductByIdPathParams, type GetAnvaproductByIdQueryParams, type GetAnvaproductByIdResponse, type GetAnvaproductsQueryParams, type GetAnvaproductsResponse, type GetArtifactFromEventByIdPathParams, type GetArtifactFromEventByIdQueryParams, type GetArtifactFromEventByIdResponse, type GetAssuEmployeesQueryParams, type GetAssuEmployeesResponse, type GetAvailableFlowsForDistributionInfoQueryParams, type GetAvailableFlowsForDistributionInfoResponse, type GetBrokerByAnvaProducerIdPathParams, type GetBrokerByAnvaProducerIdResponse, type GetBrokerByAnvaRelationMangerIdPathParams, type GetBrokerByAnvaRelationMangerIdResponse, type GetBrokerConnectionsByIdPathParams, type GetBrokerConnectionsByIdResponse, type GetBrokerIntegrationsPathParams, type GetBrokerIntegrationsResponse, type GetCampaignByIdPathParams, type GetCampaignByIdQueryParams, type GetCampaignByIdResponse, type GetCampaignSettingsByDistributionQueryParams, type GetCampaignSettingsByDistributionResponse, type GetCampaignTargetMailTemplateQueryParams, type GetCampaignTargetMailTemplateResponse, type GetCarLeaseRatesQueryParams, type GetCarLeaseRatesResponse, type GetChatBySessionIdPathParams, type GetChatBySessionIdResponse, type GetChatSummaryV2BySessionIdPathParams, type GetChatSummaryV2BySessionIdQueryParams, type GetChatSummaryV2BySessionIdResponse, type GetCheckupByPartyIdPathParams, type GetCheckupByPartyIdResponse, type GetClaimAsBrokerByIdPathParams, type GetClaimAsBrokerByIdQueryParams, type GetClaimAsBrokerByIdResponse, type GetClaimAsCustomerWithTokenPathParams, type GetClaimAsCustomerWithTokenQueryParams, type GetClaimAsCustomerWithTokenResponse, type GetClaimByIdAsCustomerPathParams, type GetClaimByIdAsCustomerResponse, type GetClaimEventsAsBrokerByIdPathParams, type GetClaimEventsAsBrokerByIdQueryParams, type GetClaimEventsAsBrokerByIdResponse, type GetClaimEventsAsCustomerPathParams, type GetClaimEventsAsCustomerQueryParams, type GetClaimEventsAsCustomerResponse, type GetClaimsAsCustomerQueryParams, type GetClaimsAsCustomerResponse, type GetClaimsAsPartyByIdPathParams, type GetClaimsAsPartyByIdResponse, type GetClaimsAsPartyPathParams, type GetClaimsAsPartyQueryParams, type GetClaimsAsPartyResponse, type GetComplianceByRiskObjectIdPathParams, type GetComplianceByRiskObjectIdResponse, type GetConversationByIdPathParams, type GetConversationByIdQueryParams, type GetConversationByIdResponse, type GetConversationNotesPathParams, type GetConversationNotesQueryParams, type GetConversationNotesResponse, type GetConversationReportPdfByIdBody, type GetConversationReportPdfByIdPathParams, type GetConversationReportPdfByIdQueryParams, type GetConversationReportPdfByIdResponse, type GetConversationsOriginFilterQueryParams, type GetConversationsOriginFilterResponse, type GetCurrentAccountInsightsAsCustomerQueryParams, type GetCurrentAccountInsightsAsCustomerResponse, type GetCurrentAccountInsightsAsPartyPathParams, type GetCurrentAccountInsightsAsPartyQueryParams, type GetCurrentAccountInsightsAsPartyResponse, type GetCurrentBrokerOfTheUserResponse, type GetCustomersByPartyPathParams, type GetCustomersByPartyQueryParams, type GetCustomersByPartyResponse, type GetDiasAfdbranchesResponse, type GetDiasCollectionMethodsPathParams, type GetDiasCollectionMethodsQueryParams, type GetDiasCollectionMethodsResponse, type GetDiasEmployeesQueryParams, type GetDiasEmployeesResponse, type GetDiasPartiesQueryParams, type GetDiasPartiesResponse, type GetDiasProductsQueryParams, type GetDiasProductsResponse, type GetDiasflowProductByIdPathParams, type GetDiasflowProductByIdQueryParams, type GetDiasflowProductByIdResponse, type GetDiasflowProductsQueryParams, type GetDiasflowProductsResponse, type GetDistributionActivityPathParams, type GetDistributionActivityQueryParams, type GetDistributionActivityResponse, type GetDistributionAffiliationsPathParams, type GetDistributionAffiliationsResponse, type GetDistributionByIdPathParams, type GetDistributionByIdResponse, type GetDistributionConnectionsByIdPathParams, type GetDistributionConnectionsByIdQueryParams, type GetDistributionConnectionsByIdResponse, type GetDistributionFaqQueryParams, type GetDistributionFaqResponse, type GetDistributionHasPendingUpgradePathParams, type GetDistributionHasPendingUpgradeResponse, type GetDistributionSettingsResponse, type GetDistributionTagsQueryParams, type GetDistributionTagsResponse, type GetDocumentExtractionBatchByIdPathParams, type GetDocumentExtractionBatchByIdResponse, type GetDocumentMetadataPathParams, type GetDocumentMetadataResponse, type GetDocumentsAsCustomerQueryParams, type GetDocumentsAsCustomerResponse, type GetDocumentsForPartyPathParams, type GetDocumentsForPartyQueryParams, type GetDocumentsForPartyResponse, type GetEmailByMessageIdQueryParams, type GetEmailByMessageIdResponse, type GetEncryptionKeysQueryParams, type GetEncryptionKeysResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponsePathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponseResponse, type GetEnterpriseByCompanyRegistrationNumberAndCountryPathParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryQueryParams, type GetEnterpriseByCompanyRegistrationNumberAndCountryResponse, type GetEnumByAnvaLabelPathParams, type GetEnumByAnvaLabelQueryParams, type GetEnumByAnvaLabelResponse, type GetEnumByDiasLabelPathParams, type GetEnumByDiasLabelQueryParams, type GetEnumByDiasLabelResponse, type GetEventsByAdvisoryReportIdPathParams, type GetEventsByAdvisoryReportIdQueryParams, type GetEventsByAdvisoryReportIdResponse, type GetExtractEnityInfoPathParams, type GetExtractEnityInfoResponse, type GetFasterforwardEmployeesQueryParams, type GetFasterforwardEmployeesResponse, type GetFasterforwardTeamsQueryParams, type GetFasterforwardTeamsResponse, type GetFinconnectLinkAsCustomerQueryParams, type GetFinconnectLinkAsCustomerResponse, type GetFinconnectLinkForInsurancePolicyAsCustomerPathParams, type GetFinconnectLinkForInsurancePolicyAsCustomerQueryParams, type GetFinconnectLinkForInsurancePolicyAsCustomerResponse, type GetFlowInfoByIdPathParams, type GetFlowInfoByIdQueryParams, type GetFlowInfoByIdResponse, type GetFlowsInfoQueryParams, type GetFlowsInfoResponse, type GetGbiQueryParams, type GetGbiResponse, type GetHubspotVisitorIdentificationTokenResponse, type GetInfoForClaimPathParams, type GetInfoForClaimQueryParams, type GetInfoForClaimResponse, type GetInsightsIfCarIsInsuredBody, type GetInsightsIfCarIsInsuredResponse, type GetInsuranceCompaniesQueryParams, type GetInsuranceCompaniesResponse, type GetInsurancePoliciesAsCustomerQueryParams, type GetInsurancePoliciesAsCustomerResponse, type GetInsurancePoliciesForPartyPathParams, type GetInsurancePoliciesForPartyQueryParams, type GetInsurancePoliciesForPartyResponse, type GetInsurancePolicyByIdAsCustomerPathParams, type GetInsurancePolicyByIdAsCustomerResponse, type GetInsurancePolicyByIdPathParams, type GetInsurancePolicyByIdResponse, type GetInsurancePolicySimulationsForPartyPathParams, type GetInsurancePolicySimulationsForPartyQueryParams, type GetInsurancePolicySimulationsForPartyResponse, type GetInsuranceProductClausesByDistributionQueryParams, type GetInsuranceProductClausesByDistributionResponse, type GetInsuranceProductsV2QueryParams, type GetInsuranceProductsV2Response, type GetIntegrationsByDistributionPathParams, type GetIntegrationsByDistributionResponse, type GetInvoiceByIdAsCustomerPathParams, type GetInvoiceByIdAsCustomerResponse, type GetInvoicesAsCustomerQueryParams, type GetInvoicesAsCustomerResponse, type GetInvoicesAsPartyByIdPathParams, type GetInvoicesAsPartyByIdResponse, type GetInvoicesAsPartyPathParams, type GetInvoicesAsPartyQueryParams, type GetInvoicesAsPartyResponse, type GetJobResultByIdPathParams, type GetJobResultByIdQueryParams, type GetJobResultByIdResponse, type GetKycByPartyPathParams, type GetKycByPartyQueryParams, type GetKycByPartyResponse, type GetLeadByIdPathParams, type GetLeadByIdResponse, type GetLeadProviderByIdPathParams, type GetLeadProviderByIdResponse, type GetLeadProvidersByAffinityQueryParams, type GetLeadProvidersByAffinityResponse, type GetLeaseOfferByIdPathParams, type GetLeaseOfferByIdQueryParams, type GetLeaseOfferByIdResponse, type GetLinkOfDocumentPathParams, type GetLinkOfDocumentResponse, type GetMetricsByCampaignPathParams, type GetMetricsByCampaignQueryParams, type GetMetricsByCampaignResponse, type GetMinimalOfferByIdPathParams, type GetMinimalOfferByIdQueryParams, type GetMinimalOfferByIdResponse, type GetMinimalOfferRevisionByIdPathParams, type GetMinimalOfferRevisionByIdResponse, type GetMinimalRiskObjectByIdPathParams, type GetMinimalRiskObjectByIdQueryParams, type GetMinimalRiskObjectByIdResponse, type GetNaceQueryParams, type GetNaceResponse, type GetNoveltyInsightsByDistributionPathParams, type GetNoveltyInsightsByDistributionQueryParams, type GetNoveltyInsightsByDistributionResponse, type GetOfferByIdPathParams, type GetOfferByIdResponse, type GetOffersByDistributionPathParams, type GetOffersByDistributionQueryParams, type GetOffersByDistributionResponse, type GetOnboardingChecklistByBrokerPathParams, type GetOnboardingChecklistByBrokerQueryParams, type GetOnboardingChecklistByBrokerResponse, type GetOrganisationDistributionsPathParams, type GetOrganisationDistributionsQueryParams, type GetOrganisationDistributionsResponse, type GetOrganisationLeadsPathParams, type GetOrganisationLeadsQueryParams, type GetOrganisationLeadsResponse, type GetOrganisationOffersPathParams, type GetOrganisationOffersQueryParams, type GetOrganisationOffersResponse, type GetOutlookConnectionDetailsQueryParams, type GetOutlookConnectionDetailsResponse, type GetOutlookMailfoldersQueryParams, type GetOutlookMailfoldersResponse, type GetOutlookMailsQueryParams, type GetOutlookMailsResponse, type GetPartiesByCustomerPathParams, type GetPartiesByCustomerQueryParams, type GetPartiesByCustomerResponse, type GetPartiesLinkedToUserResponse, type GetPartiesOriginFilterQueryParams, type GetPartiesOriginFilterResponse, type GetPartyAddressesPathParams, type GetPartyAddressesResponse, type GetPartyByIdPathParams, type GetPartyByIdResponse, type GetPartyMergeSuggestionsPathParams, type GetPartyMergeSuggestionsQueryParams, type GetPartyMergeSuggestionsResponse, type GetPdfOfAdvisoryReportByIdPathParams, type GetPdfOfAdvisoryReportByIdQueryParams, type GetPdfOfAdvisoryReportByIdResponse, type GetPerformanceInsightsByDistributionPathParams, type GetPerformanceInsightsByDistributionQueryParams, type GetPerformanceInsightsByDistributionResponse, type GetPolicyPackageByIdAsCustomerPathParams, type GetPolicyPackageByIdAsCustomerResponse, type GetPolicyPackageByIdPathParams, type GetPolicyPackageByIdQueryParams, type GetPolicyPackageByIdResponse, type GetPolicyPackageSimulationsForPartyPathParams, type GetPolicyPackageSimulationsForPartyResponse, type GetPolicyPackagesAsCustomerQueryParams, type GetPolicyPackagesAsCustomerResponse, type GetPolicyPackagesForPartyPathParams, type GetPolicyPackagesForPartyResponse, type GetPossibleInsuranceProductsByPartyIdPathParams, type GetPossibleInsuranceProductsByPartyIdQueryParams, type GetPossibleInsuranceProductsByPartyIdResponse, type GetPossibleInsuranceProductsByRiskObjectIdPathParams, type GetPossibleInsuranceProductsByRiskObjectIdQueryParams, type GetPossibleInsuranceProductsByRiskObjectIdResponse, type GetPossibleInsuranceProductsForManagementByPartyIdPathParams, type GetPossibleInsuranceProductsForManagementByPartyIdQueryParams, type GetPossibleInsuranceProductsForManagementByPartyIdResponse, type GetPossibleInsuranceProductsForStaffByPartyIdPathParams, type GetPossibleInsuranceProductsForStaffByPartyIdQueryParams, type GetPossibleInsuranceProductsForStaffByPartyIdResponse, type GetPreventionAdviceQueryParams, type GetPreventionAdviceResponse, type GetPromotionsByDistributionIdPathParams, type GetPromotionsByDistributionIdResponse, type GetProvenanceInfoOfDocumentPathParams, type GetProvenanceInfoOfDocumentResponse, type GetQuoteExportsQueryParams, type GetQuoteExportsResponse, type GetQuoteInsightsPathParams, type GetQuoteInsightsQueryParams, type GetQuoteInsightsResponse, type GetQuotesAsBatchResultsByConversationIdPathParams, type GetQuotesAsBatchResultsByConversationIdQueryParams, type GetQuotesAsBatchResultsByConversationIdResponse, type GetRecommendationsByIdPathParams, type GetRecommendationsByIdQueryParams, type GetRecommendationsByIdResponse, type GetRecommendationsByPartyIdPathParams, type GetRecommendationsByPartyIdQueryParams, type GetRecommendationsByPartyIdResponse, type GetRecommendationsBySessionIdPathParams, type GetRecommendationsBySessionIdQueryParams, type GetRecommendationsBySessionIdResponse, type GetRiskAnalysisByPartyIdPathParams, type GetRiskAnalysisByPartyIdResponse, type GetRiskDomainByIdPathParams, type GetRiskDomainByIdQueryParams, type GetRiskDomainByIdResponse, type GetRiskDomainsQueryParams, type GetRiskDomainsResponse, type GetRiskObjectByRiskObjectRevisionIdPathParams, type GetRiskObjectByRiskObjectRevisionIdQueryParams, type GetRiskObjectByRiskObjectRevisionIdResponse, type GetRiskObjectRevisionsByIdPathParams, type GetRiskObjectRevisionsByIdQueryParams, type GetRiskObjectRevisionsByIdResponse, type GetSbiQueryParams, type GetSbiResponse, type GetSingularityJobResultByIdPathParams, type GetSingularityJobResultByIdQueryParams, type GetSingularityJobResultByIdResponse, type GetStepSettingsByAdvisoryReportIdPathParams, type GetStepSettingsByAdvisoryReportIdQueryParams, type GetStepSettingsByAdvisoryReportIdResponse, type GetSupportedAnvaflowCoveragesGroupedByAdnQueryParams, type GetSupportedAnvaflowCoveragesGroupedByAdnResponse, type GetSupportedAnvaflowCoveragesQueryParams, type GetSupportedAnvaflowCoveragesResponse, type GetSupportedAnvaflowInsuranceCompaniesQueryParams, type GetSupportedAnvaflowInsuranceCompaniesResponse, type GetSupportedAnvaflowInsurancesQueryParams, type GetSupportedAnvaflowInsurancesResponse, type GetSupportedAnvaflowTagsQueryParams, type GetSupportedAnvaflowTagsResponse, type GetSupportedInsuranceCompaniesQueryParams, type GetSupportedInsuranceCompaniesResponse, type GetSupportedInsuranceSubjectsQueryParams, type GetSupportedInsuranceSubjectsResponse, type GetSupportedMimeTypesResponse, type GetSupportedRiskDomainsQueryParams, type GetSupportedRiskDomainsResponse, type GetSupportedYellowhiveflowCoveragesQueryParams, type GetSupportedYellowhiveflowCoveragesResponse, type GetSupportedYellowhiveflowInsurancesQueryParams, type GetSupportedYellowhiveflowInsurancesResponse, type GetTheBrokerByIdPathParams, type GetTheBrokerByIdResponse, type GetUspByDistributionQueryParams, type GetUspByDistributionResponse, type GetValuesOfEnumPathParams, type GetValuesOfEnumResponse, type GetVehicleByCarIdOrFebiacIdQueryParams, type GetVehicleByCarIdOrFebiacIdResponse, type GetVehicleByNumberPlateAndCarIdPathParams, type GetVehicleByNumberPlateAndCarIdQueryParams, type GetVehicleByNumberPlateAndCarIdResponse, type GetVehicleByVersionIdPathParams, type GetVehicleByVersionIdQueryParams, type GetVehicleByVersionIdResponse, type GetVehicleByVinAndCarIdPathParams, type GetVehicleByVinAndCarIdQueryParams, type GetVehicleByVinAndCarIdResponse, type GetVehicleVersionFactsBySeriesIdPathParams, type GetVehicleVersionFactsBySeriesIdQueryParams, type GetVehicleVersionFactsBySeriesIdResponse, type GetWeatherInfoQueryParams, type GetWeatherInfoResponse, type GetYellowhiveflowProductByIdPathParams, type GetYellowhiveflowProductByIdQueryParams, type GetYellowhiveflowProductByIdResponse, type GetYellowhiveflowProductsQueryParams, type GetYellowhiveflowProductsResponse, type GetYourOwnUserResponse, type GiveFeedbackOnConversationByIdPathParams, type GiveFeedbackOnConversationByIdQueryParams, type GiveFeedbackOnConversationByIdResponse, type GiveFeedbackOnRecommendationsByIdBody, type GiveFeedbackOnRecommendationsByIdPathParams, type GiveFeedbackOnRecommendationsByIdResponse, type GiveFeedbackToInsuranceTermsBotBody, type GiveFeedbackToInsuranceTermsBotQueryParams, type GiveFeedbackToInsuranceTermsBotResponse, type HandleCreateDistributionThemeBody, type HandleCreateDistributionThemeQueryParams, type HandleCreateDistributionThemeResponse, type HandleDeleteDistributionThemePathParams, type HandleDeleteDistributionThemeQueryParams, type HandleDeleteDistributionThemeResponse, type HandleUpdateDistributionThemeBody, type HandleUpdateDistributionThemePathParams, type HandleUpdateDistributionThemeQueryParams, type HandleUpdateDistributionThemeResponse, type HttpMethod, type ImportAnvaDocumentInWegroupQueryParams, type ImportAnvaDocumentInWegroupResponse, type ImportAnvaInsurancePolicyDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyDocumentInWegroupResponse, type ImportAnvaInsurancePolicyPackageDocumentInWegroupPathParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupQueryParams, type ImportAnvaInsurancePolicyPackageDocumentInWegroupResponse, type ImportAnvaPartyInWegroupPathParams, type ImportAnvaPartyInWegroupQueryParams, type ImportAnvaPartyInWegroupResponse, type ImportAnvaproductBody, type ImportAnvaproductQueryParams, type ImportAnvaproductResponse, type ImportDiasPartyInWegroupPathParams, type ImportDiasPartyInWegroupQueryParams, type ImportDiasPartyInWegroupResponse, type ImportDiasflowProductBody, type ImportDiasflowProductQueryParams, type ImportDiasflowProductResponse, type InviteColleaguesToDistributionBody, type InviteColleaguesToDistributionResponse, type InviteUserToPartyBody, type InviteUserToPartyPathParams, type InviteUserToPartyResponse, type LinkConversationToAdvisoryReportBody, type LinkConversationToAdvisoryReportPathParams, type LinkConversationToAdvisoryReportQueryParams, type LinkConversationToAdvisoryReportResponse, type LinkPartyToUserBody, type LinkPartyToUserResponse, type LockFlightApiResponse, type MarkConversationAsCompletedByIdBody, type MarkConversationAsCompletedByIdPathParams, type MarkConversationAsCompletedByIdResponse, type MergePartiesTogetherBody, type MergePartiesTogetherPathParams, type MergePartiesTogetherQueryParams, type MergePartiesTogetherResponse, type Middleware, type OrderInsurancePolciesOfAdvisoryReportBody, type OrderInsurancePolciesOfAdvisoryReportPathParams, type OrderInsurancePolciesOfAdvisoryReportQueryParams, type OrderInsurancePolciesOfAdvisoryReportResponse, type OverrideInsuranceProductRecommendationByIdBody, type OverrideInsuranceProductRecommendationByIdPathParams, type OverrideInsuranceProductRecommendationByIdResponse, type OverridePreventionAdviceRecommendationByIdBody, type OverridePreventionAdviceRecommendationByIdPathParams, type OverridePreventionAdviceRecommendationByIdResponse, type PatchAnvaproductByIdBody, type PatchAnvaproductByIdPathParams, type PatchAnvaproductByIdQueryParams, type PatchAnvaproductByIdResponse, type PatchAnvaproductCoverageByIdBody, type PatchAnvaproductCoverageByIdPathParams, type PatchAnvaproductCoverageByIdQueryParams, type PatchAnvaproductCoverageByIdResponse, type PatchDiasflowProductByIdBody, type PatchDiasflowProductByIdPathParams, type PatchDiasflowProductByIdQueryParams, type PatchDiasflowProductByIdResponse, type PatchDiasflowProductCoverageByDiasIdBody, type PatchDiasflowProductCoverageByDiasIdPathParams, type PatchDiasflowProductCoverageByDiasIdQueryParams, type PatchDiasflowProductCoverageByDiasIdResponse, type PatchOwnPartyAsCustomerBody, type PatchOwnPartyAsCustomerResponse, type PoseAQuestionToInsuranceTermsBotBody, type PoseAQuestionToInsuranceTermsBotForItToCompareBody, type PoseAQuestionToInsuranceTermsBotForItToCompareQueryParams, type PoseAQuestionToInsuranceTermsBotForItToCompareResponse, type PoseAQuestionToInsuranceTermsBotQueryParams, type PoseAQuestionToInsuranceTermsBotResponse, type PostEventAsCarglassPartnerBody, type PostEventAsCarglassPartnerResponse, type PutClausesForReportBody, type PutClausesForReportPathParams, type PutClausesForReportQueryParams, type PutClausesForReportResponse, type RecalculateDiasQuotesBySessionIdAndProductIdBody, type RecalculateDiasQuotesBySessionIdAndProductIdPathParams, type RecalculateDiasQuotesBySessionIdAndProductIdQueryParams, type RecalculateDiasQuotesBySessionIdAndProductIdResponse, type RecalculateDiasSimulationBySessionIdBody, type RecalculateDiasSimulationBySessionIdPathParams, type RecalculateDiasSimulationBySessionIdQueryParams, type RecalculateDiasSimulationBySessionIdResponse, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdBody, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdPathParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdQueryParams, type RecalculateOneAnvaquoteByAnvaProductIdSessionIdResponse, type RecalculateSimulationBySessionIdBody, type RecalculateSimulationBySessionIdPathParams, type RecalculateSimulationBySessionIdQueryParams, type RecalculateSimulationBySessionIdResponse, type RecalculateYellowhiveQuotesBySessionIdAndProductIdBody, type RecalculateYellowhiveQuotesBySessionIdAndProductIdPathParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdQueryParams, type RecalculateYellowhiveQuotesBySessionIdAndProductIdResponse, type RecalculateYellowhiveSimulationBySessionIdBody, type RecalculateYellowhiveSimulationBySessionIdPathParams, type RecalculateYellowhiveSimulationBySessionIdQueryParams, type RecalculateYellowhiveSimulationBySessionIdResponse, type RetrieveAirportsResponse, type RetrieveAllExportsByPartyPathParams, type RetrieveAllExportsByPartyQueryParams, type RetrieveAllExportsByPartyResponse, type RetrieveAnvaflowsQuestionnairesPathParams, type RetrieveAnvaflowsQuestionnairesQueryParams, type RetrieveAnvaflowsQuestionnairesResponse, type RetrieveAskLaterQuestionsQueryParams, type RetrieveAskLaterQuestionsResponse, type RetrieveAutomobileByCarIdFreemiumVersionPathParams, type RetrieveAutomobileByCarIdFreemiumVersionQueryParams, type RetrieveAutomobileByCarIdFreemiumVersionResponse, type RetrieveAutomobileByIdFreemiumQueryParams, type RetrieveAutomobileByIdFreemiumResponse, type RetrieveDiasQuestionnairesPathParams, type RetrieveDiasQuestionnairesQueryParams, type RetrieveDiasQuestionnairesResponse, type RetrieveExportByIdPathParams, type RetrieveExportByIdQueryParams, type RetrieveExportByIdResponse, type RetrieveFlowBody, type RetrieveFlowPathParams, type RetrieveFlowQueryParams, type RetrieveFlowResponse, type RetrieveYellowhiveQuestionnairesPathParams, type RetrieveYellowhiveQuestionnairesQueryParams, type RetrieveYellowhiveQuestionnairesResponse, type SchemaAboutUsResponse, type SchemaAccelerationTo100, type SchemaAccident, type SchemaAccidentStatement, type SchemaAccidentStatementType, type SchemaAccidentStatementType_2, type SchemaAccountCreateCmd, type SchemaAccountCreatedResponse, type SchemaAccreditedAppraiser, type SchemaAccreditedAppraiser_2, type SchemaAcknowledgementQueryModel, type SchemaAction, type SchemaActionType, type SchemaActionUrlResponse, type SchemaActivitiesCreateCmd, type SchemaActivity, type SchemaActivityFrontPageCmd, type SchemaActivityFrontPageQueryModel, type SchemaActivityPatchCmd, type SchemaActivityQueryModel, type SchemaAddActionToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdviceToRiskDomainInAdvisoryReportRevisionParams, type SchemaAddAdvisoryReportStepsConfigurationParams, type SchemaAddConversationToAdvisoryReportRevisionParams, type SchemaAddInsuranceProductClausesToAdvisoryReportRevisionParams, type SchemaAddRiskDomainToAdvisoryReportRevisionParams, type SchemaAdditionalProperties, type SchemaAdditionalProperties_2, type SchemaAddresWithMetadata, type SchemaAddress, type SchemaAddressAllNones, type SchemaAddressInfoLinkRelationType, type SchemaAddressInformation, type SchemaAddressRules, type SchemaAdviceChangeType, type SchemaAdviceDiffModel, type SchemaAdviceQueryModel, type SchemaAdviceType, type SchemaAdvisoryReport, type SchemaAdvisoryReportAdviceActionCreateCmd, type SchemaAdvisoryReportAdviceDiff, type SchemaAdvisoryReportClauseQueryModel, type SchemaAdvisoryReportClausesCreateCmd, type SchemaAdvisoryReportConversationLinkCmd, type SchemaAdvisoryReportConversationQueryModel, type SchemaAdvisoryReportCreateCmd, type SchemaAdvisoryReportDocxResponse, type SchemaAdvisoryReportExportOptions, type SchemaAdvisoryReportExportResponse, type SchemaAdvisoryReportFrontPageCreateCmd, type SchemaAdvisoryReportInsurancePolicyCmd, type SchemaAdvisoryReportInsurancePolicyOrder, type SchemaAdvisoryReportInsurancePolicyPackageCmd, type SchemaAdvisoryReportPartyQueryModel, type SchemaAdvisoryReportPdfResponse, type SchemaAdvisoryReportQueryModel, type SchemaAdvisoryReportRevisionAcceptanceCmd, type SchemaAdvisoryReportRevisionCmd, type SchemaAdvisoryReportRevisionCreateCmd, type SchemaAdvisoryReportRevisionMailInquiryCmd, type SchemaAdvisoryReportRevisionUpdateCmd, type SchemaAdvisoryReportRevisionsQueryModel, type SchemaAdvisoryReportRiskDomainActionCreateCmd, type SchemaAdvisoryReportRiskDomainActionPatchCmd, type SchemaAdvisoryReportRiskDomainAdviceCreateCmd, type SchemaAdvisoryReportRiskDomainAdvicePatchCmd, type SchemaAdvisoryReportRiskDomainCreateCmd, type SchemaAdvisoryReportStepsCreateCmd, type SchemaAdvisoryReportTask, type SchemaAdvisoryReportsQueryModel, type SchemaAdvisoryTaskPriority, type SchemaAedesCar, type SchemaAedesCarPayload, type SchemaAedesDriver, type SchemaAedesParking, type SchemaAedesParking_2, type SchemaAffiliation, type SchemaAffiliationInfo, type SchemaAffiliationStatus, type SchemaAffinityKey, type SchemaAgHomePayload, type SchemaAgriculturalVehicleUsage, type SchemaAgriculturalVehicleUsage_2, type SchemaAlarmSystem, type SchemaAllGuaranteesSetting, type SchemaAllianzCancellationReason, type SchemaAllianzCancellationReason_2, type SchemaAllianzCar, type SchemaAllianzCarPayload, type SchemaAllianzDriver, type SchemaAllianzFamilyPayload, type SchemaAllianzHome, type SchemaAllianzHomePayload, type SchemaAnalyzeEmailByIdParams, type SchemaAnnex, type SchemaAnnexRoofConstructionType, type SchemaAnnexType, type SchemaAnnexType_2, type SchemaAnnexWallConstructionType, type SchemaAnnualPremium, type SchemaAnnualPremiumQueryModel, type SchemaAnswer, type SchemaAnswerFlowParams, type SchemaAnswerFlowSessionParams, type SchemaAnswerFlowsResponse, type SchemaAnswerValidationError, type SchemaAnswerValidationErrorMessage, type SchemaAnswersPayload, type SchemaAnvaAdnCoverage, type SchemaAnvaCalculationPackage, type SchemaAnvaCalculationResponse, type SchemaAnvaClaimStatus, type SchemaAnvaClosingQuestion, type SchemaAnvaClosingQuestionUpsertCmd, type SchemaAnvaCollectionMethod, type SchemaAnvaCollectionMethods, type SchemaAnvaCoverage, type SchemaAnvaCoverageCombination, type SchemaAnvaCustomerInquiryParams, type SchemaAnvaDocument, type SchemaAnvaDocumentUpdateCmd, type SchemaAnvaFlowLabelStatus, type SchemaAnvaFlowStatus, type SchemaAnvaInquiry, type SchemaAnvaInquiryDocument, type SchemaAnvaInsurance, type SchemaAnvaInsuranceCompany, type SchemaAnvaInsuranceCompanyUpdateCmd, type SchemaAnvaInsurancePackage, type SchemaAnvaInsurancePolicy, type SchemaAnvaInsuranceUpdateCmd, type SchemaAnvaInvoiceStatus, type SchemaAnvaLabel, type SchemaAnvaMutationReason, type SchemaAnvaMutationReasons, type SchemaAnvaOfferDocument, type SchemaAnvaPackage, type SchemaAnvaPackageDiscount, type SchemaAnvaPackageUpdateCmd, type SchemaAnvaPolicyPackageCalculationJob, type SchemaAnvaProduct, type SchemaAnvaProductFlowRevision, type SchemaAnvaProductImportCmd, type SchemaAnvaProductQueryModel, type SchemaAnvaProductQuestionnaire, type SchemaAnvaProductQuestionnaireQueryModel, type SchemaAnvaProductQuestionnairesQueryModel, type SchemaAnvaProductQuestionnairesUpdateCmd, type SchemaAnvaProductQuestionnairesValidateCmd, type SchemaAnvaProductSearchItem, type SchemaAnvaProductSearches, type SchemaAnvaProductTag, type SchemaAnvaProductTagUpsertCmd, type SchemaAnvaProductToInsurancePolicyLink, type SchemaAnvaProductUpdateCmd, type SchemaAnvaQuote, type SchemaAnvaQuoteCalculationJob, type SchemaAnvaQuoteCalculationJobsQueuedResponse, type SchemaAnvaSendOfferInsurancePolicy, type SchemaAnvaSendOfferPolicyPackage, type SchemaAnvaSendOfferResponse, type SchemaAnvaTag, type SchemaAnvaTaskCmd, type SchemaAnvaTaskPriority, type SchemaApiCoverage, type SchemaApiCoverageSource, type SchemaAppHandlersNatsModelsStatusResponse, type SchemaAppModelsAdvisoryReportAdvisoryReportAdviceDiffRiskDomain, type SchemaAppModelsAdvisoryReportAdvisoryReportRevisionCreateCmdInsurancePolicies, type SchemaAppModelsCompanyRegistrationCompanyRegistration, type SchemaAppModelsCompanyRegistrationCompanyregistration, type SchemaAppModelsEnumsCompanyProspectType, type SchemaAppModelsEnumsCustomerProspectType, type SchemaAppModelsEnumsLanguageCodes, type SchemaAppModelsEnumsLanguageCodes_2, type SchemaAppModelsEnumsMiscellaneousType, type SchemaAppModelsEnumsProspectType, type SchemaAppModelsEnumsProspectType_2, type SchemaAppModelsFsmaFsma, type SchemaAppModelsInsurancePolicyExternalLabel, type SchemaAppModelsInsurancePolicyExternalRef, type SchemaAppModelsInsurancePolicyExternalref, type SchemaAppModelsLeadAcknowledgement, type SchemaAppModelsLocalisationLocalisation, type SchemaAppModelsOfferAcknowledgement, type SchemaAppModelsOfferInsurance, type SchemaAppModelsPartyCommandsExternalRef, type SchemaAppModelsPartyCustomer, type SchemaAppModelsPartyManagementBaseDocumentDataPreferences, type SchemaAppModelsPartyManagementFunction, type SchemaAppModelsPartyManagementFunction_2, type SchemaAppModelsPartyManagementbasedocumentdataPreferences, type SchemaAppModelsPartyPartyCompanyBaseAssetInfo, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoMachineDelivery, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoPeriodicCash, type SchemaAppModelsPartyPartyCompanyBaseAssetInfoSiloCapacity, type SchemaAppModelsPartyPartyCompanyBaseBookkeeper, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorks, type SchemaAppModelsPartyPartyCompanyBaseConstructionWorksConstructionWorkDuration, type SchemaAppModelsPartyPartyCompanyBaseContactPerson, type SchemaAppModelsPartyPartyCompanyBaseCustomerInfo, type SchemaAppModelsPartyPartyCompanyBaseCyber, type SchemaAppModelsPartyPartyCompanyBaseExhibitionActivity, type SchemaAppModelsPartyPartyCompanyBaseExportActivity, type SchemaAppModelsPartyPartyCompanyBaseFinancialInfo, type SchemaAppModelsPartyPartyCompanyBaseImportActivity, type SchemaAppModelsPartyPartyCompanyBaseLegalAid, type SchemaAppModelsPartyPartyCompanyBaseLiabilityInfo, type SchemaAppModelsPartyPartyCompanyBaseOutlook, type SchemaAppModelsPartyPartyCompanyBasePersonnelDetails, type SchemaAppModelsPartyPartyCompanyBaseThirdPartyActivity, type SchemaAppModelsPartyPartyCompanyBaseTransportInfo, type SchemaAppModelsPartyPartyCompanyBaseTurnover, type SchemaAppModelsPartyPartyCompanyBaseWorkforce, type SchemaAppModelsPartyPartyCompanyBaseWorkforceWageBill, type SchemaAppModelsPartyPartyPreferences, type SchemaAppModelsPartyPartyPreferencesFuneralPreference, type SchemaAppModelsPartyPartycompanybaseAssetinfo, type SchemaAppModelsPartyPartycompanybaseAssetinfoMachinedelivery, type SchemaAppModelsPartyPartycompanybaseAssetinfoPeriodiccash, type SchemaAppModelsPartyPartycompanybaseAssetinfoSilocapacity, type SchemaAppModelsPartyPartycompanybaseBookkeeper, type SchemaAppModelsPartyPartycompanybaseConstructionworks, type SchemaAppModelsPartyPartycompanybaseConstructionworksConstructionworkduration, type SchemaAppModelsPartyPartycompanybaseContactperson, type SchemaAppModelsPartyPartycompanybaseCustomerinfo, type SchemaAppModelsPartyPartycompanybaseCyber, type SchemaAppModelsPartyPartycompanybaseExhibitionactivity, type SchemaAppModelsPartyPartycompanybaseExportactivity, type SchemaAppModelsPartyPartycompanybaseFinancialinfo, type SchemaAppModelsPartyPartycompanybaseImportactivity, type SchemaAppModelsPartyPartycompanybaseLegalaid, type SchemaAppModelsPartyPartycompanybaseLiabilityinfo, type SchemaAppModelsPartyPartycompanybaseOutlook, type SchemaAppModelsPartyPartycompanybasePersonneldetails, type SchemaAppModelsPartyPartycompanybaseThirdpartyactivity, type SchemaAppModelsPartyPartycompanybaseTransportinfo, type SchemaAppModelsPartyPartycompanybaseTurnover, type SchemaAppModelsPartyPartycompanybaseWorkforce, type SchemaAppModelsPartyPartycompanybaseWorkforceWagebill, type SchemaAppModelsPartyPartypreferences, type SchemaAppModelsPartyPartypreferencesFuneralpreference, type SchemaAppModelsReadDocument, type SchemaAppModelsReadDocumentExternalRef, type SchemaAppModelsRiskObjectsAmountOfRiskObjects, type SchemaAppModelsRiskObjectsBicycleBicycle, type SchemaAppModelsRiskObjectsBicyclePreferences, type SchemaAppModelsRiskObjectsBoatBoat, type SchemaAppModelsRiskObjectsBoatPreferences, type SchemaAppModelsRiskObjectsCarCar, type SchemaAppModelsRiskObjectsCarCar_2, type SchemaAppModelsRiskObjectsCarPreferences, type SchemaAppModelsRiskObjectsCarPreferences_2, type SchemaAppModelsRiskObjectsFamilyFamily, type SchemaAppModelsRiskObjectsLegalLegal, type SchemaAppModelsRiskObjectsMiscellaneousMiscellaneous, type SchemaAppModelsRiskObjectsPartyGroupPartyGroup, type SchemaAppModelsRiskObjectsResidenceMainBuilding, type SchemaAppModelsRiskObjectsResidenceResidence, type SchemaAppModelsRiskObjectsResidenceResidencePreferences, type SchemaAppModelsRiskObjectsRiskObjects, type SchemaAppModelsRiskObjectsSemiTrailerSemiTrailer, type SchemaAppModelsRiskObjectsTeacherTeacher, type SchemaAppModelsRiskObjectsTrailerTrailer, type SchemaAppModelsRiskObjectsTwowheelerPreferences, type SchemaAppModelsRiskObjectsTwowheelerTwoWheeler, type SchemaAppModelsThemeThemeCreateCmd, type SchemaAppResponsesBaseStatusResponse, type SchemaAppViewsModelsAdvisoryReportAdvisoryReportQueryModelInsurancePolicies, type SchemaAppViewsModelsAdvisoryReportCoverageQueryModelExternalLabel, type SchemaAppViewsModelsAdvisoryReportInsurancePolicyQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportPolicyPackageQueryModelExternalRef, type SchemaAppViewsModelsAdvisoryReportRiskDomainActionQueryModelRiskDomain, type SchemaAppViewsModelsAdvisoryReportRiskDomainAdviceQueryModelRiskDomain, type SchemaAppViewsModelsClaimClaim, type SchemaAppViewsModelsClaimDocument, type SchemaAppViewsModelsInvoiceDocument, type SchemaAppViewsModelsOfferAcknowledgement, type SchemaAppViewsModelsOfferGuarantee, type SchemaAppViewsModelsOfferPartyAssignee, type SchemaAppViewsModelsPartyAddresWithMetadataMetaData, type SchemaAppViewsModelsPartyDocumentsPartyDocumentQueryModel, type SchemaAppViewsModelsPartyDocumentsPartydocumentquerymodel, type SchemaAppViewsModelsPartyLink, type SchemaAppViewsModelsPartyManagementQueryModel, type SchemaAppViewsModelsPartyManagementquerymodel, type SchemaAppViewsModelsPartyPartyAssignee, type SchemaAppViewsModelsPartyPartyDocumentsMetaData, type SchemaAppViewsModelsPartyPartyLogoQueryModel, type SchemaAppViewsModelsPartyPartyRelationQueryModelParty, type SchemaAppViewsModelsPartyPartyassignee, type SchemaAppViewsModelsPartyPartylogoquerymodel, type SchemaAppViewsModelsPartyPartyrelationquerymodelParty, type SchemaAppViewsModelsRiskDomainPreventionAdviceQueryModelPreventAdviceRiskDomain, type SchemaAppViewsModelsRiskDomainRiskDomainsQueryModelRiskDomain, type SchemaAppViewsModelsRiskObjectBicycle, type SchemaAppViewsModelsRiskObjectBoat, type SchemaAppViewsModelsRiskObjectCar, type SchemaAppViewsModelsRiskObjectDriver, type SchemaAppViewsModelsRiskObjectFamily, type SchemaAppViewsModelsRiskObjectLegal, type SchemaAppViewsModelsRiskObjectLink, type SchemaAppViewsModelsRiskObjectMiscellaneous, type SchemaAppViewsModelsRiskObjectPartyGroup, type SchemaAppViewsModelsRiskObjectPerson, type SchemaAppViewsModelsRiskObjectResidence, type SchemaAppViewsModelsRiskObjectRiskObjects, type SchemaAppViewsModelsRiskObjectSemiTrailer, type SchemaAppViewsModelsRiskObjectTeacher, type SchemaAppViewsModelsRiskObjectTrailer, type SchemaAppViewsModelsRiskObjectTwoWheeler, type SchemaAragLegalPayload, type SchemaArcesLegalPayload, type SchemaAskLaterQuestion, type SchemaAskLaterQuestionsRequest, type SchemaAskLaterQuestionsResponse, type SchemaAskaPackageChoice, type SchemaAskaPackageChoice_2, type SchemaAskaTravelInsuranceType, type SchemaAskaTravelInsuranceType_2, type SchemaAssetInfo, type SchemaAssignedToType, type SchemaAssociatedCompany, type SchemaAttachmentType, type SchemaAudits, type SchemaAuth, type SchemaAutomaticEmergencyBreaking, type SchemaAvatars, type SchemaAxaCar, type SchemaAxaCarPayload, type SchemaAxaContractualExcess, type SchemaAxaContractualExcess_2, type SchemaAxaDriver, type SchemaAxaFamilyPayload, type SchemaAxaHome, type SchemaAxaHomePayload, type SchemaAxaItemLimitTier, type SchemaAxaItemLimitTier_2, type SchemaAxaTheftFormulas, type SchemaAxaTheftFormulas_2, type SchemaBackupFrequency, type SchemaBackupFrequency_2, type SchemaBalance, type SchemaBalanceQueryModel, type SchemaBaloiseCar, type SchemaBaloiseCarPayload, type SchemaBaloiseDriver, type SchemaBaloiseFamilyPayload, type SchemaBaloiseHome, type SchemaBaloiseHomePayload, type SchemaBatchUnitResponse, type SchemaBatteryCapacity, type SchemaBicycle, type SchemaBicycleReferenceQueryModel, type SchemaBicycleRiskObjectIdWithRevisionId, type SchemaBicycleSpeed, type SchemaBicycleType, type SchemaBicycleUsage, type SchemaBlindSpotWarning, type SchemaBoat, type SchemaBoatAccidentCoverageLevel, type SchemaBoatAccidentCoverageLevel_2, type SchemaBoatBerthBigCity, type SchemaBoatBerthNlArea, type SchemaBoatBerthType, type SchemaBoatCategory, type SchemaBoatCompetitionType, type SchemaBoatConstructionType, type SchemaBoatMotorKind, type SchemaBoatNlPayloads, type SchemaBoatPreferences, type SchemaBoatReferenceQueryModel, type SchemaBoatRiskObjectIdWithRevisionId, type SchemaBoatTerritory, type SchemaBoatTrailer, type SchemaBoatUsage, type SchemaBookkeeper, type SchemaBrand, type SchemaBrandClub, type SchemaBrandClub_2, type SchemaBrandSortContext, type SchemaBroker, type SchemaBrokerConnectionCreate, type SchemaBrokerConnectionOutlookEmails, type SchemaBrokerConnectionOutlookMailFolder, type SchemaBrokerConnectionOutlookMailFolders, type SchemaBrokerConnectionUpdate, type SchemaBrokerCreateCmd, type SchemaBrokerIntegrations, type SchemaBrokerIntegrationsPatchCmd, type SchemaBrokerMembershipsCreateCmd, type SchemaBrokerPatchCmd, type SchemaBrokerPlan, type SchemaBrokerSettings, type SchemaBrokerType, type SchemaBrokerUserCreateCmd, type SchemaBrokerWithDistributionName, type SchemaBrokerWithModules, type SchemaBuildingExtra, type SchemaBuildingMaintenanceStatus, type SchemaBuildingPurpose, type SchemaBuildingRentOut, type SchemaBuildingUse, type SchemaCalculateAnvaQuotesRequest, type SchemaCalculateDiasQuotesRequest, type SchemaCalculateProfileaseCarQuoteCmd, type SchemaCalculateProfileaseCarQuoteParams, type SchemaCalculateYellowHiveQuotesRequest, type SchemaCalculationSpecEnumValue, type SchemaCalculationSpecInputType, type SchemaCalculationSpecType, type SchemaCampaignAudienceType, type SchemaCampaignDistributionSettingsQueryModel, type SchemaCampaignExtend, type SchemaCampaignFlowType, type SchemaCampaignGenerateDnsPrefix, type SchemaCampaignInsurance, type SchemaCampaignInsuranceQueryModel, type SchemaCampaignMailTemplateQueryModel, type SchemaCampaignMetrics, type SchemaCampaignQueryModel, type SchemaCampaignQueryModelFull, type SchemaCampaignReferenceQueryModel, type SchemaCampaignSharingOption, type SchemaCampaignSpecifications, type SchemaCampaignSpecificationsQueryModel, type SchemaCampaignStatus, type SchemaCampaignTarget, type SchemaCampaignTargetQueryModel, type SchemaCampaignTemplateCategory, type SchemaCampaignTemplateQueryModel, type SchemaCampaignTemplatesQueryModel, type SchemaCampaignType, type SchemaCampaignVerifiedDnsPrefix, type SchemaCampaignYellowHiveProduct, type SchemaCampaignYellowHiveProductQueryModel, type SchemaCampaignYellowHiveProducts, type SchemaCampaignYellowHiveProductsQueryModel, type SchemaCampaignsResponse, type SchemaCar, type SchemaCarCategory, type SchemaCarCategoryCode, type SchemaCarCategoryCode_2, type SchemaCarCategory_2, type SchemaCarClaimType, type SchemaCarClaimType_2, type SchemaCarDemo, type SchemaCarDemo_2, type SchemaCarEvaluationType, type SchemaCarEvaluationType_2, type SchemaCarGlassEvent, type SchemaCarInsuranceInsightPayload, type SchemaCarInsurancePolicyInsightsCarResponse, type SchemaCarInsurancePolicyInsightsDistributionResponse, type SchemaCarInsurancePolicyInsightsPartyResponse, type SchemaCarInsurancePolicyInsightsResponse, type SchemaCarInsured, type SchemaCarInterests, type SchemaCarInterests_2, type SchemaCarLease, type SchemaCarLeaseRatesResponse, type SchemaCarLookUpToQuestion, type SchemaCarLookUpToQuestions, type SchemaCarLookUpToQuestionsCmd, type SchemaCarMileage, type SchemaCarNlPayloads, type SchemaCarPayloads, type SchemaCarPremiumResponse, type SchemaCarProfessionalUsagePurpose, type SchemaCarProfessionalUsagePurpose_2, type SchemaCarReferenceQueryModel, type SchemaCarRiskObjectIdWithRevisionId, type SchemaCarStorage, type SchemaCarTaxation, type SchemaCarTheftProtection, type SchemaCarTheftProtection_2, type SchemaCarTrackingSystem, type SchemaCarTrackingSystem_2, type SchemaCarTrailer, type SchemaCarUsage, type SchemaCarUsagePeriod, type SchemaCarUsagePeriod_2, type SchemaCarUsedFor, type SchemaCarUsedFor_2, type SchemaCarVehicleType, type SchemaCarVehicleType_2, type SchemaCarglassEventCreateParams, type SchemaCategoryType, type SchemaChatCmd, type SchemaChatSummaryDetailed, type SchemaChatSummaryGroup, type SchemaChatSummaryQuestion, type SchemaChatSummarySection, type SchemaCheckupItemType, type SchemaChild, type SchemaChildProtection, type SchemaChildProtectionDriver, type SchemaChildProtectionPassenger, type SchemaChildProtectionRear, type SchemaChunk, type SchemaCitizensCar, type SchemaCitizensCarPayload, type SchemaCitizensCoverageChoice, type SchemaCitizensCoverageChoice_2, type SchemaCitizensInsuredAmountAccidents, type SchemaCitizensInsuredAmountAccidents_2, type SchemaCitizensInsuredAmountLiability, type SchemaCitizensInsuredAmountLiability_2, type SchemaCitizensSteeringPosition, type SchemaCity, type SchemaCityAutomaticEmergencyBraking, type SchemaCivilState, type SchemaCivilState_2, type SchemaClaim, type SchemaClaimCause, type SchemaClaimCause_2, type SchemaClaimFreeYears, type SchemaClaimFreeYears_2, type SchemaClaimLossAmount, type SchemaClaimLossAmount_2, type SchemaClaimQueryModel, type SchemaClaimStatus, type SchemaClaimType, type SchemaClaimsQueryModel, type SchemaClauseCmd, type SchemaClauseQueryModel, type SchemaCloudDataStorageLocation, type SchemaCollectionMethod, type SchemaCommentary, type SchemaCommentaryQueryModel, type SchemaCompany, type SchemaCompanyCreateCmd, type SchemaCompanyGoodQueryModel, type SchemaCompanyInfo, type SchemaCompanyInfoContent, type SchemaCompanyInventoryQueryModel, type SchemaCompanyInvestmentQueryModel, type SchemaCompanyLeadCreateCmd, type SchemaCompanyLeadCreateReply, type SchemaCompanyLeaseQueryModel, type SchemaCompanyLoanQueryModel, type SchemaCompanyProspectType, type SchemaCompanyProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCompanyQueryModel, type SchemaCompanyRegistration, type SchemaCompanyRegistrationQueryModel, type SchemaCompanyRegistrationType, type SchemaCompanyRegistrationType_2, type SchemaCompanySearchBy, type SchemaCompareAnswer, type SchemaCompareCmd, type SchemaCondition, type SchemaConditionAction, type SchemaConditionCheckType, type SchemaConditionOperation, type SchemaConditionType, type SchemaConditions, type SchemaConstructionType, type SchemaConstructionTypeFloors, type SchemaConstructionWorkDuration, type SchemaConstructionWorks, type SchemaConstructionYear, type SchemaConstructionYearCategory, type SchemaContactPerson, type SchemaContentValueDefinedType, type SchemaContractConversions, type SchemaConversationAnswer, type SchemaConversationAnswerCompared, type SchemaConversationDocumentPdfModel, type SchemaConversationNote, type SchemaConversationsOriginFilter, type SchemaConversationsOriginFilterItem, type SchemaCountryCodes, type SchemaCountryCodes_2, type SchemaCoverage, type SchemaCoverageCmd, type SchemaCoverageGroupMatchingScore, type SchemaCoverageInsights, type SchemaCoverageLimit, type SchemaCoveragePeriod, type SchemaCoverageQueryModel, type SchemaCoverageUpdateCmd, type SchemaCreateAccountParams, type SchemaCreateAdvisoryReportParams, type SchemaCreateAdvisoryReportRevisionParams, type SchemaCreateAdvisoryReportRevisionV2Params, type SchemaCreateAnvaPartyCompanyCmd, type SchemaCreateAnvaPartyCompanyRegistration, type SchemaCreateAnvaPartyCustomerCmd, type SchemaCreateBicycleRiskObjectParams, type SchemaCreateBoatRiskObjectParams, type SchemaCreateBrokerConnectionParams, type SchemaCreateCampaignAssistantAvatarCmd, type SchemaCreateCampaignCmd, type SchemaCreateCampaignLogoCmd, type SchemaCreateCampaignParams, type SchemaCreateCarRiskObjectParams, type SchemaCreateCompanyLeadParams, type SchemaCreateCompanyProspectParams, type SchemaCreateCustomThemeAsDistributionParams, type SchemaCreateCustomerLeadParams, type SchemaCreateCustomerProspectParams, type SchemaCreateDiasContactPersonCreateCmd, type SchemaCreateDistributionConnectionParams, type SchemaCreateDistributionTagParams, type SchemaCreateDistributionUspParams, type SchemaCreateFamilyRiskObjectParams, type SchemaCreateFlowParams, type SchemaCreateFlowSessionParams, type SchemaCreateInsurancePolicyForPartyParams, type SchemaCreateInsuranceProductClauseParams, type SchemaCreateLegalRiskObjectParams, type SchemaCreateMiscellaneousRiskObjectParams, type SchemaCreateMultiResponse, type SchemaCreateNoteForPartyParams, type SchemaCreateOfferRequestForInsuranceCompanyDocxParams, type SchemaCreateOfferRequestForInsuranceCompanyPdfParams, type SchemaCreateOfferRevisionParams, type SchemaCreateOfferV2Params, type SchemaCreatePartyAccidentParams, type SchemaCreatePartyActivitiesParams, type SchemaCreatePartyExternalRefsParams, type SchemaCreatePartyFromCompanyRegistrationParams, type SchemaCreatePartyGroupRiskObjectParams, type SchemaCreateProfileaseCarLeaseOfferParams, type SchemaCreateProfileaseCarOfferCmd, type SchemaCreateProfileaseCarOfferResponse, type SchemaCreateRelationBetweenPartiesParams, type SchemaCreateRelationBetweenPartyAndRiskObjectParams, type SchemaCreateReplyUuid, type SchemaCreateResponse, type SchemaCreateRiskObjectExternalRefsParams, type SchemaCreateSemiTrailerRiskObjectParams, type SchemaCreateSignedPartiesUploadUrlParams, type SchemaCreateTaskInAnvaParams, type SchemaCreateToolkitAccountParams, type SchemaCreateToolkitBrokerParams, type SchemaCreateTrailerRiskObjectParams, type SchemaCreateTrialUserParams, type SchemaCreateYellowHiveContactPersonCreateCmd, type SchemaCreditRating, type SchemaCreditScore, type SchemaCrmExportQueryModel, type SchemaCrmExportType, type SchemaCurrency, type SchemaCurrencyValue, type SchemaCustomAdvice, type SchemaCustomAdvicePatchCmd, type SchemaCustomer, type SchemaCustomerCreateCmd, type SchemaCustomerInfo, type SchemaCustomerLeadCreateCmd, type SchemaCustomerLeadCreateReply, type SchemaCustomerProspectType, type SchemaCustomerProspectsWithLeadOfferRiskObjectsQueryModel, type SchemaCustomerQueryModel, type SchemaCustomerSheet, type SchemaCustomerSheetAcceptations, type SchemaCustomersInfoType, type SchemaCyber, type SchemaDasLegalPayload, type SchemaDataType, type SchemaDate, type SchemaDateDsl, type SchemaDeductibleType, type SchemaDelaFuneralPayload, type SchemaDeleteMethod, type SchemaDelinkPartyToUserParams, type SchemaDemographicData, type SchemaDiasAfdBranch, type SchemaDiasCalculationPackage, type SchemaDiasCollectionMethods, type SchemaDiasCoverage, type SchemaDiasCoverageUpdateCmd, type SchemaDiasEntityLink, type SchemaDiasEntityType, type SchemaDiasFlowStatus, type SchemaDiasInsurance, type SchemaDiasInsuranceCompany, type SchemaDiasInsurancePackage, type SchemaDiasInsurancePolicy, type SchemaDiasPackage, type SchemaDiasPolicyPackageCalculationJob, type SchemaDiasProduct, type SchemaDiasProductFlowInSession, type SchemaDiasProductImportCmd, type SchemaDiasProductQuestionnaire, type SchemaDiasProductQuestionnaireQueryModel, type SchemaDiasProductQuestionnairesQueryModel, type SchemaDiasProductQuestionnairesUpdateCmd, type SchemaDiasProductQuestionnairesValidateCmd, type SchemaDiasProductSearch, type SchemaDiasProductToInsurancePolicyLink, type SchemaDiasProductUpdateCmd, type SchemaDiasProductsInConversationCmd, type SchemaDiasQuote, type SchemaDiasQuoteCalculationJob, type SchemaDiasQuoteCalculationJobsQueuedResponse, type SchemaDimensions, type SchemaDinghy, type SchemaDinghyCategory, type SchemaDirector, type SchemaDisable_2faForMeParams, type SchemaDiscount, type SchemaDisplacement, type SchemaDistances, type SchemaDistribution, type SchemaDistributionCompanyRegistrationValidation, type SchemaDistributionConnectionCreateCmd, type SchemaDistributionConnectionQueryModel, type SchemaDistributionConnectionUpdateCmd, type SchemaDistributionCreateCmd, type SchemaDistributionFrontPageSettings, type SchemaDistributionFrontPageSettingsQueryModel, type SchemaDistributionInvite, type SchemaDistributionLogos, type SchemaDistributionNameValidateCmd, type SchemaDistributionNoveltyInsight, type SchemaDistributionPromotionCreateCmd, type SchemaDistributionPromotionsReply, type SchemaDistributionSettings, type SchemaDistributionSettingsPatchCmd, type SchemaDistributionSignatureMethodQueryModel, type SchemaDistributionSignaturePatchCmd, type SchemaDistributionTagCreateCmd, type SchemaDistributionTagReply, type SchemaDistributionTagsQueryModel, type SchemaDistributionThemeCreateCmd, type SchemaDistributionThemeUpdateCmd, type SchemaDistributionUsp, type SchemaDistributionUspItemCreateCmd, type SchemaDistributionUspItemUpdateCmd, type SchemaDistributionUspReply, type SchemaDistributions, type SchemaDnaYachtBoatPayload, type SchemaDocument, type SchemaDocumentExtractionBatch, type SchemaDocumentExtractionBatchPayload, type SchemaDocumentExtractionEntityInfo, type SchemaDocumentLinkResponse, type SchemaDocumentQueryModel, type SchemaDocumentReferenceQueryModel, type SchemaDocumentResourceType, type SchemaDocumentStatus, type SchemaDocumentType, type SchemaDocumentType_2, type SchemaDomainCar, type SchemaDriveAssistanceSystem, type SchemaDriveTrainLayout, type SchemaDriveTrainLayout_2, type SchemaDriver, type SchemaDriverBrandClubMembership, type SchemaDriverExperience, type SchemaDriverLicenseCode, type SchemaDriverLicenseCode_2, type SchemaDriverLicenseType, type SchemaDriverLicenseType_2, type SchemaDriverVehicle, type SchemaDriverVehicleExperience, type SchemaDriverVehicleUsage, type SchemaDrivingTimes, type SchemaDutyOfCareCheckupItem, type SchemaDutyOfCareKind, type SchemaDutyOfCareStatus, type SchemaEducationLevel, type SchemaEducationLevel_2, type SchemaElectricBatteryType, type SchemaElectricalBikeAssistance, type SchemaElectricalInstallationType, type SchemaElectricalInstallations, type SchemaElectronicStabilityControl, type SchemaEmailActionability, type SchemaEmailAggregateResponse, type SchemaEmailAnalysis, type SchemaEmailAnalysisResponse, type SchemaEmailAnalyzeByEmailIdCmd, type SchemaEmailConversation, type SchemaEmailModel, type SchemaEmailTriageClassification, type SchemaEmailTriageCmd, type SchemaEmailValidation, type SchemaEmission, type SchemaEmissionStandard, type SchemaEmployeeInformation, type SchemaEmployeeInformationQueryModel, type SchemaEmployees, type SchemaEmploymentType, type SchemaEnable_2faForMeParams, type SchemaEnergyCategory, type SchemaEngine, type SchemaEngineRotations, type SchemaEngineTorque, type SchemaEntityChanges, type SchemaEntityExtraction, type SchemaEntityKey, type SchemaEntityReference, type SchemaEnumSource, type SchemaEnumValue, type SchemaEnums, type SchemaEnumsResponse, type SchemaErrorDetail, type SchemaErrorEnum_401, type SchemaErrorMessages, type SchemaErrorResponse, type SchemaError_401, type SchemaError_403, type SchemaError_422, type SchemaError_429, type SchemaError_4Xx, type SchemaEstablishment, type SchemaEstablishmentQueryModel, type SchemaEuromexLegalPayload, type SchemaExcludedCoverage, type SchemaExhibitionActivity, type SchemaExistsReply, type SchemaExportActivity, type SchemaExportAdvisoryReportByIdParams, type SchemaExportAdvisoryReportCreateCmd, type SchemaExportOption, type SchemaExportsQueued, type SchemaExternalRef, type SchemaExternalRefCompany, type SchemaExternalRefsQueryModel, type SchemaExternalResponseFormatted, type SchemaExtraLegalBenefits, type SchemaExtractDocumentCmd, type SchemaExtractOneDocumentResponse, type SchemaExtractOnePoliciesDocumentResponse, type SchemaExtractSingularDocumentAsInsurancePolicyParams, type SchemaExtractSingularDocumentAsOfferParams, type SchemaExtractSingularDocumentEnqueueParams, type SchemaExtractSingularDocumentInsurancePoliciesEnqueueParams, type SchemaExtractSingularDocumentOffersEnqueueParams, type SchemaExtractSingularDocumentParams, type SchemaExtractSingularDocumentPartyEnqueueParams, type SchemaExtractThemeCmd, type SchemaExtractWebsiteThemeParams, type SchemaExtractedInsurancePolicy, type SchemaExtractedQuestionnaireFilters, type SchemaExtractedQuestionnaireRequest, type SchemaFacade, type SchemaFamilyPayloads, type SchemaFamilyReferenceQueryModel, type SchemaFamilyRiskObjectIdWithRevisionId, type SchemaFamilyStatus, type SchemaFamilyStatus_2, type SchemaFaqCreateCmd, type SchemaFaqItem, type SchemaFaqQueryModel, type SchemaFaqType, type SchemaFeatureItem, type SchemaFeedback, type SchemaFieldMapping, type SchemaFieldMappingManager, type SchemaFieldOperation, type SchemaFieldTransformer, type SchemaFinConnectLinkQueryModel, type SchemaFinancial, type SchemaFinancialInfo, type SchemaFinancialInstitution, type SchemaFinancing, type SchemaFinishingType, type SchemaFireSpecifications, type SchemaFlammableLiquids, type SchemaFleet, type SchemaFleetInfo, type SchemaFleetQueryModel, type SchemaFleetRiskObjectIdWithRevisionId, type SchemaFloatCalculationSpec, type SchemaFloor, type SchemaFlow, type SchemaFlowInfo, type SchemaFlowMailType, type SchemaFlowRequest, type SchemaFlowSessionQueryModel, type SchemaFlowSessionReference, type SchemaFlowSessionStatus, type SchemaFlowStatus, type SchemaFlowSubType, type SchemaFlowType, type SchemaFlowVersion, type SchemaFlowsError, type SchemaFlowsErrorType, type SchemaFlowsInfo, type SchemaFlowsModelsAnvaAnvaQuoteCoverage, type SchemaFlowsModelsAnvaAnvaQuoteDocument, type SchemaFlowsModelsAnvaSendOfferMailCmdDocument, type SchemaFlowsModelsAnvaWarning, type SchemaFlowsModelsDiasDiasQuoteCoverage, type SchemaFlowsModelsDiasDocument, type SchemaFlowsModelsDiasWarning, type SchemaFlowsModelsYellowhiveDocument, type SchemaFlowsModelsYellowhiveWarning, type SchemaFlowsModelsYellowhiveYellowHiveQuoteCoverage, type SchemaForecast, type SchemaForecastDataResponse, type SchemaFormattedExceptionModel, type SchemaFormulaInfo, type SchemaForwardCollisionWarning, type SchemaFoyerCar, type SchemaFoyerCarPayload, type SchemaFoyerDriver, type SchemaFranchise, type SchemaFranchiseLevel, type SchemaFranchiseQueryModel, type SchemaFranchiseType, type SchemaFrontPageCmd, type SchemaFrontPageQueryModel, type SchemaFrontalCrashProtection, type SchemaFrontalCrashProtectionDriver, type SchemaFrontalCrashProtectionPassenger, type SchemaFrontalCrashProtectionRear, type SchemaFsmaStatute, type SchemaFuel, type SchemaFuelCapacity, type SchemaFuelConsumption, type SchemaFullLeaseOfferQueryModel, type SchemaFunction, type SchemaFuneralPayloads, type SchemaFuneralPreference, type SchemaFuneralPreferenceQueryModel, type SchemaFuturePlans, type SchemaGender, type SchemaGeneral, type SchemaGenerateAboutUsCmd, type SchemaGenerateCompanyDescriptionCmd, type SchemaGenerateCompanyDescriptionParams, type SchemaGenerateCompanyDescriptionResponse, type SchemaGenerateCompanySettingsAboutUsParams, type SchemaGenerateDnsPrefixParams, type SchemaGenerateRecommendationParams, type SchemaGenerateRecommendationsByPartyIdParams, type SchemaGetAddressInfoPremiumResponse, type SchemaGetAdvisoryReportDiffResponse, type SchemaGetAutomobileBrandResponse, type SchemaGetAutomobileBrandsResponse, type SchemaGetAutomobileFactsResponse, type SchemaGetAutomobileSerieResponse, type SchemaGetAutomobileSeriesResponse, type SchemaGetAutomobileVersionResponse, type SchemaGetAutomobileVersionsResponse, type SchemaGetCarInsuranceInsightsParams, type SchemaGetCarPremiumResponse, type SchemaGetCityResponse, type SchemaGetCompanyMultiResponse, type SchemaGetCompanySingleResponse, type SchemaGetDirectorMultiResponse, type SchemaGetNumberPlatePremiumResponse, type SchemaGetSearchAddressNewResponse, type SchemaGetStreetResponse, type SchemaGetVinPremiumResponse, type SchemaGiveSelectedProductsFeedbackParams, type SchemaGuarantee, type SchemaGuaranteeBase, type SchemaGuaranteeContent, type SchemaGuaranteeMatchingScores, type SchemaGuaranteeModification, type SchemaGuaranteeTag, type SchemaHandleCalculateAnvaQuotesForConversationParams, type SchemaHandleCalculateOneAnvaQuoteForConversationParams, type SchemaHandleCalculateOneDiasQuoteForConversationParams, type SchemaHandleCalculateOneYellowhiveQuoteForConversationParams, type SchemaHandleCreateAnvaPartyParams, type SchemaHandleCreateDiasContactPersonParams, type SchemaHandleCreateDocumentFromQuestionnaireParams, type SchemaHandleCreateYellowhiveContactPersonParams, type SchemaHandleGenerateQuestionsToPrefillByCarParams, type SchemaHandleImportAnvaProductsParams, type SchemaHandleImportDiasProductsParams, type SchemaHandleMarkSessionCompletedParams, type SchemaHandleQueueCalculateAnvaQuotesForConversationParams, type SchemaHandleQueueCalculateDiasQuotesForConversationParams, type SchemaHandleQueueCalculateYellowhiveQuotesForConversationParams, type SchemaHandleQueueSendCustomQuotesToAnvaParams, type SchemaHandleQuoteCalculationV2ExtraParams, type SchemaHandleQuoteMailSendParams, type SchemaHandleQuoteSaveParams, type SchemaHandleRecalculateAnvaSimulationParams, type SchemaHandleRecalculateDiasSimulationParams, type SchemaHandleRecalculateYellowhiveSimulationParams, type SchemaHandleRetrieveConversationReportPdfBySessionIdParams, type SchemaHandleRetrieveProductsV2Params, type SchemaHandleSendOfferMailParams, type SchemaHandleSetAskLaterQuestionIdsParams, type SchemaHandleUpdateAllAnvaQuestionnaireQuestionsByAnvaLabelParams, type SchemaHandleUpdateAnvaProductCoverageParams, type SchemaHandleUpdateAnvaProductsParams, type SchemaHandleUpdateAnvaQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasQuestionnairesByProductIdParams, type SchemaHandleUpdateDiasflowsProductByIdParams, type SchemaHandleUpdateDiasflowsProductCoverageByIdParams, type SchemaHandleUpdateSessionParams, type SchemaHandleUpdateYellowhiveQuestionnairesByProductIdParams, type SchemaHandleUpsertAnvaClosingQuestionsParams, type SchemaHandleUpsertSupportedAnvaflowsTagParams, type SchemaHandleValidateAnvaQuestionnairesByProductIdParams, type SchemaHandleValidateDiasQuestionnairesByProductIdParams, type SchemaHandleValidateYellowhiveQuestionnairesByProductIdParams, type SchemaHazardLevel, type SchemaHeaders, type SchemaHeatingType, type SchemaHighSpeedAutomaticEmergencyBraking, type SchemaHobbies, type SchemaHolderState, type SchemaHomeAge, type SchemaHomeEvaluationType, type SchemaHomeNlPayloads, type SchemaHomePayloads, type SchemaHomeToWorkDistance, type SchemaHomeToWorkDistance_2, type SchemaHp, type SchemaHttpMethod, type SchemaIbanValidation, type SchemaIdIntResponse, type SchemaIdentificationTypes, type SchemaIdentificationTypes_2, type SchemaImpactTime, type SchemaImpactTime_2, type SchemaImportActivity, type SchemaImportPartyError, type SchemaImportPartyResponse, type SchemaIncomeData, type SchemaInformationRequirementSheetSpecification, type SchemaInputType, type SchemaInsurance, type SchemaInsuranceCarrierType, type SchemaInsuranceCarrierType_2, type SchemaInsuranceCompanyRetrieveResponse, type SchemaInsuranceCompanyTag, type SchemaInsuranceCompanyTag_2, type SchemaInsuranceContent, type SchemaInsuranceExtended, type SchemaInsuranceFsma, type SchemaInsuranceHistory, type SchemaInsuranceModuleExportQueryModel, type SchemaInsuranceModuleExportType, type SchemaInsurancePoliciesQueryModel, type SchemaInsurancePolicy, type SchemaInsurancePolicyCreateCmd, type SchemaInsurancePolicyCreateType, type SchemaInsurancePolicyDocumentCmd, type SchemaInsurancePolicyDocumentQueryModel, type SchemaInsurancePolicyDocumentType, type SchemaInsurancePolicyEntity, type SchemaInsurancePolicyLinkCmd, type SchemaInsurancePolicyLinkQueryModel, type SchemaInsurancePolicyQueryModel, type SchemaInsurancePolicySimulationSendRequest, type SchemaInsurancePolicySimulationType, type SchemaInsurancePolicySimulationUpsertCmd, type SchemaInsurancePolicyStatus, type SchemaInsurancePolicyType, type SchemaInsurancePolicyType_2, type SchemaInsuranceProduct, type SchemaInsuranceProductAdvices, type SchemaInsuranceProductByDistributionUpdateCmd, type SchemaInsuranceProductClauseCreateCmd, type SchemaInsuranceProductClauseUpdateCmd, type SchemaInsuranceProductClausesQueryModel, type SchemaInsuranceProductEntity, type SchemaInsuranceProductQueryModel, type SchemaInsuranceProductRecommendation, type SchemaInsuranceProductRecommendationPatchCmd, type SchemaInsuranceProductsQueryModel, type SchemaInsuranceTerminationReasonType, type SchemaInsuranceTerminationReasonType_2, type SchemaInsuranceType, type SchemaInsuranceType_2, type SchemaInsuredContentValue, type SchemaInsuredValue, type SchemaInventoryCheckupItem, type SchemaInviteCustomersToPartyParams, type SchemaInviteUsersToDistributionParams, type SchemaInvoice, type SchemaInvoiceQueryModel, type SchemaInvoicesQueryModel, type SchemaIsBurglarProof, type SchemaItServices, type SchemaItem, type SchemaJob, type SchemaJobQueuedResponse, type SchemaJobResult, type SchemaJobResultType, type SchemaJobStatus, type SchemaJointIndustrialCommittee, type SchemaJointIndustrialCommitteeQueryModel, type SchemaJsonRpcError, type SchemaJsonRpcReply, type SchemaKey, type SchemaKeys, type SchemaKind, type SchemaKmPerYear, type SchemaKmPerYear_2, type SchemaKw, type SchemaLabelValueCount, type SchemaLabeledItems, type SchemaLaneCenteringAssist, type SchemaLaneDepartureWarning, type SchemaLaneKeepingAssistance, type SchemaLanguage, type SchemaLanguageCodes, type SchemaLarLegalPayload, type SchemaLastAnswer, type SchemaLateralCrashProtection, type SchemaLateralCrashProtectionDriver, type SchemaLateralCrashProtectionPassenger, type SchemaLateralCrashProtectionRear, type SchemaLeadCampaignQueryModel, type SchemaLeadDocumentQueryModel, type SchemaLeadDocumentType, type SchemaLeadProviderQueryModel, type SchemaLeadProviderResponse, type SchemaLeadProvidersResponse, type SchemaLeadReferenceQueryModel, type SchemaLeadRetrieveReply, type SchemaLeadStatus, type SchemaLeadTransferPayload, type SchemaLeaseOfferDocumentQueryModel, type SchemaLeaseOfferDocumentType, type SchemaLeaseOfferType, type SchemaLeaseType, type SchemaLeaseType_2, type SchemaLegalAid, type SchemaLegalForm, type SchemaLegalForm_2, type SchemaLegalPayloads, type SchemaLegalReferenceQueryModel, type SchemaLegalRiskObjectIdWithRevisionId, type SchemaLength, type SchemaLengthUnit, type SchemaLez, type SchemaLezCity, type SchemaLezPass, type SchemaLezYears, type SchemaLiabilityInfo, type SchemaLiabilityType, type SchemaLiabilityType_2, type SchemaLicense, type SchemaLicensePlateType, type SchemaLicensePlateType_2, type SchemaLink, type SchemaLinkPartyToUserCmd, type SchemaLinkPartyToUserCmdItem, type SchemaLinkPartyToUserParams, type SchemaLinkedCompany, type SchemaLinkedCompanyQueryModel, type SchemaLivingRoomSize, type SchemaLocalisationPatchCmd, type SchemaLocalization, type SchemaLocalized, type SchemaLowerCaseCountryCodes, type SchemaLowerCaseLanguageCodes, type SchemaMachineAcquisitionType, type SchemaMachineDelivery, type SchemaMailEvent, type SchemaMainBuilding, type SchemaMainBuildingType, type SchemaManagement, type SchemaManagementFuturePlans, type SchemaManagementQueryModel, type SchemaMarkSessionAsCompletedModel, type SchemaMarkSessionAsCompletedResponse, type SchemaMaxLoadWeight, type SchemaMaxRoofLoad, type SchemaMaxSpeed, type SchemaMaxVolumeTrunk, type SchemaMaxWeight, type SchemaMembership, type SchemaMercuryModelsAnvaListItem, type SchemaMercuryModelsFasterforwardListItem, type SchemaMergePartiesIntoPartyByIdParams, type SchemaMetadata, type SchemaMimeType, type SchemaMinVolumeTrunk, type SchemaMinimalBicycle, type SchemaMinimalBoat, type SchemaMinimalCar, type SchemaMinimalClaim, type SchemaMinimalCoverageQueryModel, type SchemaMinimalCustomerPartyQueryModel, type SchemaMinimalCustomerPartyQueryModels, type SchemaMinimalDutyOfCareItem, type SchemaMinimalFamily, type SchemaMinimalFleet, type SchemaMinimalInsurancePolicy, type SchemaMinimalInsurancePolicyQueryModel, type SchemaMinimalInventorySummary, type SchemaMinimalInvoice, type SchemaMinimalLegal, type SchemaMinimalMiscellaneous, type SchemaMinimalOfferQueryModel, type SchemaMinimalPartyGroup, type SchemaMinimalPartyQueryModel, type SchemaMinimalPolicyPackage, type SchemaMinimalResidence, type SchemaMinimalRiskObject, type SchemaMinimalRiskObjects, type SchemaMinimalSemiTrailer, type SchemaMinimalTeacher, type SchemaMinimalTrailer, type SchemaMinimalTwoWheeler, type SchemaMinimalUser, type SchemaMinimalUserQueryModels, type SchemaMiscellaneous, type SchemaMiscellaneousRiskObjectIdWithRevisionId, type SchemaMockedDisableTwoFactorRequest, type SchemaMockedTwoFactorVerificationRequest, type SchemaMortgage, type SchemaMostImportantItems, type SchemaMostImportantItems_2, type SchemaMotorType, type SchemaMotorType_2, type SchemaMotorcycleInterests, type SchemaMotorcycleInterests_2, type SchemaMultiAffiliationInfoQueryModel, type SchemaMultiAffiliationQueryModel, type SchemaMultiAnvaAdnCoverageQueryModel, type SchemaMultiAnvaClosingQuestionQueryModel, type SchemaMultiAnvaCoverageQueryModel, type SchemaMultiAnvaInsuranceCompanyQueryModel, type SchemaMultiAnvaInsuranceQueryModel, type SchemaMultiAnvaLabelQueryModel, type SchemaMultiAnvaProductQueryModel, type SchemaMultiAnvaQuestionByAnvaLabelUpdateCmd, type SchemaMultiAnvaTagQueryModel, type SchemaMultiBrokerQueryModel, type SchemaMultiDiasAfdBranchQueryModel, type SchemaMultiDiasProductQueryModel, type SchemaMultiDiasProductSearchQueryModel, type SchemaMultiFlowSessionItemQueryModel, type SchemaMultiFlowSessionQueryModel, type SchemaMultiLeaseOfferQueryModel, type SchemaMultiOfferQueryModel, type SchemaMultiPartyQueryModel, type SchemaMultiQuoteBeSession, type SchemaMultiQuoteNlSession, type SchemaMultiYellowHiveCoverageQueryModel, type SchemaMultiYellowHiveInsuranceQueryModel, type SchemaMultiYellowHiveProductQueryModel, type SchemaNationalIdentificationNumberValidation, type SchemaNatsError, type SchemaNextActionItem, type SchemaNextActionSource, type SchemaNextActionType, type SchemaNotice, type SchemaNumberPlateInfo, type SchemaNumberPlatePremiumResponse, type SchemaOccupationType, type SchemaOfferCampaignQueryModel, type SchemaOfferCreateCmdV2, type SchemaOfferCreateResponse, type SchemaOfferCreateRevisionCmd, type SchemaOfferPatchBulkCmd, type SchemaOfferPayment, type SchemaOfferRejectionCancellationReason, type SchemaOfferRequestForInsuranceCompanyCreateCmd, type SchemaOfferRequestForInsuranceCompanyInsuranceProductItem, type SchemaOfferRequestForInsuranceCompanyItem, type SchemaOfferRequestForInsuranceCompanyItemWithId, type SchemaOfferRequestForInsuranceCompanyParty, type SchemaOfferRevisionDocument, type SchemaOfferRevisionDocumentType, type SchemaOfferRevisionPatchCmd, type SchemaOfferRevisionQueryModel, type SchemaOfferRevisionReferenceQueryModel, type SchemaOfferStatus, type SchemaOfferWarning, type SchemaOmniumFormula, type SchemaOmniumFormulaByName, type SchemaOmniumFormulaByName_2, type SchemaOmniumFormula_2, type SchemaOpenClaimsCheckupItem, type SchemaOptimcoCar, type SchemaOptimcoCarPayload, type SchemaOptimcoDriver, type SchemaOptimcoFamilyPayload, type SchemaOptions, type SchemaOrderInsurancePolicyForAdvisoryReportRevisionParams, type SchemaOrigin, type SchemaOtherSafetySystems, type SchemaOutlook, type SchemaOutlookConnectionDetails, type SchemaOutlookEmail, type SchemaOutlookMailHeader, type SchemaOutlookMailRecepient, type SchemaOverdueInvoicesCheckupItem, type SchemaOverrideInsuranceProductRecommendationParams, type SchemaOverridePreventionAdviceRecommendationParams, type SchemaPackagesToProposeCheckupItem, type SchemaPaginatedInsuranceCompanyResponse, type SchemaPaginatedLeadReply, type SchemaPaginatedOffersResponse, type SchemaPaginatedOffersV2Response, type SchemaPagination, type SchemaParcelData, type SchemaPartiesQueryModel, type SchemaPartiesQueryModelItem, type SchemaPartyAddresses, type SchemaPartyAssigneesUpdateCmd, type SchemaPartyCheckupResponse, type SchemaPartyComplianceType, type SchemaPartyConversationNotes, type SchemaPartyCurrentAccountInsightsQueryModel, type SchemaPartyDocument, type SchemaPartyDocumentQueryModel, type SchemaPartyDocumentType, type SchemaPartyDocumentUpload, type SchemaPartyDocuments, type SchemaPartyEntity, type SchemaPartyExternalRefsCreateCmd, type SchemaPartyExternalRefsQueryModel, type SchemaPartyGroupCustomerQueryModel, type SchemaPartyGroupReferenceQueryModel, type SchemaPartyGroupRiskObjectIdWithRevisionId, type SchemaPartyInvite, type SchemaPartyKycItem, type SchemaPartyKycQueryModel, type SchemaPartyLink, type SchemaPartyLinkQueryModel, type SchemaPartyLogoCmd, type SchemaPartyLogoQueryModel, type SchemaPartyMergeCmd, type SchemaPartyNoteCmd, type SchemaPartyOriginFilter, type SchemaPartyOriginFilterItem, type SchemaPartyPatchCmd, type SchemaPartyPreferences, type SchemaPartyPreferencesQueryModel, type SchemaPartyQueryModel, type SchemaPartyRelation, type SchemaPartyRelationCreateCmd, type SchemaPartyRelationQueryModel, type SchemaPartyRelationType, type SchemaPartyRelationType_2, type SchemaPartySocialLinks, type SchemaPartyStatus, type SchemaPartyStatus_2, type SchemaPartyTransferPayload, type SchemaPartyWithMetadata, type SchemaPaymentInterval, type SchemaPaymentIntervalLowerCaseValues, type SchemaPaymentInterval_2, type SchemaPaymentMethod, type SchemaPaymentMethod_2, type SchemaPaymentStatus, type SchemaPedestrianDetection, type SchemaPendingUpgradesReply, type SchemaPerformance, type SchemaPeriodicCash, type SchemaPermittedTowbarDownload, type SchemaPermittedTrailerLoadWithoutBrakes, type SchemaPersonalizedAdvice, type SchemaPersonalizedAdviceResponse, type SchemaPersonnelDetails, type SchemaPhysicalProperties, type SchemaPiaContractConversionStatus, type SchemaPlanQueryModel, type SchemaPlanStatus, type SchemaPlansReply, type SchemaPnpCar, type SchemaPnpCarPayload, type SchemaPnpDriver, type SchemaPnpFamilyPayload, type SchemaPnpHome, type SchemaPnpHomePayload, type SchemaPoliciesToProposeCheckupItem, type SchemaPolicyDocumentType, type SchemaPolicyHolderRelation, type SchemaPolicyHolderRelation_2, type SchemaPolicyPackageCreateCmd, type SchemaPolicyPackageEntity, type SchemaPolicyPackageQueryModel, type SchemaPolicyPackagesQueryModel, type SchemaPossibleInsuranceProductQueryModel, type SchemaPossibleInsuranceProductsQueryModel, type SchemaPossiblePackage, type SchemaPostInsuranceTermsChatFeedbackParams, type SchemaPostInsuranceTermsChatParams, type SchemaPostInsuranceTermsComparisonParams, type SchemaPreferredWayOfContact, type SchemaPremium, type SchemaPremiumQueryModel, type SchemaPreventAdvice, type SchemaPreventionAdvice, type SchemaPreventionAdviceDistributionUpdateCmd, type SchemaPreventionAdviceQueryModel, type SchemaPreventionAdviceRecommendation, type SchemaPreventionAdviceRecommendationPatchCmd, type SchemaPreventionMeasure, type SchemaPreventionPlan, type SchemaPrice, type SchemaPriceQualityRatio, type SchemaPriceRange, type SchemaPriorityTag, type SchemaProductInfo, type SchemaProductV2, type SchemaProductsFilterSort, type SchemaProductsGroupBy, type SchemaProductsV2Filter, type SchemaProductsV2Response, type SchemaProfession, type SchemaProfileaseLeaseRate, type SchemaProfileaseLeaseResidual, type SchemaProfileaseLeaseType, type SchemaProfileaseQuote, type SchemaPromotion, type SchemaPromotionCriteria, type SchemaPromotionModifications, type SchemaPromotionQueryModel, type SchemaPropertyType, type SchemaProspectCreationResponse, type SchemaProspectReferenceQueryModel, type SchemaProspectType, type SchemaProvenanceDocumentReference, type SchemaPublicConnectionQueryModel, type SchemaPublicConnectionsQueryModel, type SchemaPublicDistributionConnectionQueryModel, type SchemaQuestion, type SchemaQuestionGroup, type SchemaQuestionUpdateCmd, type SchemaQuestionnaire, type SchemaQuote, type SchemaQuoteDetails, type SchemaQuoteExport, type SchemaQuoteExportRequest, type SchemaQuoteExportResponse, type SchemaQuoteMailSendRequest, type SchemaQuoteMailSendResponse, type SchemaQuoteReferenceQueryModel, type SchemaQuoteRequestV2Base, type SchemaQuoteResponse, type SchemaQuoteResponseV2, type SchemaQuoteSpecification, type SchemaQuoteStatus, type SchemaRateLimitErrorMsgEnum, type SchemaRearAutomaticEmergencyBraking, type SchemaRearCrossTrafficWarning, type SchemaRecalculateAnvaQuoteRequest, type SchemaRecalculateAnvaSimulationCmd, type SchemaRecalculateDiasQuoteRequest, type SchemaRecalculateDiasSimulationCmd, type SchemaRecalculateYellowHiveQuoteRequest, type SchemaRecalculateYellowHiveSimulationCmd, type SchemaRecommendation, type SchemaRecommendationLevel, type SchemaRecommendationReferenceQueryModel, type SchemaRecommendationsBaseCreateCmd, type SchemaRecommendationsCreateCmd, type SchemaRecommendationsQueryModel, type SchemaRecommendationsV2CreateCmd, type SchemaReconstructionValueDefinedType, type SchemaReference, type SchemaRegex, type SchemaRegistration, type SchemaRelations, type SchemaRentOutTerm, type SchemaRepairCosts, type SchemaReportRevisionStatus, type SchemaReportRevisionStatusSubset, type SchemaResidenceBuildingType, type SchemaResidenceComplianceType, type SchemaResidenceFloodType, type SchemaResidenceMonumentType, type SchemaResidencePreferences, type SchemaResidenceReferenceQueryModel, type SchemaResidenceRiskObjectIdWithRevisionId, type SchemaResidenceTheftProtection, type SchemaResidenceUsage, type SchemaRestrictiveAddress, type SchemaRestrictiveCar, type SchemaRestrictiveDriveAssistanceSystem, type SchemaRestrictiveDriver, type SchemaRetrieveAdvisoryReportFrontPageStandalonePdfParams, type SchemaRetrieveFlowResponse, type SchemaRetrieveQuestionnaireResponse, type SchemaRetrieveQuotesBatchResponse, type SchemaRetrieveQuotesExportsResponse, type SchemaRetrieveQuotesInsightsResponse, type SchemaRideHeight, type SchemaRiskAddress, type SchemaRiskAnalysisSubjects, type SchemaRiskData, type SchemaRiskDomain, type SchemaRiskDomainActionQueryModel, type SchemaRiskDomainAdviceQueryModel, type SchemaRiskDomainDistributionUpdateCmd, type SchemaRiskDomainQueryModel, type SchemaRiskDomainsQueryModel, type SchemaRiskObject, type SchemaRiskObjectCarType, type SchemaRiskObjectCarType_2, type SchemaRiskObjectComplianceItem, type SchemaRiskObjectComplianceQueryModel, type SchemaRiskObjectCreationError, type SchemaRiskObjectCreationResponse, type SchemaRiskObjectEntity, type SchemaRiskObjectExternalRefsCreateCmd, type SchemaRiskObjectExternalRefsQueryModel, type SchemaRiskObjectFamilyType, type SchemaRiskObjectInFleet, type SchemaRiskObjectLegalType, type SchemaRiskObjectPartyGroupType, type SchemaRiskObjectPartyRelation, type SchemaRiskObjectReferenceQueryModel, type SchemaRiskObjectRelationCreateCmd, type SchemaRiskObjectRelationQueryModel, type SchemaRiskObjectRelationUpdateCmd, type SchemaRiskObjectResidenceType, type SchemaRiskObjectRevisionIds, type SchemaRiskObjectRevisions, type SchemaRiskObjectTeacherType, type SchemaRiskObjectTwoWheelerType, type SchemaRiskObjectType, type SchemaRiskObjectType_2, type SchemaRiskObjectsWithRevision, type SchemaRizivConventionStatus, type SchemaRizivConventionStatus_2, type SchemaRizivMember, type SchemaRoleFilter, type SchemaRoleFilterType, type SchemaRollingWorkEquipmentType, type SchemaRollingWorkEquipmentType_2, type SchemaRoofConstructionType, type SchemaRoofTypes, type SchemaRooms, type SchemaRules, type SchemaSafety, type SchemaSafetyFeatureOption, type SchemaSafetyStickCar, type SchemaSafetyStickCarPayload, type SchemaSafetyStickDriver, type SchemaSalaryCoefficient, type SchemaSalaryCoefficient_2, type SchemaSatelliteProtection, type SchemaSatelliteProtectionSystem, type SchemaSatelliteProtectionSystem_2, type SchemaSavingTypes, type SchemaSavingTypes_2, type SchemaSearchAddress, type SchemaSection, type SchemaSecurityMeasure, type SchemaSelectedRecommendationsFeedback, type SchemaSemiTrailerRiskObjectIdWithRevisionId, type SchemaSemiTrailerType, type SchemaSendAdvisoryReportRevisionMailParams, type SchemaSendMailForSimulationParams, type SchemaSendOfferMailCmd, type SchemaSendOfferMailResponse, type SchemaSentimentType, type SchemaSeries, type SchemaSeriesSortContext, type SchemaServerError, type SchemaServerErrorMsgEnum, type SchemaSessionCompletedRemarks, type SchemaSessionReport, type SchemaShareholder, type SchemaShareholderQueryModel, type SchemaSignatureBox, type SchemaSiloCapacity, type SchemaSingleAffiliationQueryModel, type SchemaSingleAuditDetailQueryModel, type SchemaSingleAuditQueryModel, type SchemaSingleUserQueryModel, type SchemaSingularityJobQueuedResponse, type SchemaSingularityJobResultBase, type SchemaSingularityModelsDocumentExtractorCmdLink, type SchemaSingularityModelsPartyCheckupLink, type SchemaSmtCompany, type SchemaSocialLinks, type SchemaSort, type SchemaSourceInfo, type SchemaSpeedAssistance, type SchemaSplitCost, type SchemaSportHobbies, type SchemaSportHobbies_2, type SchemaStateOfChildren, type SchemaStateOfChildren_2, type SchemaStatus, type SchemaStatusReply, type SchemaStatusResponse, type SchemaSteeringPosition, type SchemaSteeringPosition_2, type SchemaStorageSecurity, type SchemaStorageSecurity_2, type SchemaStreet, type SchemaStringCalculationSpec, type SchemaSubcity, type SchemaSubjectToVat, type SchemaSubjectToVat_2, type SchemaSupplierType, type SchemaSupplierType_2, type SchemaSupportedFileTypesResponse, type SchemaSupportedProFlowCountryCodes, type SchemaSurveillanceEquipmentType, type SchemaSwimmingPoolType, type SchemaSwitchCandidatesCheckupItem, type SchemaSymbol, type SchemaTableColumn, type SchemaTableRules, type SchemaTag, type SchemaTagContentItem, type SchemaTankLocationType, type SchemaTax, type SchemaTaxBaseBe, type SchemaTaxField, type SchemaTaxPaymentDetails, type SchemaTaxPaymentTime, type SchemaTeacherRiskObjectIdWithRevisionId, type SchemaTeams, type SchemaTechnicalEquipmentType, type SchemaTechniekNederlandTypeOfCompany, type SchemaTechniekNederlandTypeOfCompanySpecification, type SchemaTechniekNederlandTypeOfCompanySpecification_2, type SchemaTechniekNederlandTypeOfCompany_2, type SchemaTelephoneNr, type SchemaTheftFormulas, type SchemaTheftFormulas_2, type SchemaTheme, type SchemaThemes, type SchemaThirdPartyActivity, type SchemaThirdPartyConstructionWorkInsuranceType, type SchemaThirdPartyConstructionWorkInsuranceType_2, type SchemaTitleAndMessageResponse, type SchemaTokenReply, type SchemaToolkitAccountCreateCmd, type SchemaToolkitBrokerCreateCmd, type SchemaToolkitBrokerCreationResponse, type SchemaToolkitLicenseType, type SchemaTrailerRiskObjectIdWithRevisionId, type SchemaTrailerTonnageCategory, type SchemaTrailerType, type SchemaTrailerType_2, type SchemaTransferCandidatesCheckupItem, type SchemaTransferLeadByIdParams, type SchemaTransferPartyByIdParams, type SchemaTransmissionType, type SchemaTransmissionType_2, type SchemaTransportInfo, type SchemaTravelMethods, type SchemaTravelMethods_2, type SchemaTravelsAYear, type SchemaTravelsAYear_2, type SchemaTriageEmailParams, type SchemaTriageResponse, type SchemaTrialOnboarding, type SchemaTrinityHandlersNatsOnboardingModelsUserIdResponse, type SchemaTrinityModelsUserAccountCreateCmdBroker, type SchemaTrinityModelsUserAccountCreateCmdDistribution, type SchemaTrinityModelsUserAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserToolkitAccountCreateCmdBroker, type SchemaTrinityModelsUserToolkitAccountCreateCmdDistribution, type SchemaTrinityModelsUserToolkitAccountCreateCmdUserOVerwrite, type SchemaTrinityModelsUserTrialOnboardingDistribution, type SchemaTrinityModelsUserTrialOnboardingUserOVerwrite, type SchemaTruckDestination, type SchemaTruckDestination_2, type SchemaTurnover, type SchemaTwoFactorCreateCmd, type SchemaTwoFactorDisableCmd, type SchemaTwoFactorResponse, type SchemaTwoWheelerCategories, type SchemaTwoWheelerReferenceQueryModel, type SchemaTwoWheelerRiskObjectIdWithRevisionId, type SchemaTwoWheelerVehicleType, type SchemaTypeOfWork, type SchemaTypeOfWork_2, type SchemaTypedKeys, type SchemaUnitOfLength, type SchemaUnitOfLength_2, type SchemaUpdateAdvicesByInsuranceProductInDistributionParams, type SchemaUpdateAdvisoryReportAcceptanceByIdParams, type SchemaUpdateAdvisoryReportMetadataByIdParams, type SchemaUpdateBicycleRiskObjectByIdV2Params, type SchemaUpdateBoatRiskObjectByIdV2Params, type SchemaUpdateBrokerByIdParams, type SchemaUpdateBrokerConnectionByKeyParams, type SchemaUpdateCampaignAssistantAvatarCmd, type SchemaUpdateCampaignByIdParams, type SchemaUpdateCampaignCmd, type SchemaUpdateCampaignLogoCmd, type SchemaUpdateCarRiskObjectByIdV2Params, type SchemaUpdateCustomThemeAsDistributionParams, type SchemaUpdateDistributionConnectionByKeyParams, type SchemaUpdateDocumentByPartyIdParams, type SchemaUpdateFamilyRiskObjectByIdV2Params, type SchemaUpdateInsuranceProductClauseParams, type SchemaUpdateInsuranceProductInDistributionParams, type SchemaUpdateIntegrationsByBrokerIdParams, type SchemaUpdateLegalRiskObjectByIdV2Params, type SchemaUpdateMeUserByIdParams, type SchemaUpdateMiscellaneousRiskObjectByIdV2Params, type SchemaUpdateOfferRevisionParams, type SchemaUpdateOffersInBulkParams, type SchemaUpdatePartyActivityParams, type SchemaUpdatePartyAssigneesParams, type SchemaUpdatePartyByIdParams, type SchemaUpdatePartyGroupRiskObjectByIdV2Params, type SchemaUpdatePartyNoteByIdParams, type SchemaUpdatePasswordCmd, type SchemaUpdatePasswordForUserByUserIdParams, type SchemaUpdatePreventionAdviceInDistributionParams, type SchemaUpdateRelationByIdParams, type SchemaUpdateResidenceRiskObjectByIdV2Params, type SchemaUpdateRiskDomainActionFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainAdviceFromAdvisoryReportRevisionParams, type SchemaUpdateRiskDomainInDistributionParams, type SchemaUpdateRiskObjectRelationByIdParams, type SchemaUpdateSemiTrailerRiskObjectByIdV2Params, type SchemaUpdateSessionCmd, type SchemaUpdateSettingsByDistributionIdParams, type SchemaUpdateTrailerRiskObjectByIdV2Params, type SchemaUpdateTwoWheelerRiskObjectByIdV2Params, type SchemaUpdateUspByIdParams, type SchemaUpdatedRiskObjectRevisionReply, type SchemaUploadDocumentPatchCmd, type SchemaUploadSignedUrlResponse, type SchemaUpsertActionFromAdviceInAdvisoryReportRevisionParams, type SchemaUpsertFaqItemParams, type SchemaUpsertInsurancePolicyForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicyPackageForAdvisoryReportRevisionParams, type SchemaUpsertInsurancePolicySimulationForPartyParams, type SchemaUpsertPolicyPackageByPartyParams, type SchemaUserMeUpdateCmd, type SchemaUserRole, type SchemaValidator, type SchemaValuableItem, type SchemaValueUnitInt, type SchemaValueUnitStr, type SchemaVatType, type SchemaVatType_2, type SchemaVehicleRegistrationDateType, type SchemaVehicleRegistrationPlateValidation, type SchemaVehicleSearch, type SchemaVerifyIfADistributionExistsByCompanyRegistrationParams, type SchemaVerifyIfADistributionExistsByNameParams, type SchemaVerifyIfAUserExistsByEmailParams, type SchemaVersion, type SchemaVersionSortContext, type SchemaVillasureHomePayload, type SchemaVinInfo, type SchemaVinPremiumResponse, type SchemaViviumCar, type SchemaViviumCarPayload, type SchemaViviumDriver, type SchemaViviumFamilyPayload, type SchemaViviumHome, type SchemaViviumHomePayload, type SchemaVoltage, type SchemaWageBill, type SchemaWarningMsg, type SchemaWarranyOptions, type SchemaWarranyOptions_2, type SchemaWeightEmpty, type SchemaWgBeApiAddressModelsAddressAddress, type SchemaWgBeApiAddressModelsAddressInformationV2Company, type SchemaWgBeApiAddressModelsAddressInformationV2Link, type SchemaWgBeApiAddressModelsPersonsDirectorsCompany, type SchemaWgBeApiAddressModelsVatCompanyActivity, type SchemaWgBeApiAddressModelsVatCompanyAssetInfo, type SchemaWgBeApiAddressModelsVatCompanyContactPerson, type SchemaWgBeApiAddressModelsVatCompanyFleetInfo, type SchemaWgBeApiAddressModelsVatCompanyLink, type SchemaWgBeApiAddressModelsVatCompanyPersonnelDetails, type SchemaWgBeApiAddressModelsVatCompanyThirdPartyActivity, type SchemaWgBeApiAddressModelsVatCompanyTurnover, type SchemaWgBeApiAddressModelsVatCompanyWorkforce, type SchemaWgBeApiQuotesModelsBaseLocalization, type SchemaWgBeApiQuotesModelsBaseLocalization_2, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsCar, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsFamily, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsLegal, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsPartyGroup, type SchemaWgBeApiQuotesModelsProductsRiskObjectErrorsResidence, type SchemaWgPyModelsComplexAddress, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoMachineDelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoPeriodicCash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetInfoSiloCapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoMachinedelivery, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoPeriodiccash, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyAssetinfoSilocapacity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyBookkeeper_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionWorksConstructionWorkDuration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworks, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyConstructionworksConstructionworkduration, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactPerson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyContactperson, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCustomerinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyCyber_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExhibitionactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyExportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFinancialinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyFleetInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyImportactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalAid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLegalaid, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyLiabilityinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyManagementFunction, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyOutlook_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonnelDetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyPersonneldetails, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdPartyActivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyThirdpartyactivity, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportInfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTransportinfo, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyTurnover_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWageBill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforceWagebill, type SchemaWgPyModelsDomainInsuranceComponentsProspectCompanyWorkforce_2, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsProspectPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsAnnexAnnex, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverAssistanceSystemDriveAssistanceSystem, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverCarInsured, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriver, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsInsuranceHistoryInsuranceHistory, type SchemaWgPyModelsDomainInsuranceComponentsRiskObjectsPersonPerson, type SchemaWgPyModelsDomainInsuranceInsurancesAedesAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAedesProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzEnumsCarUsedFor, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesAllianzResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesAragLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesArcesLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesAxaAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesAxaCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesAxaEnumsHolderState, type SchemaWgPyModelsDomainInsuranceInsurancesAxaFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesAxaProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesBaloiseProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesDasLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralParty, type SchemaWgPyModelsDomainInsuranceInsurancesDelaFuneralPartyGroup, type SchemaWgPyModelsDomainInsuranceInsurancesEuromexLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesLarLegalLegal, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesOptimcoProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesPnpFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesPnpProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesPnpResidenceRooms, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesSafetystickProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumAddressAddress, type SchemaWgPyModelsDomainInsuranceInsurancesViviumCarSecuritySystems, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsCarUsage, type SchemaWgPyModelsDomainInsuranceInsurancesViviumEnumsClaimFreeYears, type SchemaWgPyModelsDomainInsuranceInsurancesViviumFamilyFamily, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCompany, type SchemaWgPyModelsDomainInsuranceInsurancesViviumProspectCustomer, type SchemaWgPyModelsDomainInsuranceInsurancesViviumResidenceRooms, type SchemaWgPyModelsDomainInsuranceProspectCompany, type SchemaWgPyModelsDomainInsuranceProspectCompany_2, type SchemaWgPyModelsDomainInsuranceProspectCustomer, type SchemaWgPyModelsDomainInsuranceProspectCustomer_2, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferences, type SchemaWgPyModelsDomainInsuranceProspectPartyPreferencesFuneralPreference, type SchemaWgPyModelsDomainInsuranceProspectPartypreferences, type SchemaWgPyModelsDomainInsuranceProspectPartypreferencesFuneralpreference, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesCustomerPartyPreferencesQueryModelFuneralPreferenceQueryModel, type SchemaWgPyModelsDomainInsuranceReadPartiesPartyExternalRefsQueryModel, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBicycleBicycle, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsBoatBoat, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsCarCar, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsMiscMiscellaneous, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsRiskObjects, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerSemiTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTrailerTrailer, type SchemaWgPyModelsDomainInsuranceReadRiskObjectsTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainInsuranceRiskObjectsAmountOfRiskObjects, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyFamily, type SchemaWgPyModelsDomainInsuranceRiskObjectsFamilyPerson, type SchemaWgPyModelsDomainInsuranceRiskObjectsLegalLegal, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupParty, type SchemaWgPyModelsDomainInsuranceRiskObjectsPartyGroupPartyGroup, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceAnnexAnnex, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingFacade, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceMainBuildingMainBuilding, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidencePreferencesResidencePreferences, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceResidence, type SchemaWgPyModelsDomainInsuranceRiskObjectsResidenceRoomsRooms, type SchemaWgPyModelsDomainInsuranceRiskObjectsTeacherTeacher, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccident, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentAccidentStatement, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleAccidentClaim_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarInsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverCarinsured, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverBrandClubMembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleExperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverVehicleUsage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriver_2, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverbrandclubmembership, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDriverexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicle, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleexperience, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleDriverDrivervehicleusage, type SchemaWgPyModelsDomainInsuranceRiskObjectsVehicleTwoWheelerTwoWheeler, type SchemaWgPyModelsDomainWegroupComplexAddress, type SchemaWgPyModelsDomainWegroupComplexAddress_2, type SchemaWgPyModelsDomainWegroupComplexCompanyRegistration, type SchemaWgPyModelsDomainWegroupComplexCompanyregistration, type SchemaWgPyModelsDomainWegroupComplexLocalization, type SchemaWgPyModelsDomainWegroupEnumsCarUsedFor, type SchemaWgPyModelsDomainWegroupEnumsClaimFreeYears, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType, type SchemaWgPyModelsDomainWegroupEnumsCompanyProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsCurrency, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType, type SchemaWgPyModelsDomainWegroupEnumsCustomerProspectType_2, type SchemaWgPyModelsDomainWegroupEnumsGender, type SchemaWgPyModelsDomainWegroupEnumsHolderState, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes, type SchemaWgPyModelsDomainWegroupEnumsLanguageCodes_2, type SchemaWgPyModelsDomainWegroupEnumsMiscellaneousType, type SchemaWgPyModelsDomainWegroupEnumsOfferRevisionDocumentType, type SchemaWgPyModelsDomainWegroupEnumsProfession, type SchemaWgPyModelsDomainWegroupEnumsProspectType, type SchemaWgPyModelsDomainWegroupEnumsProspectType_2, type SchemaWgPyModelsDomainWegroupRestResponsesStatusResponse, type SchemaWgPyModelsEnumsCoveragePeriod, type SchemaWgPyModelsEnumsCoverageperiod, type SchemaWgPyModelsNatsCompany, type SchemaWgPyModelsSmtReadInsuranceInsuranceProductQueryModelRiskDomain, type SchemaWgPyModelsSmtReadProspectExternalRefsQueryModel, type SchemaWgPyModelsSmtReadProspectManagementQueryModel, type SchemaWgPyModelsSmtReadProspectPartyDocumentQueryModel, type SchemaWgPyModelsSmtReadProspectPartyLogoQueryModel, type SchemaWgPyModelsUserCompany, type SchemaWgsdkQuotesCarEvaluationType, type SchemaWgsdkQuotesCountryCodes, type SchemaWgsdkSmtAccident, type SchemaWgsdkSmtAccidentStatement, type SchemaWgsdkSmtCarEvaluationType, type SchemaWgsdkSmtCountryCodes, type SchemaWgsdkSmtCoveragePeriod, type SchemaWgsdkSmtGender, type SchemaWgsdkSmtInsuranceHistory, type SchemaWgsdkSmtProfession, type SchemaWheelBase, type SchemaWheelBaseArray, type SchemaWheelRimSizeArray, type SchemaWheelRimsSize, type SchemaWheelSize, type SchemaWheelSizeArray, type SchemaWidth, type SchemaWindow, type SchemaWorkforce, type SchemaWorkforcePossibleDanger, type SchemaWorkingMethod, type SchemaYellowHiveCoverage, type SchemaYellowHiveInsurance, type SchemaYellowHiveInsurancePolicy, type SchemaYellowHiveProduct, type SchemaYellowHiveProductQuestionnaire, type SchemaYellowHiveProductQuestionnaireQueryModel, type SchemaYellowHiveProductQuestionnairesQueryModel, type SchemaYellowHiveProductQuestionnairesUpdateCmd, type SchemaYellowHiveProductQuestionnairesValidateCmd, type SchemaYellowHiveProductToInsurancePolicyLink, type SchemaYellowHiveProductsInConversationCmd, type SchemaYellowHiveQuote, type SchemaYellowHiveQuoteCalculationJob, type SchemaYellowHiveQuoteCalculationJobsQueuedResponse, type SeachStreetsByCityAndCountryQueryParams, type SeachStreetsByCityAndCountryResponse, type SearchAddressesByCountryQueryParams, type SearchAddressesByCountryResponse, type SearchCitiesByCountryQueryParams, type SearchCitiesByCountryResponse, type SearchDirectorsByFirstAndLastNameQueryParams, type SearchDirectorsByFirstAndLastNameResponse, type SearchEnterprisesByCountryQueryParams, type SearchEnterprisesByCountryResponse, type SearchVehiclesBody, type SearchVehiclesQueryParams, type SearchVehiclesResponse, type SendAdvisoryReportAsMailBody, type SendAdvisoryReportAsMailPathParams, type SendAdvisoryReportAsMailQueryParams, type SendAdvisoryReportAsMailResponse, type SendAnvaInquiryAsCustomerBody, type SendAnvaInquiryAsCustomerResponse, type SendClaimToKeypointPathParams, type SendClaimToKeypointQueryParams, type SendClaimToKeypointResponse, type SendExampleCampaignTargetMailQueryParams, type SendExampleCampaignTargetMailResponse, type SendMailClaimReportByIdPathParams, type SendMailClaimReportByIdQueryParams, type SendMailClaimReportByIdResponse, type SendMailFollowupPageToCustomerPathParams, type SendMailFollowupPageToCustomerQueryParams, type SendMailFollowupPageToCustomerResponse, type SendMailForSimulationToPartyBody, type SendMailForSimulationToPartyPathParams, type SendMailForSimulationToPartyQueryParams, type SendMailForSimulationToPartyResponse, type SendOfferMailBySessionIdBody, type SendOfferMailBySessionIdPathParams, type SendOfferMailBySessionIdQueryParams, type SendOfferMailBySessionIdResponse, type SendOfferToAnvaBySessionIdPathParams, type SendOfferToAnvaBySessionIdQueryParams, type SendOfferToAnvaBySessionIdResponse, type SendPasswordResetToCustomerPathParams, type SendPasswordResetToCustomerResponse, type SendQuoteAsMailBody, type SendQuoteAsMailPathParams, type SendQuoteAsMailQueryParams, type SendQuoteAsMailResponse, type SetAskLaterQuestionsBody, type SetAskLaterQuestionsResponse, type TransferLeadToOtherDistributionBody, type TransferLeadToOtherDistributionPathParams, type TransferLeadToOtherDistributionQueryParams, type TransferLeadToOtherDistributionResponse, type TransferPartyToOtherDistributionBody, type TransferPartyToOtherDistributionPathParams, type TransferPartyToOtherDistributionQueryParams, type TransferPartyToOtherDistributionResponse, type TriageEmailBody, type TriageEmailResponse, type UnblockCustomerFromAccessingPartyPathParams, type UnblockCustomerFromAccessingPartyResponse, type UnlockClaimPathParams, type UnlockClaimQueryParams, type UnlockClaimResponse, type UpdateAdvisoryReportBody, type UpdateAdvisoryReportPathParams, type UpdateAdvisoryReportQueryParams, type UpdateAdvisoryReportResponse, type UpdateAnvaflowsQuestionnaireBody, type UpdateAnvaflowsQuestionnairePathParams, type UpdateAnvaflowsQuestionnaireQueryParams, type UpdateAnvaflowsQuestionnaireResponse, type UpdateBicycleRiskObjectBody, type UpdateBicycleRiskObjectPathParams, type UpdateBicycleRiskObjectQueryParams, type UpdateBicycleRiskObjectResponse, type UpdateBoatRiskObjectBody, type UpdateBoatRiskObjectPathParams, type UpdateBoatRiskObjectQueryParams, type UpdateBoatRiskObjectResponse, type UpdateBrokerByBrokerBody, type UpdateBrokerByBrokerPathParams, type UpdateBrokerByBrokerResponse, type UpdateBrokerConnectionByKeyBody, type UpdateBrokerConnectionByKeyPathParams, type UpdateBrokerConnectionByKeyResponse, type UpdateBrokerIntegrationsBody, type UpdateBrokerIntegrationsPathParams, type UpdateBrokerIntegrationsResponse, type UpdateCampaignBody, type UpdateCampaignPathParams, type UpdateCampaignQueryParams, type UpdateCampaignResponse, type UpdateCarRiskObjectBody, type UpdateCarRiskObjectPathParams, type UpdateCarRiskObjectQueryParams, type UpdateCarRiskObjectResponse, type UpdateClaimAsBrokerByIdPathParams, type UpdateClaimAsBrokerByIdQueryParams, type UpdateClaimAsBrokerByIdResponse, type UpdateClaimAsCustomerWithTokenPathParams, type UpdateClaimAsCustomerWithTokenQueryParams, type UpdateClaimAsCustomerWithTokenResponse, type UpdateCommentOnActivityPathParams, type UpdateCommentOnActivityQueryParams, type UpdateCommentOnActivityResponse, type UpdateConversationByIdBody, type UpdateConversationByIdPathParams, type UpdateConversationByIdResponse, type UpdateDeclarationRemarkPathParams, type UpdateDeclarationRemarkQueryParams, type UpdateDeclarationRemarkResponse, type UpdateDiasQuestionnaireBody, type UpdateDiasQuestionnairePathParams, type UpdateDiasQuestionnaireQueryParams, type UpdateDiasQuestionnaireResponse, type UpdateDistributionConnectionByKeyBody, type UpdateDistributionConnectionByKeyPathParams, type UpdateDistributionConnectionByKeyResponse, type UpdateDistributionIntegrationsPathParams, type UpdateDistributionIntegrationsResponse, type UpdateDistributionSettingsBody, type UpdateDistributionSettingsResponse, type UpdateDocumentForPartyBody, type UpdateDocumentForPartyPathParams, type UpdateDocumentForPartyResponse, type UpdateDocumentMetadataByIdAsCustomerWithTokenPathParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenQueryParams, type UpdateDocumentMetadataByIdAsCustomerWithTokenResponse, type UpdateDocumentMetadataByIdPathParams, type UpdateDocumentMetadataByIdQueryParams, type UpdateDocumentMetadataByIdResponse, type UpdateEntityAsBrokerByIdPathParams, type UpdateEntityAsBrokerByIdQueryParams, type UpdateEntityAsBrokerByIdResponse, type UpdateEntityAsCustomerWithTokenPathParams, type UpdateEntityAsCustomerWithTokenQueryParams, type UpdateEntityAsCustomerWithTokenResponse, type UpdateFamilyRiskObjectBody, type UpdateFamilyRiskObjectPathParams, type UpdateFamilyRiskObjectQueryParams, type UpdateFamilyRiskObjectResponse, type UpdateFleetRiskObjectBody, type UpdateFleetRiskObjectPathParams, type UpdateFleetRiskObjectQueryParams, type UpdateFleetRiskObjectResponse, type UpdateInsuranceProductByDistributionBody, type UpdateInsuranceProductByDistributionPathParams, type UpdateInsuranceProductByDistributionResponse, type UpdateInsuranceProductClauseForDistributionBody, type UpdateInsuranceProductClauseForDistributionPathParams, type UpdateInsuranceProductClauseForDistributionQueryParams, type UpdateInsuranceProductClauseForDistributionResponse, type UpdateLegalRiskObjectBody, type UpdateLegalRiskObjectPathParams, type UpdateLegalRiskObjectQueryParams, type UpdateLegalRiskObjectResponse, type UpdateMiscellaneousRiskObjectBody, type UpdateMiscellaneousRiskObjectPathParams, type UpdateMiscellaneousRiskObjectQueryParams, type UpdateMiscellaneousRiskObjectResponse, type UpdateNotePathParams, type UpdateNoteQueryParams, type UpdateNoteResponse, type UpdateOfferByIdBody, type UpdateOfferByIdPathParams, type UpdateOfferByIdResponse, type UpdateOffersInBulkBody, type UpdateOffersInBulkResponse, type UpdatePartyActivitiesAsCustomerBody, type UpdatePartyActivitiesAsCustomerPathParams, type UpdatePartyActivitiesAsCustomerResponse, type UpdatePartyAssigneesBody, type UpdatePartyAssigneesPathParams, type UpdatePartyAssigneesQueryParams, type UpdatePartyAssigneesResponse, type UpdatePartyByIdBody, type UpdatePartyByIdPathParams, type UpdatePartyByIdResponse, type UpdatePartyGroupRiskObjectBody, type UpdatePartyGroupRiskObjectPathParams, type UpdatePartyGroupRiskObjectQueryParams, type UpdatePartyGroupRiskObjectResponse, type UpdatePartyNoteByIdBody, type UpdatePartyNoteByIdPathParams, type UpdatePartyNoteByIdResponse, type UpdatePartyRelationsBody, type UpdatePartyRelationsPathParams, type UpdatePartyRelationsResponse, type UpdatePreventionByDistributionBody, type UpdatePreventionByDistributionPathParams, type UpdatePreventionByDistributionResponse, type UpdateQuestionForAllQuestionnairesByAnvaLabelsBody, type UpdateQuestionForAllQuestionnairesByAnvaLabelsQueryParams, type UpdateQuestionForAllQuestionnairesByAnvaLabelsResponse, type UpdateRelationBetweenRiskObjectAndPartyBody, type UpdateRelationBetweenRiskObjectAndPartyPathParams, type UpdateRelationBetweenRiskObjectAndPartyQueryParams, type UpdateRelationBetweenRiskObjectAndPartyResponse, type UpdateResidenceRiskObjectBody, type UpdateResidenceRiskObjectPathParams, type UpdateResidenceRiskObjectQueryParams, type UpdateResidenceRiskObjectResponse, type UpdateRiskDomainActionForAdvisoryReportByIdBody, type UpdateRiskDomainActionForAdvisoryReportByIdPathParams, type UpdateRiskDomainActionForAdvisoryReportByIdQueryParams, type UpdateRiskDomainActionForAdvisoryReportByIdResponse, type UpdateRiskDomainAdviceForAdvisoryReportByIdBody, type UpdateRiskDomainAdviceForAdvisoryReportByIdPathParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdQueryParams, type UpdateRiskDomainAdviceForAdvisoryReportByIdResponse, type UpdateRiskDomainByDistributionBody, type UpdateRiskDomainByDistributionPathParams, type UpdateRiskDomainByDistributionResponse, type UpdateSemiTrailerRiskObjectBody, type UpdateSemiTrailerRiskObjectPathParams, type UpdateSemiTrailerRiskObjectQueryParams, type UpdateSemiTrailerRiskObjectResponse, type UpdateTargetsByCampaignPathParams, type UpdateTargetsByCampaignQueryParams, type UpdateTargetsByCampaignResponse, type UpdateTrailerRiskObjectBody, type UpdateTrailerRiskObjectPathParams, type UpdateTrailerRiskObjectQueryParams, type UpdateTrailerRiskObjectResponse, type UpdateTwoWheelerRiskObjectBody, type UpdateTwoWheelerRiskObjectPathParams, type UpdateTwoWheelerRiskObjectQueryParams, type UpdateTwoWheelerRiskObjectResponse, type UpdateUspByDistributionAndIdBody, type UpdateUspByDistributionAndIdPathParams, type UpdateUspByDistributionAndIdQueryParams, type UpdateUspByDistributionAndIdResponse, type UpdateYellowhiveQuestionnaireBody, type UpdateYellowhiveQuestionnairePathParams, type UpdateYellowhiveQuestionnaireQueryParams, type UpdateYellowhiveQuestionnaireResponse, type UpdateYourOwnUserBody, type UpdateYourOwnUserResponse, type UpdateYourPasswordBody, type UpdateYourPasswordResponse, type UploadClaimDocumentAsBrokerPathParams, type UploadClaimDocumentAsBrokerQueryParams, type UploadClaimDocumentAsBrokerResponse, type UpsertAnvaClosingQuestionsBody, type UpsertAnvaClosingQuestionsQueryParams, type UpsertAnvaClosingQuestionsResponse, type UpsertDistributionFaqBody, type UpsertDistributionFaqQueryParams, type UpsertDistributionFaqResponse, type UpsertInsurancePoliciesForPartyBody, type UpsertInsurancePoliciesForPartyPathParams, type UpsertInsurancePoliciesForPartyResponse, type UpsertInsurancePolicySimulationForPartyBody, type UpsertInsurancePolicySimulationForPartyPathParams, type UpsertInsurancePolicySimulationForPartyResponse, type UpsertPolicyPackagesForPartyBody, type UpsertPolicyPackagesForPartyPathParams, type UpsertPolicyPackagesForPartyResponse, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostQueryParams, type V1ApiIntegrationsAnvaPartiesAnvaIdImportsPostResponse, type V1ApiIntegrationsAnvaPartiesGetQueryParams, type V1ApiIntegrationsAnvaPartiesGetResponse, type V1ApiIntegrationsAnvaValidatePostQueryParams, type V1ApiIntegrationsAnvaValidatePostResponse, type ValidateAChassisNumberResponse, type ValidateACompanyRegistrationNumberResponse, type ValidateANationalIdentificationNumberBody, type ValidateANationalIdentificationNumberResponse, type ValidateATelephonenrResponse, type ValidateAVehicleRegistrationPlateBody, type ValidateAVehicleRegistrationPlateResponse, type ValidateAWebsiteResponse, type ValidateAnEmailResponse, type ValidateAnFsmaResponse, type ValidateAnIbanBody, type ValidateAnIbanResponse, type ValidateAnvaConnectionQueryParams, type ValidateAnvaConnectionResponse, type ValidateAnvaDwhConnectionQueryParams, type ValidateAnvaDwhConnectionResponse, type ValidateAnvaflowsQuestionnaireBody, type ValidateAnvaflowsQuestionnairePathParams, type ValidateAnvaflowsQuestionnaireQueryParams, type ValidateAnvaflowsQuestionnaireResponse, type ValidateClaimPathParams, type ValidateClaimQueryParams, type ValidateClaimResponse, type ValidateDiasQuestionnaireBody, type ValidateDiasQuestionnairePathParams, type ValidateDiasQuestionnaireQueryParams, type ValidateDiasQuestionnaireResponse, type ValidateFasterforwardConnectionQueryParams, type ValidateFasterforwardConnectionResponse, type ValidatePromotionsResponse, type ValidateYellowhiveQuestionnaireBody, type ValidateYellowhiveQuestionnairePathParams, type ValidateYellowhiveQuestionnaireQueryParams, type ValidateYellowhiveQuestionnaireResponse, type VerifyIfADistributionExistsByCompanyRegistrationBody, type VerifyIfADistributionExistsByCompanyRegistrationQueryParams, type VerifyIfADistributionExistsByCompanyRegistrationResponse, type VerifyIfADistributionExistsByNameBody, type VerifyIfADistributionExistsByNameQueryParams, type VerifyIfADistributionExistsByNameResponse, type VerifyIfAUserExistsByEmailBody, type VerifyIfAUserExistsByEmailQueryParams, type VerifyIfAUserExistsByEmailResponse, type WgApiSchema, type WgPaths, acceptOrRejectAnAdvisoryReport, analyzeEmail, answerAFlowDirectly, answerAFlowSession, blockCustomerFromAccessingParty, calculateAnvaquotesBySessionId, calculateCarLeaseQuote, calculateDiasQuotesBySessionId, calculateQuotesV2, calculateYellowhiveQuotesBySessionId, claimReportById, claimRequestUpdate, commentOnActivity, type components, createAccidentsForParty, createAccount, createAdvisoryReport, createAdvisoryReportRevision, createAdvisoryReportRevisionV2, createAdvisoryReportStepSettings, createAnvaParty, createAnvaTask, createAnvaflowTags, createBicycleRiskObject, createBoatRiskObject, createBrokerConnectionsById, createCampaign, createCarRiskObject, createClaimAsBroker, createClaimAsCustomer, createCompanyLead, createConversation, createConversationReminder, createCustomerLead, createDiasContactPerson, createDistributionConnectionById, createDistributionTag, createDocumentForClaim, createDocumentForClaimAsCustomer, createDocumentForParty, createEntityAsBroker, createEntityAsCustomerWithToken, createFamilyRiskObject, createInsurancePoliciesForParty, createInsuranceProductClauseForDistribution, createLegalParty, createLegalRiskObject, createLockForClaim, createMiscellaneousRiskObject, createNaturalParty, createNoteOnEvent, createNoteOnEventAsCustomer, createOfferRevision, createOrReplaceInsurancePolicyForAdvisoryReportById, createOrReplacePolicyPackagesForAdvisoryReportById, createPartyActivitiesAsCustomer, createPartyByEnrichingWithEnrichingWithCompanyRegistration, createPartyGroupRiskObject, createPartyNote, createPartyOffers, createPartyRelations, createProfileaseCarLeaseOffer, createProflowSessionByBatchId, createRecommendationByPartyId, createRecommendationBySessionId, createReferenceForParty, createReferencesForRiskObject, createRelationBetweenRiskObjectAndParty, createRiskDomainActionForAdvisoryReportById, createRiskDomainActionFromAdviceForAdvisoryReportById, createRiskDomainAdviceForAdvisoryReportById, createRiskDomainForAdvisoryReportById, createSemiTrailerRiskObject, createToolkitAccount, createToolkitBroker, createTrailerRiskObject, createTrialBroker, createUploadLinkAsCustomer, createUspItemForDistribution, createYellowhiveContactPerson, deleteAdvisoryReport, deleteAdvisoryReportRevision, deleteAllSessionsBySessionId, deleteAnvaClosingQuestions, deleteBrokerConnectionByKey, deleteClaimAsBrokerById, deleteCommentOnActivity, deleteDistributionConnectionByKey, deleteDistributionFaq, deleteDistributionTag, deleteDocumentById, deleteDocumentByIdAsCustomerWithToken, deleteDocumentForParty, deleteEntityAsBrokerById, deleteEntityByIdAsCustomerWithToken, deleteEntityBySessionIdAndFlowId, deleteInsurancePoliciesForParty, deleteInsurancePolicyForAdvisoryReportById, deleteInsuranceProductClauseForDistribution, deleteNote, deletePartyActivitiesAsCustomer, deletePartyEntityBySessionIdAndFlowId, deletePartyNoteById, deletePartyRelations, deletePolicyPackagesForParty, deleteRelationBetweenRiskObjectAndParty, deleteRiskDomainActionForAdvisoryReportById, deleteRiskDomainAdviceForAdvisoryReportById, deleteRiskDomainForAdvisoryReportById, deleteRiskObjectById, deleteSessionBySessionId, deleteUspByDistributionAndId, delinkPartyToUser, disable2FaByUser, disable2FaForCustomer, downloadDocumentById, editInsuranceProductAdviceByDistribution, editInsuranceProductDescriptionsByDistribution, enable2Fa, enqueueCalculationAnvaquotesBySessionId, enqueueSendCustomQuotesToAnvaBySessionId, enqueueSendOfferToAnvaBySessionId, enrichPartyByIdWithExternalCompanyData, exportAdvisoryReportById, exportPartyById, exportQuoteById, extractInsurancePoliciesForOneDocument, extractInsurancePoliciesForOneDocumentEnqueue, extractManyDocumentInBatch, extractOffersForOneDocument, extractOffersForOneDocumentEnqueue, extractOneDocument, extractOneDocumentEnqueue, extractPartyForOneDocumentEnqueue, extractWebsiteTheme, generateCompanyDescription, generateDistributionAboutUsCompletion, generateDnsPrefix, generateDocxDocumentOfAdvisoryReportById, generateFlowQuestionnaire, generateFlowQuestionnaireDocument, generateOfferRequestForInsuranceCompanyDocx, generateOfferRequestForInsuranceCompanyPdf, generatePdfOfAdvisoryReportById, generatePersonalizationAdviceForAdvisoryReport, generatePossibleProductsBySessionV2, generateQuestionsToPrefillByCar, generateStandaloneFrontPagePdfOfAdvisoryReportAsExample, generateTokenForSocialLoginFlowAsBroker, get2FaByUser, getActivityByParty, getAddressInfo, getAddressInfoFreemium, getAdvicesPerInsuranceProduct, getAdvisoryReportById, getAdvisoryReportExportOptions, getAdvisoryReportRevisionDiff, getAllActivityTypes, getAllAdvisoryReports, getAllAvailableAffiliations, getAllAvailablePlans, getAllAvailableThemesInWegroup, getAllBrokersLinkedToCurrentUser, getAllCampaignTemplates, getAllCampaignsByDistribution, getAllCarClaimCategories, getAllClaimsAsBroker, getAllConversations, getAllCustomersByDistribution, getAllEnums, getAllLeadsByDistribution, getAllLeaseOffersByDistribution, getAllPartiesByDistribution, getAllPartiesByDistributionV2, getAllRiskObjectsByPartyId, getAllRiskObjectsByPartyIdV2, getAllSessionsBySessionId, getAllVehicleBrands, getAllVehicleSeriesByBrandKey, getAllVehicleVersionsBySeriesId, getAnvaAgents, getAnvaClosingQuestions, getAnvaCollectionMethods, getAnvaEmployees, getAnvaLabels, getAnvaMutationReasons, getAnvaParties, getAnvaProducts, getAnvaproductById, getAnvaproducts, getArtifactFromEventById, getAssuEmployees, getAvailableFlowsForDistributionInfo, getBrokerByAnvaProducerId, getBrokerByAnvaRelationMangerId, getBrokerConnectionsById, getBrokerIntegrations, getCampaignById, getCampaignSettingsByDistribution, getCampaignTargetMailTemplate, getCarLeaseRates, getChatBySessionId, getChatSummaryV2BySessionId, getCheckupByPartyId, getClaimAsBrokerById, getClaimAsCustomerWithToken, getClaimByIdAsCustomer, getClaimEventsAsBrokerById, getClaimEventsAsCustomer, getClaimsAsCustomer, getClaimsAsParty, getClaimsAsPartyById, getComplianceByRiskObjectId, getConversationById, getConversationNotes, getConversationReportPdfById, getConversationsOriginFilter, getCurrentAccountInsightsAsCustomer, getCurrentAccountInsightsAsParty, getCurrentBrokerOfTheUser, getCustomersByParty, getDiasAfdbranches, getDiasCollectionMethods, getDiasEmployees, getDiasParties, getDiasProducts, getDiasflowProductById, getDiasflowProducts, getDistributionActivity, getDistributionAffiliations, getDistributionById, getDistributionConnectionsById, getDistributionFaq, getDistributionHasPendingUpgrade, getDistributionSettings, getDistributionTags, getDocumentExtractionBatchById, getDocumentMetadata, getDocumentsAsCustomer, getDocumentsForParty, getEmailByMessageId, getEncryptionKeys, getEnterpriseByCompanyRegistrationNumberAndCountry, getEnterpriseByCompanyRegistrationNumberAndCountryMinimalResponse, getEnumByAnvaLabel, getEnumByDiasLabel, getEventsByAdvisoryReportId, getExtractEnityInfo, getFasterforwardEmployees, getFasterforwardTeams, getFinconnectLinkAsCustomer, getFinconnectLinkForInsurancePolicyAsCustomer, getFlowInfoById, getFlowsInfo, getGbi, getHubspotVisitorIdentificationToken, getInfoForClaim, getInsightsIfCarIsInsured, getInsuranceCompanies, getInsurancePoliciesAsCustomer, getInsurancePoliciesForParty, getInsurancePolicyById, getInsurancePolicyByIdAsCustomer, getInsurancePolicySimulationsForParty, getInsuranceProductClausesByDistribution, getInsuranceProductsV2, getIntegrationsByDistribution, getInvoiceByIdAsCustomer, getInvoicesAsCustomer, getInvoicesAsParty, getInvoicesAsPartyById, getJobResultById, getKycByParty, getLeadById, getLeadProviderById, getLeadProvidersByAffinity, getLeaseOfferById, getLinkOfDocument, getMetricsByCampaign, getMinimalOfferById, getMinimalOfferRevisionById, getMinimalRiskObjectById, getNace, getNoveltyInsightsByDistribution, getOfferById, getOffersByDistribution, getOnboardingChecklistByBroker, getOrganisationDistributions, getOrganisationLeads, getOrganisationOffers, getOutlookConnectionDetails, getOutlookMailfolders, getOutlookMails, getPartiesByCustomer, getPartiesLinkedToUser, getPartiesOriginFilter, getPartyAddresses, getPartyById, getPartyMergeSuggestions, getPdfOfAdvisoryReportById, getPerformanceInsightsByDistribution, getPolicyPackageById, getPolicyPackageByIdAsCustomer, getPolicyPackageSimulationsForParty, getPolicyPackagesAsCustomer, getPolicyPackagesForParty, getPossibleInsuranceProductsByPartyId, getPossibleInsuranceProductsByRiskObjectId, getPossibleInsuranceProductsForManagementByPartyId, getPossibleInsuranceProductsForStaffByPartyId, getPreventionAdvice, getPromotionsByDistributionId, getProvenanceInfoOfDocument, getQuoteExports, getQuoteInsights, getQuotesAsBatchResultsByConversationId, getRecommendationsById, getRecommendationsByPartyId, getRecommendationsBySessionId, getRiskAnalysisByPartyId, getRiskDomainById, getRiskDomains, getRiskObjectByRiskObjectRevisionId, getRiskObjectRevisionsById, getSbi, getSingularityJobResultById, getStepSettingsByAdvisoryReportId, getSupportedAnvaflowCoverages, getSupportedAnvaflowCoveragesGroupedByAdn, getSupportedAnvaflowInsuranceCompanies, getSupportedAnvaflowInsurances, getSupportedAnvaflowTags, getSupportedInsuranceCompanies, getSupportedInsuranceSubjects, getSupportedMimeTypes, getSupportedRiskDomains, getSupportedYellowhiveflowCoverages, getSupportedYellowhiveflowInsurances, getTheBrokerById, getUspByDistribution, getValuesOfEnum, getVehicleByCarIdOrFebiacId, getVehicleByNumberPlateAndCarId, getVehicleByVersionId, getVehicleByVinAndCarId, getVehicleVersionFactsBySeriesId, getWeatherInfo, getYellowhiveflowProductById, getYellowhiveflowProducts, getYourOwnUser, giveFeedbackOnConversationById, giveFeedbackOnRecommendationsById, giveFeedbackToInsuranceTermsBot, handleCreateDistributionTheme, handleDeleteDistributionTheme, handleUpdateDistributionTheme, importAnvaDocumentInWegroup, importAnvaInsurancePolicyDocumentInWegroup, importAnvaInsurancePolicyPackageDocumentInWegroup, importAnvaPartyInWegroup, importAnvaproduct, importDiasPartyInWegroup, importDiasflowProduct, inviteColleaguesToDistribution, inviteUserToParty, linkConversationToAdvisoryReport, linkPartyToUser, lockFlightApi, markConversationAsCompletedById, mergePartiesTogether, type operations, orderInsurancePolciesOfAdvisoryReport, overrideInsuranceProductRecommendationById, overridePreventionAdviceRecommendationById, patchAnvaproductById, patchAnvaproductCoverageById, patchDiasflowProductById, patchDiasflowProductCoverageByDiasId, patchOwnPartyAsCustomer, type paths, poseAQuestionToInsuranceTermsBot, poseAQuestionToInsuranceTermsBotForItToCompare, postEventAsCarglassPartner, putClausesForReport, recalculateDiasQuotesBySessionIdAndProductId, recalculateDiasSimulationBySessionId, recalculateOneAnvaquoteByAnvaProductIdSessionId, recalculateSimulationBySessionId, recalculateYellowhiveQuotesBySessionIdAndProductId, recalculateYellowhiveSimulationBySessionId, retrieveAirports, retrieveAllExportsByParty, retrieveAnvaflowsQuestionnaires, retrieveAskLaterQuestions, retrieveAutomobileByCarIdFreemiumVersion, retrieveAutomobileByIdFreemium, retrieveDiasQuestionnaires, retrieveExportById, retrieveFlow, retrieveYellowhiveQuestionnaires, seachStreetsByCityAndCountry, searchAddressesByCountry, searchCitiesByCountry, searchDirectorsByFirstAndLastName, searchEnterprisesByCountry, searchVehicles, sendAdvisoryReportAsMail, sendAnvaInquiryAsCustomer, sendClaimToKeypoint, sendExampleCampaignTargetMail, sendMailClaimReportById, sendMailFollowupPageToCustomer, sendMailForSimulationToParty, sendOfferMailBySessionId, sendOfferToAnvaBySessionId, sendPasswordResetToCustomer, sendQuoteAsMail, setAskLaterQuestions, transferLeadToOtherDistribution, transferPartyToOtherDistribution, triageEmail, unblockCustomerFromAccessingParty, unlockClaim, updateAdvisoryReport, updateAnvaflowsQuestionnaire, updateBicycleRiskObject, updateBoatRiskObject, updateBrokerByBroker, updateBrokerConnectionByKey, updateBrokerIntegrations, updateCampaign, updateCarRiskObject, updateClaimAsBrokerById, updateClaimAsCustomerWithToken, updateCommentOnActivity, updateConversationById, updateDeclarationRemark, updateDiasQuestionnaire, updateDistributionConnectionByKey, updateDistributionIntegrations, updateDistributionSettings, updateDocumentForParty, updateDocumentMetadataById, updateDocumentMetadataByIdAsCustomerWithToken, updateEntityAsBrokerById, updateEntityAsCustomerWithToken, updateFamilyRiskObject, updateFleetRiskObject, updateInsuranceProductByDistribution, updateInsuranceProductClauseForDistribution, updateLegalRiskObject, updateMiscellaneousRiskObject, updateNote, updateOfferById, updateOffersInBulk, updatePartyActivitiesAsCustomer, updatePartyAssignees, updatePartyById, updatePartyGroupRiskObject, updatePartyNoteById, updatePartyRelations, updatePreventionByDistribution, updateQuestionForAllQuestionnairesByAnvaLabels, updateRelationBetweenRiskObjectAndParty, updateResidenceRiskObject, updateRiskDomainActionForAdvisoryReportById, updateRiskDomainAdviceForAdvisoryReportById, updateRiskDomainByDistribution, updateSemiTrailerRiskObject, updateTargetsByCampaign, updateTrailerRiskObject, updateTwoWheelerRiskObject, updateUspByDistributionAndId, updateYellowhiveQuestionnaire, updateYourOwnUser, updateYourPassword, uploadClaimDocumentAsBroker, upsertAnvaClosingQuestions, upsertDistributionFaq, upsertInsurancePoliciesForParty, upsertInsurancePolicySimulationForParty, upsertPolicyPackagesForParty, v1ApiIntegrationsAnvaPartiesAnvaIdImportsPost, v1ApiIntegrationsAnvaPartiesGet, v1ApiIntegrationsAnvaValidatePost, validateAChassisNumber, validateACompanyRegistrationNumber, validateANationalIdentificationNumber, validateATelephonenr, validateAVehicleRegistrationPlate, validateAWebsite, validateAnEmail, validateAnFsma, validateAnIban, validateAnvaConnection, validateAnvaDwhConnection, validateAnvaflowsQuestionnaire, validateClaim, validateDiasQuestionnaire, validateFasterforwardConnection, validatePromotions, validateYellowhiveQuestionnaire, verifyIfADistributionExistsByCompanyRegistration, verifyIfADistributionExistsByName, verifyIfAUserExistsByEmail, type webhooks, wgApiClient };