@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.
@@ -3329,7 +3329,7 @@ export interface RecordActionOptions {
3329
3329
  endpoint?: string;
3330
3330
  }
3331
3331
 
3332
- export type GrantMarkerPermissionResponse =
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 PossibleTriggerLocation {
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): PossibleTriggerLocation[];
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<GrantMarkerPermissionResponse>;
10667
+ ): Promise<GrantMarkerPermissionResult>;
10668
10668
 
10669
10669
  /**
10670
10670
  * Revokes the given permission from the given marker in the given record.
@@ -1,5 +1,7 @@
1
1
  /**
2
2
  * Contains information about the version of AUX that is running.
3
+ * @dochash types/os
4
+ * @docname CasualOSVersion
3
5
  */
4
6
  export interface AuxVersion {
5
7
  /**