@openscreen/internal-sdk 1.9.4 → 1.9.6

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.9.4",
3
+ "version": "1.9.6",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -212,7 +212,8 @@ export declare enum JobType {
212
212
  ACCOUNT_EXPORT = "ACCOUNT_EXPORT",
213
213
  WEB_SESSION_EXPORT = "WEB_SESSION_EXPORT",
214
214
  USER_DB_ENTITIES_GENENERATION = "USER_DB_ENTITIES_GENENERATION",
215
- USER_DB_ENTITIES_EXPORT = "USER_DB_ENTITIES_EXPORT"
215
+ USER_DB_ENTITIES_EXPORT = "USER_DB_ENTITIES_EXPORT",
216
+ UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN = "UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN"
216
217
  }
217
218
  export declare enum Label {
218
219
  NONE = "NONE",
@@ -239,7 +240,8 @@ export declare enum PluginNameTypes {
239
240
  GOOGLE_PLACES = "GOOGLE_PLACES",
240
241
  REHRIG_BARRIE_ADDRESS_DYNAMO_DB = "REHRIG_BARRIE_ADDRESS_DYNAMO_DB",
241
242
  GUND = "GUND",
242
- KLAVIYO = "KLAVIYO"
243
+ KLAVIYO = "KLAVIYO",
244
+ REHRIG_VISION_TRACK = "REHRIG_VISION_TRACK"
243
245
  }
244
246
  export declare enum PluginStatus {
245
247
  ACTIVE = "ACTIVE",
@@ -889,6 +891,7 @@ export interface Asset {
889
891
  name: string;
890
892
  parentAssetId?: string | null;
891
893
  projectId: string;
894
+ qrCodeLinks?: Array<any> | null;
892
895
  scanCount: number;
893
896
  state?: string | null;
894
897
  staticQrCodeCount: number;
@@ -1157,6 +1160,7 @@ export interface AssetHistory {
1157
1160
  name?: string | null;
1158
1161
  parentAssetId?: string | null;
1159
1162
  projectId?: string | null;
1163
+ qrCodeLinks?: Array<any> | null;
1160
1164
  scanCount?: number | null;
1161
1165
  state?: string | null;
1162
1166
  staticQrCodeCount?: number | null;
@@ -2614,6 +2618,7 @@ export interface Project {
2614
2618
  staticQrCodeCount: number;
2615
2619
  status?: ProjectStatus;
2616
2620
  webSessionCount?: number | null;
2621
+ workflowCustomDomain?: string | null;
2617
2622
  }
2618
2623
  export interface ProjectAccount {
2619
2624
  accountId: string;
@@ -3618,6 +3623,7 @@ export interface CreateProjectByAccountIdRequestBody {
3618
3623
  description?: string | null;
3619
3624
  micrositeCustomDomain?: string | null;
3620
3625
  name: string;
3626
+ workflowCustomDomain?: string | null;
3621
3627
  }
3622
3628
  export interface CreateProjectByAccountIdResponseBody {
3623
3629
  accountId: string;
@@ -4410,6 +4416,7 @@ export interface UpdateKlaviyoAccountPluginPathParameters {
4410
4416
  }
4411
4417
  export interface UpdateKlaviyoAccountPluginRequestBody {
4412
4418
  key?: string | null;
4419
+ listId: string;
4413
4420
  }
4414
4421
  export interface UpdateKlaviyoAccountPluginResponseBody {
4415
4422
  accountPlugin: AccountPlugin;
@@ -4962,6 +4969,7 @@ export interface GetQrCodesByAssetIdQueryStringParameters {
4962
4969
  foregroundGradientRotation?: number | null;
4963
4970
  foregroundGradientType?: QrCodeGradientTypes | null;
4964
4971
  format?: QrCodeType | null;
4972
+ includeQrCodeLinks?: boolean;
4965
4973
  lastKey?: string | null;
4966
4974
  lightColor?: string | null;
4967
4975
  limit?: number | null;
@@ -5792,6 +5800,7 @@ export interface GetAssetsByProjectIdQueryStringParameters {
5792
5800
  customAttributeName?: string | null;
5793
5801
  customAttributeUpperValue?: string | null;
5794
5802
  customAttributeValue?: string | null;
5803
+ includeQrCodeLinks?: boolean;
5795
5804
  includeThumbnails?: boolean;
5796
5805
  lastKey?: string | null;
5797
5806
  limit?: number | null;
@@ -6053,6 +6062,7 @@ export interface UpdateProjectByProjectIdPathParameters {
6053
6062
  }
6054
6063
  export interface UpdateProjectByProjectIdRequestBody {
6055
6064
  companyName?: string | null;
6065
+ customDomain?: string | null;
6056
6066
  description?: string | null;
6057
6067
  name?: string | null;
6058
6068
  status?: ProjectStatus | null;
@@ -6187,6 +6197,7 @@ export interface UpdateQrCodePathParameters {
6187
6197
  qrCodeId: string;
6188
6198
  }
6189
6199
  export interface UpdateQrCodeRequestBody {
6200
+ customDomain?: string | null;
6190
6201
  dynamicRedirectType?: QrCodeDynamicRedirectType | null;
6191
6202
  imageOptions?: QrCodeImageOptions | null;
6192
6203
  intent?: string | null;