@openscreen/internal-sdk 1.7.17 → 1.7.19

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.17",
3
+ "version": "1.7.19",
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;
@@ -2383,6 +2383,7 @@ export interface PrintStickerTemplate {
2383
2383
  serializedFabric: NestedKeyValueObject;
2384
2384
  stickerShape?: StickerShape;
2385
2385
  stickerSize?: Array<any>;
2386
+ unit?: PrintUnit;
2386
2387
  }
2387
2388
  export interface PrintStickerTemplateByName {
2388
2389
  _prefix?: string;
@@ -2670,7 +2671,7 @@ export interface ResponseAsset {
2670
2671
  state?: string | null;
2671
2672
  staticQrCodeCount: number;
2672
2673
  thumbnails?: Array<any> | null;
2673
- userMedia?: UserMedia[] | null;
2674
+ userMedias?: UserMedia[] | null;
2674
2675
  }
2675
2676
  export interface ResponseBodyUser {
2676
2677
  created: string | Date | number;
@@ -4225,7 +4226,7 @@ export interface GetAssetQueryStringParameters {
4225
4226
  foregroundGradientRotation?: number | null;
4226
4227
  foregroundGradientType?: QrCodeGradientTypes | null;
4227
4228
  format?: QrCodeType | null;
4228
- getMedia?: boolean;
4229
+ getUserMedias?: boolean;
4229
4230
  lightColor?: string | null;
4230
4231
  logo?: string | null;
4231
4232
  logoMargin?: number | null;
@@ -5438,7 +5439,7 @@ export interface GetScanPathParameters {
5438
5439
  scanId: string;
5439
5440
  }
5440
5441
  export interface GetScanQueryStringParameters {
5441
- getMedia?: boolean;
5442
+ getUserMedias?: boolean;
5442
5443
  }
5443
5444
  export interface GetScanResponseBody {
5444
5445
  asset: Asset;
@@ -5558,6 +5559,7 @@ export interface UpdatePrintStickerTemplateRequestBody {
5558
5559
  serializedFabric: NestedKeyValueObject;
5559
5560
  stickerShape: StickerShape;
5560
5561
  stickerSize: Array<any>;
5562
+ unit: PrintUnit;
5561
5563
  }
5562
5564
  export interface UpdatePrintStickerTemplateResponseBody {
5563
5565
  printStickerTemplate: PrintStickerTemplate;