@serenity-js/core 3.25.0 → 3.25.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.
Files changed (268) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +1 -1
  3. package/lib/Serenity.d.ts +22 -22
  4. package/lib/Serenity.js +22 -22
  5. package/lib/adapter/OutputStream.d.ts +5 -4
  6. package/lib/adapter/OutputStream.d.ts.map +1 -1
  7. package/lib/adapter/TestRunnerAdapter.d.ts +2 -2
  8. package/lib/config/ClassDescription.d.ts +1 -1
  9. package/lib/config/SerenityConfig.d.ts +22 -20
  10. package/lib/config/SerenityConfig.d.ts.map +1 -1
  11. package/lib/config/SerenityConfig.js +22 -20
  12. package/lib/config/SerenityConfig.js.map +1 -1
  13. package/lib/errors/ErrorFactory.d.ts +2 -1
  14. package/lib/errors/ErrorFactory.d.ts.map +1 -1
  15. package/lib/errors/ErrorFactory.js +2 -1
  16. package/lib/errors/ErrorFactory.js.map +1 -1
  17. package/lib/errors/RaiseErrors.d.ts +9 -9
  18. package/lib/errors/RaiseErrors.js +9 -9
  19. package/lib/errors/diff/AnsiDiffFormatter.d.ts +1 -1
  20. package/lib/errors/diff/AnsiDiffFormatter.js +1 -1
  21. package/lib/errors/diff/DiffFormatter.d.ts +1 -1
  22. package/lib/errors/diff/NoOpDiffFormatter.d.ts +1 -1
  23. package/lib/errors/diff/NoOpDiffFormatter.js +1 -1
  24. package/lib/errors/model/AssertionError.d.ts +1 -1
  25. package/lib/errors/model/AssertionError.js +1 -1
  26. package/lib/errors/model/ConfigurationError.d.ts +1 -1
  27. package/lib/errors/model/ConfigurationError.js +1 -1
  28. package/lib/errors/model/ImplementationPendingError.d.ts +3 -3
  29. package/lib/errors/model/ImplementationPendingError.js +3 -3
  30. package/lib/errors/model/ListItemNotFoundError.d.ts +2 -2
  31. package/lib/errors/model/ListItemNotFoundError.js +2 -2
  32. package/lib/errors/model/LogicError.d.ts +2 -2
  33. package/lib/errors/model/LogicError.js +2 -2
  34. package/lib/errors/model/OperationInterruptedError.d.ts +2 -2
  35. package/lib/errors/model/OperationInterruptedError.js +2 -2
  36. package/lib/errors/model/RuntimeError.d.ts +2 -2
  37. package/lib/errors/model/RuntimeError.js +2 -2
  38. package/lib/errors/model/TestCompromisedError.d.ts +1 -1
  39. package/lib/errors/model/TestCompromisedError.js +1 -1
  40. package/lib/errors/model/TimeoutExpiredError.d.ts +2 -2
  41. package/lib/errors/model/TimeoutExpiredError.js +2 -2
  42. package/lib/errors/model/UnknownError.d.ts +1 -1
  43. package/lib/errors/model/UnknownError.js +1 -1
  44. package/lib/events/ActivityFinished.d.ts +1 -1
  45. package/lib/events/ActivityFinished.js +1 -1
  46. package/lib/events/ActivityStarts.d.ts +1 -1
  47. package/lib/events/ActivityStarts.js +1 -1
  48. package/lib/events/BusinessRuleDetected.d.ts +1 -1
  49. package/lib/events/BusinessRuleDetected.js +1 -1
  50. package/lib/events/SceneFinishes.d.ts +2 -1
  51. package/lib/events/SceneFinishes.d.ts.map +1 -1
  52. package/lib/events/SceneFinishes.js +2 -1
  53. package/lib/events/SceneFinishes.js.map +1 -1
  54. package/lib/instance.d.ts +30 -30
  55. package/lib/instance.js +30 -30
  56. package/lib/io/format.d.ts +15 -6
  57. package/lib/io/format.d.ts.map +1 -1
  58. package/lib/io/format.js +15 -6
  59. package/lib/io/format.js.map +1 -1
  60. package/lib/io/loader/ModuleLoader.d.ts +1 -1
  61. package/lib/io/loader/ModuleLoader.js +1 -1
  62. package/lib/io/reflection/ValueInspector.d.ts +1 -1
  63. package/lib/io/reflection/ValueInspector.js +2 -2
  64. package/lib/io/reflection/ValueInspector.js.map +1 -1
  65. package/lib/io/stringified.d.ts +1 -1
  66. package/lib/io/stringified.js +1 -1
  67. package/lib/io/trimmed.d.ts +1 -1
  68. package/lib/io/trimmed.js +1 -1
  69. package/lib/model/artifacts/HTTPRequestResponse.d.ts +2 -2
  70. package/lib/model/artifacts/HTTPRequestResponse.js +1 -1
  71. package/lib/screenplay/Activity.d.ts +10 -10
  72. package/lib/screenplay/Activity.js +5 -5
  73. package/lib/screenplay/Actor.d.ts +28 -28
  74. package/lib/screenplay/Actor.js +28 -28
  75. package/lib/screenplay/Answerable.d.ts +1 -1
  76. package/lib/screenplay/Answered.d.ts +2 -2
  77. package/lib/screenplay/Interaction.d.ts +17 -17
  78. package/lib/screenplay/Interaction.js +12 -12
  79. package/lib/screenplay/Optional.d.ts +1 -1
  80. package/lib/screenplay/Question.d.ts +48 -45
  81. package/lib/screenplay/Question.d.ts.map +1 -1
  82. package/lib/screenplay/Question.js +39 -36
  83. package/lib/screenplay/Question.js.map +1 -1
  84. package/lib/screenplay/RecursivelyAnswered.d.ts +2 -2
  85. package/lib/screenplay/Task.d.ts +19 -19
  86. package/lib/screenplay/Task.js +15 -15
  87. package/lib/screenplay/WithAnswerableProperties.d.ts +2 -2
  88. package/lib/screenplay/abilities/Ability.d.ts +48 -46
  89. package/lib/screenplay/abilities/Ability.d.ts.map +1 -1
  90. package/lib/screenplay/abilities/Ability.js +48 -46
  91. package/lib/screenplay/abilities/Ability.js.map +1 -1
  92. package/lib/screenplay/abilities/AbilityType.d.ts +5 -5
  93. package/lib/screenplay/abilities/AnswerQuestions.d.ts +3 -3
  94. package/lib/screenplay/abilities/AnswerQuestions.js +3 -3
  95. package/lib/screenplay/abilities/CanHaveAbilities.d.ts +4 -4
  96. package/lib/screenplay/abilities/Discardable.d.ts +8 -8
  97. package/lib/screenplay/abilities/Initialisable.d.ts +11 -11
  98. package/lib/screenplay/abilities/PerformActivities.d.ts +3 -3
  99. package/lib/screenplay/abilities/PerformActivities.js +3 -3
  100. package/lib/screenplay/abilities/UsesAbilities.d.ts +6 -6
  101. package/lib/screenplay/activities/PerformsActivities.d.ts +7 -7
  102. package/lib/screenplay/artifacts/CollectsArtifacts.d.ts +4 -5
  103. package/lib/screenplay/artifacts/CollectsArtifacts.d.ts.map +1 -1
  104. package/lib/screenplay/debugging/Debug.d.ts +7 -6
  105. package/lib/screenplay/debugging/Debug.d.ts.map +1 -1
  106. package/lib/screenplay/debugging/Debug.js +7 -6
  107. package/lib/screenplay/debugging/Debug.js.map +1 -1
  108. package/lib/screenplay/debugging/DebuggingResult.d.ts +1 -1
  109. package/lib/screenplay/debugging/Log.d.ts +7 -5
  110. package/lib/screenplay/debugging/Log.d.ts.map +1 -1
  111. package/lib/screenplay/debugging/Log.js +7 -5
  112. package/lib/screenplay/debugging/Log.js.map +1 -1
  113. package/lib/screenplay/notes/Notepad.d.ts +13 -13
  114. package/lib/screenplay/notes/Notepad.js +13 -13
  115. package/lib/screenplay/notes/NotepadAdapter.d.ts +16 -16
  116. package/lib/screenplay/notes/NotepadAdapter.js +16 -16
  117. package/lib/screenplay/notes/TakeNotes.d.ts +9 -9
  118. package/lib/screenplay/notes/TakeNotes.js +9 -9
  119. package/lib/screenplay/notes/notes.d.ts +6 -6
  120. package/lib/screenplay/notes/notes.js +6 -6
  121. package/lib/screenplay/questions/AnswersQuestions.d.ts +4 -4
  122. package/lib/screenplay/questions/ChainableMetaQuestion.d.ts +6 -6
  123. package/lib/screenplay/questions/Check.d.ts +2 -2
  124. package/lib/screenplay/questions/Check.js +2 -2
  125. package/lib/screenplay/questions/DescriptionFormattingOptions.d.ts +2 -2
  126. package/lib/screenplay/questions/Expectation.d.ts +17 -14
  127. package/lib/screenplay/questions/Expectation.d.ts.map +1 -1
  128. package/lib/screenplay/questions/Expectation.js +17 -14
  129. package/lib/screenplay/questions/Expectation.js.map +1 -1
  130. package/lib/screenplay/questions/List.d.ts +5 -5
  131. package/lib/screenplay/questions/List.js +5 -5
  132. package/lib/screenplay/questions/Masked.d.ts +4 -2
  133. package/lib/screenplay/questions/Masked.d.ts.map +1 -1
  134. package/lib/screenplay/questions/Masked.js +4 -2
  135. package/lib/screenplay/questions/Masked.js.map +1 -1
  136. package/lib/screenplay/questions/MetaQuestion.d.ts +9 -9
  137. package/lib/screenplay/questions/Unanswered.d.ts +2 -2
  138. package/lib/screenplay/questions/Unanswered.js +2 -2
  139. package/lib/screenplay/questions/expectations/ExpectationDetails.d.ts +1 -1
  140. package/lib/screenplay/questions/expectations/ExpectationDetails.js +1 -1
  141. package/lib/screenplay/questions/expectations/ExpectationMet.d.ts +1 -1
  142. package/lib/screenplay/questions/expectations/ExpectationMet.js +1 -1
  143. package/lib/screenplay/questions/expectations/ExpectationNotMet.d.ts +1 -1
  144. package/lib/screenplay/questions/expectations/ExpectationNotMet.js +1 -1
  145. package/lib/screenplay/questions/expectations/ExpectationOutcome.d.ts +2 -2
  146. package/lib/screenplay/questions/expectations/ExpectationOutcome.js +2 -2
  147. package/lib/screenplay/questions/tag-functions.d.ts +23 -21
  148. package/lib/screenplay/questions/tag-functions.d.ts.map +1 -1
  149. package/lib/screenplay/questions/tag-functions.js +5 -5
  150. package/lib/screenplay/questions/tag-functions.js.map +1 -1
  151. package/lib/screenplay/time/TellsTime.d.ts +4 -4
  152. package/lib/screenplay/time/abilities/ScheduleWork.d.ts +2 -2
  153. package/lib/screenplay/time/abilities/ScheduleWork.js +2 -2
  154. package/lib/screenplay/time/activities/Wait.d.ts +29 -27
  155. package/lib/screenplay/time/activities/Wait.d.ts.map +1 -1
  156. package/lib/screenplay/time/activities/Wait.js +29 -27
  157. package/lib/screenplay/time/activities/Wait.js.map +1 -1
  158. package/lib/screenplay/time/models/Clock.d.ts +4 -4
  159. package/lib/screenplay/time/models/Clock.js +4 -4
  160. package/lib/screenplay/time/models/Duration.d.ts +1 -1
  161. package/lib/screenplay/time/models/Duration.js +1 -1
  162. package/lib/screenplay/time/models/Timestamp.d.ts +2 -2
  163. package/lib/screenplay/time/models/Timestamp.js +2 -2
  164. package/lib/stage/Cast.d.ts +21 -21
  165. package/lib/stage/Cast.js +19 -19
  166. package/lib/stage/Extras.d.ts +1 -1
  167. package/lib/stage/Extras.js +1 -1
  168. package/lib/stage/ListensToDomainEvents.d.ts +7 -7
  169. package/lib/stage/Stage.d.ts +29 -30
  170. package/lib/stage/Stage.d.ts.map +1 -1
  171. package/lib/stage/Stage.js +29 -30
  172. package/lib/stage/Stage.js.map +1 -1
  173. package/lib/stage/StageCrewMember.d.ts +11 -11
  174. package/lib/stage/StageCrewMemberBuilder.d.ts +7 -7
  175. package/lib/stage/StageCrewMemberBuilderDependencies.d.ts +2 -2
  176. package/lib/stage/crew/artifact-archiver/ArtifactArchiver.d.ts +4 -4
  177. package/lib/stage/crew/artifact-archiver/ArtifactArchiver.js +4 -4
  178. package/lib/stage/crew/stream-reporter/StreamReporter.d.ts +7 -7
  179. package/lib/stage/crew/stream-reporter/StreamReporter.js +7 -7
  180. package/package.json +2 -2
  181. package/src/Serenity.ts +22 -22
  182. package/src/adapter/OutputStream.ts +5 -4
  183. package/src/adapter/TestRunnerAdapter.ts +2 -2
  184. package/src/config/ClassDescription.ts +1 -1
  185. package/src/config/SerenityConfig.ts +22 -20
  186. package/src/errors/ErrorFactory.ts +2 -1
  187. package/src/errors/ErrorSerialiser.ts +3 -3
  188. package/src/errors/RaiseErrors.ts +9 -9
  189. package/src/errors/diff/AnsiDiffFormatter.ts +1 -1
  190. package/src/errors/diff/DiffFormatter.ts +1 -1
  191. package/src/errors/diff/NoOpDiffFormatter.ts +1 -1
  192. package/src/errors/model/AssertionError.ts +1 -1
  193. package/src/errors/model/ConfigurationError.ts +1 -1
  194. package/src/errors/model/ImplementationPendingError.ts +3 -3
  195. package/src/errors/model/ListItemNotFoundError.ts +2 -2
  196. package/src/errors/model/LogicError.ts +2 -2
  197. package/src/errors/model/OperationInterruptedError.ts +2 -2
  198. package/src/errors/model/RuntimeError.ts +2 -2
  199. package/src/errors/model/TestCompromisedError.ts +1 -1
  200. package/src/errors/model/TimeoutExpiredError.ts +2 -2
  201. package/src/errors/model/UnknownError.ts +1 -1
  202. package/src/events/ActivityFinished.ts +1 -1
  203. package/src/events/ActivityStarts.ts +1 -1
  204. package/src/events/BusinessRuleDetected.ts +1 -1
  205. package/src/events/SceneFinishes.ts +2 -1
  206. package/src/instance.ts +30 -30
  207. package/src/io/format.ts +15 -6
  208. package/src/io/loader/ModuleLoader.ts +1 -1
  209. package/src/io/reflection/ValueInspector.ts +3 -3
  210. package/src/io/stringified.ts +1 -1
  211. package/src/io/trimmed.ts +1 -1
  212. package/src/model/artifacts/HTTPRequestResponse.ts +2 -2
  213. package/src/screenplay/Activity.ts +10 -10
  214. package/src/screenplay/Actor.ts +28 -28
  215. package/src/screenplay/Answerable.ts +1 -1
  216. package/src/screenplay/Answered.ts +2 -2
  217. package/src/screenplay/Interaction.ts +17 -17
  218. package/src/screenplay/Optional.ts +1 -1
  219. package/src/screenplay/Question.ts +48 -45
  220. package/src/screenplay/RecursivelyAnswered.ts +2 -2
  221. package/src/screenplay/Task.ts +19 -19
  222. package/src/screenplay/WithAnswerableProperties.ts +2 -2
  223. package/src/screenplay/abilities/Ability.ts +48 -46
  224. package/src/screenplay/abilities/AbilityType.ts +5 -5
  225. package/src/screenplay/abilities/AnswerQuestions.ts +3 -3
  226. package/src/screenplay/abilities/CanHaveAbilities.ts +4 -4
  227. package/src/screenplay/abilities/Discardable.ts +8 -8
  228. package/src/screenplay/abilities/Initialisable.ts +11 -11
  229. package/src/screenplay/abilities/PerformActivities.ts +3 -3
  230. package/src/screenplay/abilities/UsesAbilities.ts +6 -6
  231. package/src/screenplay/activities/PerformsActivities.ts +7 -7
  232. package/src/screenplay/artifacts/CollectsArtifacts.ts +4 -5
  233. package/src/screenplay/debugging/Debug.ts +7 -6
  234. package/src/screenplay/debugging/DebuggingResult.ts +1 -1
  235. package/src/screenplay/debugging/Log.ts +7 -5
  236. package/src/screenplay/notes/Notepad.ts +13 -13
  237. package/src/screenplay/notes/NotepadAdapter.ts +16 -16
  238. package/src/screenplay/notes/TakeNotes.ts +9 -9
  239. package/src/screenplay/notes/notes.ts +6 -6
  240. package/src/screenplay/questions/AnswersQuestions.ts +4 -4
  241. package/src/screenplay/questions/ChainableMetaQuestion.ts +6 -6
  242. package/src/screenplay/questions/Check.ts +2 -2
  243. package/src/screenplay/questions/DescriptionFormattingOptions.ts +2 -2
  244. package/src/screenplay/questions/Expectation.ts +17 -14
  245. package/src/screenplay/questions/List.ts +5 -5
  246. package/src/screenplay/questions/Masked.ts +4 -2
  247. package/src/screenplay/questions/MetaQuestion.ts +9 -9
  248. package/src/screenplay/questions/Unanswered.ts +2 -2
  249. package/src/screenplay/questions/expectations/ExpectationDetails.ts +1 -1
  250. package/src/screenplay/questions/expectations/ExpectationMet.ts +1 -1
  251. package/src/screenplay/questions/expectations/ExpectationNotMet.ts +1 -1
  252. package/src/screenplay/questions/expectations/ExpectationOutcome.ts +2 -2
  253. package/src/screenplay/questions/tag-functions.ts +23 -21
  254. package/src/screenplay/time/TellsTime.ts +4 -4
  255. package/src/screenplay/time/abilities/ScheduleWork.ts +2 -2
  256. package/src/screenplay/time/activities/Wait.ts +29 -27
  257. package/src/screenplay/time/models/Clock.ts +4 -4
  258. package/src/screenplay/time/models/Duration.ts +1 -1
  259. package/src/screenplay/time/models/Timestamp.ts +2 -2
  260. package/src/stage/Cast.ts +21 -21
  261. package/src/stage/Extras.ts +1 -1
  262. package/src/stage/ListensToDomainEvents.ts +7 -7
  263. package/src/stage/Stage.ts +29 -30
  264. package/src/stage/StageCrewMember.ts +11 -11
  265. package/src/stage/StageCrewMemberBuilder.ts +7 -7
  266. package/src/stage/StageCrewMemberBuilderDependencies.ts +2 -2
  267. package/src/stage/crew/artifact-archiver/ArtifactArchiver.ts +4 -4
  268. package/src/stage/crew/stream-reporter/StreamReporter.ts +7 -7
