@openscreen/internal-sdk 1.7.71 → 1.8.1
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 +603 -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",
|
|
@@ -206,6 +207,11 @@ export declare enum OpenscreenEmails {
|
|
|
206
207
|
SALES_EMAIL = "SALES_EMAIL",
|
|
207
208
|
SUPPORT_EMAIL = "SUPPORT_EMAIL"
|
|
208
209
|
}
|
|
210
|
+
export declare enum PluginStatus {
|
|
211
|
+
ACTIVE = "ACTIVE",
|
|
212
|
+
INACTIVE = "INACTIVE",
|
|
213
|
+
SUSPENDED = "SUSPENDED"
|
|
214
|
+
}
|
|
209
215
|
export declare enum PricePlanName {
|
|
210
216
|
FREE = "free",
|
|
211
217
|
PAYASYOUGO = "payAsYouGo",
|
|
@@ -332,7 +338,8 @@ export declare enum QrCodeSortingTypes {
|
|
|
332
338
|
export declare enum QrCodeStatus {
|
|
333
339
|
ACTIVE = "ACTIVE",
|
|
334
340
|
INACTIVE = "INACTIVE",
|
|
335
|
-
SUSPENDED = "SUSPENDED"
|
|
341
|
+
SUSPENDED = "SUSPENDED",
|
|
342
|
+
UNSAFE = "UNSAFE"
|
|
336
343
|
}
|
|
337
344
|
export declare enum QrCodeType {
|
|
338
345
|
PNG = "PNG",
|
|
@@ -392,12 +399,29 @@ export declare enum UserMediaFileTypes {
|
|
|
392
399
|
png = "png",
|
|
393
400
|
mov = "mov",
|
|
394
401
|
mp4 = "mp4",
|
|
395
|
-
jpeg = "jpeg"
|
|
402
|
+
jpeg = "jpeg",
|
|
403
|
+
ttf = "ttf",
|
|
404
|
+
otf = "otf",
|
|
405
|
+
woff = "woff",
|
|
406
|
+
woff2 = "woff2",
|
|
407
|
+
csv = "csv",
|
|
408
|
+
json = "json",
|
|
409
|
+
gif = "gif",
|
|
410
|
+
bmp = "bmp",
|
|
411
|
+
webp = "webp",
|
|
412
|
+
svg = "svg",
|
|
413
|
+
tiff = "tiff",
|
|
414
|
+
webm = "webm",
|
|
415
|
+
ogg = "ogg",
|
|
416
|
+
avi = "avi",
|
|
417
|
+
mpeg = "mpeg",
|
|
418
|
+
css = "css"
|
|
396
419
|
}
|
|
397
420
|
export declare enum UserMediaSortingTypes {
|
|
398
421
|
MODIFIED = "MODIFIED",
|
|
399
422
|
NAME = "NAME",
|
|
400
|
-
FILE_TYPE = "FILE_TYPE"
|
|
423
|
+
FILE_TYPE = "FILE_TYPE",
|
|
424
|
+
CATEGORY = "CATEGORY"
|
|
401
425
|
}
|
|
402
426
|
export declare enum UserSettingsDomain {
|
|
403
427
|
DASHBOARD = "DASHBOARD"
|
|
@@ -592,7 +616,7 @@ export interface AccountInvitation {
|
|
|
592
616
|
modified?: string | Date | number | null;
|
|
593
617
|
sendersFirstName: string;
|
|
594
618
|
sendersLastName: string;
|
|
595
|
-
sendersUserId
|
|
619
|
+
sendersUserId?: string | null;
|
|
596
620
|
userRole: AccountUserRole;
|
|
597
621
|
}
|
|
598
622
|
export interface AccountInvitationRequestBody {
|
|
@@ -608,6 +632,14 @@ export interface AccountPhoneContact {
|
|
|
608
632
|
modified?: string | Date | number | null;
|
|
609
633
|
phone: string;
|
|
610
634
|
}
|
|
635
|
+
export interface AccountPlugin {
|
|
636
|
+
accountId: string;
|
|
637
|
+
appAccountId: string;
|
|
638
|
+
created?: string | Date | number | null;
|
|
639
|
+
isInstalled?: boolean;
|
|
640
|
+
modified?: string | Date | number | null;
|
|
641
|
+
pluginId: string;
|
|
642
|
+
}
|
|
611
643
|
export interface AccountPublishedApp {
|
|
612
644
|
appId: string;
|
|
613
645
|
created?: string | Date | number | null;
|
|
@@ -793,7 +825,8 @@ export interface Asset {
|
|
|
793
825
|
state?: string | null;
|
|
794
826
|
staticQrCodeCount: number;
|
|
795
827
|
thumbnails?: Array<any> | null;
|
|
796
|
-
|
|
828
|
+
userMedias?: UserMedia[] | null;
|
|
829
|
+
willCreateSession?: boolean | null;
|
|
797
830
|
}
|
|
798
831
|
export interface AssetByAssetTypeNameAssetName {
|
|
799
832
|
_prefix?: string;
|
|
@@ -995,6 +1028,7 @@ export interface AssetFieldsObject {
|
|
|
995
1028
|
name?: string | null;
|
|
996
1029
|
qrCodes?: NestedQrCode[] | null;
|
|
997
1030
|
state?: string | null;
|
|
1031
|
+
willCreateSession?: boolean | null;
|
|
998
1032
|
}
|
|
999
1033
|
export interface AssetHistory {
|
|
1000
1034
|
_timestamp: string | Date | number;
|
|
@@ -1029,7 +1063,8 @@ export interface AssetHistory {
|
|
|
1029
1063
|
state?: string | null;
|
|
1030
1064
|
staticQrCodeCount?: number | null;
|
|
1031
1065
|
thumbnails?: Array<any> | null;
|
|
1032
|
-
|
|
1066
|
+
userMedias?: UserMedia[] | null;
|
|
1067
|
+
willCreateSession?: boolean | null;
|
|
1033
1068
|
}
|
|
1034
1069
|
export interface AssetType {
|
|
1035
1070
|
accountId: string;
|
|
@@ -1081,6 +1116,84 @@ export interface AssetTypeByStatusTimestamp {
|
|
|
1081
1116
|
state: string;
|
|
1082
1117
|
timestamp: string | Date | number;
|
|
1083
1118
|
}
|
|
1119
|
+
export interface BadUrlAttempt {
|
|
1120
|
+
accountId: string;
|
|
1121
|
+
appAccountId?: string | null;
|
|
1122
|
+
assetContent: NestedKeyValueObject;
|
|
1123
|
+
assetId: string;
|
|
1124
|
+
badUrlAttemptId?: string | null;
|
|
1125
|
+
created?: string | Date | number | null;
|
|
1126
|
+
modified?: string | Date | number | null;
|
|
1127
|
+
projectId?: string | null;
|
|
1128
|
+
qrCodeId: string;
|
|
1129
|
+
timestamp: string | Date | number;
|
|
1130
|
+
url: string;
|
|
1131
|
+
}
|
|
1132
|
+
export interface BadUrlAttemptByTimestamp {
|
|
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 BadUrlAttemptByUrl {
|
|
1146
|
+
_GLOBAL: string;
|
|
1147
|
+
_prefix?: string;
|
|
1148
|
+
accountId: string;
|
|
1149
|
+
appAccountId?: string | null;
|
|
1150
|
+
badUrlAttemptId?: string;
|
|
1151
|
+
created?: string | Date | number | null;
|
|
1152
|
+
modified?: string | Date | number | null;
|
|
1153
|
+
projectId?: string | null;
|
|
1154
|
+
qrCodeId?: string | null;
|
|
1155
|
+
timestamp: string | Date | number;
|
|
1156
|
+
url: string;
|
|
1157
|
+
}
|
|
1158
|
+
export interface BadUrlUsage {
|
|
1159
|
+
created?: string | Date | number | null;
|
|
1160
|
+
modified?: string | Date | number | null;
|
|
1161
|
+
url: string;
|
|
1162
|
+
usageCount: number;
|
|
1163
|
+
}
|
|
1164
|
+
export interface BadUrlUsageByCreated {
|
|
1165
|
+
_GLOBAL: string;
|
|
1166
|
+
_created: string | Date | number;
|
|
1167
|
+
_prefix?: string;
|
|
1168
|
+
created?: string | Date | number | null;
|
|
1169
|
+
modified?: string | Date | number | null;
|
|
1170
|
+
url: string;
|
|
1171
|
+
}
|
|
1172
|
+
export interface BadUrlUsageByModified {
|
|
1173
|
+
_GLOBAL: string;
|
|
1174
|
+
_modified: string | Date | number;
|
|
1175
|
+
_prefix?: string;
|
|
1176
|
+
created?: string | Date | number | null;
|
|
1177
|
+
modified?: string | Date | number | null;
|
|
1178
|
+
url: string;
|
|
1179
|
+
}
|
|
1180
|
+
export interface BadUrlUsageByUrl {
|
|
1181
|
+
_GLOBAL: string;
|
|
1182
|
+
_modified: string | Date | number;
|
|
1183
|
+
_prefix?: string;
|
|
1184
|
+
created?: string | Date | number | null;
|
|
1185
|
+
modified?: string | Date | number | null;
|
|
1186
|
+
url: string;
|
|
1187
|
+
}
|
|
1188
|
+
export interface BadUrlUsageByUsageCount {
|
|
1189
|
+
_GLOBAL: string;
|
|
1190
|
+
_modified: string | Date | number;
|
|
1191
|
+
_prefix?: string;
|
|
1192
|
+
created?: string | Date | number | null;
|
|
1193
|
+
modified?: string | Date | number | null;
|
|
1194
|
+
url: string;
|
|
1195
|
+
usageCount: number;
|
|
1196
|
+
}
|
|
1084
1197
|
export interface Batch {
|
|
1085
1198
|
accountId: string;
|
|
1086
1199
|
appAccountId?: string | null;
|
|
@@ -1365,11 +1478,11 @@ export interface ContactInvite {
|
|
|
1365
1478
|
userRole?: AccountUserRole | null;
|
|
1366
1479
|
}
|
|
1367
1480
|
export interface ContactMailingAddress {
|
|
1368
|
-
address
|
|
1369
|
-
city
|
|
1370
|
-
country
|
|
1371
|
-
postalOrZip
|
|
1372
|
-
provinceOrState
|
|
1481
|
+
address?: string | null;
|
|
1482
|
+
city?: string | null;
|
|
1483
|
+
country?: string | null;
|
|
1484
|
+
postalOrZip?: string | null;
|
|
1485
|
+
provinceOrState?: string | null;
|
|
1373
1486
|
}
|
|
1374
1487
|
export interface ContactProjectCustomConsent {
|
|
1375
1488
|
consentStatus: ConsentStatus;
|
|
@@ -1744,6 +1857,7 @@ export interface NestedAsset {
|
|
|
1744
1857
|
name: string;
|
|
1745
1858
|
qrCodes?: NestedQrCode[] | null;
|
|
1746
1859
|
state?: string | null;
|
|
1860
|
+
willCreateSession?: boolean | null;
|
|
1747
1861
|
}
|
|
1748
1862
|
export interface NestedContact {
|
|
1749
1863
|
asset?: NestedAsset | null;
|
|
@@ -2093,6 +2207,36 @@ export interface PhoneSession {
|
|
|
2093
2207
|
smsId: string;
|
|
2094
2208
|
twilioPhone: string;
|
|
2095
2209
|
}
|
|
2210
|
+
export interface Plugin {
|
|
2211
|
+
appId: string;
|
|
2212
|
+
created?: string | Date | number | null;
|
|
2213
|
+
icon: string;
|
|
2214
|
+
installCount: number;
|
|
2215
|
+
modified?: string | Date | number | null;
|
|
2216
|
+
name: string;
|
|
2217
|
+
pluginId: string;
|
|
2218
|
+
status?: PluginStatus;
|
|
2219
|
+
version?: number;
|
|
2220
|
+
}
|
|
2221
|
+
export interface PluginByModified {
|
|
2222
|
+
_GLOBAL: string;
|
|
2223
|
+
_prefix?: string;
|
|
2224
|
+
appId: string;
|
|
2225
|
+
created?: string | Date | number | null;
|
|
2226
|
+
modified?: string | Date | number | null;
|
|
2227
|
+
pluginId: string;
|
|
2228
|
+
timestamp: string | Date | number;
|
|
2229
|
+
}
|
|
2230
|
+
export interface PluginByName {
|
|
2231
|
+
_GLOBAL: string;
|
|
2232
|
+
_prefix?: string;
|
|
2233
|
+
appId: string;
|
|
2234
|
+
created?: string | Date | number | null;
|
|
2235
|
+
modified?: string | Date | number | null;
|
|
2236
|
+
name: string;
|
|
2237
|
+
pluginId: string;
|
|
2238
|
+
timestamp: string | Date | number;
|
|
2239
|
+
}
|
|
2096
2240
|
export interface PricePlan {
|
|
2097
2241
|
annualPrice: number;
|
|
2098
2242
|
assets: number;
|
|
@@ -2167,7 +2311,7 @@ export interface PrintJob {
|
|
|
2167
2311
|
assetIds?: Array<any> | null;
|
|
2168
2312
|
callbackUrl?: string | null;
|
|
2169
2313
|
created?: string | Date | number | null;
|
|
2170
|
-
createdBy
|
|
2314
|
+
createdBy?: string | null;
|
|
2171
2315
|
errorMessage?: NestedKeyValueObject | null;
|
|
2172
2316
|
fileExpiry?: string | Date | number | null;
|
|
2173
2317
|
imageOptions?: QrCodeImageOptions | null;
|
|
@@ -2194,6 +2338,8 @@ export interface PrintJob {
|
|
|
2194
2338
|
export interface PrintOptions {
|
|
2195
2339
|
bleed?: boolean | null;
|
|
2196
2340
|
bottomCaptionLabel?: Label;
|
|
2341
|
+
bottomCaptionLabelHorizontalOffset?: number | null;
|
|
2342
|
+
bottomCaptionLabelVerticalOffset?: number | null;
|
|
2197
2343
|
bottomLabel?: Label;
|
|
2198
2344
|
customBottomCaptionLabel?: string | null;
|
|
2199
2345
|
customBottomLabel?: string | null;
|
|
@@ -2229,8 +2375,11 @@ export interface PrintOptions {
|
|
|
2229
2375
|
stickerShape?: StickerShape | null;
|
|
2230
2376
|
stickerSize?: Array<any> | null;
|
|
2231
2377
|
topCaptionLabel?: Label | null;
|
|
2378
|
+
topCaptionLabelHorizontalOffset?: number | null;
|
|
2379
|
+
topCaptionLabelVerticalOffset?: number | null;
|
|
2232
2380
|
topLabel?: Label;
|
|
2233
2381
|
topLabelMaxLength?: number | null;
|
|
2382
|
+
topMarginBackground?: string | null;
|
|
2234
2383
|
unit?: PrintUnit;
|
|
2235
2384
|
verticalMargin?: number | null;
|
|
2236
2385
|
verticalOffset?: number | null;
|
|
@@ -2242,22 +2391,23 @@ export interface PrintPageTemplate {
|
|
|
2242
2391
|
created?: string | Date | number | null;
|
|
2243
2392
|
createdBy: string;
|
|
2244
2393
|
format?: PrintFormat | null;
|
|
2245
|
-
horizontalMargin
|
|
2246
|
-
horizontalPadding
|
|
2394
|
+
horizontalMargin: number;
|
|
2395
|
+
horizontalPadding: number;
|
|
2396
|
+
isDeleted?: boolean | null;
|
|
2247
2397
|
modified?: string | Date | number | null;
|
|
2248
|
-
name
|
|
2249
|
-
numberOfColumns
|
|
2250
|
-
numberOfRows
|
|
2251
|
-
orientation?: PrintOrientation;
|
|
2252
|
-
pageSize
|
|
2253
|
-
printMode?: PrintMode;
|
|
2398
|
+
name: string;
|
|
2399
|
+
numberOfColumns: number;
|
|
2400
|
+
numberOfRows: number;
|
|
2401
|
+
orientation?: PrintOrientation | null;
|
|
2402
|
+
pageSize: Array<any>;
|
|
2403
|
+
printMode?: PrintMode | null;
|
|
2254
2404
|
printPageTemplateId: string;
|
|
2255
2405
|
printTemplate?: PrintTemplate | null;
|
|
2256
|
-
stickerShape
|
|
2257
|
-
stickerSize
|
|
2406
|
+
stickerShape: StickerShape;
|
|
2407
|
+
stickerSize: Array<any>;
|
|
2258
2408
|
unit?: PrintUnit;
|
|
2259
|
-
verticalMargin
|
|
2260
|
-
verticalPadding
|
|
2409
|
+
verticalMargin: number;
|
|
2410
|
+
verticalPadding: number;
|
|
2261
2411
|
}
|
|
2262
2412
|
export interface PrintPageTemplateByName {
|
|
2263
2413
|
_prefix?: string;
|
|
@@ -2284,13 +2434,16 @@ export interface PrintStickerTemplate {
|
|
|
2284
2434
|
bleed?: boolean | null;
|
|
2285
2435
|
created?: string | Date | number | null;
|
|
2286
2436
|
createdBy: string;
|
|
2437
|
+
isDeleted?: boolean | null;
|
|
2438
|
+
lastUsedAt?: string | Date | number | null;
|
|
2287
2439
|
modified?: string | Date | number | null;
|
|
2288
2440
|
name: string;
|
|
2289
2441
|
previewImage?: string | null;
|
|
2290
2442
|
printStickerTemplateId: string;
|
|
2291
2443
|
serializedFabric: NestedKeyValueObject;
|
|
2292
|
-
stickerShape?: StickerShape
|
|
2293
|
-
stickerSize?: Array<any
|
|
2444
|
+
stickerShape?: StickerShape;
|
|
2445
|
+
stickerSize?: Array<any>;
|
|
2446
|
+
unit?: PrintUnit;
|
|
2294
2447
|
}
|
|
2295
2448
|
export interface PrintStickerTemplateByName {
|
|
2296
2449
|
_prefix?: string;
|
|
@@ -2418,6 +2571,19 @@ export interface QrCode {
|
|
|
2418
2571
|
validFrom?: string | Date | number | null;
|
|
2419
2572
|
validTo?: string | Date | number | null;
|
|
2420
2573
|
}
|
|
2574
|
+
export interface QrCodeByIntent {
|
|
2575
|
+
_prefix?: string;
|
|
2576
|
+
accountId: string;
|
|
2577
|
+
appAccountId?: string | null;
|
|
2578
|
+
assetId: string;
|
|
2579
|
+
batchId?: string | null;
|
|
2580
|
+
created?: string | Date | number | null;
|
|
2581
|
+
intent: string;
|
|
2582
|
+
modified?: string | Date | number | null;
|
|
2583
|
+
projectId: string;
|
|
2584
|
+
qrCodeId: string;
|
|
2585
|
+
timestamp: string | Date | number;
|
|
2586
|
+
}
|
|
2421
2587
|
export interface QrCodeImage {
|
|
2422
2588
|
data: string;
|
|
2423
2589
|
options?: QrCodeImageOptions;
|
|
@@ -2532,6 +2698,18 @@ export interface RequestApp {
|
|
|
2532
2698
|
uiUrl: string;
|
|
2533
2699
|
website?: string | null;
|
|
2534
2700
|
}
|
|
2701
|
+
export interface RequestSessionAction {
|
|
2702
|
+
actionId?: string | null;
|
|
2703
|
+
actionType?: string | null;
|
|
2704
|
+
category?: string | null;
|
|
2705
|
+
created?: string | Date | number | null;
|
|
2706
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2707
|
+
modified?: string | Date | number | null;
|
|
2708
|
+
name?: string | null;
|
|
2709
|
+
tags?: Array<any> | null;
|
|
2710
|
+
timestamp?: string | Date | number | null;
|
|
2711
|
+
willUpdateSession?: boolean;
|
|
2712
|
+
}
|
|
2535
2713
|
export interface ResponseAsset {
|
|
2536
2714
|
appAccountId?: string | null;
|
|
2537
2715
|
appId?: string | null;
|
|
@@ -2565,7 +2743,8 @@ export interface ResponseAsset {
|
|
|
2565
2743
|
state?: string | null;
|
|
2566
2744
|
staticQrCodeCount: number;
|
|
2567
2745
|
thumbnails?: Array<any> | null;
|
|
2568
|
-
|
|
2746
|
+
userMedias?: UserMedia[] | null;
|
|
2747
|
+
willCreateSession?: boolean | null;
|
|
2569
2748
|
}
|
|
2570
2749
|
export interface ResponseBodyUser {
|
|
2571
2750
|
created: string | Date | number;
|
|
@@ -2601,6 +2780,34 @@ export interface ResponseQrCode {
|
|
|
2601
2780
|
validFrom?: string | Date | number | null;
|
|
2602
2781
|
validTo?: string | Date | number | null;
|
|
2603
2782
|
}
|
|
2783
|
+
export interface ResponseSession {
|
|
2784
|
+
accountId?: string | null;
|
|
2785
|
+
appAccountId?: string | null;
|
|
2786
|
+
assetId?: string | null;
|
|
2787
|
+
category?: string | null;
|
|
2788
|
+
created?: string | Date | number | null;
|
|
2789
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2790
|
+
lastActionId?: string | Date | number | null;
|
|
2791
|
+
lastSessionAction?: SessionAction | null;
|
|
2792
|
+
modified?: string | Date | number | null;
|
|
2793
|
+
newTags?: Array<any> | null;
|
|
2794
|
+
projectId?: string | null;
|
|
2795
|
+
qrCodeId?: string | null;
|
|
2796
|
+
sessionActions?: SessionAction[] | null;
|
|
2797
|
+
sessionId?: string | null;
|
|
2798
|
+
tagCounter?: number | null;
|
|
2799
|
+
tags?: Array<any> | null;
|
|
2800
|
+
}
|
|
2801
|
+
export interface S3Image {
|
|
2802
|
+
accountId: string;
|
|
2803
|
+
appAccountId?: string | null;
|
|
2804
|
+
created?: string | Date | number | null;
|
|
2805
|
+
imageId: string;
|
|
2806
|
+
internalUrl: string;
|
|
2807
|
+
modified?: string | Date | number | null;
|
|
2808
|
+
s3Key: string;
|
|
2809
|
+
url: string;
|
|
2810
|
+
}
|
|
2604
2811
|
export interface Scan {
|
|
2605
2812
|
assetId: string;
|
|
2606
2813
|
assetName: string;
|
|
@@ -2650,6 +2857,76 @@ export interface ScanContact {
|
|
|
2650
2857
|
projectId: string;
|
|
2651
2858
|
scanId: string;
|
|
2652
2859
|
}
|
|
2860
|
+
export interface SessionAction {
|
|
2861
|
+
accountId: string;
|
|
2862
|
+
actionId: string;
|
|
2863
|
+
actionType?: string | null;
|
|
2864
|
+
appAccountId?: string | null;
|
|
2865
|
+
assetId: string;
|
|
2866
|
+
category?: string | null;
|
|
2867
|
+
created?: string | Date | number | null;
|
|
2868
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
2869
|
+
modified?: string | Date | number | null;
|
|
2870
|
+
name?: string | null;
|
|
2871
|
+
projectId: string;
|
|
2872
|
+
qrCodeId: string;
|
|
2873
|
+
sessionId: string;
|
|
2874
|
+
tags?: Array<any> | null;
|
|
2875
|
+
}
|
|
2876
|
+
export interface SessionActionByActionType {
|
|
2877
|
+
_prefix?: string;
|
|
2878
|
+
accountId: string;
|
|
2879
|
+
actionId: string;
|
|
2880
|
+
actionType?: string;
|
|
2881
|
+
appAccountId?: string | null;
|
|
2882
|
+
assetId?: string | null;
|
|
2883
|
+
created?: string | Date | number | null;
|
|
2884
|
+
modified?: string | Date | number | null;
|
|
2885
|
+
projectId: string;
|
|
2886
|
+
qrCodeId?: string | null;
|
|
2887
|
+
sessionId: string;
|
|
2888
|
+
timestamp: string | Date | number;
|
|
2889
|
+
}
|
|
2890
|
+
export interface SessionActionByCategory {
|
|
2891
|
+
_prefix?: string;
|
|
2892
|
+
accountId: string;
|
|
2893
|
+
actionId: string;
|
|
2894
|
+
appAccountId?: string | null;
|
|
2895
|
+
assetId?: string | null;
|
|
2896
|
+
category?: string;
|
|
2897
|
+
created?: string | Date | number | null;
|
|
2898
|
+
modified?: string | Date | number | null;
|
|
2899
|
+
projectId: string;
|
|
2900
|
+
qrCodeId?: string | null;
|
|
2901
|
+
sessionId: string;
|
|
2902
|
+
timestamp: string | Date | number;
|
|
2903
|
+
}
|
|
2904
|
+
export interface SessionActionByName {
|
|
2905
|
+
_prefix?: string;
|
|
2906
|
+
accountId: string;
|
|
2907
|
+
actionId: string;
|
|
2908
|
+
appAccountId?: string | null;
|
|
2909
|
+
assetId?: string | null;
|
|
2910
|
+
created?: string | Date | number | null;
|
|
2911
|
+
modified?: string | Date | number | null;
|
|
2912
|
+
name?: string;
|
|
2913
|
+
projectId: string;
|
|
2914
|
+
qrCodeId?: string | null;
|
|
2915
|
+
sessionId: string;
|
|
2916
|
+
timestamp: string | Date | number;
|
|
2917
|
+
}
|
|
2918
|
+
export interface SessionActionByTimestamp {
|
|
2919
|
+
_prefix?: string;
|
|
2920
|
+
accountId: string;
|
|
2921
|
+
appAccountId?: string | null;
|
|
2922
|
+
assetId?: string | null;
|
|
2923
|
+
created?: string | Date | number | null;
|
|
2924
|
+
modified?: string | Date | number | null;
|
|
2925
|
+
projectId: string;
|
|
2926
|
+
qrCodeId?: string | null;
|
|
2927
|
+
sessionId: string;
|
|
2928
|
+
timestamp: string | Date | number;
|
|
2929
|
+
}
|
|
2653
2930
|
export interface Sms {
|
|
2654
2931
|
body: string;
|
|
2655
2932
|
contactId: string;
|
|
@@ -2713,8 +2990,10 @@ export interface TagType {
|
|
|
2713
2990
|
commonProperties?: NestedKeyValueObject | null;
|
|
2714
2991
|
created?: string | Date | number | null;
|
|
2715
2992
|
imageOptions?: QrCodeImageOptions | null;
|
|
2993
|
+
incrementor?: Array<any>;
|
|
2716
2994
|
intent: string;
|
|
2717
2995
|
isAskingForGPS?: boolean;
|
|
2996
|
+
isUsingPrefixValues?: boolean;
|
|
2718
2997
|
leadingCharacter: string;
|
|
2719
2998
|
modified?: string | Date | number | null;
|
|
2720
2999
|
name: string;
|
|
@@ -2757,6 +3036,49 @@ export interface TemporaryCode {
|
|
|
2757
3036
|
phoneNumber?: string | null;
|
|
2758
3037
|
status?: string;
|
|
2759
3038
|
}
|
|
3039
|
+
export interface URLSafety {
|
|
3040
|
+
created?: string | Date | number | null;
|
|
3041
|
+
expiresAt?: string | Date | number | null;
|
|
3042
|
+
isBlacklisted?: boolean;
|
|
3043
|
+
isThreat?: boolean;
|
|
3044
|
+
modified?: string | Date | number | null;
|
|
3045
|
+
threatTypes?: Array<any> | null;
|
|
3046
|
+
timesChecked: number;
|
|
3047
|
+
url: string;
|
|
3048
|
+
}
|
|
3049
|
+
export interface URLSafetyByCreated {
|
|
3050
|
+
_GLOBAL: string;
|
|
3051
|
+
_created: string | Date | number;
|
|
3052
|
+
_prefix?: string;
|
|
3053
|
+
created?: string | Date | number | null;
|
|
3054
|
+
modified?: string | Date | number | null;
|
|
3055
|
+
url: string;
|
|
3056
|
+
}
|
|
3057
|
+
export interface URLSafetyByModified {
|
|
3058
|
+
_GLOBAL: string;
|
|
3059
|
+
_modified: string | Date | number;
|
|
3060
|
+
_prefix?: string;
|
|
3061
|
+
created?: string | Date | number | null;
|
|
3062
|
+
modified?: string | Date | number | null;
|
|
3063
|
+
url: string;
|
|
3064
|
+
}
|
|
3065
|
+
export interface URLSafetyByTimesChecked {
|
|
3066
|
+
_GLOBAL: string;
|
|
3067
|
+
_modified: string | Date | number;
|
|
3068
|
+
_prefix?: string;
|
|
3069
|
+
created?: string | Date | number | null;
|
|
3070
|
+
modified?: string | Date | number | null;
|
|
3071
|
+
timesChecked: number;
|
|
3072
|
+
url: string;
|
|
3073
|
+
}
|
|
3074
|
+
export interface URLSafetyByUrl {
|
|
3075
|
+
_GLOBAL: string;
|
|
3076
|
+
_modified: string | Date | number;
|
|
3077
|
+
_prefix?: string;
|
|
3078
|
+
created?: string | Date | number | null;
|
|
3079
|
+
modified?: string | Date | number | null;
|
|
3080
|
+
url: string;
|
|
3081
|
+
}
|
|
2760
3082
|
export interface User {
|
|
2761
3083
|
created?: string | Date | number | null;
|
|
2762
3084
|
email: string;
|
|
@@ -2786,6 +3108,7 @@ export interface UserMedia {
|
|
|
2786
3108
|
accountId: string;
|
|
2787
3109
|
appAccountId?: string | null;
|
|
2788
3110
|
assetId?: string | null;
|
|
3111
|
+
category?: string | null;
|
|
2789
3112
|
containsVirus?: boolean | null;
|
|
2790
3113
|
created?: string | Date | number | null;
|
|
2791
3114
|
expiresAt?: string | Date | number | null;
|
|
@@ -2793,7 +3116,7 @@ export interface UserMedia {
|
|
|
2793
3116
|
lastScannedAt?: string | Date | number | null;
|
|
2794
3117
|
mediaId: string;
|
|
2795
3118
|
modified?: string | Date | number | null;
|
|
2796
|
-
name
|
|
3119
|
+
name?: string | null;
|
|
2797
3120
|
projectId?: string | null;
|
|
2798
3121
|
scanId?: string | null;
|
|
2799
3122
|
size?: number | null;
|
|
@@ -2877,6 +3200,59 @@ export interface UserSettings {
|
|
|
2877
3200
|
path: UserSettingsDomain;
|
|
2878
3201
|
userId: string;
|
|
2879
3202
|
}
|
|
3203
|
+
export interface WebSession {
|
|
3204
|
+
accountId: string;
|
|
3205
|
+
appAccountId?: string | null;
|
|
3206
|
+
assetId: string;
|
|
3207
|
+
category?: string | null;
|
|
3208
|
+
created?: string | Date | number | null;
|
|
3209
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
3210
|
+
lastActionId?: string | Date | number | null;
|
|
3211
|
+
modified?: string | Date | number | null;
|
|
3212
|
+
newTags?: Array<any> | null;
|
|
3213
|
+
projectId: string;
|
|
3214
|
+
qrCodeId: string;
|
|
3215
|
+
sessionId: string;
|
|
3216
|
+
tagCounter: number;
|
|
3217
|
+
tags?: Array<any> | null;
|
|
3218
|
+
}
|
|
3219
|
+
export interface WebSessionByCategory {
|
|
3220
|
+
_prefix?: string;
|
|
3221
|
+
accountId: string;
|
|
3222
|
+
appAccountId?: string | null;
|
|
3223
|
+
assetId?: string | null;
|
|
3224
|
+
category?: string;
|
|
3225
|
+
created?: string | Date | number | null;
|
|
3226
|
+
modified?: string | Date | number | null;
|
|
3227
|
+
projectId: string;
|
|
3228
|
+
qrCodeId?: string | null;
|
|
3229
|
+
sessionId: string;
|
|
3230
|
+
timestamp: string | Date | number;
|
|
3231
|
+
}
|
|
3232
|
+
export interface WebSessionByTimestamp {
|
|
3233
|
+
_prefix?: string;
|
|
3234
|
+
accountId: string;
|
|
3235
|
+
appAccountId?: string | null;
|
|
3236
|
+
assetId?: string | null;
|
|
3237
|
+
created?: string | Date | number | null;
|
|
3238
|
+
modified?: string | Date | number | null;
|
|
3239
|
+
projectId: string;
|
|
3240
|
+
qrCodeId?: string | null;
|
|
3241
|
+
sessionId: string;
|
|
3242
|
+
timestamp: string | Date | number;
|
|
3243
|
+
}
|
|
3244
|
+
export interface CheckUrlSafetyByAccountIdPathParameters {
|
|
3245
|
+
accountId: string;
|
|
3246
|
+
}
|
|
3247
|
+
export interface CheckUrlSafetyByAccountIdRequestBody {
|
|
3248
|
+
ignoreBlackList?: boolean;
|
|
3249
|
+
qrCodeId?: string | null;
|
|
3250
|
+
urls: Array<any>;
|
|
3251
|
+
}
|
|
3252
|
+
export interface CheckUrlSafetyByAccountIdResponseBody {
|
|
3253
|
+
isSafe: boolean;
|
|
3254
|
+
urlSafeties: URLSafety[];
|
|
3255
|
+
}
|
|
2880
3256
|
export interface CreateApiKeyByAccountIdPathParameters {
|
|
2881
3257
|
accountId: string;
|
|
2882
3258
|
}
|
|
@@ -2919,6 +3295,16 @@ export interface CreateAssetTypeByAccountIdResponseBody {
|
|
|
2919
3295
|
accountId: string;
|
|
2920
3296
|
assetType: AssetType;
|
|
2921
3297
|
}
|
|
3298
|
+
export interface CreateImageUploadPresignedUrlPathParameters {
|
|
3299
|
+
accountId: string;
|
|
3300
|
+
}
|
|
3301
|
+
export interface CreateImageUploadPresignedUrlRequestBody {
|
|
3302
|
+
imageContentType: string;
|
|
3303
|
+
}
|
|
3304
|
+
export interface CreateImageUploadPresignedUrlResponseBody {
|
|
3305
|
+
image: S3Image;
|
|
3306
|
+
presignedUrl: string;
|
|
3307
|
+
}
|
|
2922
3308
|
export interface CreateInvitationByAccountIdPathParameters {
|
|
2923
3309
|
accountId: string;
|
|
2924
3310
|
}
|
|
@@ -2962,21 +3348,22 @@ export interface CreatePrintPageTemplateByAccountIdPathParameters {
|
|
|
2962
3348
|
export interface CreatePrintPageTemplateByAccountIdRequestBody {
|
|
2963
3349
|
created?: string | Date | number | null;
|
|
2964
3350
|
format?: PrintFormat | null;
|
|
2965
|
-
horizontalMargin
|
|
2966
|
-
horizontalPadding
|
|
3351
|
+
horizontalMargin: number;
|
|
3352
|
+
horizontalPadding: number;
|
|
3353
|
+
isDeleted?: boolean | null;
|
|
2967
3354
|
modified?: string | Date | number | null;
|
|
2968
|
-
name
|
|
2969
|
-
numberOfColumns
|
|
2970
|
-
numberOfRows
|
|
2971
|
-
orientation?: PrintOrientation;
|
|
2972
|
-
pageSize
|
|
2973
|
-
printMode?: PrintMode;
|
|
3355
|
+
name: string;
|
|
3356
|
+
numberOfColumns: number;
|
|
3357
|
+
numberOfRows: number;
|
|
3358
|
+
orientation?: PrintOrientation | null;
|
|
3359
|
+
pageSize: Array<any>;
|
|
3360
|
+
printMode?: PrintMode | null;
|
|
2974
3361
|
printTemplate?: PrintTemplate | null;
|
|
2975
|
-
stickerShape
|
|
2976
|
-
stickerSize
|
|
3362
|
+
stickerShape: StickerShape;
|
|
3363
|
+
stickerSize: Array<any>;
|
|
2977
3364
|
unit?: PrintUnit;
|
|
2978
|
-
verticalMargin
|
|
2979
|
-
verticalPadding
|
|
3365
|
+
verticalMargin: number;
|
|
3366
|
+
verticalPadding: number;
|
|
2980
3367
|
}
|
|
2981
3368
|
export interface CreatePrintPageTemplateByAccountIdResponseBody {
|
|
2982
3369
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -2991,6 +3378,7 @@ export interface CreatePrintStickerTemplateByAccountIdRequestBody {
|
|
|
2991
3378
|
serializedFabric: NestedKeyValueObject;
|
|
2992
3379
|
stickerShape: StickerShape;
|
|
2993
3380
|
stickerSize: Array<any>;
|
|
3381
|
+
unit?: PrintUnit;
|
|
2994
3382
|
}
|
|
2995
3383
|
export interface CreatePrintStickerTemplateByAccountIdResponseBody {
|
|
2996
3384
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -3054,9 +3442,12 @@ export interface CreateUserMediaPresignedUrlByAccountIdPathParameters {
|
|
|
3054
3442
|
export interface CreateUserMediaPresignedUrlByAccountIdRequestBody {
|
|
3055
3443
|
allowExpiry?: boolean;
|
|
3056
3444
|
assetId?: string | null;
|
|
3445
|
+
category?: string | null;
|
|
3057
3446
|
fileType: UserMediaFileTypes;
|
|
3447
|
+
name?: string | null;
|
|
3058
3448
|
projectId?: string | null;
|
|
3059
3449
|
scanId?: string | null;
|
|
3450
|
+
subFolder?: string | null;
|
|
3060
3451
|
}
|
|
3061
3452
|
export interface CreateUserMediaPresignedUrlByAccountIdResponseBody {
|
|
3062
3453
|
presignedUrl: string;
|
|
@@ -3077,6 +3468,10 @@ export interface DeleteUserByAccountIdPathParameters {
|
|
|
3077
3468
|
accountId: string;
|
|
3078
3469
|
userId: string;
|
|
3079
3470
|
}
|
|
3471
|
+
export interface EnablePluginByAccountIdPathParameters {
|
|
3472
|
+
accountId: string;
|
|
3473
|
+
pluginId: string;
|
|
3474
|
+
}
|
|
3080
3475
|
export interface GetAccountPathParameters {
|
|
3081
3476
|
accountId: string;
|
|
3082
3477
|
}
|
|
@@ -3362,6 +3757,14 @@ export interface GetMostScannedAssetsByAccountIdQueryStringParameters {
|
|
|
3362
3757
|
export interface GetMostScannedAssetsByAccountIdResponseBody {
|
|
3363
3758
|
mostScannedAssets: Array<any>;
|
|
3364
3759
|
}
|
|
3760
|
+
export interface GetPluginsByAccountIdPathParameters {
|
|
3761
|
+
accountId: string;
|
|
3762
|
+
}
|
|
3763
|
+
export interface GetPluginsByAccountIdResponseBody {
|
|
3764
|
+
accountId: string;
|
|
3765
|
+
count?: number;
|
|
3766
|
+
plugins: Plugin[];
|
|
3767
|
+
}
|
|
3365
3768
|
export interface GetPricePlanByAccountIdPathParameters {
|
|
3366
3769
|
accountId: string;
|
|
3367
3770
|
}
|
|
@@ -3380,6 +3783,7 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3380
3783
|
}
|
|
3381
3784
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3382
3785
|
accountId: string;
|
|
3786
|
+
lastKey?: string | null;
|
|
3383
3787
|
numberOfPrintJobs: number;
|
|
3384
3788
|
printJobs: PrintJob[];
|
|
3385
3789
|
}
|
|
@@ -3443,6 +3847,19 @@ export interface GetQrCodeLogosByAccountIdResponseBody {
|
|
|
3443
3847
|
numberOfQrCodeLogos: number;
|
|
3444
3848
|
qrCodeLogos: QrCodeLogo[];
|
|
3445
3849
|
}
|
|
3850
|
+
export interface GetQrcodeScansExportByAccountIdPathParameters {
|
|
3851
|
+
accountId: string;
|
|
3852
|
+
}
|
|
3853
|
+
export interface GetQrcodeScansExportByAccountIdRequestBody {
|
|
3854
|
+
email?: string | null;
|
|
3855
|
+
format?: string;
|
|
3856
|
+
from?: string | Date | number | null;
|
|
3857
|
+
to?: string | Date | number | null;
|
|
3858
|
+
}
|
|
3859
|
+
export interface GetQrcodeScansExportByAccountIdResponseBody {
|
|
3860
|
+
fileName: string;
|
|
3861
|
+
job: Job;
|
|
3862
|
+
}
|
|
3446
3863
|
export interface GetQrCodeStylingTemplatesByAccountIdPathParameters {
|
|
3447
3864
|
accountId: string;
|
|
3448
3865
|
}
|
|
@@ -3466,6 +3883,7 @@ export interface GetQrCodesByAccountIdQueryStringParameters {
|
|
|
3466
3883
|
lastKey?: string | null;
|
|
3467
3884
|
limit?: number | null;
|
|
3468
3885
|
sortField?: QrCodeSortingTypes | null;
|
|
3886
|
+
willGetLogoIds?: boolean | null;
|
|
3469
3887
|
}
|
|
3470
3888
|
export interface GetQrCodesByAccountIdResponseBody {
|
|
3471
3889
|
accountId: string;
|
|
@@ -3564,6 +3982,7 @@ export interface GetUserMediasByAccountIdPathParameters {
|
|
|
3564
3982
|
}
|
|
3565
3983
|
export interface GetUserMediasByAccountIdQueryStringParameters {
|
|
3566
3984
|
ascending?: boolean | null;
|
|
3985
|
+
category?: string | null;
|
|
3567
3986
|
fileType?: string | null;
|
|
3568
3987
|
lastKey?: string | null;
|
|
3569
3988
|
limit?: number | null;
|
|
@@ -4050,7 +4469,7 @@ export interface GetAssetQueryStringParameters {
|
|
|
4050
4469
|
foregroundGradientRotation?: number | null;
|
|
4051
4470
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
4052
4471
|
format?: QrCodeType | null;
|
|
4053
|
-
|
|
4472
|
+
getUserMedias?: boolean;
|
|
4054
4473
|
lightColor?: string | null;
|
|
4055
4474
|
logo?: string | null;
|
|
4056
4475
|
logoMargin?: number | null;
|
|
@@ -4192,6 +4611,7 @@ export interface GetUserMediasByAssetIdPathParameters {
|
|
|
4192
4611
|
}
|
|
4193
4612
|
export interface GetUserMediasByAssetIdQueryStringParameters {
|
|
4194
4613
|
ascending?: boolean | null;
|
|
4614
|
+
category?: string | null;
|
|
4195
4615
|
fileType?: string | null;
|
|
4196
4616
|
lastKey?: string | null;
|
|
4197
4617
|
limit?: number | null;
|
|
@@ -4531,6 +4951,12 @@ export interface DeleteJobPathParameters {
|
|
|
4531
4951
|
export interface DeleteJobResponseBody {
|
|
4532
4952
|
job: Job;
|
|
4533
4953
|
}
|
|
4954
|
+
export interface DeletePrintJobPathParameters {
|
|
4955
|
+
printJobId: string;
|
|
4956
|
+
}
|
|
4957
|
+
export interface DeletePrintJobResponseBody {
|
|
4958
|
+
printJob: PrintJob;
|
|
4959
|
+
}
|
|
4534
4960
|
export interface GetJobPathParameters {
|
|
4535
4961
|
jobId: string;
|
|
4536
4962
|
}
|
|
@@ -4620,6 +5046,7 @@ export interface CreateAssetByProjectIdRequestBody extends NestedAsset {
|
|
|
4620
5046
|
qrCodes?: NestedQrCode[] | null;
|
|
4621
5047
|
state?: string | null;
|
|
4622
5048
|
useCustomDomain?: boolean;
|
|
5049
|
+
willCreateSession?: boolean | null;
|
|
4623
5050
|
}
|
|
4624
5051
|
export interface CreateAssetByProjectIdResponseBody {
|
|
4625
5052
|
asset: ResponseAsset;
|
|
@@ -4919,6 +5346,7 @@ export interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset
|
|
|
4919
5346
|
name: string;
|
|
4920
5347
|
qrCodes?: NestedQrCode[] | null;
|
|
4921
5348
|
state?: string | null;
|
|
5349
|
+
willCreateSession?: boolean | null;
|
|
4922
5350
|
}
|
|
4923
5351
|
export interface GetBatchesByProjectIdResponseBody {
|
|
4924
5352
|
asset: ResponseAsset;
|
|
@@ -4991,6 +5419,19 @@ export interface GetProjectByProjectIdPathParameters {
|
|
|
4991
5419
|
export interface GetProjectByProjectIdResponseBody {
|
|
4992
5420
|
project: Project;
|
|
4993
5421
|
}
|
|
5422
|
+
export interface GetQrCodeScansExportByProjectIdPathParameters {
|
|
5423
|
+
projectId: string;
|
|
5424
|
+
}
|
|
5425
|
+
export interface GetQrCodeScansExportByProjectIdRequestBody {
|
|
5426
|
+
email?: string | null;
|
|
5427
|
+
format?: string;
|
|
5428
|
+
from?: string | Date | number | null;
|
|
5429
|
+
to?: string | Date | number | null;
|
|
5430
|
+
}
|
|
5431
|
+
export interface GetQrCodeScansExportByProjectIdResponseBody {
|
|
5432
|
+
fileName: string;
|
|
5433
|
+
job: Job;
|
|
5434
|
+
}
|
|
4994
5435
|
export interface GetQrCodesByProjectIdPathParameters {
|
|
4995
5436
|
projectId: string;
|
|
4996
5437
|
}
|
|
@@ -5000,6 +5441,7 @@ export interface GetQrCodesByProjectIdQueryStringParameters {
|
|
|
5000
5441
|
lastKey?: string | null;
|
|
5001
5442
|
limit?: number | null;
|
|
5002
5443
|
sortField?: QrCodeSortingTypes | null;
|
|
5444
|
+
willGetLogoIds?: boolean | null;
|
|
5003
5445
|
}
|
|
5004
5446
|
export interface GetQrCodesByProjectIdResponseBody {
|
|
5005
5447
|
lastKey?: string | null;
|
|
@@ -5096,6 +5538,7 @@ export interface GetUserMediasByProjectIdPathParameters {
|
|
|
5096
5538
|
}
|
|
5097
5539
|
export interface GetUserMediasByProjectIdQueryStringParameters {
|
|
5098
5540
|
ascending?: boolean | null;
|
|
5541
|
+
category?: string | null;
|
|
5099
5542
|
fileType?: string | null;
|
|
5100
5543
|
lastKey?: string | null;
|
|
5101
5544
|
limit?: number | null;
|
|
@@ -5255,7 +5698,7 @@ export interface GetScanPathParameters {
|
|
|
5255
5698
|
scanId: string;
|
|
5256
5699
|
}
|
|
5257
5700
|
export interface GetScanQueryStringParameters {
|
|
5258
|
-
|
|
5701
|
+
getUserMedias?: boolean;
|
|
5259
5702
|
}
|
|
5260
5703
|
export interface GetScanResponseBody {
|
|
5261
5704
|
asset: Asset;
|
|
@@ -5344,21 +5787,22 @@ export interface UpdatePrintPageTemplatePathParameters {
|
|
|
5344
5787
|
export interface UpdatePrintPageTemplateRequestBody {
|
|
5345
5788
|
created?: string | Date | number | null;
|
|
5346
5789
|
format?: PrintFormat | null;
|
|
5347
|
-
horizontalMargin
|
|
5348
|
-
horizontalPadding
|
|
5790
|
+
horizontalMargin: number;
|
|
5791
|
+
horizontalPadding: number;
|
|
5792
|
+
isDeleted?: boolean | null;
|
|
5349
5793
|
modified?: string | Date | number | null;
|
|
5350
|
-
name
|
|
5351
|
-
numberOfColumns
|
|
5352
|
-
numberOfRows
|
|
5353
|
-
orientation
|
|
5354
|
-
pageSize
|
|
5355
|
-
printMode
|
|
5794
|
+
name: string;
|
|
5795
|
+
numberOfColumns: number;
|
|
5796
|
+
numberOfRows: number;
|
|
5797
|
+
orientation?: PrintOrientation | null;
|
|
5798
|
+
pageSize: Array<any>;
|
|
5799
|
+
printMode?: PrintMode | null;
|
|
5356
5800
|
printTemplate?: PrintTemplate | null;
|
|
5357
|
-
stickerShape
|
|
5358
|
-
stickerSize
|
|
5801
|
+
stickerShape: StickerShape;
|
|
5802
|
+
stickerSize: Array<any>;
|
|
5359
5803
|
unit: PrintUnit;
|
|
5360
|
-
verticalMargin
|
|
5361
|
-
verticalPadding
|
|
5804
|
+
verticalMargin: number;
|
|
5805
|
+
verticalPadding: number;
|
|
5362
5806
|
}
|
|
5363
5807
|
export interface UpdatePrintPageTemplateResponseBody {
|
|
5364
5808
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -5369,12 +5813,15 @@ export interface UpdatePrintStickerTemplatePathParameters {
|
|
|
5369
5813
|
export interface UpdatePrintStickerTemplateRequestBody {
|
|
5370
5814
|
bleed?: boolean | null;
|
|
5371
5815
|
created?: string | Date | number | null;
|
|
5816
|
+
isDeleted?: boolean | null;
|
|
5817
|
+
lastUsedAt?: string | Date | number | null;
|
|
5372
5818
|
modified?: string | Date | number | null;
|
|
5373
5819
|
name: string;
|
|
5374
5820
|
previewImage?: string | null;
|
|
5375
5821
|
serializedFabric: NestedKeyValueObject;
|
|
5376
|
-
stickerShape
|
|
5377
|
-
stickerSize
|
|
5822
|
+
stickerShape: StickerShape;
|
|
5823
|
+
stickerSize: Array<any>;
|
|
5824
|
+
unit: PrintUnit;
|
|
5378
5825
|
}
|
|
5379
5826
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5380
5827
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -5596,6 +6043,40 @@ export interface StripeEventRequestBody {
|
|
|
5596
6043
|
request: NestedKeyValueObject;
|
|
5597
6044
|
type: string;
|
|
5598
6045
|
}
|
|
6046
|
+
export interface CreateSessionActionsPathParameters {
|
|
6047
|
+
sessionId: string;
|
|
6048
|
+
}
|
|
6049
|
+
export interface CreateSessionActionsRequestBody {
|
|
6050
|
+
sessionActions: RequestSessionAction[];
|
|
6051
|
+
}
|
|
6052
|
+
export interface CreateSessionActionsResponseBody {
|
|
6053
|
+
session: ResponseSession;
|
|
6054
|
+
}
|
|
6055
|
+
export interface GetWebSessionPathParameters {
|
|
6056
|
+
sessionId: string;
|
|
6057
|
+
}
|
|
6058
|
+
export interface GetWebSessionQueryStringParameters {
|
|
6059
|
+
ascending?: boolean | null;
|
|
6060
|
+
getLastSessionAction?: boolean | null;
|
|
6061
|
+
getSessionActions?: boolean | null;
|
|
6062
|
+
lastKey?: string | null;
|
|
6063
|
+
limit?: number | null;
|
|
6064
|
+
name?: string | null;
|
|
6065
|
+
}
|
|
6066
|
+
export interface GetWebSessionResponseBody {
|
|
6067
|
+
session: ResponseSession;
|
|
6068
|
+
}
|
|
6069
|
+
export interface UpdateWebSessionPathParameters {
|
|
6070
|
+
sessionId: string;
|
|
6071
|
+
}
|
|
6072
|
+
export interface UpdateWebSessionRequestBody {
|
|
6073
|
+
category?: string | null;
|
|
6074
|
+
customAttributes?: NestedKeyValueObject | null;
|
|
6075
|
+
tags?: Array<any> | null;
|
|
6076
|
+
}
|
|
6077
|
+
export interface UpdateWebSessionResponseBody {
|
|
6078
|
+
session: WebSession;
|
|
6079
|
+
}
|
|
5599
6080
|
export interface ChangePasswordRequestBody {
|
|
5600
6081
|
newPassword: string;
|
|
5601
6082
|
password?: string | null;
|
|
@@ -5655,6 +6136,9 @@ export interface ResendConfirmationRequestBody {
|
|
|
5655
6136
|
export interface ResetPasswordRequestBody {
|
|
5656
6137
|
email: string;
|
|
5657
6138
|
}
|
|
6139
|
+
export declare class CheckUrlSafetyByAccountIdRequest extends RequestPost<CheckUrlSafetyByAccountIdPathParameters, undefined, CheckUrlSafetyByAccountIdRequestBody, CheckUrlSafetyByAccountIdResponseBody> {
|
|
6140
|
+
routeSegments?: RequestRouteSegment[];
|
|
6141
|
+
}
|
|
5658
6142
|
export declare class CreateApiKeyByAccountIdRequest extends RequestPost<CreateApiKeyByAccountIdPathParameters, undefined, CreateApiKeyByAccountIdRequestBody, CreateApiKeyByAccountIdResponseBody> {
|
|
5659
6143
|
routeSegments?: RequestRouteSegment[];
|
|
5660
6144
|
}
|
|
@@ -5664,6 +6148,9 @@ export declare class CreateAppRequest extends RequestPost<CreateAppPathParameter
|
|
|
5664
6148
|
export declare class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {
|
|
5665
6149
|
routeSegments?: RequestRouteSegment[];
|
|
5666
6150
|
}
|
|
6151
|
+
export declare class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedUrlPathParameters, undefined, CreateImageUploadPresignedUrlRequestBody, CreateImageUploadPresignedUrlResponseBody> {
|
|
6152
|
+
routeSegments?: RequestRouteSegment[];
|
|
6153
|
+
}
|
|
5667
6154
|
export declare class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {
|
|
5668
6155
|
routeSegments?: RequestRouteSegment[];
|
|
5669
6156
|
}
|
|
@@ -5703,6 +6190,9 @@ export declare class DeleteContactsByAccountIdRequest extends RequestDelete<Dele
|
|
|
5703
6190
|
export declare class DeleteUserByAccountIdRequest extends RequestDelete<DeleteUserByAccountIdPathParameters, undefined, undefined> {
|
|
5704
6191
|
routeSegments?: RequestRouteSegment[];
|
|
5705
6192
|
}
|
|
6193
|
+
export declare class EnablePluginByAccountIdRequest extends RequestPatch<EnablePluginByAccountIdPathParameters, undefined, undefined, undefined> {
|
|
6194
|
+
routeSegments?: RequestRouteSegment[];
|
|
6195
|
+
}
|
|
5706
6196
|
export declare class GetAccountRequest extends RequestGet<GetAccountPathParameters, undefined, GetAccountResponseBody> {
|
|
5707
6197
|
routeSegments?: RequestRouteSegment[];
|
|
5708
6198
|
}
|
|
@@ -5760,6 +6250,9 @@ export declare class GetLocationsByAccountIdRequest extends RequestGet<GetLocati
|
|
|
5760
6250
|
export declare class GetMostScannedAssetsByAccountIdRequest extends RequestGet<GetMostScannedAssetsByAccountIdPathParameters, GetMostScannedAssetsByAccountIdQueryStringParameters, GetMostScannedAssetsByAccountIdResponseBody> {
|
|
5761
6251
|
routeSegments?: RequestRouteSegment[];
|
|
5762
6252
|
}
|
|
6253
|
+
export declare class GetPluginsByAccountIdRequest extends RequestGet<GetPluginsByAccountIdPathParameters, undefined, GetPluginsByAccountIdResponseBody> {
|
|
6254
|
+
routeSegments?: RequestRouteSegment[];
|
|
6255
|
+
}
|
|
5763
6256
|
export declare class GetPricePlanByAccountIdRequest extends RequestGet<GetPricePlanByAccountIdPathParameters, undefined, GetPricePlanByAccountIdResponseBody> {
|
|
5764
6257
|
routeSegments?: RequestRouteSegment[];
|
|
5765
6258
|
}
|
|
@@ -5778,6 +6271,9 @@ export declare class GetProjectsByAccountIdRequest extends RequestGet<GetProject
|
|
|
5778
6271
|
export declare class GetQrCodeLogosByAccountIdRequest extends RequestGet<GetQrCodeLogosByAccountIdPathParameters, GetQrCodeLogosByAccountIdQueryStringParameters, GetQrCodeLogosByAccountIdResponseBody> {
|
|
5779
6272
|
routeSegments?: RequestRouteSegment[];
|
|
5780
6273
|
}
|
|
6274
|
+
export declare class GetQrcodeScansExportByAccountIdRequest extends RequestPost<GetQrcodeScansExportByAccountIdPathParameters, undefined, GetQrcodeScansExportByAccountIdRequestBody, GetQrcodeScansExportByAccountIdResponseBody> {
|
|
6275
|
+
routeSegments?: RequestRouteSegment[];
|
|
6276
|
+
}
|
|
5781
6277
|
export declare class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<GetQrCodeStylingTemplatesByAccountIdPathParameters, GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, GetQrCodeStylingTemplatesByAccountIdResponseBody> {
|
|
5782
6278
|
routeSegments?: RequestRouteSegment[];
|
|
5783
6279
|
}
|
|
@@ -6030,6 +6526,9 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6030
6526
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6031
6527
|
routeSegments?: RequestRouteSegment[];
|
|
6032
6528
|
}
|
|
6529
|
+
export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
|
|
6530
|
+
routeSegments?: RequestRouteSegment[];
|
|
6531
|
+
}
|
|
6033
6532
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6034
6533
|
routeSegments?: RequestRouteSegment[];
|
|
6035
6534
|
}
|
|
@@ -6138,6 +6637,9 @@ export declare class GetMostScannedAssetsByProjectIdRequest extends RequestGet<G
|
|
|
6138
6637
|
export declare class GetProjectByProjectIdRequest extends RequestGet<GetProjectByProjectIdPathParameters, undefined, GetProjectByProjectIdResponseBody> {
|
|
6139
6638
|
routeSegments?: RequestRouteSegment[];
|
|
6140
6639
|
}
|
|
6640
|
+
export declare class GetQrCodeScansExportByProjectIdRequest extends RequestPost<GetQrCodeScansExportByProjectIdPathParameters, undefined, GetQrCodeScansExportByProjectIdRequestBody, GetQrCodeScansExportByProjectIdResponseBody> {
|
|
6641
|
+
routeSegments?: RequestRouteSegment[];
|
|
6642
|
+
}
|
|
6141
6643
|
export declare class GetQrCodesByProjectIdRequest extends RequestGet<GetQrCodesByProjectIdPathParameters, GetQrCodesByProjectIdQueryStringParameters, GetQrCodesByProjectIdResponseBody> {
|
|
6142
6644
|
routeSegments?: RequestRouteSegment[];
|
|
6143
6645
|
}
|
|
@@ -6291,6 +6793,15 @@ export declare class SmsStatusUpdateRequest extends RequestPost<undefined, undef
|
|
|
6291
6793
|
export declare class StripeEventRequest extends RequestPost<undefined, undefined, StripeEventRequestBody, undefined> {
|
|
6292
6794
|
routeSegments?: RequestRouteSegment[];
|
|
6293
6795
|
}
|
|
6796
|
+
export declare class CreateSessionActionsRequest extends RequestPost<CreateSessionActionsPathParameters, undefined, CreateSessionActionsRequestBody, CreateSessionActionsResponseBody> {
|
|
6797
|
+
routeSegments?: RequestRouteSegment[];
|
|
6798
|
+
}
|
|
6799
|
+
export declare class GetWebSessionRequest extends RequestGet<GetWebSessionPathParameters, GetWebSessionQueryStringParameters, GetWebSessionResponseBody> {
|
|
6800
|
+
routeSegments?: RequestRouteSegment[];
|
|
6801
|
+
}
|
|
6802
|
+
export declare class UpdateWebSessionRequest extends RequestPatch<UpdateWebSessionPathParameters, undefined, UpdateWebSessionRequestBody, UpdateWebSessionResponseBody> {
|
|
6803
|
+
routeSegments?: RequestRouteSegment[];
|
|
6804
|
+
}
|
|
6294
6805
|
export declare class ChangePasswordRequest extends RequestPost<undefined, undefined, ChangePasswordRequestBody, RefreshSessionUserSessionResponseBody> {
|
|
6295
6806
|
routeSegments?: RequestRouteSegment[];
|
|
6296
6807
|
}
|
|
@@ -6321,6 +6832,9 @@ export declare class ResendConfirmationRequest extends RequestPost<undefined, un
|
|
|
6321
6832
|
export declare class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {
|
|
6322
6833
|
routeSegments?: RequestRouteSegment[];
|
|
6323
6834
|
}
|
|
6835
|
+
export declare class SdkAccountUrlSafetiesResources extends Resources {
|
|
6836
|
+
create(requestBody: CheckUrlSafetyByAccountIdRequestBody, options?: any): Promise<CheckUrlSafetyByAccountIdResponseBody>;
|
|
6837
|
+
}
|
|
6324
6838
|
export declare class SdkAccountApikeysResources extends Resources {
|
|
6325
6839
|
create(requestBody: CreateApiKeyByAccountIdRequestBody, options?: any): Promise<CreateApiKeyByAccountIdResponseBody>;
|
|
6326
6840
|
get(queryStringParameters: GetApiKeysByAccountIdQueryStringParameters, options?: any): Promise<GetApiKeysByAccountIdResponseBody>;
|
|
@@ -6333,6 +6847,9 @@ export declare class SdkAccountAssettypesResources extends Resources {
|
|
|
6333
6847
|
create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody>;
|
|
6334
6848
|
get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody>;
|
|
6335
6849
|
}
|
|
6850
|
+
export declare class SdkAccountImageUploadResources extends Resources {
|
|
6851
|
+
create(requestBody: CreateImageUploadPresignedUrlRequestBody, options?: any): Promise<CreateImageUploadPresignedUrlResponseBody>;
|
|
6852
|
+
}
|
|
6336
6853
|
export declare class SdkAccountInvitationsResources extends Resources {
|
|
6337
6854
|
create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody>;
|
|
6338
6855
|
}
|
|
@@ -6381,6 +6898,9 @@ export declare class SdkAccountUserResource extends Resource {
|
|
|
6381
6898
|
get(options?: any): Promise<GetUserByAccountIdResponseBody>;
|
|
6382
6899
|
update(requestBody: UpdateUserByAccountIdRequestBody, options?: any): Promise<UpdateUserByAccountIdResponseBody>;
|
|
6383
6900
|
}
|
|
6901
|
+
export declare class SdkAccountPluginResource extends Resource {
|
|
6902
|
+
update(options?: any): Promise<any>;
|
|
6903
|
+
}
|
|
6384
6904
|
export declare class SdkAccountAdvancedAssetsReportResources extends Resources {
|
|
6385
6905
|
get(queryStringParameters: GetAdvancedAssetReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByAccountIdResponseBody>;
|
|
6386
6906
|
}
|
|
@@ -6423,6 +6943,9 @@ export declare class SdkAccountJobsResources extends Resources {
|
|
|
6423
6943
|
export declare class SdkAccountAssetsMostscannedResources extends Resources {
|
|
6424
6944
|
get(queryStringParameters: GetMostScannedAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByAccountIdResponseBody>;
|
|
6425
6945
|
}
|
|
6946
|
+
export declare class SdkAccountPluginsResources extends Resources {
|
|
6947
|
+
get(options?: any): Promise<GetPluginsByAccountIdResponseBody>;
|
|
6948
|
+
}
|
|
6426
6949
|
export declare class SdkAccountPricePlanResources extends Resources {
|
|
6427
6950
|
get(options?: any): Promise<GetPricePlanByAccountIdResponseBody>;
|
|
6428
6951
|
update(requestBody: UpdatePricePlanByAccountIdRequestBody, options?: any): Promise<UpdatePricePlanByAccountIdResponseBody>;
|
|
@@ -6430,6 +6953,9 @@ export declare class SdkAccountPricePlanResources extends Resources {
|
|
|
6430
6953
|
export declare class SdkAccountPrintJobsResources extends Resources {
|
|
6431
6954
|
get(queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters, options?: any): Promise<GetPrintJobsByAccountIdResponseBody>;
|
|
6432
6955
|
}
|
|
6956
|
+
export declare class SdkAccountExportQrCodesScansResources extends Resources {
|
|
6957
|
+
create(requestBody: GetQrcodeScansExportByAccountIdRequestBody, options?: any): Promise<GetQrcodeScansExportByAccountIdResponseBody>;
|
|
6958
|
+
}
|
|
6433
6959
|
export declare class SdkAccountQrCodesResources extends Resources {
|
|
6434
6960
|
get(queryStringParameters: GetQrCodesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodesByAccountIdResponseBody>;
|
|
6435
6961
|
}
|
|
@@ -6474,9 +7000,11 @@ export declare class SdkAccountQrcodelogosUploadResources extends Resources {
|
|
|
6474
7000
|
create(requestBody: UploadQrCodeLogoByAccountRequestBody, options?: any): Promise<UploadQrCodeLogoByAccountResponseBody>;
|
|
6475
7001
|
}
|
|
6476
7002
|
export declare class SdkAccountResource extends Resource {
|
|
7003
|
+
urlSafeties(): SdkAccountUrlSafetiesResources;
|
|
6477
7004
|
apikeys(): SdkAccountApikeysResources;
|
|
6478
7005
|
apps(): SdkAccountAppsResources;
|
|
6479
7006
|
assettypes(): SdkAccountAssettypesResources;
|
|
7007
|
+
imageUpload(): SdkAccountImageUploadResources;
|
|
6480
7008
|
invitations(): SdkAccountInvitationsResources;
|
|
6481
7009
|
invitationsBatch(): SdkAccountInvitationsBatchResources;
|
|
6482
7010
|
locations(): SdkAccountLocationsResources;
|
|
@@ -6490,6 +7018,7 @@ export declare class SdkAccountResource extends Resource {
|
|
|
6490
7018
|
usermediasPresignedurl(): SdkAccountUsermediasPresignedurlResources;
|
|
6491
7019
|
contactsBatch(): SdkAccountContactsBatchResources;
|
|
6492
7020
|
user(userId: string): SdkAccountUserResource;
|
|
7021
|
+
plugin(pluginId: string): SdkAccountPluginResource;
|
|
6493
7022
|
advancedAssetsReport(): SdkAccountAdvancedAssetsReportResources;
|
|
6494
7023
|
advancedContactsReport(): SdkAccountAdvancedContactsReportResources;
|
|
6495
7024
|
advancedScansReport(): SdkAccountAdvancedScansReportResources;
|
|
@@ -6504,8 +7033,10 @@ export declare class SdkAccountResource extends Resource {
|
|
|
6504
7033
|
contacts(): SdkAccountContactsResources;
|
|
6505
7034
|
jobs(): SdkAccountJobsResources;
|
|
6506
7035
|
assetsMostscanned(): SdkAccountAssetsMostscannedResources;
|
|
7036
|
+
plugins(): SdkAccountPluginsResources;
|
|
6507
7037
|
pricePlan(): SdkAccountPricePlanResources;
|
|
6508
7038
|
printJobs(): SdkAccountPrintJobsResources;
|
|
7039
|
+
exportQrCodesScans(): SdkAccountExportQrCodesScansResources;
|
|
6509
7040
|
qrCodes(): SdkAccountQrCodesResources;
|
|
6510
7041
|
scansDayofweek(): SdkAccountScansDayofweekResources;
|
|
6511
7042
|
scansExport(): SdkAccountScansExportResources;
|
|
@@ -6708,7 +7239,8 @@ export declare class SdkJobResource extends Resource {
|
|
|
6708
7239
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6709
7240
|
}
|
|
6710
7241
|
export declare class SdkPrintJobResource extends Resource {
|
|
6711
|
-
|
|
7242
|
+
delete(options?: any): Promise<DeletePrintJobResponseBody>;
|
|
7243
|
+
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6712
7244
|
}
|
|
6713
7245
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6714
7246
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|
|
@@ -6801,6 +7333,9 @@ export declare class SdkProjectContactsExportResources extends Resources {
|
|
|
6801
7333
|
export declare class SdkProjectAssetsMostscannedResources extends Resources {
|
|
6802
7334
|
get(queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByProjectIdResponseBody>;
|
|
6803
7335
|
}
|
|
7336
|
+
export declare class SdkProjectExportQrCodesScansResources extends Resources {
|
|
7337
|
+
create(requestBody: GetQrCodeScansExportByProjectIdRequestBody, options?: any): Promise<GetQrCodeScansExportByProjectIdResponseBody>;
|
|
7338
|
+
}
|
|
6804
7339
|
export declare class SdkProjectScansDayofweekResources extends Resources {
|
|
6805
7340
|
get(queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByProjectIdResponseBody>;
|
|
6806
7341
|
}
|
|
@@ -6843,6 +7378,7 @@ export declare class SdkProjectResource extends Resource {
|
|
|
6843
7378
|
consent(): SdkProjectConsentResources;
|
|
6844
7379
|
contactsExport(): SdkProjectContactsExportResources;
|
|
6845
7380
|
assetsMostscanned(): SdkProjectAssetsMostscannedResources;
|
|
7381
|
+
exportQrCodesScans(): SdkProjectExportQrCodesScansResources;
|
|
6846
7382
|
scansDayofweek(): SdkProjectScansDayofweekResources;
|
|
6847
7383
|
scansExport(): SdkProjectScansExportResources;
|
|
6848
7384
|
scansTimeofday(): SdkProjectScansTimeofdayResources;
|
|
@@ -6949,6 +7485,14 @@ export declare class SdkWebhookSmsStatusResources extends Resources {
|
|
|
6949
7485
|
export declare class SdkWebhookStripeResources extends Resources {
|
|
6950
7486
|
create(requestBody: StripeEventRequestBody, options?: any): Promise<any>;
|
|
6951
7487
|
}
|
|
7488
|
+
export declare class SdkWebsessionSessionactionsResources extends Resources {
|
|
7489
|
+
create(requestBody: CreateSessionActionsRequestBody, options?: any): Promise<CreateSessionActionsResponseBody>;
|
|
7490
|
+
}
|
|
7491
|
+
export declare class SdkWebsessionResource extends Resource {
|
|
7492
|
+
sessionactions(): SdkWebsessionSessionactionsResources;
|
|
7493
|
+
get(queryStringParameters: GetWebSessionQueryStringParameters, options?: any): Promise<GetWebSessionResponseBody>;
|
|
7494
|
+
update(requestBody: UpdateWebSessionRequestBody, options?: any): Promise<UpdateWebSessionResponseBody>;
|
|
7495
|
+
}
|
|
6952
7496
|
export declare class SdkPasswordAuthUserResources extends Resources {
|
|
6953
7497
|
create(requestBody: ChangePasswordRequestBody, options?: any): Promise<RefreshSessionUserSessionResponseBody>;
|
|
6954
7498
|
}
|
|
@@ -7014,6 +7558,7 @@ export declare class SdkResources extends Resources {
|
|
|
7014
7558
|
webhookSms(): SdkWebhookSmsResources;
|
|
7015
7559
|
webhookSmsStatus(): SdkWebhookSmsStatusResources;
|
|
7016
7560
|
webhookStripe(): SdkWebhookStripeResources;
|
|
7561
|
+
websession(sessionId: string): SdkWebsessionResource;
|
|
7017
7562
|
passwordAuthUser(): SdkPasswordAuthUserResources;
|
|
7018
7563
|
authSession(): SdkAuthSessionResources;
|
|
7019
7564
|
authConfirm(): SdkAuthConfirmResources;
|