@openscreen/internal-sdk 1.8.92 → 1.8.93

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.8.92",
3
+ "version": "1.8.93",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -1650,6 +1650,15 @@ export interface CustomAttribute {
1650
1650
  mappedCAName?: string | null;
1651
1651
  modified?: string | Date | number | null;
1652
1652
  }
1653
+ export interface DomainMappedQRLocatorKey {
1654
+ accountId: string;
1655
+ created?: string | Date | number | null;
1656
+ customDomain: string;
1657
+ locatorKey: string;
1658
+ modified?: string | Date | number | null;
1659
+ qrCodeId: string;
1660
+ serializedLocatorKey: string;
1661
+ }
1653
1662
  export interface EmailInvitation {
1654
1663
  accountId: string;
1655
1664
  created?: string | Date | number | null;
@@ -1973,6 +1982,7 @@ export interface NestedQrCode {
1973
1982
  intentType?: QrCodeIntentType;
1974
1983
  isAskingForGPS?: boolean | null;
1975
1984
  locatorKeyType?: QrCodeLocatorKeyType;
1985
+ serializedLocatorKey?: string | null;
1976
1986
  status?: QrCodeStatus | null;
1977
1987
  stylingTemplateId?: string | null;
1978
1988
  validFrom?: string | Date | number | null;
@@ -2669,6 +2679,7 @@ export interface QrCode {
2669
2679
  qrCodeId: string;
2670
2680
  qrDomain?: string | null;
2671
2681
  scanCount: number;
2682
+ serializedLocatorKey?: string | null;
2672
2683
  status?: QrCodeStatus;
2673
2684
  stylingTemplateId?: string | null;
2674
2685
  validFrom?: string | Date | number | null;
@@ -2891,6 +2902,7 @@ export interface ResponseQrCode {
2891
2902
  projectId?: string | null;
2892
2903
  qrCodeId: string;
2893
2904
  scanCount: number;
2905
+ serializedLocatorKey?: string | null;
2894
2906
  status?: QrCodeStatus;
2895
2907
  stylingTemplateId?: string | null;
2896
2908
  validFrom?: string | Date | number | null;
@@ -4693,6 +4705,7 @@ export interface CreateQrCodeByAssetIdRequestBody extends NestedQrCode {
4693
4705
  isAskingForGPS?: boolean | null;
4694
4706
  locatorKeyType?: QrCodeLocatorKeyType;
4695
4707
  qrCodes?: NestedQrCode[];
4708
+ serializedLocatorKey?: string | null;
4696
4709
  status?: QrCodeStatus | null;
4697
4710
  stylingTemplateId?: string | null;
4698
4711
  validFrom?: string | Date | number | null;
@@ -6035,6 +6048,7 @@ export interface GetQrCodeResponseBody extends ResponseQrCode {
6035
6048
  projectId?: string | null;
6036
6049
  qrCodeId: string;
6037
6050
  scanCount: number;
6051
+ serializedLocatorKey?: string | null;
6038
6052
  status?: QrCodeStatus;
6039
6053
  stylingTemplateId?: string | null;
6040
6054
  validFrom?: string | Date | number | null;