@@ -1,7 +1,7 @@
1
1
  import { Duration } from './Duration';
2
2
  import { Timestamp } from './Timestamp';
3
3
  /**
4
- * A {@apilink Clock} tells the time. This abstraction allows Serenity/JS to have a single place
4
+ * A [`Clock`](https://serenity-js.org/api/core/class/Clock/) tells the time. This abstraction allows Serenity/JS to have a single place
5
5
  * in the framework responsible for telling the time, and one that can be easily mocked for internal testing.
6
6
  *
7
7
  * ```ts
@@ -9,8 +9,8 @@ import { Timestamp } from './Timestamp';
9
9
  * ```
10
10
  *
11
11
  * ## Learn more
12
- * - {@apilink Timestamp}
13
- * - {@apilink Duration}
12
+ * - [`Timestamp`](https://serenity-js.org/api/core/class/Timestamp/)
13
+ * - [`Duration`](https://serenity-js.org/api/core/class/Duration/)
14
14
  *
15
15
  * @group Time
16
16
  */
@@ -21,7 +21,7 @@ export declare class Clock {
21
21
  constructor(checkTime?: () => Date);
22
22
  /**
23
23
  * Sets the clock ahead to force early resolution of promises
24
- * returned by {@apilink Clock.waitFor};
24
+ * returned by [`Clock.waitFor`](https://serenity-js.org/api/core/class/Clock/#waitFor).
25
25
  *
26
26
  * Useful for test purposes to avoid unnecessary delays.
27
27
  *
@@ -5,7 +5,7 @@ const tiny_types_1 = require("tiny-types");
5
5
  const Duration_1 = require("./Duration");
6
6
  const Timestamp_1 = require("./Timestamp");
7
7
  /**
8
- * A {@apilink Clock} tells the time. This abstraction allows Serenity/JS to have a single place
8
+ * A [`Clock`](https://serenity-js.org/api/core/class/Clock/) tells the time. This abstraction allows Serenity/JS to have a single place
9
9
  * in the framework responsible for telling the time, and one that can be easily mocked for internal testing.
10
10
  *
11
11
  * ```ts
@@ -13,8 +13,8 @@ const Timestamp_1 = require("./Timestamp");
13
13
  * ```
14
14
  *
15
15
  * ## Learn more
16
- * - {@apilink Timestamp}
17
- * - {@apilink Duration}
16
+ * - [`Timestamp`](https://serenity-js.org/api/core/class/Timestamp/)
17
+ * - [`Duration`](https://serenity-js.org/api/core/class/Duration/)
18
18
  *
19
19
  * @group Time
20
20
  */
@@ -27,7 +27,7 @@ class Clock {
27
27
  }
28
28
  /**
29
29
  * Sets the clock ahead to force early resolution of promises
30
- * returned by {@apilink Clock.waitFor};
30
+ * returned by [`Clock.waitFor`](https://serenity-js.org/api/core/class/Clock/#waitFor).
31
31
  *
32
32
  * Useful for test purposes to avoid unnecessary delays.
33
33
  *
@@ -1,7 +1,7 @@
1
1
  import type { JSONObject } from 'tiny-types';
2
2
  import { TinyType } from 'tiny-types';
3
3
  /**
4
- * Represents a duration in milliseconds between two {@apilink Timestamp|timestamps}.
4
+ * Represents a duration in milliseconds between two [timestamps](https://serenity-js.org/api/core/class/Timestamp/).
5
5
  *
6
6
  * @group Time
7
7
  */
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Duration = void 0;
4
4
  const tiny_types_1 = require("tiny-types");
5
5
  /**
6
- * Represents a duration in milliseconds between two {@apilink Timestamp|timestamps}.
6
+ * Represents a duration in milliseconds between two [timestamps](https://serenity-js.org/api/core/class/Timestamp/).
7
7
  *
8
8
  * @group Time
9
9
  */
@@ -5,10 +5,10 @@ import { Duration } from './Duration';
5
5
  /**
6
6
  * Represents a point in time.
7
7
  *
8
- * `Timestamp` makes it easier for you to work with information related to time, like {@apilink DomainEvent|domain events}.
8
+ * `Timestamp` makes it easier for you to work with information related to time, like [Serenity/JS domain events](https://serenity-js.org/api/core-events/class/DomainEvent/).
9
9
  *
10
10
  * ## Learn more
11
- * - {@apilink Duration}
11
+ * - [`Duration`](https://serenity-js.org/api/core/class/Duration/)
12
12
  * - [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)
13
13
  *
14
14
  * @group Time
@@ -7,10 +7,10 @@ const Duration_1 = require("./Duration");
7
7
  /**
8
8
  * Represents a point in time.
9
9
  *
10
- * `Timestamp` makes it easier for you to work with information related to time, like {@apilink DomainEvent|domain events}.
10
+ * `Timestamp` makes it easier for you to work with information related to time, like [Serenity/JS domain events](https://serenity-js.org/api/core-events/class/DomainEvent/).
11
11
  *
12
12
  * ## Learn more
13
- * - {@apilink Duration}
13
+ * - [`Duration`](https://serenity-js.org/api/core/class/Duration/)
14
14
  * - [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)
15
15
  *
16
16
  * @group Time
@@ -1,10 +1,10 @@
1
1
  import type { Actor } from '../screenplay';
2
2
  /**
3
- * Serenity/JS uses the concept of a _**cast of actors**_ to centralise the process of configuring the {@apilink Actor|actors} and assigning their {@apilink Ability|abilities}.
3
+ * Serenity/JS uses the concept of a _**cast of actors**_ to centralise the process of configuring the [actors](https://serenity-js.org/api/core/class/Actor/) and assigning their [abilities](https://serenity-js.org/api/core/class/Ability/).
4
4
  *
5
- * When you invoke {@apilink actorCalled} for the first time in a test scenario,
6
- * Serenity/JS {@apilink Actor|instantiates a new actor}
7
- * and passes it through the {@apilink Cast.prepare} method.
5
+ * When you invoke [`actorCalled`](https://serenity-js.org/api/core/function/actorCalled/) for the first time in a test scenario,
6
+ * Serenity/JS [instantiates a new actor](https://serenity-js.org/api/core/class/Actor/)
7
+ * and passes it through the [`Cast.prepare`](https://serenity-js.org/api/core/class/Cast/#prepare) method.
8
8
  * Specifying a **custom cast** gives you an opportunity to configure the actor with the abilities
9
9
  * they need before it's returned to the caller,
10
10
  * or configure the actors differently **depending on their name**.
@@ -17,7 +17,7 @@ import type { Actor } from '../screenplay';
17
17
  * ## Configuring a cast of actors for the entire test suite
18
18
  *
19
19
  * When working with relatively **simple scenarios** where all the actors should always receive the same set of abilities,
20
- * you can {@apilink configure} Serenity/JS to use a generic {@apilink Cast.where}:
20
+ * you can [`engage`](https://serenity-js.org/api/core/function/engage/) Serenity/JS to use a generic [`Cast.where`](https://serenity-js.org/api/core/class/Cast/#where):
21
21
  *
22
22
  * ```typescript
23
23
  * import { Cast, configure } from '@serenity-js/core'
@@ -31,28 +31,28 @@ import type { Actor } from '../screenplay';
31
31
  * })
32
32
  * ```
33
33
  *
34
- * If you're using Serenity/JS with one of the [supported test runners](/handbook/test-runners/),
34
+ * If you're using Serenity/JS with one of the [supported test runners](https://serenity-js.org/handbook/test-runners/),
35
35
  * you might prefer to use your test runner's native configuration mechanism
36
- * instead of invoking {@apilink configure} explicitly.
36
+ * instead of invoking [`engage`](https://serenity-js.org/api/core/function/engage/) explicitly.
37
37
  *
38
38
  * :::tip configure vs engage
39
- * Calling {@apilink configure} resets the entire Serenity/JS configuration
39
+ * Calling [`configure`](https://serenity-js.org/api/core/function/configure/) resets the entire Serenity/JS configuration
40
40
  * and should be done exactly once in your entire test suite.
41
- * If you want to retain the configuration but reset the cast, use {@apilink engage} instead.
41
+ * If you want to retain the configuration but reset the cast, use [`engage`](https://serenity-js.org/api/core/function/engage/) instead.
42
42
  * :::
43
43
  *
44
44
  * Learn more about configuring Serenity/JS with:
45
- * - [Cucumber.js](/handbook/test-runners/cucumber)
46
- * - [Jasmine](/handbook/test-runners/jasmine)
47
- * - [Mocha](/handbook/test-runners/mocha)
48
- * - [Playwright Test](/handbook/test-runners/playwright-test)
49
- * - [Protractor](/handbook/test-runners/protractor)
50
- * - [WebdriverIO](/handbook/test-runners/webdriverio)
45
+ * - [Cucumber.js](https://serenity-js.org/handbook/test-runners/cucumber)
46
+ * - [Jasmine](https://serenity-js.org/handbook/test-runners/jasmine)
47
+ * - [Mocha](https://serenity-js.org/handbook/test-runners/mocha)
48
+ * - [Playwright Test](https://serenity-js.org/handbook/test-runners/playwright-test)
49
+ * - [Protractor](https://serenity-js.org/handbook/test-runners/protractor)
50
+ * - [WebdriverIO](https://serenity-js.org/handbook/test-runners/webdriverio)
51
51
  *
52
52
  * ## Engaging a cast of actors for the specific scenario
53
53
  *
54
- * If you want to retain Serenity/JS configuration, but set a different {@apilink Cast}
55
- * for the given test scenario you should use {@apilink engage} instead of {@apilink configure}.
54
+ * If you want to retain Serenity/JS configuration, but set a different [cast](https://serenity-js.org/api/core/class/Cast/)
55
+ * for the given test scenario you should use [`engage`](https://serenity-js.org/api/core/function/engage/) instead of [`configure`](https://serenity-js.org/api/core/function/configure/).
56
56
  *
57
57
  * This approach is useful for example when your entire test suite is dedicated to interacting with the system
58
58
  * under test via its REST APIs, and you have a handful of scenarios that need a web browser.
@@ -76,10 +76,10 @@ import type { Actor } from '../screenplay';
76
76
  * ## Writing custom casts for complex scenarios
77
77
  *
78
78
  * In **complex scenarios** that involve multiple **actors with different abilities**,
79
- * you should create a custom implementation of the {@apilink Cast}.
79
+ * you should create a custom implementation of the [cast](https://serenity-js.org/api/core/class/Cast/).
80
80
  *
81
81
  * Examples of such scenarios include those where actors use separate browser instances, interact with different REST APIs,
82
- * or start with different data in their {@apilink Notepad|notepads}.
82
+ * or start with different data in their [notepads](https://serenity-js.org/api/core/class/Notepad/).
83
83
  *
84
84
  * ### Defining a custom cast of actors interacting with a Web UI
85
85
  *
@@ -155,12 +155,12 @@ export declare abstract class Cast {
155
155
  */
156
156
  static where(prepareFunction: (actor: Actor) => Actor): Cast;
157
157
  /**
158
- * Configures an {@apilink Actor} instantiated when {@apilink Stage.actor} is invoked.
158
+ * Configures an [`Actor`](https://serenity-js.org/api/core/class/Actor/) instantiated when [`Stage.actor`](https://serenity-js.org/api/core/class/Stage/#actor) is invoked.
159
159
  *
160
160
  * @param actor
161
161
  *
162
162
  * #### Learn more
163
- * - {@apilink engage}
163
+ * - [`engage`](https://serenity-js.org/api/core/function/engage/)
164
164
  */
165
165
  abstract prepare(actor: Actor): Actor;
166
166
  }
