@tossplace/pos-plugin-sdk 0.0.7 → 0.0.9
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
|
@@ -1152,6 +1152,7 @@ export declare type PluginHttpResponse = {
|
|
|
1152
1152
|
|
|
1153
1153
|
declare class PluginImpl implements Plugin_2 {
|
|
1154
1154
|
private readonly webview;
|
|
1155
|
+
private plugin;
|
|
1155
1156
|
private pluginCallbacks;
|
|
1156
1157
|
constructor(webview: WebView);
|
|
1157
1158
|
private initializePlugin;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tossplace/pos-plugin-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "포스 플러그인 sdk",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"types": "types/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
"import": "./dist/index.esm.js",
|
|
10
|
-
"require": "./dist/index.cjs.js"
|
|
10
|
+
"require": "./dist/index.cjs.js",
|
|
11
|
+
"types": "./types/index.d.ts"
|
|
11
12
|
},
|
|
12
13
|
"scripts": {
|
|
13
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
package/types/index.d.ts
CHANGED
|
@@ -1139,6 +1139,7 @@ export declare type PluginHttpResponse = {
|
|
|
1139
1139
|
|
|
1140
1140
|
declare class PluginImpl implements Plugin_2 {
|
|
1141
1141
|
private readonly webview;
|
|
1142
|
+
private plugin;
|
|
1142
1143
|
private pluginCallbacks;
|
|
1143
1144
|
constructor(webview: WebView);
|
|
1144
1145
|
private initializePlugin;
|