zeus-api-types 1.0.74 → 1.0.75

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.
@@ -190,6 +190,7 @@ export declare const MetadataPromptTargets: {
190
190
  readonly gameInit: number;
191
191
  readonly choiceMetadata: number;
192
192
  readonly dialog: number;
193
+ readonly actTransitionPruning: number;
193
194
  };
194
195
  export type MetadataPromptTargetKey = keyof typeof MetadataPromptTargets;
195
196
  export type MetadataPromptTargetMask = (typeof MetadataPromptTargets)[MetadataPromptTargetKey];
@@ -33,6 +33,7 @@ exports.MetadataPromptTargets = {
33
33
  gameInit: 1 << 4,
34
34
  choiceMetadata: 1 << 5,
35
35
  dialog: 1 << 6,
36
+ actTransitionPruning: 1 << 7,
36
37
  };
37
38
  exports.ALL_METADATA_PROMPT_TARGETS = Object.values(exports.MetadataPromptTargets)
38
39
  .reduce((mask, target) => mask | target, 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.74",
3
+ "version": "1.0.75",
4
4
  "description": "Shared API types for Wagtales - SSE payloads, error types, and common interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",