@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250715051532 → 13.346.0-beta.20250715141329
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/foundry/client/documents/active-effect.d.mts +11 -6
- package/src/foundry/client/documents/actor-delta.d.mts +11 -6
- package/src/foundry/client/documents/actor.d.mts +11 -6
- package/src/foundry/client/documents/card.d.mts +11 -6
- package/src/foundry/client/documents/cards.d.mts +11 -6
- package/src/foundry/client/documents/chat-message.d.mts +11 -6
- package/src/foundry/client/documents/combat.d.mts +11 -6
- package/src/foundry/client/documents/combatant-group.d.mts +11 -6
- package/src/foundry/client/documents/combatant.d.mts +11 -6
- package/src/foundry/client/documents/folder.d.mts +7 -1
- package/src/foundry/client/documents/item.d.mts +11 -6
- package/src/foundry/client/documents/journal-entry-page.d.mts +11 -6
- package/src/foundry/client/documents/macro.d.mts +7 -1
- package/src/foundry/client/documents/region-behavior.d.mts +11 -6
- package/src/foundry/client/documents/table-result.d.mts +7 -1
- package/src/foundry/common/abstract/document.d.mts +12 -12
- package/src/foundry/common/documents/active-effect.d.mts +1 -1
- package/src/foundry/common/documents/actor-delta.d.mts +1 -1
- package/src/foundry/common/documents/actor.d.mts +1 -1
- package/src/foundry/common/documents/card.d.mts +1 -1
- package/src/foundry/common/documents/cards.d.mts +1 -1
- package/src/foundry/common/documents/chat-message.d.mts +1 -1
- package/src/foundry/common/documents/combat.d.mts +1 -1
- package/src/foundry/common/documents/combatant-group.d.mts +1 -1
- package/src/foundry/common/documents/combatant.d.mts +1 -1
- package/src/foundry/common/documents/item.d.mts +1 -1
- package/src/foundry/common/documents/journal-entry-page.d.mts +1 -1
- package/src/foundry/common/documents/macro.d.mts +1 -1
- package/src/foundry/common/documents/region-behavior.d.mts +1 -1
- package/src/foundry/common/documents/table-result.d.mts +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
3
3
|
"name": "@league-of-foundry-developers/foundry-vtt-types",
|
4
|
-
"version": "13.346.0-beta.
|
4
|
+
"version": "13.346.0-beta.20250715141329",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -81,27 +81,27 @@ declare namespace ActiveEffect {
|
|
81
81
|
type SubType = foundry.Game.Model.TypeNames<"ActiveEffect">;
|
82
82
|
|
83
83
|
/**
|
84
|
-
* `
|
84
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
85
85
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
86
86
|
* module subtypes `${string}.${string}`.
|
87
87
|
*
|
88
88
|
* @see {@link SubType} for more information.
|
89
89
|
*/
|
90
|
-
type
|
90
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"ActiveEffect">;
|
91
91
|
|
92
92
|
/**
|
93
93
|
* `Known` represents the types of `ActiveEffect` that a user explicitly registered.
|
94
94
|
*
|
95
|
-
* @see {@link
|
95
|
+
* @see {@link ConfiguredSubType} for more information.
|
96
96
|
*/
|
97
|
-
type Known = ActiveEffect.OfType<ActiveEffect.
|
97
|
+
type Known = ActiveEffect.OfType<ActiveEffect.ConfiguredSubType>;
|
98
98
|
|
99
99
|
/**
|
100
100
|
* `OfType` returns an instance of `ActiveEffect` with the corresponding type. This works with both the
|
101
101
|
* builtin `ActiveEffect` class or a custom subclass if that is set up in
|
102
102
|
* {@link ConfiguredActiveEffect | `fvtt-types/configuration/ConfiguredActiveEffect`}.
|
103
103
|
*/
|
104
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
104
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
105
105
|
|
106
106
|
/** @internal */
|
107
107
|
interface _OfType
|
@@ -117,7 +117,7 @@ declare namespace ActiveEffect {
|
|
117
117
|
/**
|
118
118
|
* `SystemOfType` returns the system property for a specific `ActiveEffect` subtype.
|
119
119
|
*/
|
120
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
120
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
121
121
|
|
122
122
|
/**
|
123
123
|
* @internal
|
@@ -665,6 +665,11 @@ declare namespace ActiveEffect {
|
|
665
665
|
*/
|
666
666
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
667
667
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
668
|
+
|
669
|
+
/**
|
670
|
+
* @deprecated Replaced with {@linkcode ActiveEffect.ConfiguredSubType} (will be removed in v14).
|
671
|
+
*/
|
672
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
668
673
|
}
|
669
674
|
|
670
675
|
/**
|
@@ -78,27 +78,27 @@ declare namespace ActorDelta {
|
|
78
78
|
type SubType = Actor.SubType;
|
79
79
|
|
80
80
|
/**
|
81
|
-
* `
|
81
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
82
82
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
83
83
|
* module subtypes `${string}.${string}`.
|
84
84
|
*
|
85
85
|
* @see {@linkcode ActorDelta.SubType} for more information.
|
86
86
|
*/
|
87
|
-
type
|
87
|
+
type ConfiguredSubType = Actor.SubType;
|
88
88
|
|
89
89
|
/**
|
90
90
|
* `Known` represents the types of `ActorDelta` that a user explicitly registered.
|
91
91
|
*
|
92
|
-
* @see {@link
|
92
|
+
* @see {@link ConfiguredSubType} for more information.
|
93
93
|
*/
|
94
|
-
type Known = ActorDelta.OfType<ActorDelta.
|
94
|
+
type Known = ActorDelta.OfType<ActorDelta.ConfiguredSubType>;
|
95
95
|
|
96
96
|
/**
|
97
97
|
* `OfType` returns an instance of `ActorDelta` with the corresponding type. This works with both the
|
98
98
|
* builtin `ActorDelta` class or a custom subclass if that is set up in
|
99
99
|
* {@link ConfiguredActorDelta | `fvtt-types/configuration/ConfiguredActorDelta`}.
|
100
100
|
*/
|
101
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
101
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
102
102
|
|
103
103
|
/** @internal */
|
104
104
|
interface _OfType
|
@@ -114,7 +114,7 @@ declare namespace ActorDelta {
|
|
114
114
|
/**
|
115
115
|
* `SystemOfType` returns the system property for a specific `ActorDelta` subtype.
|
116
116
|
*/
|
117
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
117
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
118
118
|
|
119
119
|
/**
|
120
120
|
* @internal
|
@@ -553,6 +553,11 @@ declare namespace ActorDelta {
|
|
553
553
|
* parent in the construction context for any construction, not just `.create`ion
|
554
554
|
*/
|
555
555
|
interface ConstructorArgs extends Identity<[data: CreateData | undefined, context: ConstructionContext]> {}
|
556
|
+
|
557
|
+
/**
|
558
|
+
* @deprecated Replaced with {@linkcode ActorDelta.ConfiguredSubType} (will be removed in v14).
|
559
|
+
*/
|
560
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
556
561
|
}
|
557
562
|
|
558
563
|
/**
|
@@ -89,27 +89,27 @@ declare namespace Actor {
|
|
89
89
|
type SubType = foundry.Game.Model.TypeNames<"Actor">;
|
90
90
|
|
91
91
|
/**
|
92
|
-
* `
|
92
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
93
93
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
94
94
|
* module subtypes `${string}.${string}`.
|
95
95
|
*
|
96
96
|
* @see {@link SubType} for more information.
|
97
97
|
*/
|
98
|
-
type
|
98
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Actor">;
|
99
99
|
|
100
100
|
/**
|
101
101
|
* `Known` represents the types of `Actor` that a user explicitly registered.
|
102
102
|
*
|
103
|
-
* @see {@link
|
103
|
+
* @see {@link ConfiguredSubType} for more information.
|
104
104
|
*/
|
105
|
-
type Known = Actor.OfType<Actor.
|
105
|
+
type Known = Actor.OfType<Actor.ConfiguredSubType>;
|
106
106
|
|
107
107
|
/**
|
108
108
|
* `OfType` returns an instance of `Actor` with the corresponding type. This works with both the
|
109
109
|
* builtin `Actor` class or a custom subclass if that is set up in
|
110
110
|
* {@link ConfiguredActor | `fvtt-types/configuration/ConfiguredActor`}.
|
111
111
|
*/
|
112
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
112
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
113
113
|
|
114
114
|
/** @internal */
|
115
115
|
interface _OfType
|
@@ -125,7 +125,7 @@ declare namespace Actor {
|
|
125
125
|
/**
|
126
126
|
* `SystemOfType` returns the system property for a specific `Actor` subtype.
|
127
127
|
*/
|
128
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
128
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
129
129
|
|
130
130
|
/**
|
131
131
|
* @internal
|
@@ -655,6 +655,11 @@ declare namespace Actor {
|
|
655
655
|
*/
|
656
656
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
657
657
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
658
|
+
|
659
|
+
/**
|
660
|
+
* @deprecated Replaced with {@linkcode Actor.ConfiguredSubType} (will be removed in v14).
|
661
|
+
*/
|
662
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
658
663
|
}
|
659
664
|
|
660
665
|
/**
|
@@ -79,27 +79,27 @@ declare namespace Card {
|
|
79
79
|
type SubType = foundry.Game.Model.TypeNames<"Card">;
|
80
80
|
|
81
81
|
/**
|
82
|
-
* `
|
82
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
83
83
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
84
84
|
* module subtypes `${string}.${string}`.
|
85
85
|
*
|
86
86
|
* @see {@link SubType} for more information.
|
87
87
|
*/
|
88
|
-
type
|
88
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Card">;
|
89
89
|
|
90
90
|
/**
|
91
91
|
* `Known` represents the types of `Card` that a user explicitly registered.
|
92
92
|
*
|
93
|
-
* @see {@link
|
93
|
+
* @see {@link ConfiguredSubType} for more information.
|
94
94
|
*/
|
95
|
-
type Known = Card.OfType<Card.
|
95
|
+
type Known = Card.OfType<Card.ConfiguredSubType>;
|
96
96
|
|
97
97
|
/**
|
98
98
|
* `OfType` returns an instance of `Card` with the corresponding type. This works with both the
|
99
99
|
* builtin `Card` class or a custom subclass if that is set up in
|
100
100
|
* {@link ConfiguredCard | `fvtt-types/configuration/ConfiguredCard`}.
|
101
101
|
*/
|
102
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
102
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
103
103
|
|
104
104
|
/** @internal */
|
105
105
|
interface _OfType
|
@@ -115,7 +115,7 @@ declare namespace Card {
|
|
115
115
|
/**
|
116
116
|
* `SystemOfType` returns the system property for a specific `Card` subtype.
|
117
117
|
*/
|
118
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
118
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
119
119
|
|
120
120
|
/**
|
121
121
|
* @internal
|
@@ -562,6 +562,11 @@ declare namespace Card {
|
|
562
562
|
*/
|
563
563
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
564
564
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
565
|
+
|
566
|
+
/**
|
567
|
+
* @deprecated Replaced with {@linkcode Card.ConfiguredSubType} (will be removed in v14).
|
568
|
+
*/
|
569
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
565
570
|
}
|
566
571
|
|
567
572
|
/**
|
@@ -84,27 +84,27 @@ declare namespace Cards {
|
|
84
84
|
type SubType = foundry.Game.Model.TypeNames<"Cards">;
|
85
85
|
|
86
86
|
/**
|
87
|
-
* `
|
87
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
88
88
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
89
89
|
* module subtypes `${string}.${string}`.
|
90
90
|
*
|
91
91
|
* @see {@link SubType} for more information.
|
92
92
|
*/
|
93
|
-
type
|
93
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Cards">;
|
94
94
|
|
95
95
|
/**
|
96
96
|
* `Known` represents the types of `Cards` that a user explicitly registered.
|
97
97
|
*
|
98
|
-
* @see {@link
|
98
|
+
* @see {@link ConfiguredSubType} for more information.
|
99
99
|
*/
|
100
|
-
type Known = Cards.OfType<Cards.
|
100
|
+
type Known = Cards.OfType<Cards.ConfiguredSubType>;
|
101
101
|
|
102
102
|
/**
|
103
103
|
* `OfType` returns an instance of `Cards` with the corresponding type. This works with both the
|
104
104
|
* builtin `Cards` class or a custom subclass if that is set up in
|
105
105
|
* {@link ConfiguredCards | `fvtt-types/configuration/ConfiguredCards`}.
|
106
106
|
*/
|
107
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
107
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
108
108
|
|
109
109
|
/** @internal */
|
110
110
|
interface _OfType
|
@@ -120,7 +120,7 @@ declare namespace Cards {
|
|
120
120
|
/**
|
121
121
|
* `SystemOfType` returns the system property for a specific `Cards` subtype.
|
122
122
|
*/
|
123
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
123
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
124
124
|
|
125
125
|
/**
|
126
126
|
* @internal
|
@@ -739,6 +739,11 @@ declare namespace Cards {
|
|
739
739
|
*/
|
740
740
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
741
741
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
742
|
+
|
743
|
+
/**
|
744
|
+
* @deprecated Replaced with {@linkcode Cards.ConfiguredSubType} (will be removed in v14).
|
745
|
+
*/
|
746
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
742
747
|
}
|
743
748
|
|
744
749
|
/**
|
@@ -78,27 +78,27 @@ declare namespace ChatMessage {
|
|
78
78
|
type SubType = foundry.Game.Model.TypeNames<"ChatMessage">;
|
79
79
|
|
80
80
|
/**
|
81
|
-
* `
|
81
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
82
82
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
83
83
|
* module subtypes `${string}.${string}`.
|
84
84
|
*
|
85
85
|
* @see {@link SubType} for more information.
|
86
86
|
*/
|
87
|
-
type
|
87
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"ChatMessage">;
|
88
88
|
|
89
89
|
/**
|
90
90
|
* `Known` represents the types of `ChatMessage` that a user explicitly registered.
|
91
91
|
*
|
92
|
-
* @see {@link
|
92
|
+
* @see {@link ConfiguredSubType} for more information.
|
93
93
|
*/
|
94
|
-
type Known = ChatMessage.OfType<ChatMessage.
|
94
|
+
type Known = ChatMessage.OfType<ChatMessage.ConfiguredSubType>;
|
95
95
|
|
96
96
|
/**
|
97
97
|
* `OfType` returns an instance of `ChatMessage` with the corresponding type. This works with both the
|
98
98
|
* builtin `ChatMessage` class or a custom subclass if that is set up in
|
99
99
|
* {@link ConfiguredChatMessage | `fvtt-types/configuration/ConfiguredChatMessage`}.
|
100
100
|
*/
|
101
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
101
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
102
102
|
|
103
103
|
/** @internal */
|
104
104
|
interface _OfType
|
@@ -114,7 +114,7 @@ declare namespace ChatMessage {
|
|
114
114
|
/**
|
115
115
|
* `SystemOfType` returns the system property for a specific `ChatMessage` subtype.
|
116
116
|
*/
|
117
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
117
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
118
118
|
|
119
119
|
/**
|
120
120
|
* @internal
|
@@ -657,6 +657,11 @@ declare namespace ChatMessage {
|
|
657
657
|
*/
|
658
658
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
659
659
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
660
|
+
|
661
|
+
/**
|
662
|
+
* @deprecated Replaced with {@linkcode ChatMessage.ConfiguredSubType} (will be removed in v14).
|
663
|
+
*/
|
664
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
660
665
|
}
|
661
666
|
|
662
667
|
/**
|
@@ -85,27 +85,27 @@ declare namespace Combat {
|
|
85
85
|
type SubType = foundry.Game.Model.TypeNames<"Combat">;
|
86
86
|
|
87
87
|
/**
|
88
|
-
* `
|
88
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
89
89
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
90
90
|
* module subtypes `${string}.${string}`.
|
91
91
|
*
|
92
92
|
* @see {@link SubType} for more information.
|
93
93
|
*/
|
94
|
-
type
|
94
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Combat">;
|
95
95
|
|
96
96
|
/**
|
97
97
|
* `Known` represents the types of `Combat` that a user explicitly registered.
|
98
98
|
*
|
99
|
-
* @see {@link
|
99
|
+
* @see {@link ConfiguredSubType} for more information.
|
100
100
|
*/
|
101
|
-
type Known = Combat.OfType<Combat.
|
101
|
+
type Known = Combat.OfType<Combat.ConfiguredSubType>;
|
102
102
|
|
103
103
|
/**
|
104
104
|
* `OfType` returns an instance of `Combat` with the corresponding type. This works with both the
|
105
105
|
* builtin `Combat` class or a custom subclass if that is set up in
|
106
106
|
* {@link ConfiguredCombat | `fvtt-types/configuration/ConfiguredCombat`}.
|
107
107
|
*/
|
108
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
108
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
109
109
|
|
110
110
|
/** @internal */
|
111
111
|
interface _OfType
|
@@ -121,7 +121,7 @@ declare namespace Combat {
|
|
121
121
|
/**
|
122
122
|
* `SystemOfType` returns the system property for a specific `Combat` subtype.
|
123
123
|
*/
|
124
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
124
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
125
125
|
|
126
126
|
/**
|
127
127
|
* @internal
|
@@ -607,6 +607,11 @@ declare namespace Combat {
|
|
607
607
|
*/
|
608
608
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
609
609
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
610
|
+
|
611
|
+
/**
|
612
|
+
* @deprecated Replaced with {@linkcode Combat.ConfiguredSubType} (will be removed in v14).
|
613
|
+
*/
|
614
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
610
615
|
}
|
611
616
|
|
612
617
|
/**
|
@@ -61,27 +61,27 @@ declare namespace CombatantGroup {
|
|
61
61
|
type SubType = foundry.Game.Model.TypeNames<"CombatantGroup">;
|
62
62
|
|
63
63
|
/**
|
64
|
-
* `
|
64
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
65
65
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
66
66
|
* module subtypes `${string}.${string}`.
|
67
67
|
*
|
68
68
|
* @see {@link SubType} for more information.
|
69
69
|
*/
|
70
|
-
type
|
70
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"CombatantGroup">;
|
71
71
|
|
72
72
|
/**
|
73
73
|
* `Known` represents the types of `CombatantGroup` that a user explicitly registered.
|
74
74
|
*
|
75
|
-
* @see {@link
|
75
|
+
* @see {@link ConfiguredSubType} for more information.
|
76
76
|
*/
|
77
|
-
type Known = CombatantGroup.OfType<CombatantGroup.
|
77
|
+
type Known = CombatantGroup.OfType<CombatantGroup.ConfiguredSubType>;
|
78
78
|
|
79
79
|
/**
|
80
80
|
* `OfType` returns an instance of `CombatantGroup` with the corresponding type. This works with both the
|
81
81
|
* builtin `CombatantGroup` class or a custom subclass if that is set up in
|
82
82
|
* {@link ConfiguredCombatantGroup | `fvtt-types/configuration/ConfiguredCombatantGroup`}.
|
83
83
|
*/
|
84
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
84
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
85
85
|
|
86
86
|
/** @internal */
|
87
87
|
interface _OfType
|
@@ -97,7 +97,7 @@ declare namespace CombatantGroup {
|
|
97
97
|
/**
|
98
98
|
* `SystemOfType` returns the system property for a specific `CombatantGroup` subtype.
|
99
99
|
*/
|
100
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
100
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
101
101
|
|
102
102
|
/**
|
103
103
|
* @internal
|
@@ -447,6 +447,11 @@ declare namespace CombatantGroup {
|
|
447
447
|
*/
|
448
448
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
449
449
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
450
|
+
|
451
|
+
/**
|
452
|
+
* @deprecated Replaced with {@linkcode CombatantGroup.ConfiguredSubType} (will be removed in v14).
|
453
|
+
*/
|
454
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
450
455
|
}
|
451
456
|
|
452
457
|
/**
|
@@ -79,27 +79,27 @@ declare namespace Combatant {
|
|
79
79
|
type SubType = foundry.Game.Model.TypeNames<"Combatant">;
|
80
80
|
|
81
81
|
/**
|
82
|
-
* `
|
82
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
83
83
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
84
84
|
* module subtypes `${string}.${string}`.
|
85
85
|
*
|
86
86
|
* @see {@link SubType} for more information.
|
87
87
|
*/
|
88
|
-
type
|
88
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Combatant">;
|
89
89
|
|
90
90
|
/**
|
91
91
|
* `Known` represents the types of `Combatant` that a user explicitly registered.
|
92
92
|
*
|
93
|
-
* @see {@link
|
93
|
+
* @see {@link ConfiguredSubType} for more information.
|
94
94
|
*/
|
95
|
-
type Known = Combatant.OfType<Combatant.
|
95
|
+
type Known = Combatant.OfType<Combatant.ConfiguredSubType>;
|
96
96
|
|
97
97
|
/**
|
98
98
|
* `OfType` returns an instance of `Combatant` with the corresponding type. This works with both the
|
99
99
|
* builtin `Combatant` class or a custom subclass if that is set up in
|
100
100
|
* {@link ConfiguredCombatant | `fvtt-types/configuration/ConfiguredCombatant`}.
|
101
101
|
*/
|
102
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
102
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
103
103
|
|
104
104
|
/** @internal */
|
105
105
|
interface _OfType
|
@@ -115,7 +115,7 @@ declare namespace Combatant {
|
|
115
115
|
/**
|
116
116
|
* `SystemOfType` returns the system property for a specific `Combatant` subtype.
|
117
117
|
*/
|
118
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
118
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
119
119
|
|
120
120
|
/**
|
121
121
|
* @internal
|
@@ -486,6 +486,11 @@ declare namespace Combatant {
|
|
486
486
|
*/
|
487
487
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
488
488
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
489
|
+
|
490
|
+
/**
|
491
|
+
* @deprecated Replaced with {@linkcode Combatant.ConfiguredSubType} (will be removed in v14).
|
492
|
+
*/
|
493
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
489
494
|
}
|
490
495
|
|
491
496
|
/**
|
@@ -73,7 +73,7 @@ declare namespace Folder {
|
|
73
73
|
*
|
74
74
|
* This type exists only to be informative.
|
75
75
|
*/
|
76
|
-
type
|
76
|
+
type ConfiguredSubType = never;
|
77
77
|
|
78
78
|
/**
|
79
79
|
* @deprecated `Folder` does not have `system` and therefore there is no way for a user to
|
@@ -512,6 +512,12 @@ declare namespace Folder {
|
|
512
512
|
*/
|
513
513
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
514
514
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
515
|
+
|
516
|
+
/**
|
517
|
+
* @deprecated Replaced with {@linkcode Folder.ConfiguredSubType} (will be removed in v14).
|
518
|
+
*/
|
519
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
520
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
515
521
|
}
|
516
522
|
|
517
523
|
/**
|
@@ -86,27 +86,27 @@ declare namespace Item {
|
|
86
86
|
type SubType = foundry.Game.Model.TypeNames<"Item">;
|
87
87
|
|
88
88
|
/**
|
89
|
-
* `
|
89
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
90
90
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
91
91
|
* module subtypes `${string}.${string}`.
|
92
92
|
*
|
93
93
|
* @see {@link SubType} for more information.
|
94
94
|
*/
|
95
|
-
type
|
95
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"Item">;
|
96
96
|
|
97
97
|
/**
|
98
98
|
* `Known` represents the types of `Item` that a user explicitly registered.
|
99
99
|
*
|
100
|
-
* @see {@link
|
100
|
+
* @see {@link ConfiguredSubType} for more information.
|
101
101
|
*/
|
102
|
-
type Known = Item.OfType<Item.
|
102
|
+
type Known = Item.OfType<Item.ConfiguredSubType>;
|
103
103
|
|
104
104
|
/**
|
105
105
|
* `OfType` returns an instance of `Item` with the corresponding type. This works with both the
|
106
106
|
* builtin `Item` class or a custom subclass if that is set up in
|
107
107
|
* {@link ConfiguredItem | `fvtt-types/configuration/ConfiguredItem`}.
|
108
108
|
*/
|
109
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
109
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
110
110
|
|
111
111
|
/** @internal */
|
112
112
|
interface _OfType
|
@@ -122,7 +122,7 @@ declare namespace Item {
|
|
122
122
|
/**
|
123
123
|
* `SystemOfType` returns the system property for a specific `Item` subtype.
|
124
124
|
*/
|
125
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
125
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
126
126
|
|
127
127
|
/**
|
128
128
|
* @internal
|
@@ -553,6 +553,11 @@ declare namespace Item {
|
|
553
553
|
*/
|
554
554
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
555
555
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
556
|
+
|
557
|
+
/**
|
558
|
+
* @deprecated Replaced with {@linkcode Item.ConfiguredSubType} (will be removed in v14).
|
559
|
+
*/
|
560
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
556
561
|
}
|
557
562
|
|
558
563
|
/**
|
@@ -77,20 +77,20 @@ declare namespace JournalEntryPage {
|
|
77
77
|
type SubType = foundry.Game.Model.TypeNames<"JournalEntryPage">;
|
78
78
|
|
79
79
|
/**
|
80
|
-
* `
|
80
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
81
81
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
82
82
|
* module subtypes `${string}.${string}`.
|
83
83
|
*
|
84
84
|
* @see {@link SubType} for more information.
|
85
85
|
*/
|
86
|
-
type
|
86
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"JournalEntryPage">;
|
87
87
|
|
88
88
|
/**
|
89
89
|
* `Known` represents the types of `JournalEntryPage` that a user explicitly registered.
|
90
90
|
*
|
91
|
-
* @see {@link
|
91
|
+
* @see {@link ConfiguredSubType} for more information.
|
92
92
|
*/
|
93
|
-
type Known = JournalEntryPage.OfType<JournalEntryPage.
|
93
|
+
type Known = JournalEntryPage.OfType<JournalEntryPage.ConfiguredSubType>;
|
94
94
|
|
95
95
|
/**
|
96
96
|
* `OfType` returns an instance of `JournalEntryPage` with the corresponding type. This works with both the
|
@@ -98,7 +98,7 @@ declare namespace JournalEntryPage {
|
|
98
98
|
* {@link ConfiguredJournalEntryPage | `fvtt-types/configuration/ConfiguredJournalEntryPage`}.
|
99
99
|
* up.
|
100
100
|
*/
|
101
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
101
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
102
102
|
|
103
103
|
/** @internal */
|
104
104
|
interface _OfType
|
@@ -114,7 +114,7 @@ declare namespace JournalEntryPage {
|
|
114
114
|
/**
|
115
115
|
* `SystemOfType` returns the system property for a specific `JournalEntryPage` subtype.
|
116
116
|
*/
|
117
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
117
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
118
118
|
|
119
119
|
/**
|
120
120
|
* @internal
|
@@ -633,6 +633,11 @@ declare namespace JournalEntryPage {
|
|
633
633
|
*/
|
634
634
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
635
635
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
636
|
+
|
637
|
+
/**
|
638
|
+
* @deprecated Replaced with {@linkcode JournalEntryPage.ConfiguredSubType} (will be removed in v14).
|
639
|
+
*/
|
640
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
636
641
|
}
|
637
642
|
|
638
643
|
/**
|
@@ -83,7 +83,7 @@ declare namespace Macro {
|
|
83
83
|
*
|
84
84
|
* This type exists only to be informative.
|
85
85
|
*/
|
86
|
-
type
|
86
|
+
type ConfiguredSubType = never;
|
87
87
|
|
88
88
|
/**
|
89
89
|
* @deprecated `Macro` does not have `system` and therefore there is no way for a user to
|
@@ -525,6 +525,12 @@ declare namespace Macro {
|
|
525
525
|
*/
|
526
526
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
527
527
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
528
|
+
|
529
|
+
/**
|
530
|
+
* @deprecated Replaced with {@linkcode Macro.ConfiguredSubType} (will be removed in v14).
|
531
|
+
*/
|
532
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
533
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
528
534
|
}
|
529
535
|
|
530
536
|
/**
|
@@ -87,27 +87,27 @@ declare namespace RegionBehavior {
|
|
87
87
|
type SubType = foundry.Game.Model.TypeNames<"RegionBehavior">;
|
88
88
|
|
89
89
|
/**
|
90
|
-
* `
|
90
|
+
* `ConfiguredSubType` represents the subtypes a user explicitly registered. This excludes
|
91
91
|
* subtypes like the Foundry builtin subtype `"base"` and the catch-all subtype for arbitrary
|
92
92
|
* module subtypes `${string}.${string}`.
|
93
93
|
*
|
94
94
|
* @see {@link SubType} for more information.
|
95
95
|
*/
|
96
|
-
type
|
96
|
+
type ConfiguredSubType = Document.ConfiguredSubTypeOf<"RegionBehavior">;
|
97
97
|
|
98
98
|
/**
|
99
99
|
* `Known` represents the types of `RegionBehavior` that a user explicitly registered.
|
100
100
|
*
|
101
|
-
* @see {@link
|
101
|
+
* @see {@link ConfiguredSubType} for more information.
|
102
102
|
*/
|
103
|
-
type Known = RegionBehavior.OfType<RegionBehavior.
|
103
|
+
type Known = RegionBehavior.OfType<RegionBehavior.ConfiguredSubType>;
|
104
104
|
|
105
105
|
/**
|
106
106
|
* `OfType` returns an instance of `RegionBehavior` with the corresponding type. This works with both the
|
107
107
|
* builtin `RegionBehavior` class or a custom subclass if that is set up in
|
108
108
|
* {@link ConfiguredRegionBehavior | `fvtt-types/configuration/ConfiguredRegionBehavior`}.
|
109
109
|
*/
|
110
|
-
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type,
|
110
|
+
type OfType<Type extends SubType> = Document.Internal.DiscriminateSystem<Name, _OfType, Type, ConfiguredSubType>;
|
111
111
|
|
112
112
|
/** @internal */
|
113
113
|
interface _OfType
|
@@ -123,7 +123,7 @@ declare namespace RegionBehavior {
|
|
123
123
|
/**
|
124
124
|
* `SystemOfType` returns the system property for a specific `RegionBehavior` subtype.
|
125
125
|
*/
|
126
|
-
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type,
|
126
|
+
type SystemOfType<Type extends SubType> = Document.Internal.SystemOfType<Name, _SystemMap, Type, ConfiguredSubType>;
|
127
127
|
|
128
128
|
/**
|
129
129
|
* @internal
|
@@ -445,6 +445,11 @@ declare namespace RegionBehavior {
|
|
445
445
|
*/
|
446
446
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
447
447
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
448
|
+
|
449
|
+
/**
|
450
|
+
* @deprecated Replaced with {@linkcode RegionBehavior.ConfiguredSubType} (will be removed in v14).
|
451
|
+
*/
|
452
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
448
453
|
}
|
449
454
|
|
450
455
|
/**
|
@@ -77,7 +77,7 @@ declare namespace TableResult {
|
|
77
77
|
*
|
78
78
|
* This type exists only to be informative.
|
79
79
|
*/
|
80
|
-
type
|
80
|
+
type ConfiguredSubType = never;
|
81
81
|
|
82
82
|
/**
|
83
83
|
* @deprecated `TableResult` does not have `system` and therefore there is no way for a user to
|
@@ -453,6 +453,12 @@ declare namespace TableResult {
|
|
453
453
|
*/
|
454
454
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
455
455
|
type ConstructorArgs = Document.ConstructorParameters<CreateData, Parent>;
|
456
|
+
|
457
|
+
/**
|
458
|
+
* @deprecated Replaced with {@linkcode TableResult.ConfiguredSubType} (will be removed in v14).
|
459
|
+
*/
|
460
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
461
|
+
type ConfiguredSubTypes = ConfiguredSubType;
|
456
462
|
}
|
457
463
|
|
458
464
|
/**
|
@@ -978,8 +978,8 @@ declare namespace Document {
|
|
978
978
|
? Exclude<Types, "base">
|
979
979
|
: Types;
|
980
980
|
|
981
|
-
type
|
982
|
-
?
|
981
|
+
type ConfiguredSubTypeOf<Name extends Type> = Name extends "ActorDelta"
|
982
|
+
? ConfiguredSubTypeOf<"Actor">
|
983
983
|
: // ESLint doesn't know that `DataModelConfig` and `SourceConfig` are meant to be declaration merged into.
|
984
984
|
// Therefore it hastily thinks the results are always `never`.
|
985
985
|
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents, @typescript-eslint/no-duplicate-type-constituents
|
@@ -987,7 +987,7 @@ declare namespace Document {
|
|
987
987
|
|
988
988
|
type SubTypesOf<Name extends Document.Type> = Name extends "ActorDelta"
|
989
989
|
? SubTypesOf<"Actor">
|
990
|
-
: Document.CoreTypesForName<Name> |
|
990
|
+
: Document.CoreTypesForName<Name> | ConfiguredSubTypeOf<Name> | _ModuleSubType<Name>;
|
991
991
|
|
992
992
|
/** @internal */
|
993
993
|
type _ModuleSubType<Name extends Type> = SystemConfig extends {
|
@@ -1214,17 +1214,17 @@ declare namespace Document {
|
|
1214
1214
|
Name extends Document.WithSystem,
|
1215
1215
|
SystemMap extends Record<SubType, object | undefined>,
|
1216
1216
|
SubType extends string,
|
1217
|
-
|
1217
|
+
ConfiguredSubType extends string,
|
1218
1218
|
> =
|
1219
1219
|
GetKey<SystemConfig, Name, "none"> extends "discriminateAll"
|
1220
1220
|
? _DiscriminateUndefined<SystemMap[SubType]>
|
1221
1221
|
:
|
1222
|
-
| ([Extract<SubType,
|
1222
|
+
| ([Extract<SubType, ConfiguredSubType>] extends [never]
|
1223
1223
|
? never
|
1224
|
-
: _DiscriminateUndefined<SystemMap[Extract<SubType,
|
1225
|
-
| ([Exclude<SubType,
|
1224
|
+
: _DiscriminateUndefined<SystemMap[Extract<SubType, ConfiguredSubType>]>)
|
1225
|
+
| ([Exclude<SubType, ConfiguredSubType>] extends [never]
|
1226
1226
|
? never
|
1227
|
-
: SystemMap[Exclude<SubType,
|
1227
|
+
: SystemMap[Exclude<SubType, ConfiguredSubType>]);
|
1228
1228
|
|
1229
1229
|
/** @internal */
|
1230
1230
|
type _DiscriminateUndefined<T extends object | undefined> = DiscriminatedUnion<Exclude<T, undefined>>;
|
@@ -1255,14 +1255,14 @@ declare namespace Document {
|
|
1255
1255
|
Name extends Document.WithSystem,
|
1256
1256
|
TypeMap extends Record<SubType, { system: object | undefined }>,
|
1257
1257
|
SubType extends string,
|
1258
|
-
|
1258
|
+
ConfiguredSubType extends string,
|
1259
1259
|
> = SystemConfig extends { readonly [_ in Name]: { readonly discriminate: "all" } }
|
1260
1260
|
? DiscriminateSubType<SubType, TypeMap>
|
1261
1261
|
:
|
1262
|
-
| DiscriminateSubType<Extract<SubType,
|
1263
|
-
| ([Exclude<SubType,
|
1262
|
+
| DiscriminateSubType<Extract<SubType, ConfiguredSubType>, TypeMap>
|
1263
|
+
| ([Exclude<SubType, ConfiguredSubType>] extends [never]
|
1264
1264
|
? never
|
1265
|
-
: TypeMap[Exclude<SubType,
|
1265
|
+
: TypeMap[Exclude<SubType, ConfiguredSubType>]);
|
1266
1266
|
|
1267
1267
|
type DiscriminateSubType<
|
1268
1268
|
SubType extends AllSubType,
|
@@ -319,7 +319,7 @@ declare namespace BaseActiveEffect {
|
|
319
319
|
export import Hierarchy = ActiveEffect.Hierarchy;
|
320
320
|
export import Metadata = ActiveEffect.Metadata;
|
321
321
|
export import SubType = ActiveEffect.SubType;
|
322
|
-
export import
|
322
|
+
export import ConfiguredSubType = ActiveEffect.ConfiguredSubType;
|
323
323
|
export import Known = ActiveEffect.Known;
|
324
324
|
export import OfType = ActiveEffect.OfType;
|
325
325
|
export import SystemOfType = ActiveEffect.SystemOfType;
|
@@ -384,7 +384,7 @@ declare namespace BaseActorDelta {
|
|
384
384
|
export import Hierarchy = ActorDelta.Hierarchy;
|
385
385
|
export import Metadata = ActorDelta.Metadata;
|
386
386
|
export import SubType = ActorDelta.SubType;
|
387
|
-
export import
|
387
|
+
export import ConfiguredSubType = ActorDelta.ConfiguredSubType;
|
388
388
|
export import Known = ActorDelta.Known;
|
389
389
|
export import OfType = ActorDelta.OfType;
|
390
390
|
export import SystemOfType = ActorDelta.SystemOfType;
|
@@ -354,7 +354,7 @@ declare namespace BaseActor {
|
|
354
354
|
export import Hierarchy = Actor.Hierarchy;
|
355
355
|
export import Metadata = Actor.Metadata;
|
356
356
|
export import SubType = Actor.SubType;
|
357
|
-
export import
|
357
|
+
export import ConfiguredSubType = Actor.ConfiguredSubType;
|
358
358
|
export import Known = Actor.Known;
|
359
359
|
export import OfType = Actor.OfType;
|
360
360
|
export import SystemOfType = Actor.SystemOfType;
|
@@ -300,7 +300,7 @@ declare namespace BaseCard {
|
|
300
300
|
export import Hierarchy = Card.Hierarchy;
|
301
301
|
export import Metadata = Card.Metadata;
|
302
302
|
export import SubType = Card.SubType;
|
303
|
-
export import
|
303
|
+
export import ConfiguredSubType = Card.ConfiguredSubType;
|
304
304
|
export import Known = Card.Known;
|
305
305
|
export import OfType = Card.OfType;
|
306
306
|
export import SystemOfType = Card.SystemOfType;
|
@@ -342,7 +342,7 @@ declare namespace BaseCards {
|
|
342
342
|
export import Hierarchy = Cards.Hierarchy;
|
343
343
|
export import Metadata = Cards.Metadata;
|
344
344
|
export import SubType = Cards.SubType;
|
345
|
-
export import
|
345
|
+
export import ConfiguredSubType = Cards.ConfiguredSubType;
|
346
346
|
export import Known = Cards.Known;
|
347
347
|
export import OfType = Cards.OfType;
|
348
348
|
export import SystemOfType = Cards.SystemOfType;
|
@@ -316,7 +316,7 @@ declare namespace BaseChatMessage {
|
|
316
316
|
export import Hierarchy = ChatMessage.Hierarchy;
|
317
317
|
export import Metadata = ChatMessage.Metadata;
|
318
318
|
export import SubType = ChatMessage.SubType;
|
319
|
-
export import
|
319
|
+
export import ConfiguredSubType = ChatMessage.ConfiguredSubType;
|
320
320
|
export import Known = ChatMessage.Known;
|
321
321
|
export import OfType = ChatMessage.OfType;
|
322
322
|
export import SystemOfType = ChatMessage.SystemOfType;
|
@@ -345,7 +345,7 @@ declare namespace BaseCombat {
|
|
345
345
|
export import Hierarchy = Combat.Hierarchy;
|
346
346
|
export import Metadata = Combat.Metadata;
|
347
347
|
export import SubType = Combat.SubType;
|
348
|
-
export import
|
348
|
+
export import ConfiguredSubType = Combat.ConfiguredSubType;
|
349
349
|
export import Known = Combat.Known;
|
350
350
|
export import OfType = Combat.OfType;
|
351
351
|
export import SystemOfType = Combat.SystemOfType;
|
@@ -287,7 +287,7 @@ declare namespace BaseCombatantGroup {
|
|
287
287
|
export import Hierarchy = CombatantGroup.Hierarchy;
|
288
288
|
export import Metadata = CombatantGroup.Metadata;
|
289
289
|
export import SubType = CombatantGroup.SubType;
|
290
|
-
export import
|
290
|
+
export import ConfiguredSubType = CombatantGroup.ConfiguredSubType;
|
291
291
|
export import Known = CombatantGroup.Known;
|
292
292
|
export import OfType = CombatantGroup.OfType;
|
293
293
|
export import SystemOfType = CombatantGroup.SystemOfType;
|
@@ -305,7 +305,7 @@ declare namespace BaseCombatant {
|
|
305
305
|
export import Hierarchy = Combatant.Hierarchy;
|
306
306
|
export import Metadata = Combatant.Metadata;
|
307
307
|
export import SubType = Combatant.SubType;
|
308
|
-
export import
|
308
|
+
export import ConfiguredSubType = Combatant.ConfiguredSubType;
|
309
309
|
export import Known = Combatant.Known;
|
310
310
|
export import OfType = Combatant.OfType;
|
311
311
|
export import SystemOfType = Combatant.SystemOfType;
|
@@ -351,7 +351,7 @@ declare namespace BaseItem {
|
|
351
351
|
export import Hierarchy = Item.Hierarchy;
|
352
352
|
export import Metadata = Item.Metadata;
|
353
353
|
export import SubType = Item.SubType;
|
354
|
-
export import
|
354
|
+
export import ConfiguredSubType = Item.ConfiguredSubType;
|
355
355
|
export import Known = Item.Known;
|
356
356
|
export import OfType = Item.OfType;
|
357
357
|
export import SystemOfType = Item.SystemOfType;
|
@@ -294,7 +294,7 @@ declare namespace BaseJournalEntryPage {
|
|
294
294
|
export import Hierarchy = JournalEntryPage.Hierarchy;
|
295
295
|
export import Metadata = JournalEntryPage.Metadata;
|
296
296
|
export import SubType = JournalEntryPage.SubType;
|
297
|
-
export import
|
297
|
+
export import ConfiguredSubType = JournalEntryPage.ConfiguredSubType;
|
298
298
|
export import Known = JournalEntryPage.Known;
|
299
299
|
export import OfType = JournalEntryPage.OfType;
|
300
300
|
export import SystemOfType = JournalEntryPage.SystemOfType;
|
@@ -315,7 +315,7 @@ declare namespace BaseMacro {
|
|
315
315
|
export import Hierarchy = Macro.Hierarchy;
|
316
316
|
export import Metadata = Macro.Metadata;
|
317
317
|
export import SubType = Macro.SubType;
|
318
|
-
export import
|
318
|
+
export import ConfiguredSubType = Macro.ConfiguredSubType;
|
319
319
|
export import Known = Macro.Known;
|
320
320
|
export import OfType = Macro.OfType;
|
321
321
|
export import Parent = Macro.Parent;
|
@@ -311,7 +311,7 @@ declare namespace BaseRegionBehavior {
|
|
311
311
|
export import Hierarchy = RegionBehavior.Hierarchy;
|
312
312
|
export import Metadata = RegionBehavior.Metadata;
|
313
313
|
export import SubType = RegionBehavior.SubType;
|
314
|
-
export import
|
314
|
+
export import ConfiguredSubType = RegionBehavior.ConfiguredSubType;
|
315
315
|
export import Known = RegionBehavior.Known;
|
316
316
|
export import OfType = RegionBehavior.OfType;
|
317
317
|
export import SystemOfType = RegionBehavior.SystemOfType;
|
@@ -320,7 +320,7 @@ declare namespace BaseTableResult {
|
|
320
320
|
export import Hierarchy = TableResult.Hierarchy;
|
321
321
|
export import Metadata = TableResult.Metadata;
|
322
322
|
export import SubType = TableResult.SubType;
|
323
|
-
export import
|
323
|
+
export import ConfiguredSubType = TableResult.ConfiguredSubType;
|
324
324
|
export import Known = TableResult.Known;
|
325
325
|
export import OfType = TableResult.OfType;
|
326
326
|
export import Parent = TableResult.Parent;
|