@openscreen/internal-sdk 1.7.18 → 1.7.19
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.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/typings/sdk.d.ts +4 -2
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -2381,8 +2381,9 @@ export interface PrintStickerTemplate {
|
|
|
2381
2381
|
previewImage?: string | null;
|
|
2382
2382
|
printStickerTemplateId: string;
|
|
2383
2383
|
serializedFabric: NestedKeyValueObject;
|
|
2384
|
-
stickerShape
|
|
2385
|
-
stickerSize
|
|
2384
|
+
stickerShape?: StickerShape;
|
|
2385
|
+
stickerSize?: Array<any>;
|
|
2386
|
+
unit?: PrintUnit;
|
|
2386
2387
|
}
|
|
2387
2388
|
export interface PrintStickerTemplateByName {
|
|
2388
2389
|
_prefix?: string;
|
|
@@ -5558,6 +5559,7 @@ export interface UpdatePrintStickerTemplateRequestBody {
|
|
|
5558
5559
|
serializedFabric: NestedKeyValueObject;
|
|
5559
5560
|
stickerShape: StickerShape;
|
|
5560
5561
|
stickerSize: Array<any>;
|
|
5562
|
+
unit: PrintUnit;
|
|
5561
5563
|
}
|
|
5562
5564
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5563
5565
|
printStickerTemplate: PrintStickerTemplate;
|