@tossplace/pos-plugin-sdk 0.0.15 → 0.0.16

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/dist/sdk.d.ts CHANGED
@@ -1685,7 +1685,7 @@ declare type RadioInput = Omit<BaseInput, 'placeholder'> & {
1685
1685
 
1686
1686
  declare type Response_2 = BarcodeResponse | InputResponse;
1687
1687
 
1688
- declare function setInputs(inputs: Array<PluginInputs>): void;
1688
+ declare function setInputs(inputs: Array<PluginInputs>): Promise<void>;
1689
1689
 
1690
1690
  declare const setting: {
1691
1691
  setInputs: typeof setInputs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tossplace/pos-plugin-sdk",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "포스 플러그인 sdk",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/types/index.d.ts CHANGED
@@ -1665,7 +1665,7 @@ declare type RadioInput = Omit<BaseInput, 'placeholder'> & {
1665
1665
 
1666
1666
  declare type Response_2 = BarcodeResponse | InputResponse;
1667
1667
 
1668
- declare function setInputs(inputs: Array<PluginInputs>): void;
1668
+ declare function setInputs(inputs: Array<PluginInputs>): Promise<void>;
1669
1669
 
1670
1670
  declare const setting: {
1671
1671
  setInputs: typeof setInputs;