wg-api-sdk 4.31.72 → 4.31.73
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.
- package/dist/esm/index.d.mts +68 -5
- package/dist/index.d.ts +68 -5
- package/package.json +1 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -9802,7 +9802,7 @@ interface components {
|
|
|
9802
9802
|
* Timestamp
|
|
9803
9803
|
* Format: date-time
|
|
9804
9804
|
* @description Timestamp of when the error occured
|
|
9805
|
-
* @default 2026-07-
|
|
9805
|
+
* @default 2026-07-09T13:34:14.606682
|
|
9806
9806
|
*/
|
|
9807
9807
|
timestamp: string;
|
|
9808
9808
|
/**
|
|
@@ -13129,6 +13129,24 @@ interface components {
|
|
|
13129
13129
|
external_reference?: string;
|
|
13130
13130
|
/** @description Details of the building usecase */
|
|
13131
13131
|
building_use?: components["schemas"]["BUILDING_USE"];
|
|
13132
|
+
/**
|
|
13133
|
+
* Reconstruction Value
|
|
13134
|
+
* @description Rebuild value indication of the main building in Euro, provided by an external source
|
|
13135
|
+
* @example 245000
|
|
13136
|
+
*/
|
|
13137
|
+
reconstruction_value?: number;
|
|
13138
|
+
/**
|
|
13139
|
+
* Content Value
|
|
13140
|
+
* @description Indication of the value of the household contents in Euro, provided by an external source
|
|
13141
|
+
* @example 72000
|
|
13142
|
+
*/
|
|
13143
|
+
content_value?: number;
|
|
13144
|
+
/**
|
|
13145
|
+
* Energy Label
|
|
13146
|
+
* @description Energy label of the main building
|
|
13147
|
+
* @example C
|
|
13148
|
+
*/
|
|
13149
|
+
energy_label?: string;
|
|
13132
13150
|
/**
|
|
13133
13151
|
* Coordinates
|
|
13134
13152
|
* @description Coordinates of the building outline, format of the list is (longtitude, latitude)
|
|
@@ -26824,7 +26842,7 @@ interface components {
|
|
|
26824
26842
|
* @description An enumeration.
|
|
26825
26843
|
* @enum {unknown}
|
|
26826
26844
|
*/
|
|
26827
|
-
INSURANCE_POLICY_TYPE: "INACTIVE" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "SIMULATION";
|
|
26845
|
+
INSURANCE_POLICY_TYPE: "INACTIVE" | "REQUESTED" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "SIMULATION" | "CANCELLED";
|
|
26828
26846
|
/** MinimalCoverageQueryModel */
|
|
26829
26847
|
MinimalCoverageQueryModel: {
|
|
26830
26848
|
/**
|
|
@@ -32789,6 +32807,12 @@ interface components {
|
|
|
32789
32807
|
* Format: uuid
|
|
32790
32808
|
*/
|
|
32791
32809
|
predecessor_insurance_policy_id?: string;
|
|
32810
|
+
/**
|
|
32811
|
+
* Assigned To
|
|
32812
|
+
* Format: uuid
|
|
32813
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
32814
|
+
*/
|
|
32815
|
+
assigned_to?: string;
|
|
32792
32816
|
/** Documents */
|
|
32793
32817
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
32794
32818
|
/** Links */
|
|
@@ -32799,7 +32823,7 @@ interface components {
|
|
|
32799
32823
|
* @description You cannot create SIMULATION without simulation id so we split up this type
|
|
32800
32824
|
* @enum {unknown}
|
|
32801
32825
|
*/
|
|
32802
|
-
INSURANCE_POLICY_CREATE_TYPE: "INACTIVE" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD";
|
|
32826
|
+
INSURANCE_POLICY_CREATE_TYPE: "INACTIVE" | "REQUESTED" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "CANCELLED";
|
|
32803
32827
|
/** CoverageCmd */
|
|
32804
32828
|
CoverageCmd: {
|
|
32805
32829
|
/**
|
|
@@ -34721,6 +34745,12 @@ interface components {
|
|
|
34721
34745
|
* Format: uuid
|
|
34722
34746
|
*/
|
|
34723
34747
|
predecessor_insurance_policy_id?: string;
|
|
34748
|
+
/**
|
|
34749
|
+
* Assigned To
|
|
34750
|
+
* Format: uuid
|
|
34751
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
34752
|
+
*/
|
|
34753
|
+
assigned_to?: string;
|
|
34724
34754
|
/** Is Tailored Premium */
|
|
34725
34755
|
is_tailored_premium?: boolean;
|
|
34726
34756
|
/**
|
|
@@ -40360,6 +40390,12 @@ interface components {
|
|
|
40360
40390
|
* Format: uuid
|
|
40361
40391
|
*/
|
|
40362
40392
|
predecessor_insurance_policy_id?: string;
|
|
40393
|
+
/**
|
|
40394
|
+
* Assigned To
|
|
40395
|
+
* Format: uuid
|
|
40396
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
40397
|
+
*/
|
|
40398
|
+
assigned_to?: string;
|
|
40363
40399
|
/** Documents */
|
|
40364
40400
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
40365
40401
|
/** Links */
|
|
@@ -47778,6 +47814,12 @@ interface components {
|
|
|
47778
47814
|
cis_cert?: string;
|
|
47779
47815
|
/** Cis Cert Passphrase */
|
|
47780
47816
|
cis_cert_passphrase?: string;
|
|
47817
|
+
/** Infofolio Username */
|
|
47818
|
+
infofolio_username?: string;
|
|
47819
|
+
/** Infofolio Password */
|
|
47820
|
+
infofolio_password?: string;
|
|
47821
|
+
/** Infofolio Infoset */
|
|
47822
|
+
infofolio_infoset?: string;
|
|
47781
47823
|
};
|
|
47782
47824
|
/** update_distribution_connection_by_key_params */
|
|
47783
47825
|
update_distribution_connection_by_key_params: {
|
|
@@ -47871,6 +47913,12 @@ interface components {
|
|
|
47871
47913
|
cis_cert?: string;
|
|
47872
47914
|
/** Cis Cert Passphrase */
|
|
47873
47915
|
cis_cert_passphrase?: string;
|
|
47916
|
+
/** Infofolio Username */
|
|
47917
|
+
infofolio_username?: string;
|
|
47918
|
+
/** Infofolio Password */
|
|
47919
|
+
infofolio_password?: string;
|
|
47920
|
+
/** Infofolio Infoset */
|
|
47921
|
+
infofolio_infoset?: string;
|
|
47874
47922
|
};
|
|
47875
47923
|
/** PublicDistributionConnectionQueryModel */
|
|
47876
47924
|
PublicDistributionConnectionQueryModel: {
|
|
@@ -47992,6 +48040,12 @@ interface components {
|
|
|
47992
48040
|
cis_cert?: string;
|
|
47993
48041
|
/** Cis Cert Passphrase */
|
|
47994
48042
|
cis_cert_passphrase?: string;
|
|
48043
|
+
/** Infofolio Username */
|
|
48044
|
+
infofolio_username?: string;
|
|
48045
|
+
/** Infofolio Password */
|
|
48046
|
+
infofolio_password?: string;
|
|
48047
|
+
/** Infofolio Infoset */
|
|
48048
|
+
infofolio_infoset?: string;
|
|
47995
48049
|
};
|
|
47996
48050
|
/** CarLeaseRatesResponse */
|
|
47997
48051
|
CarLeaseRatesResponse: {
|
|
@@ -50426,6 +50480,12 @@ interface components {
|
|
|
50426
50480
|
* Format: uuid
|
|
50427
50481
|
*/
|
|
50428
50482
|
predecessor_insurance_policy_id?: string;
|
|
50483
|
+
/**
|
|
50484
|
+
* Assigned To
|
|
50485
|
+
* Format: uuid
|
|
50486
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
50487
|
+
*/
|
|
50488
|
+
assigned_to?: string;
|
|
50429
50489
|
/** Documents */
|
|
50430
50490
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
50431
50491
|
/** Links */
|
|
@@ -54062,7 +54122,7 @@ interface components {
|
|
|
54062
54122
|
/**
|
|
54063
54123
|
* Quote Specifications
|
|
54064
54124
|
* @default {
|
|
54065
|
-
* "contract_commencement_date": "2026-07-
|
|
54125
|
+
* "contract_commencement_date": "2026-07-09"
|
|
54066
54126
|
* }
|
|
54067
54127
|
*/
|
|
54068
54128
|
quote_specifications: components["schemas"]["QuoteSpecification"];
|
|
@@ -89597,6 +89657,7 @@ interface operations {
|
|
|
89597
89657
|
/** @description Use GET /v1/api/conversation-filters/origin to see all possibilities */
|
|
89598
89658
|
origin?: string;
|
|
89599
89659
|
flow_id?: string[];
|
|
89660
|
+
insurance_policy_id?: string;
|
|
89600
89661
|
assigned_to?: string;
|
|
89601
89662
|
order_by?: string;
|
|
89602
89663
|
sort?: string;
|
|
@@ -109333,6 +109394,7 @@ interface operations {
|
|
|
109333
109394
|
query?: {
|
|
109334
109395
|
order_by?: string;
|
|
109335
109396
|
sort?: string;
|
|
109397
|
+
status?: string[];
|
|
109336
109398
|
};
|
|
109337
109399
|
header?: {
|
|
109338
109400
|
/** @description Which release to target running in 'STAGING' environment. */
|
|
@@ -111463,7 +111525,7 @@ interface operations {
|
|
|
111463
111525
|
get_policy_package_by_id_v1_api_parties__party_id__policy_packages__policy_package_id__get: {
|
|
111464
111526
|
parameters: {
|
|
111465
111527
|
query?: {
|
|
111466
|
-
status?: "ACTIVE" | "INACTIVE" | "POLICY_ON_HOLD" | "TERMINATION" | "SIMULATION";
|
|
111528
|
+
status?: "ACTIVE" | "INACTIVE" | "REQUESTED" | "CANCELLED" | "POLICY_ON_HOLD" | "TERMINATION" | "SIMULATION";
|
|
111467
111529
|
};
|
|
111468
111530
|
header?: {
|
|
111469
111531
|
/** @description Which release to target running in 'STAGING' environment. */
|
|
@@ -120196,6 +120258,7 @@ interface operations {
|
|
|
120196
120258
|
parameters: {
|
|
120197
120259
|
query?: {
|
|
120198
120260
|
merge_with_session_id?: string;
|
|
120261
|
+
insurance_policy_id?: string;
|
|
120199
120262
|
/**
|
|
120200
120263
|
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
120201
120264
|
* @example EN
|
package/dist/index.d.ts
CHANGED
|
@@ -9802,7 +9802,7 @@ interface components {
|
|
|
9802
9802
|
* Timestamp
|
|
9803
9803
|
* Format: date-time
|
|
9804
9804
|
* @description Timestamp of when the error occured
|
|
9805
|
-
* @default 2026-07-
|
|
9805
|
+
* @default 2026-07-09T13:34:14.606682
|
|
9806
9806
|
*/
|
|
9807
9807
|
timestamp: string;
|
|
9808
9808
|
/**
|
|
@@ -13129,6 +13129,24 @@ interface components {
|
|
|
13129
13129
|
external_reference?: string;
|
|
13130
13130
|
/** @description Details of the building usecase */
|
|
13131
13131
|
building_use?: components["schemas"]["BUILDING_USE"];
|
|
13132
|
+
/**
|
|
13133
|
+
* Reconstruction Value
|
|
13134
|
+
* @description Rebuild value indication of the main building in Euro, provided by an external source
|
|
13135
|
+
* @example 245000
|
|
13136
|
+
*/
|
|
13137
|
+
reconstruction_value?: number;
|
|
13138
|
+
/**
|
|
13139
|
+
* Content Value
|
|
13140
|
+
* @description Indication of the value of the household contents in Euro, provided by an external source
|
|
13141
|
+
* @example 72000
|
|
13142
|
+
*/
|
|
13143
|
+
content_value?: number;
|
|
13144
|
+
/**
|
|
13145
|
+
* Energy Label
|
|
13146
|
+
* @description Energy label of the main building
|
|
13147
|
+
* @example C
|
|
13148
|
+
*/
|
|
13149
|
+
energy_label?: string;
|
|
13132
13150
|
/**
|
|
13133
13151
|
* Coordinates
|
|
13134
13152
|
* @description Coordinates of the building outline, format of the list is (longtitude, latitude)
|
|
@@ -26824,7 +26842,7 @@ interface components {
|
|
|
26824
26842
|
* @description An enumeration.
|
|
26825
26843
|
* @enum {unknown}
|
|
26826
26844
|
*/
|
|
26827
|
-
INSURANCE_POLICY_TYPE: "INACTIVE" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "SIMULATION";
|
|
26845
|
+
INSURANCE_POLICY_TYPE: "INACTIVE" | "REQUESTED" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "SIMULATION" | "CANCELLED";
|
|
26828
26846
|
/** MinimalCoverageQueryModel */
|
|
26829
26847
|
MinimalCoverageQueryModel: {
|
|
26830
26848
|
/**
|
|
@@ -32789,6 +32807,12 @@ interface components {
|
|
|
32789
32807
|
* Format: uuid
|
|
32790
32808
|
*/
|
|
32791
32809
|
predecessor_insurance_policy_id?: string;
|
|
32810
|
+
/**
|
|
32811
|
+
* Assigned To
|
|
32812
|
+
* Format: uuid
|
|
32813
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
32814
|
+
*/
|
|
32815
|
+
assigned_to?: string;
|
|
32792
32816
|
/** Documents */
|
|
32793
32817
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
32794
32818
|
/** Links */
|
|
@@ -32799,7 +32823,7 @@ interface components {
|
|
|
32799
32823
|
* @description You cannot create SIMULATION without simulation id so we split up this type
|
|
32800
32824
|
* @enum {unknown}
|
|
32801
32825
|
*/
|
|
32802
|
-
INSURANCE_POLICY_CREATE_TYPE: "INACTIVE" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD";
|
|
32826
|
+
INSURANCE_POLICY_CREATE_TYPE: "INACTIVE" | "REQUESTED" | "ACTIVE" | "TERMINATED" | "POLICY_ON_HOLD" | "CANCELLED";
|
|
32803
32827
|
/** CoverageCmd */
|
|
32804
32828
|
CoverageCmd: {
|
|
32805
32829
|
/**
|
|
@@ -34721,6 +34745,12 @@ interface components {
|
|
|
34721
34745
|
* Format: uuid
|
|
34722
34746
|
*/
|
|
34723
34747
|
predecessor_insurance_policy_id?: string;
|
|
34748
|
+
/**
|
|
34749
|
+
* Assigned To
|
|
34750
|
+
* Format: uuid
|
|
34751
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
34752
|
+
*/
|
|
34753
|
+
assigned_to?: string;
|
|
34724
34754
|
/** Is Tailored Premium */
|
|
34725
34755
|
is_tailored_premium?: boolean;
|
|
34726
34756
|
/**
|
|
@@ -40360,6 +40390,12 @@ interface components {
|
|
|
40360
40390
|
* Format: uuid
|
|
40361
40391
|
*/
|
|
40362
40392
|
predecessor_insurance_policy_id?: string;
|
|
40393
|
+
/**
|
|
40394
|
+
* Assigned To
|
|
40395
|
+
* Format: uuid
|
|
40396
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
40397
|
+
*/
|
|
40398
|
+
assigned_to?: string;
|
|
40363
40399
|
/** Documents */
|
|
40364
40400
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
40365
40401
|
/** Links */
|
|
@@ -47778,6 +47814,12 @@ interface components {
|
|
|
47778
47814
|
cis_cert?: string;
|
|
47779
47815
|
/** Cis Cert Passphrase */
|
|
47780
47816
|
cis_cert_passphrase?: string;
|
|
47817
|
+
/** Infofolio Username */
|
|
47818
|
+
infofolio_username?: string;
|
|
47819
|
+
/** Infofolio Password */
|
|
47820
|
+
infofolio_password?: string;
|
|
47821
|
+
/** Infofolio Infoset */
|
|
47822
|
+
infofolio_infoset?: string;
|
|
47781
47823
|
};
|
|
47782
47824
|
/** update_distribution_connection_by_key_params */
|
|
47783
47825
|
update_distribution_connection_by_key_params: {
|
|
@@ -47871,6 +47913,12 @@ interface components {
|
|
|
47871
47913
|
cis_cert?: string;
|
|
47872
47914
|
/** Cis Cert Passphrase */
|
|
47873
47915
|
cis_cert_passphrase?: string;
|
|
47916
|
+
/** Infofolio Username */
|
|
47917
|
+
infofolio_username?: string;
|
|
47918
|
+
/** Infofolio Password */
|
|
47919
|
+
infofolio_password?: string;
|
|
47920
|
+
/** Infofolio Infoset */
|
|
47921
|
+
infofolio_infoset?: string;
|
|
47874
47922
|
};
|
|
47875
47923
|
/** PublicDistributionConnectionQueryModel */
|
|
47876
47924
|
PublicDistributionConnectionQueryModel: {
|
|
@@ -47992,6 +48040,12 @@ interface components {
|
|
|
47992
48040
|
cis_cert?: string;
|
|
47993
48041
|
/** Cis Cert Passphrase */
|
|
47994
48042
|
cis_cert_passphrase?: string;
|
|
48043
|
+
/** Infofolio Username */
|
|
48044
|
+
infofolio_username?: string;
|
|
48045
|
+
/** Infofolio Password */
|
|
48046
|
+
infofolio_password?: string;
|
|
48047
|
+
/** Infofolio Infoset */
|
|
48048
|
+
infofolio_infoset?: string;
|
|
47995
48049
|
};
|
|
47996
48050
|
/** CarLeaseRatesResponse */
|
|
47997
48051
|
CarLeaseRatesResponse: {
|
|
@@ -50426,6 +50480,12 @@ interface components {
|
|
|
50426
50480
|
* Format: uuid
|
|
50427
50481
|
*/
|
|
50428
50482
|
predecessor_insurance_policy_id?: string;
|
|
50483
|
+
/**
|
|
50484
|
+
* Assigned To
|
|
50485
|
+
* Format: uuid
|
|
50486
|
+
* @description The broker assigned to follow up on this policy/offer.
|
|
50487
|
+
*/
|
|
50488
|
+
assigned_to?: string;
|
|
50429
50489
|
/** Documents */
|
|
50430
50490
|
documents?: components["schemas"]["InsurancePolicyDocumentCmd"][];
|
|
50431
50491
|
/** Links */
|
|
@@ -54062,7 +54122,7 @@ interface components {
|
|
|
54062
54122
|
/**
|
|
54063
54123
|
* Quote Specifications
|
|
54064
54124
|
* @default {
|
|
54065
|
-
* "contract_commencement_date": "2026-07-
|
|
54125
|
+
* "contract_commencement_date": "2026-07-09"
|
|
54066
54126
|
* }
|
|
54067
54127
|
*/
|
|
54068
54128
|
quote_specifications: components["schemas"]["QuoteSpecification"];
|
|
@@ -89597,6 +89657,7 @@ interface operations {
|
|
|
89597
89657
|
/** @description Use GET /v1/api/conversation-filters/origin to see all possibilities */
|
|
89598
89658
|
origin?: string;
|
|
89599
89659
|
flow_id?: string[];
|
|
89660
|
+
insurance_policy_id?: string;
|
|
89600
89661
|
assigned_to?: string;
|
|
89601
89662
|
order_by?: string;
|
|
89602
89663
|
sort?: string;
|
|
@@ -109333,6 +109394,7 @@ interface operations {
|
|
|
109333
109394
|
query?: {
|
|
109334
109395
|
order_by?: string;
|
|
109335
109396
|
sort?: string;
|
|
109397
|
+
status?: string[];
|
|
109336
109398
|
};
|
|
109337
109399
|
header?: {
|
|
109338
109400
|
/** @description Which release to target running in 'STAGING' environment. */
|
|
@@ -111463,7 +111525,7 @@ interface operations {
|
|
|
111463
111525
|
get_policy_package_by_id_v1_api_parties__party_id__policy_packages__policy_package_id__get: {
|
|
111464
111526
|
parameters: {
|
|
111465
111527
|
query?: {
|
|
111466
|
-
status?: "ACTIVE" | "INACTIVE" | "POLICY_ON_HOLD" | "TERMINATION" | "SIMULATION";
|
|
111528
|
+
status?: "ACTIVE" | "INACTIVE" | "REQUESTED" | "CANCELLED" | "POLICY_ON_HOLD" | "TERMINATION" | "SIMULATION";
|
|
111467
111529
|
};
|
|
111468
111530
|
header?: {
|
|
111469
111531
|
/** @description Which release to target running in 'STAGING' environment. */
|
|
@@ -120196,6 +120258,7 @@ interface operations {
|
|
|
120196
120258
|
parameters: {
|
|
120197
120259
|
query?: {
|
|
120198
120260
|
merge_with_session_id?: string;
|
|
120261
|
+
insurance_policy_id?: string;
|
|
120199
120262
|
/**
|
|
120200
120263
|
* @description A language_code, one of ['FR', 'NL', 'EN', 'DE', 'ES'], lower case values will be transformed to uppercase.
|
|
120201
120264
|
* @example EN
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wg-api-sdk",
|
|
3
|
-
"version": "4.31.
|
|
3
|
+
"version": "4.31.73",
|
|
4
4
|
"description": "An SDK that provides auto-generated fetch functions and types for interacting with WeGroup 's APIs, based on the OpenAPI specification file.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/esm/index.mjs",
|