package/lib/stage/Cast.js CHANGED
@@ -2,11 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Cast = void 0;
4
4
  /**
5
- * Serenity/JS uses the concept of a _**cast of actors**_ to centralise the process of configuring the {@apilink Actor|actors} and assigning their {@apilink Ability|abilities}.
5
+ * Serenity/JS uses the concept of a _**cast of actors**_ to centralise the process of configuring the [actors](https://serenity-js.org/api/core/class/Actor/) and assigning their [abilities](https://serenity-js.org/api/core/class/Ability/).
6
6
  *
7
- * When you invoke {@apilink actorCalled} for the first time in a test scenario,
8
- * Serenity/JS {@apilink Actor|instantiates a new actor}
9
- * and passes it through the {@apilink Cast.prepare} method.
7
+ * When you invoke [`actorCalled`](https://serenity-js.org/api/core/function/actorCalled/) for the first time in a test scenario,
8
+ * Serenity/JS [instantiates a new actor](https://serenity-js.org/api/core/class/Actor/)
9
+ * and passes it through the [`Cast.prepare`](https://serenity-js.org/api/core/class/Cast/#prepare) method.
10
10
  * Specifying a **custom cast** gives you an opportunity to configure the actor with the abilities
11
11
  * they need before it's returned to the caller,
12
12
  * or configure the actors differently **depending on their name**.
@@ -19,7 +19,7 @@ exports.Cast = void 0;
19
19
  * ## Configuring a cast of actors for the entire test suite
20
20
  *
21
21
  * When working with relatively **simple scenarios** where all the actors should always receive the same set of abilities,
22
- * you can {@apilink configure} Serenity/JS to use a generic {@apilink Cast.where}:
22
+ * you can [`engage`](https://serenity-js.org/api/core/function/engage/) Serenity/JS to use a generic [`Cast.where`](https://serenity-js.org/api/core/class/Cast/#where):
23
23
  *
24
24
  * ```typescript
25
25
  * import { Cast, configure } from '@serenity-js/core'
@@ -33,28 +33,28 @@ exports.Cast = void 0;
33
33
  * })
34
34
  * ```
35
35
  *
36
- * If you're using Serenity/JS with one of the [supported test runners](/handbook/test-runners/),
36
+ * If you're using Serenity/JS with one of the [supported test runners](https://serenity-js.org/handbook/test-runners/),
37
37
  * you might prefer to use your test runner's native configuration mechanism
38
- * instead of invoking {@apilink configure} explicitly.
38
+ * instead of invoking [`engage`](https://serenity-js.org/api/core/function/engage/) explicitly.
39
39
  *
40
40
  * :::tip configure vs engage
41
- * Calling {@apilink configure} resets the entire Serenity/JS configuration
41
+ * Calling [`configure`](https://serenity-js.org/api/core/function/configure/) resets the entire Serenity/JS configuration
42
42
  * and should be done exactly once in your entire test suite.
43
- * If you want to retain the configuration but reset the cast, use {@apilink engage} instead.
43
+ * If you want to retain the configuration but reset the cast, use [`engage`](https://serenity-js.org/api/core/function/engage/) instead.
44
44
  * :::
45
45
  *
46
46
  * Learn more about configuring Serenity/JS with:
47
- * - [Cucumber.js](/handbook/test-runners/cucumber)
48
- * - [Jasmine](/handbook/test-runners/jasmine)
49
- * - [Mocha](/handbook/test-runners/mocha)
50
- * - [Playwright Test](/handbook/test-runners/playwright-test)
51
- * - [Protractor](/handbook/test-runners/protractor)
52
- * - [WebdriverIO](/handbook/test-runners/webdriverio)
47
+ * - [Cucumber.js](https://serenity-js.org/handbook/test-runners/cucumber)
48
+ * - [Jasmine](https://serenity-js.org/handbook/test-runners/jasmine)
49
+ * - [Mocha](https://serenity-js.org/handbook/test-runners/mocha)
50
+ * - [Playwright Test](https://serenity-js.org/handbook/test-runners/playwright-test)
51
+ * - [Protractor](https://serenity-js.org/handbook/test-runners/protractor)
52
+ * - [WebdriverIO](https://serenity-js.org/handbook/test-runners/webdriverio)
53
53
  *
54
54
  * ## Engaging a cast of actors for the specific scenario
55
55
  *
56
- * If you want to retain Serenity/JS configuration, but set a different {@apilink Cast}
57
- * for the given test scenario you should use {@apilink engage} instead of {@apilink configure}.
56
+ * If you want to retain Serenity/JS configuration, but set a different [cast](https://serenity-js.org/api/core/class/Cast/)
57
+ * for the given test scenario you should use [`engage`](https://serenity-js.org/api/core/function/engage/) instead of [`configure`](https://serenity-js.org/api/core/function/configure/).
58
58
  *
59
59
  * This approach is useful for example when your entire test suite is dedicated to interacting with the system
60
60
  * under test via its REST APIs, and you have a handful of scenarios that need a web browser.
@@ -78,10 +78,10 @@ exports.Cast = void 0;
78
78
  * ## Writing custom casts for complex scenarios
79
79
  *
80
80
  * In **complex scenarios** that involve multiple **actors with different abilities**,
81
- * you should create a custom implementation of the {@apilink Cast}.
81
+ * you should create a custom implementation of the [cast](https://serenity-js.org/api/core/class/Cast/).
82
82
  *
83
83
  * Examples of such scenarios include those where actors use separate browser instances, interact with different REST APIs,
84
- * or start with different data in their {@apilink Notepad|notepads}.
84
+ * or start with different data in their [notepads](https://serenity-js.org/api/core/class/Notepad/).
85
85
  *
86
86
  * ### Defining a custom cast of actors interacting with a Web UI
87
87
  *
@@ -1,7 +1,7 @@
1
1
  import type { Actor } from '../screenplay';
2
2
  import type { Cast } from './Cast';
3
3
  /**
4
- * Produces no-op actors with no special {@apilink Ability}
4
+ * Produces no-op actors with no special [`Ability`](https://serenity-js.org/api/core/class/Ability/)
5
5
  */
