@casual-simulation/aux-common 3.1.36 → 3.2.0
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/bots/Bot.d.ts +426 -43
- package/bots/Bot.js.map +1 -1
- package/bots/BotEvents.d.ts +219 -30
- package/bots/BotEvents.js.map +1 -1
- package/bots/StoredAux.d.ts +2 -0
- package/bots/StoredAux.js.map +1 -1
- package/math/Quaternion.d.ts +7 -0
- package/math/Quaternion.js +7 -0
- package/math/Quaternion.js.map +1 -1
- package/math/Rotation.d.ts +54 -2
- package/math/Rotation.js +9 -2
- package/math/Rotation.js.map +1 -1
- package/math/Vector2.d.ts +6 -0
- package/math/Vector2.js +6 -0
- package/math/Vector2.js.map +1 -1
- package/math/Vector3.d.ts +6 -0
- package/math/Vector3.js +6 -0
- package/math/Vector3.js.map +1 -1
- package/package.json +5 -5
- package/runtime/AuxDevice.d.ts +3 -0
- package/runtime/AuxLibrary.d.ts +1267 -49
- package/runtime/AuxLibrary.js +5102 -826
- package/runtime/AuxLibrary.js.map +1 -1
- package/runtime/AuxLibraryDefinitions.def +4 -4
- package/runtime/AuxVersion.d.ts +2 -0
|
@@ -3329,7 +3329,7 @@ export interface RecordActionOptions {
|
|
|
3329
3329
|
endpoint?: string;
|
|
3330
3330
|
}
|
|
3331
3331
|
|
|
3332
|
-
export type
|
|
3332
|
+
export type GrantMarkerPermissionResult =
|
|
3333
3333
|
| GrantMarkerPermissionSuccess
|
|
3334
3334
|
| GrantMarkerPermissionFailure;
|
|
3335
3335
|
|
|
@@ -7453,7 +7453,7 @@ export interface PauseTrigger extends PauseTriggerOptions {
|
|
|
7453
7453
|
/**
|
|
7454
7454
|
* Defines an interface for a possible pause trigger location.
|
|
7455
7455
|
*/
|
|
7456
|
-
export interface
|
|
7456
|
+
export interface PossiblePauseTriggerLocation {
|
|
7457
7457
|
/**
|
|
7458
7458
|
* The line number that the trigger would pause the debugger at.
|
|
7459
7459
|
*/
|
|
@@ -8671,7 +8671,7 @@ interface DebuggerBase {
|
|
|
8671
8671
|
* @param botOrId The bot or bot ID.
|
|
8672
8672
|
* @param tag The name of the tag that the trigger locations should be listed for.
|
|
8673
8673
|
*/
|
|
8674
|
-
listCommonPauseTriggers(botOrId: Bot | string, tag: string):
|
|
8674
|
+
listCommonPauseTriggers(botOrId: Bot | string, tag: string): PossiblePauseTriggerLocation[];
|
|
8675
8675
|
|
|
8676
8676
|
/**
|
|
8677
8677
|
* Resumes the debugger execution from the given pause.
|
|
@@ -10664,7 +10664,7 @@ interface Os {
|
|
|
10664
10664
|
marker: string,
|
|
10665
10665
|
permission: object,
|
|
10666
10666
|
options?: RecordActionOptions
|
|
10667
|
-
): Promise<
|
|
10667
|
+
): Promise<GrantMarkerPermissionResult>;
|
|
10668
10668
|
|
|
10669
10669
|
/**
|
|
10670
10670
|
* Revokes the given permission from the given marker in the given record.
|