@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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/sdk.d.ts +3 -2
- package/package.json +1 -1
- package/types/index.d.ts +3 -2
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
|
-
|
|
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
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
|
-
|
|
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
|
/**
|