@xapp/stentor-form-widget-channel 1.88.0 → 1.91.0

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.
@@ -144,6 +144,20 @@ export interface FormWidgetEnv {
144
144
  * When provided, it will display custom partner content (white label partner)
145
145
  */
146
146
  readonly partnerId?: string;
147
+ /**
148
+ * TrustedForm configuration for lead certification.
149
+ *
150
+ * When provided, the TrustedForm script is loaded and the certificate URL
151
+ * is included in the form submission data.
152
+ */
153
+ readonly trustedForm?: {
154
+ /**
155
+ * The TrustedForm script URL provided by the customer's TrustedForm account.
156
+ *
157
+ * @example "https://api.trustedform.com/trustedform.js?field=xxTrustedFormCertUrl&ping_field=xxTrustedFormPingUrl"
158
+ */
159
+ readonly scriptUrl: string;
160
+ };
147
161
  /**
148
162
  * Extra custom values
149
163
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.88.0",
7
+ "version": "1.91.0",
8
8
  "description": "Form Widget Channel for stentor 📣",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -23,7 +23,7 @@
23
23
  "mocha": "9.2.2",
24
24
  "sinon": "13.0.2",
25
25
  "sinon-chai": "3.7.0",
26
- "stentor-models": "1.72.0",
26
+ "stentor-models": "1.72.4",
27
27
  "ts-node": "10.9.2",
28
28
  "typescript": "5.9.3"
29
29
  },
@@ -38,5 +38,5 @@
38
38
  "build": "tsc -d true -p .",
39
39
  "clean": "rm -rf ./lib/*"
40
40
  },
41
- "gitHead": "8554d859ce681484ed71fd894a2c09ce5bb2662e"
41
+ "gitHead": "b81f5f2df410906a3b475bd159c69bd1b279a8cd"
42
42
  }