wg-api-sdk 4.31.43 → 4.31.44-alpha.1

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.
@@ -9734,7 +9734,7 @@ interface components {
9734
9734
  * Timestamp
9735
9735
  * Format: date-time
9736
9736
  * @description Timestamp of when the error occured
9737
- * @default 2026-04-16T11:47:29.487045
9737
+ * @default 2026-04-20T20:47:48.078136
9738
9738
  */
9739
9739
  timestamp: string;
9740
9740
  /**
@@ -51488,9 +51488,9 @@ interface components {
51488
51488
  /** OutlookMailRecepient */
51489
51489
  OutlookMailRecepient: {
51490
51490
  /** Name */
51491
- name: string;
51491
+ name?: string;
51492
51492
  /** Email */
51493
- email: string;
51493
+ email?: string;
51494
51494
  };
51495
51495
  /** OutlookMailHeader */
51496
51496
  OutlookMailHeader: {
@@ -51676,6 +51676,11 @@ interface components {
51676
51676
  * @description An array of outlook_id's, these are long strings.
51677
51677
  */
51678
51678
  mailfolders: string[];
51679
+ /**
51680
+ * Force Resync
51681
+ * @default false
51682
+ */
51683
+ force_resync: boolean;
51679
51684
  };
51680
51685
  /** deactivate_outlook_sync_params */
51681
51686
  deactivate_outlook_sync_params: {
@@ -53494,7 +53499,7 @@ interface components {
53494
53499
  /**
53495
53500
  * Quote Specifications
53496
53501
  * @default {
53497
- * "contract_commencement_date": "2026-04-16"
53502
+ * "contract_commencement_date": "2026-04-20"
53498
53503
  * }
53499
53504
  */
53500
53505
  quote_specifications: components["schemas"]["QuoteSpecification"];
@@ -67460,6 +67465,8 @@ interface components {
67460
67465
  insurance_company_code: string;
67461
67466
  /** Insurance Company Form */
67462
67467
  insurance_company_form?: string;
67468
+ /** Insurance Company Form Description */
67469
+ insurance_company_form_description?: string;
67463
67470
  party_type: components["schemas"]["PROSPECT_TYPE"];
67464
67471
  /** Name */
67465
67472
  name: string;
package/dist/index.d.ts CHANGED
@@ -9734,7 +9734,7 @@ interface components {
9734
9734
  * Timestamp
9735
9735
  * Format: date-time
9736
9736
  * @description Timestamp of when the error occured
9737
- * @default 2026-04-16T11:47:29.487045
9737
+ * @default 2026-04-20T20:47:48.078136
9738
9738
  */
9739
9739
  timestamp: string;
9740
9740
  /**
@@ -51488,9 +51488,9 @@ interface components {
51488
51488
  /** OutlookMailRecepient */
51489
51489
  OutlookMailRecepient: {
51490
51490
  /** Name */
51491
- name: string;
51491
+ name?: string;
51492
51492
  /** Email */
51493
- email: string;
51493
+ email?: string;
51494
51494
  };
51495
51495
  /** OutlookMailHeader */
51496
51496
  OutlookMailHeader: {
@@ -51676,6 +51676,11 @@ interface components {
51676
51676
  * @description An array of outlook_id's, these are long strings.
51677
51677
  */
51678
51678
  mailfolders: string[];
51679
+ /**
51680
+ * Force Resync
51681
+ * @default false
51682
+ */
51683
+ force_resync: boolean;
51679
51684
  };
51680
51685
  /** deactivate_outlook_sync_params */
51681
51686
  deactivate_outlook_sync_params: {
@@ -53494,7 +53499,7 @@ interface components {
53494
53499
  /**
53495
53500
  * Quote Specifications
53496
53501
  * @default {
53497
- * "contract_commencement_date": "2026-04-16"
53502
+ * "contract_commencement_date": "2026-04-20"
53498
53503
  * }
53499
53504
  */
53500
53505
  quote_specifications: components["schemas"]["QuoteSpecification"];
@@ -67460,6 +67465,8 @@ interface components {
67460
67465
  insurance_company_code: string;
67461
67466
  /** Insurance Company Form */
67462
67467
  insurance_company_form?: string;
67468
+ /** Insurance Company Form Description */
67469
+ insurance_company_form_description?: string;
67463
67470
  party_type: components["schemas"]["PROSPECT_TYPE"];
67464
67471
  /** Name */
67465
67472
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wg-api-sdk",
3
- "version": "4.31.43",
3
+ "version": "4.31.44-alpha.1",
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",