@openscreen/internal-sdk 1.7.13 → 1.7.14

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.13",
3
+ "version": "1.7.14",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -2248,7 +2248,7 @@ export interface PrintPageTemplate {
2248
2248
  name: string;
2249
2249
  numberOfColumns: number;
2250
2250
  numberOfRows: number;
2251
- orientation?: PrintOrientation;
2251
+ orientation?: PrintOrientation | null;
2252
2252
  pageSize: Array<any>;
2253
2253
  printMode?: PrintMode | null;
2254
2254
  printPageTemplateId: string;
@@ -2289,8 +2289,8 @@ export interface PrintStickerTemplate {
2289
2289
  previewImage?: string | null;
2290
2290
  printStickerTemplateId: string;
2291
2291
  serializedFabric: NestedKeyValueObject;
2292
- stickerShape?: StickerShape | null;
2293
- stickerSize?: Array<any> | null;
2292
+ stickerShape: StickerShape;
2293
+ stickerSize: Array<any>;
2294
2294
  }
2295
2295
  export interface PrintStickerTemplateByName {
2296
2296
  _prefix?: string;
@@ -2969,7 +2969,7 @@ export interface CreatePrintPageTemplateByAccountIdRequestBody {
2969
2969
  name: string;
2970
2970
  numberOfColumns: number;
2971
2971
  numberOfRows: number;
2972
- orientation?: PrintOrientation;
2972
+ orientation?: PrintOrientation | null;
2973
2973
  pageSize: Array<any>;
2974
2974
  printMode?: PrintMode | null;
2975
2975
  printTemplate?: PrintTemplate | null;
@@ -5358,7 +5358,7 @@ export interface UpdatePrintPageTemplateRequestBody {
5358
5358
  name: string;
5359
5359
  numberOfColumns: number;
5360
5360
  numberOfRows: number;
5361
- orientation: PrintOrientation;
5361
+ orientation?: PrintOrientation | null;
5362
5362
  pageSize: Array<any>;
5363
5363
  printMode?: PrintMode | null;
5364
5364
  printTemplate?: PrintTemplate | null;
@@ -5381,8 +5381,8 @@ export interface UpdatePrintStickerTemplateRequestBody {
5381
5381
  name: string;
5382
5382
  previewImage?: string | null;
5383
5383
  serializedFabric: NestedKeyValueObject;
5384
- stickerShape?: StickerShape | null;
5385
- stickerSize?: Array<any> | null;
5384
+ stickerShape: StickerShape;
5385
+ stickerSize: Array<any>;
5386
5386
  }
5387
5387
  export interface UpdatePrintStickerTemplateResponseBody {
5388
5388
  printStickerTemplate: PrintStickerTemplate;