stentor-models 1.56.91 → 1.56.97

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.
@@ -2,8 +2,10 @@
2
2
  import { CrmResponse, ExternalLead } from "../Crm";
3
3
  export interface CrmService {
4
4
  /**
5
+ * Send the lead to the CRM
5
6
  *
6
- * @param externalLead
7
+ * @param externalLead Lead information
8
+ * @param extras Optional additional metadata to pass to the CRM
7
9
  */
8
- send(externalLead: ExternalLead): Promise<CrmResponse>;
10
+ send(externalLead: ExternalLead, extras?: Record<string, unknown>): Promise<CrmResponse>;
9
11
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.56.91",
7
+ "version": "1.56.97",
8
8
  "description": "Models for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -31,7 +31,7 @@
31
31
  "clean": "rm -rf ./lib/* && rm -rf ./dist/*"
32
32
  },
33
33
  "dependencies": {
34
- "@xapp/patterns": "1.40.260"
34
+ "@xapp/patterns": "1.40.297"
35
35
  },
36
- "gitHead": "450ccc29badb841878a4a71e86cb42f4352d2796"
36
+ "gitHead": "11c0910d64dcd2276fe65341f5a9e977ffb4c5e4"
37
37
  }