Skip to content

Commit

Permalink
Merge branch 'release/2.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
msqr committed May 13, 2024
2 parents 3ac0849 + 1a5f714 commit 86e02e2
Show file tree
Hide file tree
Showing 20 changed files with 113 additions and 48 deletions.
8 changes: 8 additions & 0 deletions lib/domain/instruction.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ export default class Instruction implements InstructionInfo {
* @param info the info to construct with
*/
constructor(info: InstructionInfo);
/**
* Create an instruction parameter instance.
*
* @param name the parameter name
* @param value the parameter value
* @returns the parameter object
*/
static parameter(name: string, value: string): InstructionParameter;
}
/**
* Common instruction topic names.
Expand Down
2 changes: 1 addition & 1 deletion lib/domain/instruction.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions lib/domain/instruction.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/domain/instruction.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/net/environment.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 5 additions & 9 deletions lib/net/environment.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/net/environment.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lib/net/instructionUrlHelperMixin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,12 @@ declare const InstructionUrlHelperMixin: <T extends UrlHelperConstructor>(superc
*/
canUseSimpleRequest(parameters?: InstructionParameter[]): boolean;
/**
* Create an instruction parameter suitable to passing to {@link Net.InstructionUrlHelperMixin#queueInstructionUrl}.
* Create an instruction parameter.
*
* @param name the parameter name
* @param value the parameter value
* @returns the parameter object
* @see {@link Domain.Instruction.parameter}
*/
instructionParameter(name: string, value: string): InstructionParameter;
} & T;
Expand Down
2 changes: 1 addition & 1 deletion lib/net/instructionUrlHelperMixin.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions lib/net/instructionUrlHelperMixin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 86e02e2

Please sign in to comment.