6
6
  export declare class Extras implements Cast {
7
7
  prepare(actor: Actor): Actor;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Extras = void 0;
4
4
  /**
5
- * Produces no-op actors with no special {@apilink Ability}
5
+ * Produces no-op actors with no special [`Ability`](https://serenity-js.org/api/core/class/Ability/)
6
6
  */
7
7
  class Extras {
8
8
  prepare(actor) {
@@ -1,20 +1,20 @@
1
1
  import type { DomainEvent } from '../events';
2
2
  /**
3
- * A {@apilink StageCrewMember} that can listen and react to {@apilink DomainEvent|DomainEvents}
3
+ * A [`StageCrewMember`](https://serenity-js.org/api/core/interface/StageCrewMember/) that can listen and react to [Serenity/JS domain events](https://serenity-js.org/api/core-events/class/DomainEvent/)
4
4
  *
5
5
  * ## Learn more
6
6
  *
7
- * - {@apilink StageCrewMember}
8
- * - {@apilink StageCrewMemberBuilder}
9
- * - {@apilink configure}
10
- * - {@apilink SerenityConfig.crew}
7
+ * - [`StageCrewMember`](https://serenity-js.org/api/core/interface/StageCrewMember/)
8
+ * - [`StageCrewMember`](https://serenity-js.org/api/core/interface/StageCrewMemberBuilder/)
9
+ * - [`engage`](https://serenity-js.org/api/core/function/engage/)
10
+ * - [`SerenityConfig.crew`](https://serenity-js.org/api/core/class/SerenityConfig/#crew)
11
11
  *
12
12
  * @group Stage
13
13
  */
14
14
  export interface ListensToDomainEvents {
15
15
  /**
16
- * Handles {@apilink DomainEvent} objects emitted by the {@apilink Stage}
17
- * that this {@apilink StageCrewMember} is assigned to.
16
+ * Handles [`DomainEvent`](https://serenity-js.org/api/core-events/class/DomainEvent/) objects emitted by the [`Stage`](https://serenity-js.org/api/core/class/Stage/)
17
+ * that this [`StageCrewMember`](https://serenity-js.org/api/core/interface/StageCrewMember/) is assigned to.
18
18
  *
19
19
  * @param event
20
20
  */
@@ -8,17 +8,17 @@ import type { ListensToDomainEvents } from '../stage';
8
8
  import type { Cast } from './Cast';
9
9
  import type { StageManager } from './StageManager';
10
10
  /**
11
- * Stage is the place where {@apilink Actor|actors} perform.
11
+ * Stage is the place where [actors](https://serenity-js.org/api/core/class/Actor/) perform.
12
12
  *
13
- * In more technical terms, the Stage is the main event bus propagating {@apilink DomainEvent|DomainEvents}
14
- * to {@apilink Actor|Actors} it instantiates and {@apilink StageCrewMember|StageCrewMembers} that have been registered with it.
13
+ * In more technical terms, the Stage is the main event bus propagating [Serenity/JS domain events](https://serenity-js.org/api/core-events/class/DomainEvent/)
14
+ * to [actors](https://serenity-js.org/api/core/class/Actor/) it instantiates and [stage crew members](https://serenity-js.org/api/core/interface/StageCrewMember/) that have been registered with it.
15
15
  *
16
16
  * It is unlikely that you'll ever need to interact with the `Stage` directly in your tests. Instead, you'll use functions like
17
- * {@apilink actorCalled} and {@apilink actorInTheSpotlight}.
17
+ * [`actorCalled`](https://serenity-js.org/api/core/function/actorCalled/) and [`actorInTheSpotlight`](https://serenity-js.org/api/core/function/actorInTheSpotlight/).
18
18
  *
19
19
  * ## Learn more
20
- * - {@apilink configure}
21
- * - {@apilink engage}
20
+ * - [`configure`](https://serenity-js.org/api/core/function/configure/)
21
+ * - [`engage`](https://serenity-js.org/api/core/function/engage/)
22
22
  *
23
23
  * @group Stage
24
24
  */
@@ -41,7 +41,7 @@ export declare class Stage implements EmitsDomainEvents {
41
41
  private actorsOnBackstage;
42
42
  private actorsOnStage;
43
43
  /**
44
- * The most recent actor referenced via the {@apilink actor} method
44
+ * The most recent actor referenced via the [`Actor`](https://serenity-js.org/api/core/class/Actor/) method
45
45
  */
46
46
  private actorInTheSpotlight;
47
47
  private currentActivity;
@@ -55,13 +55,13 @@ export declare class Stage implements EmitsDomainEvents {
55
55
  */
56
56
  constructor(cast: Cast, manager: StageManager, errors: ErrorFactory, clock: Clock, interactionTimeout: Duration);
57
57
  /**
58
- * An alias for {@apilink Stage.actor}
58
+ * An alias for [`Stage.actor`](https://serenity-js.org/api/core/class/Stage/#actor)
59
59
  *
60
60
  * @param name
61
61
  */
62
62
  theActorCalled(name: string): Actor;
63
63
  /**
64
- * Instantiates a new {@apilink Actor} or fetches an existing one
64
+ * Instantiates a new [`Actor`](https://serenity-js.org/api/core/class/Actor/) or fetches an existing one
65
65
  * identified by their name if they've already been instantiated.
66
66
  *
67
67
  * @param name
@@ -69,27 +69,27 @@ export declare class Stage implements EmitsDomainEvents {
69
69
  */
70
70
  actor(name: string): Actor;
71
71
  /**
72
- * Returns the last {@apilink Actor} instantiated via {@apilink Stage.actor}.
72
+ * Returns the last [`Actor`](https://serenity-js.org/api/core/class/Actor/) instantiated via [`Stage.actor`](https://serenity-js.org/api/core/class/Stage/#actor).
73
73
  * Useful when you don't can't or choose not to reference the actor by their name.
74
74
  *
75
- * @throws {LogicError}
76
- * If no {@apilink Actor} has been activated yet
75
+ * @throws [`LogicError`](https://serenity-js.org/api/core/class/LogicError/)
76
+ * If no [`Actor`](https://serenity-js.org/api/core/class/Actor/) has been activated yet
77
77
  */
78
78
  theActorInTheSpotlight(): Actor;
79
79
  /**
80
- * Returns `true` if there is an {@apilink Actor} in the spotlight, `false` otherwise.
80
+ * Returns `true` if there is an [`Actor`](https://serenity-js.org/api/core/class/Actor/) in the spotlight, `false` otherwise.
81
81
  */
82
82
  theShowHasStarted(): boolean;
83
83
  /**
84
- * Configures the Stage to prepare {@apilink Actor|Actors}
85
- * instantiated via {@apilink Stage.actor} using the provided {@apilink Cast}.
84
+ * Configures the Stage to prepare [actors](https://serenity-js.org/api/core/class/Actor/)
85
+ * instantiated via [`Stage.actor`](https://serenity-js.org/api/core/class/Stage/#actor) using the provided [cast](https://serenity-js.org/api/core/class/Cast/).
86
86
  *
87
87
  * @param actors
88
88
  */
89
89
  engage(actors: Cast): void;
90
90
  /**
91
- * Assigns listeners to be notified of {@apilink DomainEvent|DomainEvents}
92
- * emitted via {@apilink Stage.announce}.s
91
+ * Assigns listeners to be notified of [Serenity/JS domain events](https://serenity-js.org/api/core-events/class/DomainEvent/)
92
+ * emitted via [`Stage.announce`](https://serenity-js.org/api/core/class/Stage/#announce).s
93
93
  *
94
94
  * @param listeners
95
95
  */
@@ -104,44 +104,43 @@ export declare class Stage implements EmitsDomainEvents {
104
104
  private announceSingle;
105
105
  /**
106
106
  * Returns current time. This method should be used whenever
107
- * {@apilink DomainEvent} objects are instantiated by you programmatically.
107
+ * [`DomainEvent`](https://serenity-js.org/api/core-events/class/DomainEvent/) objects are instantiated by you programmatically.
108
108
  */
109
109
  currentTime(): Timestamp;
110
110
  /**
111
- * Generates and remembers a {@apilink CorrelationId}
111
+ * Generates and remembers a `CorrelationId`
112
112
  * for the current scene.
113
113
  *
114
114
  * This method should be used in custom test runner adapters
115
- * when instantiating a {@apilink SceneStarts} event.
115
+ * when instantiating a [SceneStarts](https://serenity-js.org/api/core-events/class/SceneStarts/) event.
116
116
  *
117
117
  * #### Learn more
118
- * - {@apilink Stage.currentSceneId}
119
- * - {@apilink CorrelationId}
118
+ * - [`Stage.currentSceneId`](https://serenity-js.org/api/core/class/Stage/#currentSceneId)
120
119
  */
121
120
  assignNewSceneId(): CorrelationId;
122
121
  /**
123
- * Returns the {@apilink CorrelationId} for the current scene.
122
+ * Returns the `CorrelationId` for the current scene.
124
123
  *
125
124
  * #### Learn more
126
- * - {@apilink Stage.assignNewSceneId}
125
+ * - [`Stage.assignNewSceneId`](https://serenity-js.org/api/core/class/Stage/#assignNewSceneId)
127
126
  */
128
127
  currentSceneId(): CorrelationId;
129
128
  /**
130
- * Generates and remembers a {@apilink CorrelationId}
131
- * for the current {@apilink Activity}.
129
+ * Generates and remembers a `CorrelationId`
130
+ * for the current [`Activity`](https://serenity-js.org/api/core/class/Activity/).
132
131
  *
133
132
  * This method should be used in custom test runner adapters
134
- * when instantiating the {@apilink ActivityStarts} event.
133
+ * when instantiating the [ActivityStarts](https://serenity-js.org/api/core-events/class/ActivityStarts/) event.
135
134
  *
136
135
  * #### Learn more
137
- * - {@apilink Stage.currentActivityId}
136
+ * - [`Stage.currentActivityId`](https://serenity-js.org/api/core/class/Stage/#currentActivityId)
138
137
  */
139
138
  assignNewActivityId(activityDetails: ActivityDetails): CorrelationId;
140
139
  /**
141
- * Returns the {@apilink CorrelationId} for the current {@apilink Activity}.
140
+ * Returns the `CorrelationId` for the current [`Activity`](https://serenity-js.org/api/core/class/Activity/).
142
141
  *
143
142
  * #### Learn more
144
- * - {@apilink Stage.assignNewSceneId}
143
+ * - [`Stage.assignNewSceneId`](https://serenity-js.org/api/core/class/Stage/#assignNewSceneId)
145
144
  */
146
145
  currentActivityId(): CorrelationId;
147
146
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"Stage.d.ts","sourceRoot":"","sources":["../../src/stage/Stage.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAE1E,OAAO,KAAK,EACR,WAAW,EACX,iBAAiB,EAAC,MAAM,WAAW,CAAC;AASxC,OAAO,KAAK,EAAE,eAAe,EAAC,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAqB,MAAM,UAAU,CAAC;AAC5D,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,KAAK,EAAgB,MAAM,eAAe,CAAC;AACpD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;;;;;;;;;;;;;GAcG;AACH,qBAAa,KAAM,YAAW,iBAAiB;IAmCvC,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IArCvC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAA+B;IAErE;;;OAGG;IACH,OAAO,CAAC,kBAAkB,CAAgD;IAE1E;;;OAGG;IACH,OAAO,CAAC,iBAAiB,CAAgD;IAEzE,OAAO,CAAC,aAAa,CAA8C;IAEnE;;OAEG;IACH,OAAO,CAAC,mBAAmB,CAAoB;IAE/C,OAAO,CAAC,eAAe,CAA8D;IAErF,OAAO,CAAC,YAAY,CAAuC;IAE3D;;;;;;OAMG;gBAES,IAAI,EAAE,IAAI,EACD,OAAO,EAAE,YAAY,EAC9B,MAAM,EAAE,YAAY,EACX,KAAK,EAAE,KAAK,EACZ,kBAAkB,EAAE,QAAQ;IASjD;;;;OAIG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;IAInC;;;;;;OAMG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;IA8B1B;;;;;;OAMG;IACH,sBAAsB,IAAI,KAAK;IAQ/B;;OAEG;IACH,iBAAiB,IAAI,OAAO;IAI5B;;;;;OAKG;IACH,MAAM,CAAC,MAAM,EAAE,IAAI,GAAG,IAAI;IAM1B;;;;;OAKG;IACH,MAAM,CAAC,GAAG,SAAS,EAAE,qBAAqB,EAAE,GAAG,IAAI;IAInD;;;;;OAKG;IACH,QAAQ,CAAC,GAAG,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,GAAG,IAAI;IAM7C,OAAO,CAAC,cAAc;IAkBtB;;;OAGG;IACH,WAAW,IAAI,SAAS;IAIxB;;;;;;;;;;OAUG;IACH,gBAAgB,IAAI,aAAa;IAOjC;;;;;OAKG;IACH,cAAc,IAAI,aAAa;IAI/B;;;;;;;;;OASG;IACH,mBAAmB,CAAC,eAAe,EAAE,eAAe,GAAG,aAAa;IASpE;;;;;OAKG;IACH,iBAAiB,IAAI,aAAa;IAQlC;;;;;;;OAOG;IACH,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAI/B,WAAW,CAAC,EAAE,SAAS,YAAY,EAAE,SAAS,EAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,YAAY,GAAG,EAAE;IAOtG,OAAO,CAAC,uBAAuB;YAMjB,OAAO;IAuCrB,OAAO,CAAC,MAAM;CAKjB"}
1
+ {"version":3,"file":"Stage.d.ts","sourceRoot":"","sources":["../../src/stage/Stage.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAE1E,OAAO,KAAK,EACR,WAAW,EACX,iBAAiB,EAAC,MAAM,WAAW,CAAC;AASxC,OAAO,KAAK,EAAE,eAAe,EAAC,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAqB,MAAM,UAAU,CAAC;AAC5D,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,KAAK,EAAgB,MAAM,eAAe,CAAC;AACpD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AACnC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;;;;;;;;;;;;;GAcG;AACH,qBAAa,KAAM,YAAW,iBAAiB;IAmCvC,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IArCvC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAA+B;IAErE;;;OAGG;IACH,OAAO,CAAC,kBAAkB,CAAgD;IAE1E;;;OAGG;IACH,OAAO,CAAC,iBAAiB,CAAgD;IAEzE,OAAO,CAAC,aAAa,CAA8C;IAEnE;;OAEG;IACH,OAAO,CAAC,mBAAmB,CAAoB;IAE/C,OAAO,CAAC,eAAe,CAA8D;IAErF,OAAO,CAAC,YAAY,CAAuC;IAE3D;;;;;;OAMG;gBAES,IAAI,EAAE,IAAI,EACD,OAAO,EAAE,YAAY,EAC9B,MAAM,EAAE,YAAY,EACX,KAAK,EAAE,KAAK,EACZ,kBAAkB,EAAE,QAAQ;IASjD;;;;OAIG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;IAInC;;;;;;OAMG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK;IA8B1B;;;;;;OAMG;IACH,sBAAsB,IAAI,KAAK;IAQ/B;;OAEG;IACH,iBAAiB,IAAI,OAAO;IAI5B;;;;;OAKG;IACH,MAAM,CAAC,MAAM,EAAE,IAAI,GAAG,IAAI;IAM1B;;;;;OAKG;IACH,MAAM,CAAC,GAAG,SAAS,EAAE,qBAAqB,EAAE,GAAG,IAAI;IAInD;;;;;OAKG;IACH,QAAQ,CAAC,GAAG,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,GAAG,IAAI;IAM7C,OAAO,CAAC,cAAc;IAkBtB;;;OAGG;IACH,WAAW,IAAI,SAAS;IAIxB;;;;;;;;;OASG;IACH,gBAAgB,IAAI,aAAa;IAOjC;;;;;OAKG;IACH,cAAc,IAAI,aAAa;IAI/B;;;;;;;;;OASG;IACH,mBAAmB,CAAC,eAAe,EAAE,eAAe,GAAG,aAAa;IASpE;;;;;OAKG;IACH,iBAAiB,IAAI,aAAa;IAQlC;;;;;;;OAOG;IACH,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAI/B,WAAW,CAAC,EAAE,SAAS,YAAY,EAAE,SAAS,EAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,YAAY,GAAG,EAAE;IAOtG,OAAO,CAAC,uBAAuB;YAMjB,OAAO;IAuCrB,OAAO,CAAC,MAAM;CAKjB"}