@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openscreen/internal-sdk",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
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: PrintMode;
5363
+ printMode?: PrintMode | null;
5364
5364
  printTemplate?: PrintTemplate | null;
5365
5365
  stickerShape: StickerShape;
5366
5366
  stickerSize: Array<any>;