@openscreen/internal-sdk 1.7.5 → 1.7.7

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.5",
3
+ "version": "1.7.7",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -2170,7 +2170,6 @@ export interface PrintJob {
2170
2170
  errorMessage?: NestedKeyValueObject | null;
2171
2171
  fileExpiry?: string | Date | number | null;
2172
2172
  imageOptions?: QrCodeImageOptions | null;
2173
- jobId: string;
2174
2173
  lastPrintedAt?: string | Date | number | null;
2175
2174
  modified?: string | Date | number | null;
2176
2175
  name?: string;
@@ -2178,6 +2177,7 @@ export interface PrintJob {
2178
2177
  outputUrl?: string | null;
2179
2178
  outputUrls?: Array<any>;
2180
2179
  parentJobId?: string | null;
2180
+ printJobId: string;
2181
2181
  printOptions?: PrintOptions | null;
2182
2182
  printPageTemplateName?: string | null;
2183
2183
  printStickerTemplateName?: string | null;
@@ -4759,7 +4759,7 @@ export interface CreateTemplatedPrintJobByProjectIdRequestBody {
4759
4759
  }
4760
4760
  export interface CreateTemplatedPrintJobByProjectIdResponseBody {
4761
4761
  fileExpiry: string | Date | number;
4762
- job: undefined;
4762
+ job: PrintJob;
4763
4763
  outputUrl: string;
4764
4764
  }
4765
4765
  export interface CreateTemplatedPrintPreviewByProjectIdPathParameters {