@aptos-scp/scp-component-store-selling-features-domain-model 1.52.0 → 1.52.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.
|
@@ -99,6 +99,7 @@ export declare class TenderAuthorizationSession implements IState {
|
|
|
99
99
|
startTenderAuthManualReversal(lineNumber: number): TenderAuthorizationSession;
|
|
100
100
|
startReversal(lineNumber: number): TenderAuthorizationSession;
|
|
101
101
|
saveInputs(uiInputs: UiInput[]): TenderAuthorizationSession;
|
|
102
|
+
clearInputs(): TenderAuthorizationSession;
|
|
102
103
|
stop(): TenderAuthorizationSession;
|
|
103
104
|
startVoidTransaction(lineNumber: number): TenderAuthorizationSession;
|
|
104
105
|
private constructor();
|
|
@@ -322,6 +322,10 @@ class TenderAuthorizationSession {
|
|
|
322
322
|
logger.traceEntry("saveInputs");
|
|
323
323
|
return new TenderAuthorizationSession(this._state, this._lineNumber, uiInputs, undefined);
|
|
324
324
|
}
|
|
325
|
+
clearInputs() {
|
|
326
|
+
logger.traceEntry("clearInputs");
|
|
327
|
+
return new TenderAuthorizationSession(this._state, this._lineNumber, undefined, undefined);
|
|
328
|
+
}
|
|
325
329
|
stop() {
|
|
326
330
|
logger.traceEntry("stop");
|
|
327
331
|
return this.completed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-scp/scp-component-store-selling-features-domain-model",
|
|
3
|
-
"version": "1.52.
|
|
3
|
+
"version": "1.52.1",
|
|
4
4
|
"description": "This component library provides the common components to handle the coordination of processing the business events from the UI.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|