@openscreen/internal-sdk 1.9.5 → 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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/typings/sdk.d.ts +12 -2
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
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;
|
|
@@ -4963,6 +4969,7 @@ export interface GetQrCodesByAssetIdQueryStringParameters {
|
|
|
4963
4969
|
foregroundGradientRotation?: number | null;
|
|
4964
4970
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
4965
4971
|
format?: QrCodeType | null;
|
|
4972
|
+
includeQrCodeLinks?: boolean;
|
|
4966
4973
|
lastKey?: string | null;
|
|
4967
4974
|
lightColor?: string | null;
|
|
4968
4975
|
limit?: number | null;
|
|
@@ -5793,6 +5800,7 @@ export interface GetAssetsByProjectIdQueryStringParameters {
|
|
|
5793
5800
|
customAttributeName?: string | null;
|
|
5794
5801
|
customAttributeUpperValue?: string | null;
|
|
5795
5802
|
customAttributeValue?: string | null;
|
|
5803
|
+
includeQrCodeLinks?: boolean;
|
|
5796
5804
|
includeThumbnails?: boolean;
|
|
5797
5805
|
lastKey?: string | null;
|
|
5798
5806
|
limit?: number | null;
|
|
@@ -6054,6 +6062,7 @@ export interface UpdateProjectByProjectIdPathParameters {
|
|
|
6054
6062
|
}
|
|
6055
6063
|
export interface UpdateProjectByProjectIdRequestBody {
|
|
6056
6064
|
companyName?: string | null;
|
|
6065
|
+
customDomain?: string | null;
|
|
6057
6066
|
description?: string | null;
|
|
6058
6067
|
name?: string | null;
|
|
6059
6068
|
status?: ProjectStatus | null;
|
|
@@ -6188,6 +6197,7 @@ export interface UpdateQrCodePathParameters {
|
|
|
6188
6197
|
qrCodeId: string;
|
|
6189
6198
|
}
|
|
6190
6199
|
export interface UpdateQrCodeRequestBody {
|
|
6200
|
+
customDomain?: string | null;
|
|
6191
6201
|
dynamicRedirectType?: QrCodeDynamicRedirectType | null;
|
|
6192
6202
|
imageOptions?: QrCodeImageOptions | null;
|
|
6193
6203
|
intent?: string | null;
|