@openscreen/internal-sdk 1.7.12 → 1.7.13
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 +3 -3
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -2250,7 +2250,7 @@ export interface PrintPageTemplate {
|
|
|
2250
2250
|
numberOfRows: number;
|
|
2251
2251
|
orientation?: PrintOrientation;
|
|
2252
2252
|
pageSize: Array<any>;
|
|
2253
|
-
printMode?: PrintMode;
|
|
2253
|
+
printMode?: PrintMode | null;
|
|
2254
2254
|
printPageTemplateId: string;
|
|
2255
2255
|
printTemplate?: PrintTemplate | null;
|
|
2256
2256
|
stickerShape: StickerShape;
|
|
@@ -2971,7 +2971,7 @@ export interface CreatePrintPageTemplateByAccountIdRequestBody {
|
|
|
2971
2971
|
numberOfRows: number;
|
|
2972
2972
|
orientation?: PrintOrientation;
|
|
2973
2973
|
pageSize: Array<any>;
|
|
2974
|
-
printMode?: PrintMode;
|
|
2974
|
+
printMode?: PrintMode | null;
|
|
2975
2975
|
printTemplate?: PrintTemplate | null;
|
|
2976
2976
|
stickerShape: StickerShape;
|
|
2977
2977
|
stickerSize: Array<any>;
|
|
@@ -5360,7 +5360,7 @@ export interface UpdatePrintPageTemplateRequestBody {
|
|
|
5360
5360
|
numberOfRows: number;
|
|
5361
5361
|
orientation: PrintOrientation;
|
|
5362
5362
|
pageSize: Array<any>;
|
|
5363
|
-
printMode
|
|
5363
|
+
printMode?: PrintMode | null;
|
|
5364
5364
|
printTemplate?: PrintTemplate | null;
|
|
5365
5365
|
stickerShape: StickerShape;
|
|
5366
5366
|
stickerSize: Array<any>;
|