@openscreen/internal-sdk 1.7.71 → 1.8.0
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 +534 -58
- package/typings/sdk.d.ts.map +1 -1
package/typings/sdk.d.ts
CHANGED
|
@@ -188,7 +188,8 @@ export declare enum JobType {
|
|
|
188
188
|
ASSET_EXPORT = "ASSET_EXPORT",
|
|
189
189
|
CONTACT_EXPORT = "CONTACT_EXPORT",
|
|
190
190
|
TEMPLATED_PRINT = "TEMPLATED_PRINT",
|
|
191
|
-
CLONE_MICROSITE = "CLONE_MICROSITE"
|
|
191
|
+
CLONE_MICROSITE = "CLONE_MICROSITE",
|
|
192
|
+
QRCODE_SCANS_EXPORT = "QRCODE_SCANS_EXPORT"
|
|
192
193
|
}
|
|
193
194
|
export declare enum Label {
|
|
194
195
|
NONE = "NONE",
|
|
@@ -332,7 +333,8 @@ export declare enum QrCodeSortingTypes {
|
|
|
332
333
|
export declare enum QrCodeStatus {
|
|
333
334
|
ACTIVE = "ACTIVE",
|
|
334
335
|
INACTIVE = "INACTIVE",
|
|
335
|
-
SUSPENDED = "SUSPENDED"
|
|
336
|
+
SUSPENDED = "SUSPENDED",
|
|
337
|
+
UNSAFE = "UNSAFE"
|
|
336
338
|
}
|
|
337
339
|
export declare enum QrCodeType {
|
|
338
340
|
PNG = "PNG",
|
|
@@ -392,12 +394,29 @@ export declare enum UserMediaFileTypes {
|
|
|
392
394
|
png = "png",
|
|
393
395
|
mov = "mov",
|
|
394
396
|
mp4 = "mp4",
|
|
395
|
-
jpeg = "jpeg"
|
|
397
|
+
jpeg = "jpeg",
|
|
398
|
+
ttf = "ttf",
|
|
399
|
+
otf = "otf",
|
|
400
|
+
woff = "woff",
|
|
401
|
+
woff2 = "woff2",
|
|
402
|
+
csv = "csv",
|
|
403
|
+
json = "json",
|
|
404
|
+
gif = "gif",
|
|
405
|
+
bmp = "bmp",
|
|
406
|
+
webp = "webp",
|
|
407
|
+
svg = "svg",
|
|
408
|
+
tiff = "tiff",
|
|
409
|
+
webm = "webm",
|
|
410
|
+
ogg = "ogg",
|
|
411
|
+
avi = "avi",
|
|
412
|
+
mpeg = "mpeg",
|
|
413
|
+
css = "css"
|
|
396
414
|
}
|
|
397
415
|
export declare enum UserMediaSortingTypes {
|
|
398
416
|
MODIFIED = "MODIFIED",
|
|
399
417
|
NAME = "NAME",
|
|
400
|
-
FILE_TYPE = "FILE_TYPE"
|
|
418
|
+
FILE_TYPE = "FILE_TYPE",
|
|
419
|
+
CATEGORY = "CATEGORY"
|
|
401
420
|
}
|
|
402
421
|
export declare enum UserSettingsDomain {
|
|
403
422
|
DASHBOARD = "DASHBOARD"
|
|
@@ -592,7 +611,7 @@ export interface AccountInvitation {
|
|
|
592
611
|
modified?: string | Date | number | null;
|
|
593
612
|
sendersFirstName: string;
|
|
594
613
|
sendersLastName: string;
|
|
595
|
-
sendersUserId
|
|
614
|
+
sendersUserId?: string | null;
|
|
596
615
|
userRole: AccountUserRole;
|
|
597
616
|
}
|
|
598
617
|
export interface AccountInvitationRequestBody {
|
|
@@ -793,7 +812,8 @@ export interface Asset {
|
|
|
793
812
|
state?: string | null;
|
|
794
813
|
staticQrCodeCount: number;
|
|
795
814
|
thumbnails?: Array<any> | null;
|
|
796
|
-
|
|
815
|
+
userMedias?: UserMedia[] | null;
|
|
816
|
+
willCreateSession?: boolean | null;
|
|
797
817
|
}
|
|
798
818
|
export interface AssetByAssetTypeNameAssetName {
|
|
799
819
|
_prefix?: string;
|
|
@@ -995,6 +1015,7 @@ export interface AssetFieldsObject {
|
|
|
995
1015
|
name?: string | null;
|
|
996
1016
|
qrCodes?: NestedQrCode[] | null;
|
|
997
1017
|
state?: string | null;
|
|
1018
|
+
willCreateSession?: boolean | null;
|
|
998
1019
|
}
|
|
999
1020
|
export interface AssetHistory {
|
|
1000
1021
|
_timestamp: string | Date | number;
|
|
@@ -1029,7 +1050,8 @@ export interface AssetHistory {
|
|
|
1029
1050
|
state?: string | null;
|
|
1030
1051
|
staticQrCodeCount?: number | null;
|
|
1031
1052
|
thumbnails?: Array<any> | null;
|
|
1032
|
-
|
|
1053
|
+
userMedias?: UserMedia[] | null;
|
|
1054
|
+
willCreateSession?: boolean | null;
|
|
1033
1055
|
}
|
|
1034
1056
|
export interface AssetType {
|
|
1035
1057
|
accountId: string;
|
|
@@ -1081,6 +1103,84 @@ export interface AssetTypeByStatusTimestamp {
|
|
|
1081
1103
|
state: string;
|
|
1082
1104
|
timestamp: string | Date | number;
|
|
1083
1105
|
}
|
|
1106
|
+
export interface BadUrlAttempt {
|
|
1107
|
+
accountId: string;
|
|
1108
|
+
appAccountId?: string | null;
|
|
1109
|
+
assetContent: NestedKeyValueObject;
|
|
1110
|
+
assetId: string;
|
|
1111
|
+
badUrlAttemptId?: string | null;
|
|
1112
|
+
created?: string | Date | number | null;
|
|
1113
|
+
modified?: string | Date | number | null;
|
|
1114
|
+
projectId?: string | null;
|
|
1115
|
+
qrCodeId: string;
|
|
1116
|
+
timestamp: string | Date | number;
|
|
1117
|
+
url: string;
|
|
1118
|
+
}
|
|
1119
|
+
export interface BadUrlAttemptByTimestamp {
|
|
1120
|
+
_GLOBAL: string;
|
|
1121
|
+
_prefix?: string;
|
|
1122
|
+
accountId: string;
|
|
1123
|
+
appAccountId?: string | null;
|
|
1124
|
+
badUrlAttemptId?: string;
|
|
1125
|
+
created?: string | Date | number | null;
|
|
1126
|
+
modified?: string | Date | number | null;
|
|
1127
|
+
projectId?: string | null;
|
|
1128
|
+
qrCodeId?: string | null;
|
|
1129
|
+
timestamp: string | Date | number;
|
|
1130
|
+
url: string;
|
|
1131
|
+
}
|
|
1132
|
+
export interface BadUrlAttemptByUrl {
|
|
1133
|
+
_GLOBAL: string;
|
|
1134
|
+
_prefix?: string;
|
|
1135
|
+
accountId: string;
|
|
1136
|
+
appAccountId?: string | null;
|
|
1137
|
+
badUrlAttemptId?: string;
|
|
1138
|
+
created?: string | Date | number | null;
|
|
1139
|
+
modified?: string | Date | number | null;
|
|
1140
|
+
projectId?: string | null;
|
|
1141
|
+
qrCodeId?: string | null;
|
|
1142
|
+
timestamp: string | Date | number;
|
|
1143
|
+
url: string;
|
|
1144
|
+
}
|
|
1145
|
+
export interface BadUrlUsage {
|
|
1146
|
+
created?: string | Date | number | null;
|
|
1147
|
+
modified?: string | Date | number | null;
|
|
1148
|
+
url: string;
|
|
1149
|
+
usageCount: number;
|
|
1150
|
+
}
|
|
1151
|
+
export interface BadUrlUsageByCreated {
|
|
1152
|
+
_GLOBAL: string;
|
|
1153
|
+
_created: string | Date | number;
|
|
1154
|
+
_prefix?: string;
|
|
1155
|
+
created?: string | Date | number | null;
|
|
1156
|
+
modified?: string | Date | number | null;
|
|
1157
|
+
url: string;
|
|
1158
|
+
}
|
|
1159
|
+
export interface BadUrlUsageByModified {
|
|
1160
|
+
_GLOBAL: string;
|
|
1161
|
+
_modified: string | Date | number;
|
|
1162
|
+
_prefix?: string;
|
|
1163
|
+
created?: string | Date | number | null;
|
|
1164
|
+
modified?: string | Date | number | null;
|
|
1165
|
+
url: string;
|
|
1166
|
+
}
|
|
1167
|
+
export interface BadUrlUsageByUrl {
|
|
1168
|
+
_GLOBAL: string;
|
|
1169
|
+
_modified: string | Date | number;
|
|
1170
|
+
_prefix?: string;
|
|
1171
|
+
created?: string | Date | number | null;
|
|
1172
|
+
modified?: string | Date | number | null;
|
|
1173
|
+
url: string;
|
|
1174
|
+
}
|
|
1175
|
+
export interface BadUrlUsageByUsageCount {
|
|
1176
|
+
_GLOBAL: string;
|
|
1177
|
+
_modified: string | Date | number;
|
|
1178
|
+
_prefix?: string;
|
|
1179
|
+
created?: string | Date | number | null;
|
|
1180
|
+
modified?: string | Date | number | null;
|
|
1181
|
+
url: string;
|
|
1182
|
+
usageCount: number;
|
|
1183
|
+
}
|
|
1084
1184
|
export interface Batch {
|
|
1085
1185
|
accountId: string;
|
|
1086
1186
|
appAccountId?: string | null;
|
|
@@ -1365,11 +1465,11 @@ export interface ContactInvite {
|
|
|
1365
1465
|
userRole?: AccountUserRole | null;
|
|
1366
1466
|
}
|
|
1367
1467
|
export interface ContactMailingAddress {
|
|
1368
|
-
address
|
|
1369
|
-
city
|
|
1370
|
-
country
|
|
1371
|
-
postalOrZip
|
|
1372
|
-
provinceOrState
|
|
1468
|
+
address?: string | null;
|
|
1469
|
+
city?: string | null;
|
|
1470
|
+
country?: string | null;
|
|
1471
|
+
postalOrZip?: string | null;
|
|
1472
|
+
provinceOrState?: string | null;
|
|
1373
1473
|
}
|
|
1374
1474
|
export interface ContactProjectCustomConsent {
|
|
1375
1475
|
consentStatus: ConsentStatus;
|
|
@@ -1744,6 +1844,7 @@ export interface NestedAsset {
|
|
|
1744
1844
|
name: string;
|
|
1745
1845
|
qrCodes?: NestedQrCode[] | null;
|
|
1746
1846
|
state?: string | null;
|
|
1847
|
+
willCreateSession?: boolean | null;
|
|
1747
1848
|
}
|
|
1748
1849
|
export interface NestedContact {
|
|
1749
1850
|
asset?: NestedAsset | null;
|
|
@@ -2167,7 +2268,7 @@ export interface PrintJob {
|
|
|
2167
2268
|
assetIds?: Array<any> | null;
|
|
2168
2269
|
callbackUrl?: string | null;
|
|
2169
2270
|
created?: string | Date | number | null;
|
|
2170
|
-
createdBy
|
|
2271
|
+
createdBy?: string | null;
|
|
2171
2272
|
errorMessage?: NestedKeyValueObject | null;
|
|
2172
2273
|
fileExpiry?: string | Date | number | null;
|
|
2173
2274
|
imageOptions?: QrCodeImageOptions | null;
|
|
@@ -2194,6 +2295,8 @@ export interface PrintJob {
|
|
|
2194
2295
|
export interface PrintOptions {
|
|
2195
2296
|
bleed?: boolean | null;
|
|
2196
2297
|
bottomCaptionLabel?: Label;
|
|
2298
|
+
bottomCaptionLabelHorizontalOffset?: number | null;
|
|
2299
|
+
bottomCaptionLabelVerticalOffset?: number | null;
|
|
2197
2300
|
bottomLabel?: Label;
|
|
2198
2301
|
customBottomCaptionLabel?: string | null;
|
|
2199
2302
|
customBottomLabel?: string | null;
|
|
@@ -2229,8 +2332,11 @@ export interface PrintOptions {
|
|
|
2229
2332
|
stickerShape?: StickerShape | null;
|
|
2230
2333
|
stickerSize?: Array<any> | null;
|
|
2231
2334
|
topCaptionLabel?: Label | null;
|
|
2335
|
+
topCaptionLabelHorizontalOffset?: number | null;
|
|
2336
|
+
topCaptionLabelVerticalOffset?: number | null;
|
|
2232
2337
|
topLabel?: Label;
|
|
2233
2338
|
topLabelMaxLength?: number | null;
|
|
2339
|
+
topMarginBackground?: string | null;
|
|
2234
2340
|
unit?: PrintUnit;
|
|
2235
2341
|
verticalMargin?: number | null;
|
|
2236
2342
|
verticalOffset?: number | null;
|
|
@@ -2242,22 +2348,23 @@ export interface PrintPageTemplate {
|
|
|
2242
2348
|
created?: string | Date | number | null;
|
|
2243
2349
|
createdBy: string;
|
|
2244
2350
|
format?: PrintFormat | null;
|
|
2245
|
-
horizontalMargin
|
|
2246
|
-
horizontalPadding
|
|
2351
|
+
horizontalMargin: number;
|
|
2352
|
+
horizontalPadding: number;
|
|
2353
|
+
isDeleted?: boolean | null;
|
|
2247
2354
|
modified?: string | Date | number | null;
|
|
2248
|
-
name
|
|
2249
|
-
numberOfColumns
|
|
2250
|
-
numberOfRows
|
|
2251
|
-
orientation?: PrintOrientation;
|
|
2252
|
-
pageSize
|
|
2253
|
-
printMode?: PrintMode;
|
|
2355
|
+
name: string;
|
|
2356
|
+
numberOfColumns: number;
|
|
2357
|
+
numberOfRows: number;
|
|
2358
|
+
orientation?: PrintOrientation | null;
|
|
2359
|
+
pageSize: Array<any>;
|
|
2360
|
+
printMode?: PrintMode | null;
|
|
2254
2361
|
printPageTemplateId: string;
|
|
2255
2362
|
printTemplate?: PrintTemplate | null;
|
|
2256
|
-
stickerShape
|
|
2257
|
-
stickerSize
|
|
2363
|
+
stickerShape: StickerShape;
|
|
2364
|
+
stickerSize: Array<any>;
|
|
2258
2365
|
unit?: PrintUnit;
|
|
2259
|
-
verticalMargin
|
|
2260
|
-
verticalPadding
|
|
2366
|
+
verticalMargin: number;
|
|
2367
|
+
verticalPadding: number;
|
|
2261
2368
|
}
|
|
2262
2369
|
export interface PrintPageTemplateByName {
|
|
2263
2370
|
_prefix?: string;
|
|
@@ -2284,13 +2391,16 @@ export interface PrintStickerTemplate {
|
|
|
2284
2391
|
bleed?: boolean | null;
|
|
2285
2392
|
created?: string | Date | number | null;
|
|
2286
2393
|
createdBy: string;
|
|
2394
|
+
isDeleted?: boolean | null;
|
|
2395
|
+
lastUsedAt?: string | Date | number | null;
|
|
2287
2396
|
modified?: string | Date | number | null;
|
|
2288
2397
|
name: string;
|
|
2289
2398
|
previewImage?: string | null;
|
|
2290
2399
|
printStickerTemplateId: string;
|
|
2291
2400
|
serializedFabric: NestedKeyValueObject;
|
|
2292
|
-
stickerShape?: StickerShape
|
|
2293
|
-
stickerSize?: Array<any
|
|
2401
|
+
stickerShape?: StickerShape;
|
|
2402
|
+
stickerSize?: Array<any>;
|
|
2403
|
+
unit?: PrintUnit;
|
|
2294
2404
|
}
|
|
2295
2405
|
export interface PrintStickerTemplateByName {
|
|
2296
2406
|
_prefix?: string;
|
|
@@ -2418,6 +2528,19 @@ export interface QrCode {
|
|
|
2418
2528
|
validFrom?: string | Date | number | null;
|
|
2419
2529
|
validTo?: string | Date | number | null;
|
|
2420
2530
|
}
|
|
2531
|
+
export interface QrCodeByIntent {
|
|
2532
|
+
_prefix?: string;
|
|
2533
|
+
accountId: string;
|
|
2534
|
+
appAccountId?: string | null;
|
|
2535
|
+
assetId: string;
|
|
2536
|
+
batchId?: string | null;
|
|
2537
|
+
created?: string | Date | number | null;
|
|
2538
|
+
intent: string;
|
|
2539
|
+
modified?: string | Date | number | null;
|
|
2540
|
+
projectId: string;
|
|
2541
|
+
qrCodeId: string;
|
|
2542
|
+
timestamp: string | Date | number;
|
|
2543
|
+
}
|
|
2421
2544
|
export interface QrCodeImage {
|
|
2422
2545
|
data: string;
|
|
2423
2546
|
options?: QrCodeImageOptions;
|
|
@@ -2532,6 +2655,18 @@ export interface RequestApp {
|
|
|
2532
2655
|
uiUrl: string;
|
|
2533
2656
|
website?: string | null;
|
|
2534
2657
|
}
|
|
2658
|
+
export interface RequestSessionAction {
|
|
2659
|
+
actionId?: string | null;
|
|
2660
|
+
actionType?: string | null;
|
|
2661
|
+
category?: string | null;
|
|
2662
|
+
created?: string | Date | number | null;
|
|
2663
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2664
|
+
modified?: string | Date | number | null;
|
|
2665
|
+
name?: string | null;
|
|
2666
|
+
tags?: Array<any> | null;
|
|
2667
|
+
timestamp?: string | Date | number | null;
|
|
2668
|
+
willUpdateSession?: boolean;
|
|
2669
|
+
}
|
|
2535
2670
|
export interface ResponseAsset {
|
|
2536
2671
|
appAccountId?: string | null;
|
|
2537
2672
|
appId?: string | null;
|
|
@@ -2565,7 +2700,8 @@ export interface ResponseAsset {
|
|
|
2565
2700
|
state?: string | null;
|
|
2566
2701
|
staticQrCodeCount: number;
|
|
2567
2702
|
thumbnails?: Array<any> | null;
|
|
2568
|
-
|
|
2703
|
+
userMedias?: UserMedia[] | null;
|
|
2704
|
+
willCreateSession?: boolean | null;
|
|
2569
2705
|
}
|
|
2570
2706
|
export interface ResponseBodyUser {
|
|
2571
2707
|
created: string | Date | number;
|
|
@@ -2601,6 +2737,34 @@ export interface ResponseQrCode {
|
|
|
2601
2737
|
validFrom?: string | Date | number | null;
|
|
2602
2738
|
validTo?: string | Date | number | null;
|
|
2603
2739
|
}
|
|
2740
|
+
export interface ResponseSession {
|
|
2741
|
+
accountId?: string | null;
|
|
2742
|
+
appAccountId?: string | null;
|
|
2743
|
+
assetId?: string | null;
|
|
2744
|
+
category?: string | null;
|
|
2745
|
+
created?: string | Date | number | null;
|
|
2746
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2747
|
+
lastActionId?: string | Date | number | null;
|
|
2748
|
+
lastSessionAction?: SessionAction | null;
|
|
2749
|
+
modified?: string | Date | number | null;
|
|
2750
|
+
newTags?: Array<any> | null;
|
|
2751
|
+
projectId?: string | null;
|
|
2752
|
+
qrCodeId?: string | null;
|
|
2753
|
+
sessionActions?: SessionAction[] | null;
|
|
2754
|
+
sessionId?: string | null;
|
|
2755
|
+
tagCounter?: number | null;
|
|
2756
|
+
tags?: Array<any> | null;
|
|
2757
|
+
}
|
|
2758
|
+
export interface S3Image {
|
|
2759
|
+
accountId: string;
|
|
2760
|
+
appAccountId?: string | null;
|
|
2761
|
+
created?: string | Date | number | null;
|
|
2762
|
+
imageId: string;
|
|
2763
|
+
internalUrl: string;
|
|
2764
|
+
modified?: string | Date | number | null;
|
|
2765
|
+
s3Key: string;
|
|
2766
|
+
url: string;
|
|
2767
|
+
}
|
|
2604
2768
|
export interface Scan {
|
|
2605
2769
|
assetId: string;
|
|
2606
2770
|
assetName: string;
|
|
@@ -2650,6 +2814,76 @@ export interface ScanContact {
|
|
|
2650
2814
|
projectId: string;
|
|
2651
2815
|
scanId: string;
|
|
2652
2816
|
}
|
|
2817
|
+
export interface SessionAction {
|
|
2818
|
+
accountId: string;
|
|
2819
|
+
actionId: string;
|
|
2820
|
+
actionType?: string | null;
|
|
2821
|
+
appAccountId?: string | null;
|
|
2822
|
+
assetId: string;
|
|
2823
|
+
category?: string | null;
|
|
2824
|
+
created?: string | Date | number | null;
|
|
2825
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2826
|
+
modified?: string | Date | number | null;
|
|
2827
|
+
name?: string | null;
|
|
2828
|
+
projectId: string;
|
|
2829
|
+
qrCodeId: string;
|
|
2830
|
+
sessionId: string;
|
|
2831
|
+
tags?: Array<any> | null;
|
|
2832
|
+
}
|
|
2833
|
+
export interface SessionActionByActionType {
|
|
2834
|
+
_prefix?: string;
|
|
2835
|
+
accountId: string;
|
|
2836
|
+
actionId: string;
|
|
2837
|
+
actionType?: string;
|
|
2838
|
+
appAccountId?: string | null;
|
|
2839
|
+
assetId?: string | null;
|
|
2840
|
+
created?: string | Date | number | null;
|
|
2841
|
+
modified?: string | Date | number | null;
|
|
2842
|
+
projectId: string;
|
|
2843
|
+
qrCodeId?: string | null;
|
|
2844
|
+
sessionId: string;
|
|
2845
|
+
timestamp: string | Date | number;
|
|
2846
|
+
}
|
|
2847
|
+
export interface SessionActionByCategory {
|
|
2848
|
+
_prefix?: string;
|
|
2849
|
+
accountId: string;
|
|
2850
|
+
actionId: string;
|
|
2851
|
+
appAccountId?: string | null;
|
|
2852
|
+
assetId?: string | null;
|
|
2853
|
+
category?: string;
|
|
2854
|
+
created?: string | Date | number | null;
|
|
2855
|
+
modified?: string | Date | number | null;
|
|
2856
|
+
projectId: string;
|
|
2857
|
+
qrCodeId?: string | null;
|
|
2858
|
+
sessionId: string;
|
|
2859
|
+
timestamp: string | Date | number;
|
|
2860
|
+
}
|
|
2861
|
+
export interface SessionActionByName {
|
|
2862
|
+
_prefix?: string;
|
|
2863
|
+
accountId: string;
|
|
2864
|
+
actionId: string;
|
|
2865
|
+
appAccountId?: string | null;
|
|
2866
|
+
assetId?: string | null;
|
|
2867
|
+
created?: string | Date | number | null;
|
|
2868
|
+
modified?: string | Date | number | null;
|
|
2869
|
+
name?: string;
|
|
2870
|
+
projectId: string;
|
|
2871
|
+
qrCodeId?: string | null;
|
|
2872
|
+
sessionId: string;
|
|
2873
|
+
timestamp: string | Date | number;
|
|
2874
|
+
}
|
|
2875
|
+
export interface SessionActionByTimestamp {
|
|
2876
|
+
_prefix?: string;
|
|
2877
|
+
accountId: string;
|
|
2878
|
+
appAccountId?: string | null;
|
|
2879
|
+
assetId?: string | null;
|
|
2880
|
+
created?: string | Date | number | null;
|
|
2881
|
+
modified?: string | Date | number | null;
|
|
2882
|
+
projectId: string;
|
|
2883
|
+
qrCodeId?: string | null;
|
|
2884
|
+
sessionId: string;
|
|
2885
|
+
timestamp: string | Date | number;
|
|
2886
|
+
}
|
|
2653
2887
|
export interface Sms {
|
|
2654
2888
|
body: string;
|
|
2655
2889
|
contactId: string;
|
|
@@ -2713,8 +2947,10 @@ export interface TagType {
|
|
|
2713
2947
|
commonProperties?: NestedKeyValueObject | null;
|
|
2714
2948
|
created?: string | Date | number | null;
|
|
2715
2949
|
imageOptions?: QrCodeImageOptions | null;
|
|
2950
|
+
incrementor?: Array<any>;
|
|
2716
2951
|
intent: string;
|
|
2717
2952
|
isAskingForGPS?: boolean;
|
|
2953
|
+
isUsingPrefixValues?: boolean;
|
|
2718
2954
|
leadingCharacter: string;
|
|
2719
2955
|
modified?: string | Date | number | null;
|
|
2720
2956
|
name: string;
|
|
@@ -2757,6 +2993,49 @@ export interface TemporaryCode {
|
|
|
2757
2993
|
phoneNumber?: string | null;
|
|
2758
2994
|
status?: string;
|
|
2759
2995
|
}
|
|
2996
|
+
export interface URLSafety {
|
|
2997
|
+
created?: string | Date | number | null;
|
|
2998
|
+
expiresAt?: string | Date | number | null;
|
|
2999
|
+
isBlacklisted?: boolean;
|
|
3000
|
+
isThreat?: boolean;
|
|
3001
|
+
modified?: string | Date | number | null;
|
|
3002
|
+
threatTypes?: Array<any> | null;
|
|
3003
|
+
timesChecked: number;
|
|
3004
|
+
url: string;
|
|
3005
|
+
}
|
|
3006
|
+
export interface URLSafetyByCreated {
|
|
3007
|
+
_GLOBAL: string;
|
|
3008
|
+
_created: string | Date | number;
|
|
3009
|
+
_prefix?: string;
|
|
3010
|
+
created?: string | Date | number | null;
|
|
3011
|
+
modified?: string | Date | number | null;
|
|
3012
|
+
url: string;
|
|
3013
|
+
}
|
|
3014
|
+
export interface URLSafetyByModified {
|
|
3015
|
+
_GLOBAL: string;
|
|
3016
|
+
_modified: string | Date | number;
|
|
3017
|
+
_prefix?: string;
|
|
3018
|
+
created?: string | Date | number | null;
|
|
3019
|
+
modified?: string | Date | number | null;
|
|
3020
|
+
url: string;
|
|
3021
|
+
}
|
|
3022
|
+
export interface URLSafetyByTimesChecked {
|
|
3023
|
+
_GLOBAL: string;
|
|
3024
|
+
_modified: string | Date | number;
|
|
3025
|
+
_prefix?: string;
|
|
3026
|
+
created?: string | Date | number | null;
|
|
3027
|
+
modified?: string | Date | number | null;
|
|
3028
|
+
timesChecked: number;
|
|
3029
|
+
url: string;
|
|
3030
|
+
}
|
|
3031
|
+
export interface URLSafetyByUrl {
|
|
3032
|
+
_GLOBAL: string;
|
|
3033
|
+
_modified: string | Date | number;
|
|
3034
|
+
_prefix?: string;
|
|
3035
|
+
created?: string | Date | number | null;
|
|
3036
|
+
modified?: string | Date | number | null;
|
|
3037
|
+
url: string;
|
|
3038
|
+
}
|
|
2760
3039
|
export interface User {
|
|
2761
3040
|
created?: string | Date | number | null;
|
|
2762
3041
|
email: string;
|
|
@@ -2786,6 +3065,7 @@ export interface UserMedia {
|
|
|
2786
3065
|
accountId: string;
|
|
2787
3066
|
appAccountId?: string | null;
|
|
2788
3067
|
assetId?: string | null;
|
|
3068
|
+
category?: string | null;
|
|
2789
3069
|
containsVirus?: boolean | null;
|
|
2790
3070
|
created?: string | Date | number | null;
|
|
2791
3071
|
expiresAt?: string | Date | number | null;
|
|
@@ -2793,7 +3073,7 @@ export interface UserMedia {
|
|
|
2793
3073
|
lastScannedAt?: string | Date | number | null;
|
|
2794
3074
|
mediaId: string;
|
|
2795
3075
|
modified?: string | Date | number | null;
|
|
2796
|
-
name
|
|
3076
|
+
name?: string | null;
|
|
2797
3077
|
projectId?: string | null;
|
|
2798
3078
|
scanId?: string | null;
|
|
2799
3079
|
size?: number | null;
|
|
@@ -2877,6 +3157,59 @@ export interface UserSettings {
|
|
|
2877
3157
|
path: UserSettingsDomain;
|
|
2878
3158
|
userId: string;
|
|
2879
3159
|
}
|
|
3160
|
+
export interface WebSession {
|
|
3161
|
+
accountId: string;
|
|
3162
|
+
appAccountId?: string | null;
|
|
3163
|
+
assetId: string;
|
|
3164
|
+
category?: string | null;
|
|
3165
|
+
created?: string | Date | number | null;
|
|
3166
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
3167
|
+
lastActionId?: string | Date | number | null;
|
|
3168
|
+
modified?: string | Date | number | null;
|
|
3169
|
+
newTags?: Array<any> | null;
|
|
3170
|
+
projectId: string;
|
|
3171
|
+
qrCodeId: string;
|
|
3172
|
+
sessionId: string;
|
|
3173
|
+
tagCounter: number;
|
|
3174
|
+
tags?: Array<any> | null;
|
|
3175
|
+
}
|
|
3176
|
+
export interface WebSessionByCategory {
|
|
3177
|
+
_prefix?: string;
|
|
3178
|
+
accountId: string;
|
|
3179
|
+
appAccountId?: string | null;
|
|
3180
|
+
assetId?: string | null;
|
|
3181
|
+
category?: string;
|
|
3182
|
+
created?: string | Date | number | null;
|
|
3183
|
+
modified?: string | Date | number | null;
|
|
3184
|
+
projectId: string;
|
|
3185
|
+
qrCodeId?: string | null;
|
|
3186
|
+
sessionId: string;
|
|
3187
|
+
timestamp: string | Date | number;
|
|
3188
|
+
}
|
|
3189
|
+
export interface WebSessionByTimestamp {
|
|
3190
|
+
_prefix?: string;
|
|
3191
|
+
accountId: string;
|
|
3192
|
+
appAccountId?: string | null;
|
|
3193
|
+
assetId?: string | null;
|
|
3194
|
+
created?: string | Date | number | null;
|
|
3195
|
+
modified?: string | Date | number | null;
|
|
3196
|
+
projectId: string;
|
|
3197
|
+
qrCodeId?: string | null;
|
|
3198
|
+
sessionId: string;
|
|
3199
|
+
timestamp: string | Date | number;
|
|
3200
|
+
}
|
|
3201
|
+
export interface CheckUrlSafetyByAccountIdPathParameters {
|
|
3202
|
+
accountId: string;
|
|
3203
|
+
}
|
|
3204
|
+
export interface CheckUrlSafetyByAccountIdRequestBody {
|
|
3205
|
+
ignoreBlackList?: boolean;
|
|
3206
|
+
qrCodeId?: string | null;
|
|
3207
|
+
urls: Array<any>;
|
|
3208
|
+
}
|
|
3209
|
+
export interface CheckUrlSafetyByAccountIdResponseBody {
|
|
3210
|
+
isSafe: boolean;
|
|
3211
|
+
urlSafeties: URLSafety[];
|
|
3212
|
+
}
|
|
2880
3213
|
export interface CreateApiKeyByAccountIdPathParameters {
|
|
2881
3214
|
accountId: string;
|
|
2882
3215
|
}
|
|
@@ -2919,6 +3252,16 @@ export interface CreateAssetTypeByAccountIdResponseBody {
|
|
|
2919
3252
|
accountId: string;
|
|
2920
3253
|
assetType: AssetType;
|
|
2921
3254
|
}
|
|
3255
|
+
export interface CreateImageUploadPresignedUrlPathParameters {
|
|
3256
|
+
accountId: string;
|
|
3257
|
+
}
|
|
3258
|
+
export interface CreateImageUploadPresignedUrlRequestBody {
|
|
3259
|
+
imageContentType: string;
|
|
3260
|
+
}
|
|
3261
|
+
export interface CreateImageUploadPresignedUrlResponseBody {
|
|
3262
|
+
image: S3Image;
|
|
3263
|
+
presignedUrl: string;
|
|
3264
|
+
}
|
|
2922
3265
|
export interface CreateInvitationByAccountIdPathParameters {
|
|
2923
3266
|
accountId: string;
|
|
2924
3267
|
}
|
|
@@ -2962,21 +3305,22 @@ export interface CreatePrintPageTemplateByAccountIdPathParameters {
|
|
|
2962
3305
|
export interface CreatePrintPageTemplateByAccountIdRequestBody {
|
|
2963
3306
|
created?: string | Date | number | null;
|
|
2964
3307
|
format?: PrintFormat | null;
|
|
2965
|
-
horizontalMargin
|
|
2966
|
-
horizontalPadding
|
|
3308
|
+
horizontalMargin: number;
|
|
3309
|
+
horizontalPadding: number;
|
|
3310
|
+
isDeleted?: boolean | null;
|
|
2967
3311
|
modified?: string | Date | number | null;
|
|
2968
|
-
name
|
|
2969
|
-
numberOfColumns
|
|
2970
|
-
numberOfRows
|
|
2971
|
-
orientation?: PrintOrientation;
|
|
2972
|
-
pageSize
|
|
2973
|
-
printMode?: PrintMode;
|
|
3312
|
+
name: string;
|
|
3313
|
+
numberOfColumns: number;
|
|
3314
|
+
numberOfRows: number;
|
|
3315
|
+
orientation?: PrintOrientation | null;
|
|
3316
|
+
pageSize: Array<any>;
|
|
3317
|
+
printMode?: PrintMode | null;
|
|
2974
3318
|
printTemplate?: PrintTemplate | null;
|
|
2975
|
-
stickerShape
|
|
2976
|
-
stickerSize
|
|
3319
|
+
stickerShape: StickerShape;
|
|
3320
|
+
stickerSize: Array<any>;
|
|
2977
3321
|
unit?: PrintUnit;
|
|
2978
|
-
verticalMargin
|
|
2979
|
-
verticalPadding
|
|
3322
|
+
verticalMargin: number;
|
|
3323
|
+
verticalPadding: number;
|
|
2980
3324
|
}
|
|
2981
3325
|
export interface CreatePrintPageTemplateByAccountIdResponseBody {
|
|
2982
3326
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -2991,6 +3335,7 @@ export interface CreatePrintStickerTemplateByAccountIdRequestBody {
|
|
|
2991
3335
|
serializedFabric: NestedKeyValueObject;
|
|
2992
3336
|
stickerShape: StickerShape;
|
|
2993
3337
|
stickerSize: Array<any>;
|
|
3338
|
+
unit?: PrintUnit;
|
|
2994
3339
|
}
|
|
2995
3340
|
export interface CreatePrintStickerTemplateByAccountIdResponseBody {
|
|
2996
3341
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -3054,9 +3399,12 @@ export interface CreateUserMediaPresignedUrlByAccountIdPathParameters {
|
|
|
3054
3399
|
export interface CreateUserMediaPresignedUrlByAccountIdRequestBody {
|
|
3055
3400
|
allowExpiry?: boolean;
|
|
3056
3401
|
assetId?: string | null;
|
|
3402
|
+
category?: string | null;
|
|
3057
3403
|
fileType: UserMediaFileTypes;
|
|
3404
|
+
name?: string | null;
|
|
3058
3405
|
projectId?: string | null;
|
|
3059
3406
|
scanId?: string | null;
|
|
3407
|
+
subFolder?: string | null;
|
|
3060
3408
|
}
|
|
3061
3409
|
export interface CreateUserMediaPresignedUrlByAccountIdResponseBody {
|
|
3062
3410
|
presignedUrl: string;
|
|
@@ -3380,6 +3728,7 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3380
3728
|
}
|
|
3381
3729
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3382
3730
|
accountId: string;
|
|
3731
|
+
lastKey?: string | null;
|
|
3383
3732
|
numberOfPrintJobs: number;
|
|
3384
3733
|
printJobs: PrintJob[];
|
|
3385
3734
|
}
|
|
@@ -3443,6 +3792,19 @@ export interface GetQrCodeLogosByAccountIdResponseBody {
|
|
|
3443
3792
|
numberOfQrCodeLogos: number;
|
|
3444
3793
|
qrCodeLogos: QrCodeLogo[];
|
|
3445
3794
|
}
|
|
3795
|
+
export interface GetQrcodeScansExportByAccountIdPathParameters {
|
|
3796
|
+
accountId: string;
|
|
3797
|
+
}
|
|
3798
|
+
export interface GetQrcodeScansExportByAccountIdRequestBody {
|
|
3799
|
+
email?: string | null;
|
|
3800
|
+
format?: string;
|
|
3801
|
+
from?: string | Date | number | null;
|
|
3802
|
+
to?: string | Date | number | null;
|
|
3803
|
+
}
|
|
3804
|
+
export interface GetQrcodeScansExportByAccountIdResponseBody {
|
|
3805
|
+
fileName: string;
|
|
3806
|
+
job: Job;
|
|
3807
|
+
}
|
|
3446
3808
|
export interface GetQrCodeStylingTemplatesByAccountIdPathParameters {
|
|
3447
3809
|
accountId: string;
|
|
3448
3810
|
}
|
|
@@ -3466,6 +3828,7 @@ export interface GetQrCodesByAccountIdQueryStringParameters {
|
|
|
3466
3828
|
lastKey?: string | null;
|
|
3467
3829
|
limit?: number | null;
|
|
3468
3830
|
sortField?: QrCodeSortingTypes | null;
|
|
3831
|
+
willGetLogoIds?: boolean | null;
|
|
3469
3832
|
}
|
|
3470
3833
|
export interface GetQrCodesByAccountIdResponseBody {
|
|
3471
3834
|
accountId: string;
|
|
@@ -3564,6 +3927,7 @@ export interface GetUserMediasByAccountIdPathParameters {
|
|
|
3564
3927
|
}
|
|
3565
3928
|
export interface GetUserMediasByAccountIdQueryStringParameters {
|
|
3566
3929
|
ascending?: boolean | null;
|
|
3930
|
+
category?: string | null;
|
|
3567
3931
|
fileType?: string | null;
|
|
3568
3932
|
lastKey?: string | null;
|
|
3569
3933
|
limit?: number | null;
|
|
@@ -4050,7 +4414,7 @@ export interface GetAssetQueryStringParameters {
|
|
|
4050
4414
|
foregroundGradientRotation?: number | null;
|
|
4051
4415
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
4052
4416
|
format?: QrCodeType | null;
|
|
4053
|
-
|
|
4417
|
+
getUserMedias?: boolean;
|
|
4054
4418
|
lightColor?: string | null;
|
|
4055
4419
|
logo?: string | null;
|
|
4056
4420
|
logoMargin?: number | null;
|
|
@@ -4192,6 +4556,7 @@ export interface GetUserMediasByAssetIdPathParameters {
|
|
|
4192
4556
|
}
|
|
4193
4557
|
export interface GetUserMediasByAssetIdQueryStringParameters {
|
|
4194
4558
|
ascending?: boolean | null;
|
|
4559
|
+
category?: string | null;
|
|
4195
4560
|
fileType?: string | null;
|
|
4196
4561
|
lastKey?: string | null;
|
|
4197
4562
|
limit?: number | null;
|
|
@@ -4531,6 +4896,12 @@ export interface DeleteJobPathParameters {
|
|
|
4531
4896
|
export interface DeleteJobResponseBody {
|
|
4532
4897
|
job: Job;
|
|
4533
4898
|
}
|
|
4899
|
+
export interface DeletePrintJobPathParameters {
|
|
4900
|
+
printJobId: string;
|
|
4901
|
+
}
|
|
4902
|
+
export interface DeletePrintJobResponseBody {
|
|
4903
|
+
printJob: PrintJob;
|
|
4904
|
+
}
|
|
4534
4905
|
export interface GetJobPathParameters {
|
|
4535
4906
|
jobId: string;
|
|
4536
4907
|
}
|
|
@@ -4620,6 +4991,7 @@ export interface CreateAssetByProjectIdRequestBody extends NestedAsset {
|
|
|
4620
4991
|
qrCodes?: NestedQrCode[] | null;
|
|
4621
4992
|
state?: string | null;
|
|
4622
4993
|
useCustomDomain?: boolean;
|
|
4994
|
+
willCreateSession?: boolean | null;
|
|
4623
4995
|
}
|
|
4624
4996
|
export interface CreateAssetByProjectIdResponseBody {
|
|
4625
4997
|
asset: ResponseAsset;
|
|
@@ -4919,6 +5291,7 @@ export interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset
|
|
|
4919
5291
|
name: string;
|
|
4920
5292
|
qrCodes?: NestedQrCode[] | null;
|
|
4921
5293
|
state?: string | null;
|
|
5294
|
+
willCreateSession?: boolean | null;
|
|
4922
5295
|
}
|
|
4923
5296
|
export interface GetBatchesByProjectIdResponseBody {
|
|
4924
5297
|
asset: ResponseAsset;
|
|
@@ -4991,6 +5364,19 @@ export interface GetProjectByProjectIdPathParameters {
|
|
|
4991
5364
|
export interface GetProjectByProjectIdResponseBody {
|
|
4992
5365
|
project: Project;
|
|
4993
5366
|
}
|
|
5367
|
+
export interface GetQrCodeScansExportByProjectIdPathParameters {
|
|
5368
|
+
projectId: string;
|
|
5369
|
+
}
|
|
5370
|
+
export interface GetQrCodeScansExportByProjectIdRequestBody {
|
|
5371
|
+
email?: string | null;
|
|
5372
|
+
format?: string;
|
|
5373
|
+
from?: string | Date | number | null;
|
|
5374
|
+
to?: string | Date | number | null;
|
|
5375
|
+
}
|
|
5376
|
+
export interface GetQrCodeScansExportByProjectIdResponseBody {
|
|
5377
|
+
fileName: string;
|
|
5378
|
+
job: Job;
|
|
5379
|
+
}
|
|
4994
5380
|
export interface GetQrCodesByProjectIdPathParameters {
|
|
4995
5381
|
projectId: string;
|
|
4996
5382
|
}
|
|
@@ -5000,6 +5386,7 @@ export interface GetQrCodesByProjectIdQueryStringParameters {
|
|
|
5000
5386
|
lastKey?: string | null;
|
|
5001
5387
|
limit?: number | null;
|
|
5002
5388
|
sortField?: QrCodeSortingTypes | null;
|
|
5389
|
+
willGetLogoIds?: boolean | null;
|
|
5003
5390
|
}
|
|
5004
5391
|
export interface GetQrCodesByProjectIdResponseBody {
|
|
5005
5392
|
lastKey?: string | null;
|
|
@@ -5096,6 +5483,7 @@ export interface GetUserMediasByProjectIdPathParameters {
|
|
|
5096
5483
|
}
|
|
5097
5484
|
export interface GetUserMediasByProjectIdQueryStringParameters {
|
|
5098
5485
|
ascending?: boolean | null;
|
|
5486
|
+
category?: string | null;
|
|
5099
5487
|
fileType?: string | null;
|
|
5100
5488
|
lastKey?: string | null;
|
|
5101
5489
|
limit?: number | null;
|
|
@@ -5255,7 +5643,7 @@ export interface GetScanPathParameters {
|
|
|
5255
5643
|
scanId: string;
|
|
5256
5644
|
}
|
|
5257
5645
|
export interface GetScanQueryStringParameters {
|
|
5258
|
-
|
|
5646
|
+
getUserMedias?: boolean;
|
|
5259
5647
|
}
|
|
5260
5648
|
export interface GetScanResponseBody {
|
|
5261
5649
|
asset: Asset;
|
|
@@ -5344,21 +5732,22 @@ export interface UpdatePrintPageTemplatePathParameters {
|
|
|
5344
5732
|
export interface UpdatePrintPageTemplateRequestBody {
|
|
5345
5733
|
created?: string | Date | number | null;
|
|
5346
5734
|
format?: PrintFormat | null;
|
|
5347
|
-
horizontalMargin
|
|
5348
|
-
horizontalPadding
|
|
5735
|
+
horizontalMargin: number;
|
|
5736
|
+
horizontalPadding: number;
|
|
5737
|
+
isDeleted?: boolean | null;
|
|
5349
5738
|
modified?: string | Date | number | null;
|
|
5350
|
-
name
|
|
5351
|
-
numberOfColumns
|
|
5352
|
-
numberOfRows
|
|
5353
|
-
orientation
|
|
5354
|
-
pageSize
|
|
5355
|
-
printMode
|
|
5739
|
+
name: string;
|
|
5740
|
+
numberOfColumns: number;
|
|
5741
|
+
numberOfRows: number;
|
|
5742
|
+
orientation?: PrintOrientation | null;
|
|
5743
|
+
pageSize: Array<any>;
|
|
5744
|
+
printMode?: PrintMode | null;
|
|
5356
5745
|
printTemplate?: PrintTemplate | null;
|
|
5357
|
-
stickerShape
|
|
5358
|
-
stickerSize
|
|
5746
|
+
stickerShape: StickerShape;
|
|
5747
|
+
stickerSize: Array<any>;
|
|
5359
5748
|
unit: PrintUnit;
|
|
5360
|
-
verticalMargin
|
|
5361
|
-
verticalPadding
|
|
5749
|
+
verticalMargin: number;
|
|
5750
|
+
verticalPadding: number;
|
|
5362
5751
|
}
|
|
5363
5752
|
export interface UpdatePrintPageTemplateResponseBody {
|
|
5364
5753
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -5369,12 +5758,15 @@ export interface UpdatePrintStickerTemplatePathParameters {
|
|
|
5369
5758
|
export interface UpdatePrintStickerTemplateRequestBody {
|
|
5370
5759
|
bleed?: boolean | null;
|
|
5371
5760
|
created?: string | Date | number | null;
|
|
5761
|
+
isDeleted?: boolean | null;
|
|
5762
|
+
lastUsedAt?: string | Date | number | null;
|
|
5372
5763
|
modified?: string | Date | number | null;
|
|
5373
5764
|
name: string;
|
|
5374
5765
|
previewImage?: string | null;
|
|
5375
5766
|
serializedFabric: NestedKeyValueObject;
|
|
5376
|
-
stickerShape
|
|
5377
|
-
stickerSize
|
|
5767
|
+
stickerShape: StickerShape;
|
|
5768
|
+
stickerSize: Array<any>;
|
|
5769
|
+
unit: PrintUnit;
|
|
5378
5770
|
}
|
|
5379
5771
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5380
5772
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -5596,6 +5988,40 @@ export interface StripeEventRequestBody {
|
|
|
5596
5988
|
request: NestedKeyValueObject;
|
|
5597
5989
|
type: string;
|
|
5598
5990
|
}
|
|
5991
|
+
export interface CreateSessionActionsPathParameters {
|
|
5992
|
+
sessionId: string;
|
|
5993
|
+
}
|
|
5994
|
+
export interface CreateSessionActionsRequestBody {
|
|
5995
|
+
sessionActions: RequestSessionAction[];
|
|
5996
|
+
}
|
|
5997
|
+
export interface CreateSessionActionsResponseBody {
|
|
5998
|
+
session: ResponseSession;
|
|
5999
|
+
}
|
|
6000
|
+
export interface GetWebSessionPathParameters {
|
|
6001
|
+
sessionId: string;
|
|
6002
|
+
}
|
|
6003
|
+
export interface GetWebSessionQueryStringParameters {
|
|
6004
|
+
ascending?: boolean | null;
|
|
6005
|
+
getLastSessionAction?: boolean | null;
|
|
6006
|
+
getSessionActions?: boolean | null;
|
|
6007
|
+
lastKey?: string | null;
|
|
6008
|
+
limit?: number | null;
|
|
6009
|
+
name?: string | null;
|
|
6010
|
+
}
|
|
6011
|
+
export interface GetWebSessionResponseBody {
|
|
6012
|
+
session: ResponseSession;
|
|
6013
|
+
}
|
|
6014
|
+
export interface UpdateWebSessionPathParameters {
|
|
6015
|
+
sessionId: string;
|
|
6016
|
+
}
|
|
6017
|
+
export interface UpdateWebSessionRequestBody {
|
|
6018
|
+
category?: string | null;
|
|
6019
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
6020
|
+
tags?: Array<any> | null;
|
|
6021
|
+
}
|
|
6022
|
+
export interface UpdateWebSessionResponseBody {
|
|
6023
|
+
session: WebSession;
|
|
6024
|
+
}
|
|
5599
6025
|
export interface ChangePasswordRequestBody {
|
|
5600
6026
|
newPassword: string;
|
|
5601
6027
|
password?: string | null;
|
|
@@ -5655,6 +6081,9 @@ export interface ResendConfirmationRequestBody {
|
|
|
5655
6081
|
export interface ResetPasswordRequestBody {
|
|
5656
6082
|
email: string;
|
|
5657
6083
|
}
|
|
6084
|
+
export declare class CheckUrlSafetyByAccountIdRequest extends RequestPost<CheckUrlSafetyByAccountIdPathParameters, undefined, CheckUrlSafetyByAccountIdRequestBody, CheckUrlSafetyByAccountIdResponseBody> {
|
|
6085
|
+
routeSegments?: RequestRouteSegment[];
|
|
6086
|
+
}
|
|
5658
6087
|
export declare class CreateApiKeyByAccountIdRequest extends RequestPost<CreateApiKeyByAccountIdPathParameters, undefined, CreateApiKeyByAccountIdRequestBody, CreateApiKeyByAccountIdResponseBody> {
|
|
5659
6088
|
routeSegments?: RequestRouteSegment[];
|
|
5660
6089
|
}
|
|
@@ -5664,6 +6093,9 @@ export declare class CreateAppRequest extends RequestPost<CreateAppPathParameter
|
|
|
5664
6093
|
export declare class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {
|
|
5665
6094
|
routeSegments?: RequestRouteSegment[];
|
|
5666
6095
|
}
|
|
6096
|
+
export declare class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedUrlPathParameters, undefined, CreateImageUploadPresignedUrlRequestBody, CreateImageUploadPresignedUrlResponseBody> {
|
|
6097
|
+
routeSegments?: RequestRouteSegment[];
|
|
6098
|
+
}
|
|
5667
6099
|
export declare class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {
|
|
5668
6100
|
routeSegments?: RequestRouteSegment[];
|
|
5669
6101
|
}
|
|
@@ -5778,6 +6210,9 @@ export declare class GetProjectsByAccountIdRequest extends RequestGet<GetProject
|
|
|
5778
6210
|
export declare class GetQrCodeLogosByAccountIdRequest extends RequestGet<GetQrCodeLogosByAccountIdPathParameters, GetQrCodeLogosByAccountIdQueryStringParameters, GetQrCodeLogosByAccountIdResponseBody> {
|
|
5779
6211
|
routeSegments?: RequestRouteSegment[];
|
|
5780
6212
|
}
|
|
6213
|
+
export declare class GetQrcodeScansExportByAccountIdRequest extends RequestPost<GetQrcodeScansExportByAccountIdPathParameters, undefined, GetQrcodeScansExportByAccountIdRequestBody, GetQrcodeScansExportByAccountIdResponseBody> {
|
|
6214
|
+
routeSegments?: RequestRouteSegment[];
|
|
6215
|
+
}
|
|
5781
6216
|
export declare class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<GetQrCodeStylingTemplatesByAccountIdPathParameters, GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, GetQrCodeStylingTemplatesByAccountIdResponseBody> {
|
|
5782
6217
|
routeSegments?: RequestRouteSegment[];
|
|
5783
6218
|
}
|
|
@@ -6030,6 +6465,9 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6030
6465
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6031
6466
|
routeSegments?: RequestRouteSegment[];
|
|
6032
6467
|
}
|
|
6468
|
+
export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
|
|
6469
|
+
routeSegments?: RequestRouteSegment[];
|
|
6470
|
+
}
|
|
6033
6471
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6034
6472
|
routeSegments?: RequestRouteSegment[];
|
|
6035
6473
|
}
|
|
@@ -6138,6 +6576,9 @@ export declare class GetMostScannedAssetsByProjectIdRequest extends RequestGet<G
|
|
|
6138
6576
|
export declare class GetProjectByProjectIdRequest extends RequestGet<GetProjectByProjectIdPathParameters, undefined, GetProjectByProjectIdResponseBody> {
|
|
6139
6577
|
routeSegments?: RequestRouteSegment[];
|
|
6140
6578
|
}
|
|
6579
|
+
export declare class GetQrCodeScansExportByProjectIdRequest extends RequestPost<GetQrCodeScansExportByProjectIdPathParameters, undefined, GetQrCodeScansExportByProjectIdRequestBody, GetQrCodeScansExportByProjectIdResponseBody> {
|
|
6580
|
+
routeSegments?: RequestRouteSegment[];
|
|
6581
|
+
}
|
|
6141
6582
|
export declare class GetQrCodesByProjectIdRequest extends RequestGet<GetQrCodesByProjectIdPathParameters, GetQrCodesByProjectIdQueryStringParameters, GetQrCodesByProjectIdResponseBody> {
|
|
6142
6583
|
routeSegments?: RequestRouteSegment[];
|
|
6143
6584
|
}
|
|
@@ -6291,6 +6732,15 @@ export declare class SmsStatusUpdateRequest extends RequestPost<undefined, undef
|
|
|
6291
6732
|
export declare class StripeEventRequest extends RequestPost<undefined, undefined, StripeEventRequestBody, undefined> {
|
|
6292
6733
|
routeSegments?: RequestRouteSegment[];
|
|
6293
6734
|
}
|
|
6735
|
+
export declare class CreateSessionActionsRequest extends RequestPost<CreateSessionActionsPathParameters, undefined, CreateSessionActionsRequestBody, CreateSessionActionsResponseBody> {
|
|
6736
|
+
routeSegments?: RequestRouteSegment[];
|
|
6737
|
+
}
|
|
6738
|
+
export declare class GetWebSessionRequest extends RequestGet<GetWebSessionPathParameters, GetWebSessionQueryStringParameters, GetWebSessionResponseBody> {
|
|
6739
|
+
routeSegments?: RequestRouteSegment[];
|
|
6740
|
+
}
|
|
6741
|
+
export declare class UpdateWebSessionRequest extends RequestPatch<UpdateWebSessionPathParameters, undefined, UpdateWebSessionRequestBody, UpdateWebSessionResponseBody> {
|
|
6742
|
+
routeSegments?: RequestRouteSegment[];
|
|
6743
|
+
}
|
|
6294
6744
|
export declare class ChangePasswordRequest extends RequestPost<undefined, undefined, ChangePasswordRequestBody, RefreshSessionUserSessionResponseBody> {
|
|
6295
6745
|
routeSegments?: RequestRouteSegment[];
|
|
6296
6746
|
}
|
|
@@ -6321,6 +6771,9 @@ export declare class ResendConfirmationRequest extends RequestPost<undefined, un
|
|
|
6321
6771
|
export declare class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {
|
|
6322
6772
|
routeSegments?: RequestRouteSegment[];
|
|
6323
6773
|
}
|
|
6774
|
+
export declare class SdkAccountUrlSafetiesResources extends Resources {
|
|
6775
|
+
create(requestBody: CheckUrlSafetyByAccountIdRequestBody, options?: any): Promise<CheckUrlSafetyByAccountIdResponseBody>;
|
|
6776
|
+
}
|
|
6324
6777
|
export declare class SdkAccountApikeysResources extends Resources {
|
|
6325
6778
|
create(requestBody: CreateApiKeyByAccountIdRequestBody, options?: any): Promise<CreateApiKeyByAccountIdResponseBody>;
|
|
6326
6779
|
get(queryStringParameters: GetApiKeysByAccountIdQueryStringParameters, options?: any): Promise<GetApiKeysByAccountIdResponseBody>;
|
|
@@ -6333,6 +6786,9 @@ export declare class SdkAccountAssettypesResources extends Resources {
|
|
|
6333
6786
|
create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody>;
|
|
6334
6787
|
get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody>;
|
|
6335
6788
|
}
|
|
6789
|
+
export declare class SdkAccountImageUploadResources extends Resources {
|
|
6790
|
+
create(requestBody: CreateImageUploadPresignedUrlRequestBody, options?: any): Promise<CreateImageUploadPresignedUrlResponseBody>;
|
|
6791
|
+
}
|
|
6336
6792
|
export declare class SdkAccountInvitationsResources extends Resources {
|
|
6337
6793
|
create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody>;
|
|
6338
6794
|
}
|
|
@@ -6430,6 +6886,9 @@ export declare class SdkAccountPricePlanResources extends Resources {
|
|
|
6430
6886
|
export declare class SdkAccountPrintJobsResources extends Resources {
|
|
6431
6887
|
get(queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters, options?: any): Promise<GetPrintJobsByAccountIdResponseBody>;
|
|
6432
6888
|
}
|
|
6889
|
+
export declare class SdkAccountExportQrCodesScansResources extends Resources {
|
|
6890
|
+
create(requestBody: GetQrcodeScansExportByAccountIdRequestBody, options?: any): Promise<GetQrcodeScansExportByAccountIdResponseBody>;
|
|
6891
|
+
}
|
|
6433
6892
|
export declare class SdkAccountQrCodesResources extends Resources {
|
|
6434
6893
|
get(queryStringParameters: GetQrCodesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodesByAccountIdResponseBody>;
|
|
6435
6894
|
}
|
|
@@ -6474,9 +6933,11 @@ export declare class SdkAccountQrcodelogosUploadResources extends Resources {
|
|
|
6474
6933
|
create(requestBody: UploadQrCodeLogoByAccountRequestBody, options?: any): Promise<UploadQrCodeLogoByAccountResponseBody>;
|
|
6475
6934
|
}
|
|
6476
6935
|
export declare class SdkAccountResource extends Resource {
|
|
6936
|
+
urlSafeties(): SdkAccountUrlSafetiesResources;
|
|
6477
6937
|
apikeys(): SdkAccountApikeysResources;
|
|
6478
6938
|
apps(): SdkAccountAppsResources;
|
|
6479
6939
|
assettypes(): SdkAccountAssettypesResources;
|
|
6940
|
+
imageUpload(): SdkAccountImageUploadResources;
|
|
6480
6941
|
invitations(): SdkAccountInvitationsResources;
|
|
6481
6942
|
invitationsBatch(): SdkAccountInvitationsBatchResources;
|
|
6482
6943
|
locations(): SdkAccountLocationsResources;
|
|
@@ -6506,6 +6967,7 @@ export declare class SdkAccountResource extends Resource {
|
|
|
6506
6967
|
assetsMostscanned(): SdkAccountAssetsMostscannedResources;
|
|
6507
6968
|
pricePlan(): SdkAccountPricePlanResources;
|
|
6508
6969
|
printJobs(): SdkAccountPrintJobsResources;
|
|
6970
|
+
exportQrCodesScans(): SdkAccountExportQrCodesScansResources;
|
|
6509
6971
|
qrCodes(): SdkAccountQrCodesResources;
|
|
6510
6972
|
scansDayofweek(): SdkAccountScansDayofweekResources;
|
|
6511
6973
|
scansExport(): SdkAccountScansExportResources;
|
|
@@ -6708,7 +7170,8 @@ export declare class SdkJobResource extends Resource {
|
|
|
6708
7170
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6709
7171
|
}
|
|
6710
7172
|
export declare class SdkPrintJobResource extends Resource {
|
|
6711
|
-
|
|
7173
|
+
delete(options?: any): Promise<DeletePrintJobResponseBody>;
|
|
7174
|
+
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6712
7175
|
}
|
|
6713
7176
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6714
7177
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|
|
@@ -6801,6 +7264,9 @@ export declare class SdkProjectContactsExportResources extends Resources {
|
|
|
6801
7264
|
export declare class SdkProjectAssetsMostscannedResources extends Resources {
|
|
6802
7265
|
get(queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByProjectIdResponseBody>;
|
|
6803
7266
|
}
|
|
7267
|
+
export declare class SdkProjectExportQrCodesScansResources extends Resources {
|
|
7268
|
+
create(requestBody: GetQrCodeScansExportByProjectIdRequestBody, options?: any): Promise<GetQrCodeScansExportByProjectIdResponseBody>;
|
|
7269
|
+
}
|
|
6804
7270
|
export declare class SdkProjectScansDayofweekResources extends Resources {
|
|
6805
7271
|
get(queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByProjectIdResponseBody>;
|
|
6806
7272
|
}
|
|
@@ -6843,6 +7309,7 @@ export declare class SdkProjectResource extends Resource {
|
|
|
6843
7309
|
consent(): SdkProjectConsentResources;
|
|
6844
7310
|
contactsExport(): SdkProjectContactsExportResources;
|
|
6845
7311
|
assetsMostscanned(): SdkProjectAssetsMostscannedResources;
|
|
7312
|
+
exportQrCodesScans(): SdkProjectExportQrCodesScansResources;
|
|
6846
7313
|
scansDayofweek(): SdkProjectScansDayofweekResources;
|
|
6847
7314
|
scansExport(): SdkProjectScansExportResources;
|
|
6848
7315
|
scansTimeofday(): SdkProjectScansTimeofdayResources;
|
|
@@ -6949,6 +7416,14 @@ export declare class SdkWebhookSmsStatusResources extends Resources {
|
|
|
6949
7416
|
export declare class SdkWebhookStripeResources extends Resources {
|
|
6950
7417
|
create(requestBody: StripeEventRequestBody, options?: any): Promise<any>;
|
|
6951
7418
|
}
|
|
7419
|
+
export declare class SdkWebsessionSessionactionsResources extends Resources {
|
|
7420
|
+
create(requestBody: CreateSessionActionsRequestBody, options?: any): Promise<CreateSessionActionsResponseBody>;
|
|
7421
|
+
}
|
|
7422
|
+
export declare class SdkWebsessionResource extends Resource {
|
|
7423
|
+
sessionactions(): SdkWebsessionSessionactionsResources;
|
|
7424
|
+
get(queryStringParameters: GetWebSessionQueryStringParameters, options?: any): Promise<GetWebSessionResponseBody>;
|
|
7425
|
+
update(requestBody: UpdateWebSessionRequestBody, options?: any): Promise<UpdateWebSessionResponseBody>;
|
|
7426
|
+
}
|
|
6952
7427
|
export declare class SdkPasswordAuthUserResources extends Resources {
|
|
6953
7428
|
create(requestBody: ChangePasswordRequestBody, options?: any): Promise<RefreshSessionUserSessionResponseBody>;
|
|
6954
7429
|
}
|
|
@@ -7014,6 +7489,7 @@ export declare class SdkResources extends Resources {
|
|
|
7014
7489
|
webhookSms(): SdkWebhookSmsResources;
|
|
7015
7490
|
webhookSmsStatus(): SdkWebhookSmsStatusResources;
|
|
7016
7491
|
webhookStripe(): SdkWebhookStripeResources;
|
|
7492
|
+
websession(sessionId: string): SdkWebsessionResource;
|
|
7017
7493
|
passwordAuthUser(): SdkPasswordAuthUserResources;
|
|
7018
7494
|
authSession(): SdkAuthSessionResources;
|
|
7019
7495
|
authConfirm(): SdkAuthConfirmResources;
|