@dhyasama/totem-models 12.22.0 → 12.23.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.
- package/lib/Organization.js +7 -0
- package/package.json +1 -1
package/lib/Organization.js
CHANGED
|
@@ -225,6 +225,13 @@ module.exports = function(mongoose, config) {
|
|
|
225
225
|
active: { type: Boolean, default: false }
|
|
226
226
|
},
|
|
227
227
|
|
|
228
|
+
// Granola native REST API integration. When active, webhooks polls this
|
|
229
|
+
// customer's Granola notes using apiKey (see webhooks/src/granola).
|
|
230
|
+
granola: {
|
|
231
|
+
active: { type: Boolean, default: false },
|
|
232
|
+
apiKey: { type: String, trim: true }
|
|
233
|
+
},
|
|
234
|
+
|
|
228
235
|
sheet: {
|
|
229
236
|
id: { type: String, trim: true, unique: true, partialFilterExpression : { type :"string" } },
|
|
230
237
|
format: {
|