becomap 1.4.4 → 1.4.6
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/becomap.js +1 -1
- package/lib/index.d.ts +7 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -764,6 +764,13 @@ export interface BCHappenings {
|
|
|
764
764
|
* @returns The priority as a number.
|
|
765
765
|
*/
|
|
766
766
|
priority: number;
|
|
767
|
+
/**
|
|
768
|
+
* Additional custom fields that provide extra information about the happening.
|
|
769
|
+
* These fields are dynamically structured and can vary based on the type of happening.
|
|
770
|
+
*
|
|
771
|
+
* @returns A `CustomFields` object containing key-value pairs, where each key represents a category of custom data.
|
|
772
|
+
*/
|
|
773
|
+
customFields: Record<string, any>;
|
|
767
774
|
}
|
|
768
775
|
declare enum BCQuestionType {
|
|
769
776
|
/** Represents a multiple-choice question with a single answer. */
|