@openscreen/internal-sdk 1.7.16 → 1.7.18

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.16",
3
+ "version": "1.7.18",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -810,7 +810,7 @@ export interface Asset {
810
810
  state?: string | null;
811
811
  staticQrCodeCount: number;
812
812
  thumbnails?: Array<any> | null;
813
- userMedia?: UserMedia[] | null;
813
+ userMedias?: UserMedia[] | null;
814
814
  }
815
815
  export interface AssetByAssetTypeNameAssetName {
816
816
  _prefix?: string;
@@ -1046,7 +1046,7 @@ export interface AssetHistory {
1046
1046
  state?: string | null;
1047
1047
  staticQrCodeCount?: number | null;
1048
1048
  thumbnails?: Array<any> | null;
1049
- userMedia?: UserMedia[] | null;
1049
+ userMedias?: UserMedia[] | null;
1050
1050
  }
1051
1051
  export interface AssetType {
1052
1052
  accountId: string;
@@ -2340,7 +2340,7 @@ export interface PrintPageTemplate {
2340
2340
  name: string;
2341
2341
  numberOfColumns: number;
2342
2342
  numberOfRows: number;
2343
- orientation?: PrintOrientation;
2343
+ orientation?: PrintOrientation | null;
2344
2344
  pageSize: Array<any>;
2345
2345
  printMode?: PrintMode | null;
2346
2346
  printPageTemplateId: string;
@@ -2381,8 +2381,8 @@ export interface PrintStickerTemplate {
2381
2381
  previewImage?: string | null;
2382
2382
  printStickerTemplateId: string;
2383
2383
  serializedFabric: NestedKeyValueObject;
2384
- stickerShape?: StickerShape;
2385
- stickerSize?: Array<any>;
2384
+ stickerShape: StickerShape;
2385
+ stickerSize: Array<any>;
2386
2386
  }
2387
2387
  export interface PrintStickerTemplateByName {
2388
2388
  _prefix?: string;
@@ -2670,7 +2670,7 @@ export interface ResponseAsset {
2670
2670
  state?: string | null;
2671
2671
  staticQrCodeCount: number;
2672
2672
  thumbnails?: Array<any> | null;
2673
- userMedia?: UserMedia[] | null;
2673
+ userMedias?: UserMedia[] | null;
2674
2674
  }
2675
2675
  export interface ResponseBodyUser {
2676
2676
  created: string | Date | number;
@@ -3138,7 +3138,7 @@ export interface CreatePrintPageTemplateByAccountIdRequestBody {
3138
3138
  name: string;
3139
3139
  numberOfColumns: number;
3140
3140
  numberOfRows: number;
3141
- orientation?: PrintOrientation;
3141
+ orientation?: PrintOrientation | null;
3142
3142
  pageSize: Array<any>;
3143
3143
  printMode?: PrintMode | null;
3144
3144
  printTemplate?: PrintTemplate | null;
@@ -4225,7 +4225,7 @@ export interface GetAssetQueryStringParameters {
4225
4225
  foregroundGradientRotation?: number | null;
4226
4226
  foregroundGradientType?: QrCodeGradientTypes | null;
4227
4227
  format?: QrCodeType | null;
4228
- getMedia?: boolean;
4228
+ getUserMedias?: boolean;
4229
4229
  lightColor?: string | null;
4230
4230
  logo?: string | null;
4231
4231
  logoMargin?: number | null;
@@ -5438,7 +5438,7 @@ export interface GetScanPathParameters {
5438
5438
  scanId: string;
5439
5439
  }
5440
5440
  export interface GetScanQueryStringParameters {
5441
- getMedia?: boolean;
5441
+ getUserMedias?: boolean;
5442
5442
  }
5443
5443
  export interface GetScanResponseBody {
5444
5444
  asset: Asset;
@@ -5533,7 +5533,7 @@ export interface UpdatePrintPageTemplateRequestBody {
5533
5533
  name: string;
5534
5534
  numberOfColumns: number;
5535
5535
  numberOfRows: number;
5536
- orientation: PrintOrientation;
5536
+ orientation?: PrintOrientation | null;
5537
5537
  pageSize: Array<any>;
5538
5538
  printMode?: PrintMode | null;
5539
5539
  printTemplate?: PrintTemplate | null;