@openscreen/internal-sdk 1.7.0 → 1.7.1

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.0",
3
+ "version": "1.7.1",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -2206,7 +2206,7 @@ export interface PrintOptions {
2206
2206
  }
2207
2207
  export interface PrintPageTemplate {
2208
2208
  accountId: string;
2209
- appAccountId: string;
2209
+ appAccountId?: string | null;
2210
2210
  created?: string | Date | number | null;
2211
2211
  createdBy: string;
2212
2212
  format?: PrintFormat | null;
@@ -2248,7 +2248,7 @@ export interface PrintPageTemplateByTimestamp {
2248
2248
  }
2249
2249
  export interface PrintStickerTemplate {
2250
2250
  accountId: string;
2251
- appAccountId: string;
2251
+ appAccountId?: string | null;
2252
2252
  bleed?: boolean | null;
2253
2253
  created?: string | Date | number | null;
2254
2254
  createdBy: string;
@@ -4718,6 +4718,8 @@ export interface CreateTemplatedPrintPreviewByProjectIdPathParameters {
4718
4718
  projectId: string;
4719
4719
  }
4720
4720
  export interface CreateTemplatedPrintPreviewByProjectIdRequestBody {
4721
+ assetIds?: Array<any> | null;
4722
+ batchId?: string | null;
4721
4723
  imageOptions?: QrCodeImageOptions | null;
4722
4724
  printOptions: PrintOptions;
4723
4725
  serializedFabric: NestedKeyValueObject;