@tossplace/pos-plugin-sdk 0.0.23 → 0.0.24

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
@@ -1198,11 +1198,12 @@ export declare type PluginHttpResponse = {
1198
1198
 
1199
1199
  declare class PluginImpl implements Plugin_2 {
1200
1200
  constructor();
1201
- private initializePlugin;
1202
- getPluginInfo(): Promise<{
1201
+ getPluginInfo: () => Promise<{
1203
1202
  name: string;
1204
1203
  version: string;
1205
1204
  }>;
1205
+ private initializePlugin;
1206
+ private fetchPluginInfo;
1206
1207
  }
1207
1208
 
1208
1209
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tossplace/pos-plugin-sdk",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "포스 플러그인 sdk",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/types/index.d.ts CHANGED
@@ -1198,11 +1198,12 @@ export declare type PluginHttpResponse = {
1198
1198
 
1199
1199
  declare class PluginImpl implements Plugin_2 {
1200
1200
  constructor();
1201
- private initializePlugin;
1202
- getPluginInfo(): Promise<{
1201
+ getPluginInfo: () => Promise<{
1203
1202
  name: string;
1204
1203
  version: string;
1205
1204
  }>;
1205
+ private initializePlugin;
1206
+ private fetchPluginInfo;
1206
1207
  }
1207
1208
 
1208
1209
  /**