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.
- package/dist/game-state.d.ts +1 -0
- package/dist/game-state.js +1 -0
- package/package.json +1 -1
package/dist/game-state.d.ts
CHANGED
|
@@ -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];
|
package/dist/game-state.js
CHANGED
|
@@ -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);
|