@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/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 +4 -2
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
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
|
|
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
|
|
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;
|