@danypops/papyrus 0.52.0 → 0.52.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.
- package/package.json +1 -1
- package/src/handlers/discuss.ts +4 -0
package/package.json
CHANGED
package/src/handlers/discuss.ts
CHANGED
|
@@ -177,6 +177,8 @@ export function registerDiscussVehicleOperations(registry: VehicleRegistry, disc
|
|
|
177
177
|
options_mode: { type: "string", enum: ["single", "multi"] },
|
|
178
178
|
option_descriptions: arrayProp,
|
|
179
179
|
live: boolProp,
|
|
180
|
+
source: stringProp,
|
|
181
|
+
session_id: stringProp,
|
|
180
182
|
},
|
|
181
183
|
["title", "content"],
|
|
182
184
|
(input) => {
|
|
@@ -205,6 +207,8 @@ export function registerDiscussVehicleOperations(registry: VehicleRegistry, disc
|
|
|
205
207
|
options_mode: { type: "string", enum: ["single", "multi"] },
|
|
206
208
|
option_descriptions: arrayProp,
|
|
207
209
|
live: boolProp,
|
|
210
|
+
source: stringProp,
|
|
211
|
+
session_id: stringProp,
|
|
208
212
|
},
|
|
209
213
|
["content"],
|
|
210
214
|
(input) => {
|