@openscreen/internal-sdk 1.7.18 → 1.7.20
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 +5 -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;
|
|
@@ -3161,6 +3162,7 @@ export interface CreatePrintStickerTemplateByAccountIdRequestBody {
|
|
|
3161
3162
|
serializedFabric: NestedKeyValueObject;
|
|
3162
3163
|
stickerShape: StickerShape;
|
|
3163
3164
|
stickerSize: Array<any>;
|
|
3165
|
+
unit?: PrintUnit;
|
|
3164
3166
|
}
|
|
3165
3167
|
export interface CreatePrintStickerTemplateByAccountIdResponseBody {
|
|
3166
3168
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -5558,6 +5560,7 @@ export interface UpdatePrintStickerTemplateRequestBody {
|
|
|
5558
5560
|
serializedFabric: NestedKeyValueObject;
|
|
5559
5561
|
stickerShape: StickerShape;
|
|
5560
5562
|
stickerSize: Array<any>;
|
|
5563
|
+
unit: PrintUnit;
|
|
5561
5564
|
}
|
|
5562
5565
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5563
5566
|
printStickerTemplate: PrintStickerTemplate;
|