@openscreen/internal-sdk 1.7.19 → 1.7.71
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 +51 -247
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -332,8 +332,7 @@ export declare enum QrCodeSortingTypes {
|
|
|
332
332
|
export declare enum QrCodeStatus {
|
|
333
333
|
ACTIVE = "ACTIVE",
|
|
334
334
|
INACTIVE = "INACTIVE",
|
|
335
|
-
SUSPENDED = "SUSPENDED"
|
|
336
|
-
UNSAFE = "UNSAFE"
|
|
335
|
+
SUSPENDED = "SUSPENDED"
|
|
337
336
|
}
|
|
338
337
|
export declare enum QrCodeType {
|
|
339
338
|
PNG = "PNG",
|
|
@@ -393,28 +392,12 @@ export declare enum UserMediaFileTypes {
|
|
|
393
392
|
png = "png",
|
|
394
393
|
mov = "mov",
|
|
395
394
|
mp4 = "mp4",
|
|
396
|
-
jpeg = "jpeg"
|
|
397
|
-
ttf = "ttf",
|
|
398
|
-
otf = "otf",
|
|
399
|
-
woff = "woff",
|
|
400
|
-
woff2 = "woff2",
|
|
401
|
-
csv = "csv",
|
|
402
|
-
json = "json",
|
|
403
|
-
gif = "gif",
|
|
404
|
-
bmp = "bmp",
|
|
405
|
-
webp = "webp",
|
|
406
|
-
svg = "svg",
|
|
407
|
-
tiff = "tiff",
|
|
408
|
-
webm = "webm",
|
|
409
|
-
ogg = "ogg",
|
|
410
|
-
avi = "avi",
|
|
411
|
-
mpeg = "mpeg"
|
|
395
|
+
jpeg = "jpeg"
|
|
412
396
|
}
|
|
413
397
|
export declare enum UserMediaSortingTypes {
|
|
414
398
|
MODIFIED = "MODIFIED",
|
|
415
399
|
NAME = "NAME",
|
|
416
|
-
FILE_TYPE = "FILE_TYPE"
|
|
417
|
-
CATEGORY = "CATEGORY"
|
|
400
|
+
FILE_TYPE = "FILE_TYPE"
|
|
418
401
|
}
|
|
419
402
|
export declare enum UserSettingsDomain {
|
|
420
403
|
DASHBOARD = "DASHBOARD"
|
|
@@ -810,7 +793,7 @@ export interface Asset {
|
|
|
810
793
|
state?: string | null;
|
|
811
794
|
staticQrCodeCount: number;
|
|
812
795
|
thumbnails?: Array<any> | null;
|
|
813
|
-
|
|
796
|
+
userMedia?: UserMedia[] | null;
|
|
814
797
|
}
|
|
815
798
|
export interface AssetByAssetTypeNameAssetName {
|
|
816
799
|
_prefix?: string;
|
|
@@ -1046,7 +1029,7 @@ export interface AssetHistory {
|
|
|
1046
1029
|
state?: string | null;
|
|
1047
1030
|
staticQrCodeCount?: number | null;
|
|
1048
1031
|
thumbnails?: Array<any> | null;
|
|
1049
|
-
|
|
1032
|
+
userMedia?: UserMedia[] | null;
|
|
1050
1033
|
}
|
|
1051
1034
|
export interface AssetType {
|
|
1052
1035
|
accountId: string;
|
|
@@ -1098,81 +1081,6 @@ export interface AssetTypeByStatusTimestamp {
|
|
|
1098
1081
|
state: string;
|
|
1099
1082
|
timestamp: string | Date | number;
|
|
1100
1083
|
}
|
|
1101
|
-
export interface BadUrlAttempt {
|
|
1102
|
-
accountId: string;
|
|
1103
|
-
appAccountId?: string | null;
|
|
1104
|
-
assetContent: NestedKeyValueObject;
|
|
1105
|
-
assetId: string;
|
|
1106
|
-
created?: string | Date | number | null;
|
|
1107
|
-
modified?: string | Date | number | null;
|
|
1108
|
-
projectId?: string | null;
|
|
1109
|
-
qrCodeId: string;
|
|
1110
|
-
timestamp: string | Date | number;
|
|
1111
|
-
url: string;
|
|
1112
|
-
}
|
|
1113
|
-
export interface BadUrlAttemptByTimestamp {
|
|
1114
|
-
_GLOBAL: string;
|
|
1115
|
-
_prefix?: string;
|
|
1116
|
-
accountId: string;
|
|
1117
|
-
appAccountId?: string | null;
|
|
1118
|
-
created?: string | Date | number | null;
|
|
1119
|
-
modified?: string | Date | number | null;
|
|
1120
|
-
projectId?: string | null;
|
|
1121
|
-
qrCodeId?: string | null;
|
|
1122
|
-
timestamp: string | Date | number;
|
|
1123
|
-
url: string;
|
|
1124
|
-
}
|
|
1125
|
-
export interface BadUrlAttemptByUrl {
|
|
1126
|
-
_GLOBAL: string;
|
|
1127
|
-
_prefix?: string;
|
|
1128
|
-
accountId: string;
|
|
1129
|
-
appAccountId?: string | null;
|
|
1130
|
-
created?: string | Date | number | null;
|
|
1131
|
-
modified?: string | Date | number | null;
|
|
1132
|
-
projectId?: string | null;
|
|
1133
|
-
qrCodeId?: string | null;
|
|
1134
|
-
timestamp: string | Date | number;
|
|
1135
|
-
url: string;
|
|
1136
|
-
}
|
|
1137
|
-
export interface BadUrlUsage {
|
|
1138
|
-
created?: string | Date | number | null;
|
|
1139
|
-
modified?: string | Date | number | null;
|
|
1140
|
-
url: string;
|
|
1141
|
-
usageCount: number;
|
|
1142
|
-
}
|
|
1143
|
-
export interface BadUrlUsageByCreated {
|
|
1144
|
-
_GLOBAL: string;
|
|
1145
|
-
_created: string | Date | number;
|
|
1146
|
-
_prefix?: string;
|
|
1147
|
-
created?: string | Date | number | null;
|
|
1148
|
-
modified?: string | Date | number | null;
|
|
1149
|
-
url: string;
|
|
1150
|
-
}
|
|
1151
|
-
export interface BadUrlUsageByModified {
|
|
1152
|
-
_GLOBAL: string;
|
|
1153
|
-
_modified: 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 BadUrlUsageByUrl {
|
|
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 BadUrlUsageByUsageCount {
|
|
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
|
-
usageCount: number;
|
|
1175
|
-
}
|
|
1176
1084
|
export interface Batch {
|
|
1177
1085
|
accountId: string;
|
|
1178
1086
|
appAccountId?: string | null;
|
|
@@ -2259,7 +2167,7 @@ export interface PrintJob {
|
|
|
2259
2167
|
assetIds?: Array<any> | null;
|
|
2260
2168
|
callbackUrl?: string | null;
|
|
2261
2169
|
created?: string | Date | number | null;
|
|
2262
|
-
createdBy
|
|
2170
|
+
createdBy: string;
|
|
2263
2171
|
errorMessage?: NestedKeyValueObject | null;
|
|
2264
2172
|
fileExpiry?: string | Date | number | null;
|
|
2265
2173
|
imageOptions?: QrCodeImageOptions | null;
|
|
@@ -2334,22 +2242,22 @@ export interface PrintPageTemplate {
|
|
|
2334
2242
|
created?: string | Date | number | null;
|
|
2335
2243
|
createdBy: string;
|
|
2336
2244
|
format?: PrintFormat | null;
|
|
2337
|
-
horizontalMargin
|
|
2338
|
-
horizontalPadding
|
|
2245
|
+
horizontalMargin?: number | null;
|
|
2246
|
+
horizontalPadding?: number | null;
|
|
2339
2247
|
modified?: string | Date | number | null;
|
|
2340
|
-
name
|
|
2341
|
-
numberOfColumns
|
|
2342
|
-
numberOfRows
|
|
2343
|
-
orientation?: PrintOrientation
|
|
2344
|
-
pageSize
|
|
2345
|
-
printMode?: PrintMode
|
|
2248
|
+
name?: string | null;
|
|
2249
|
+
numberOfColumns?: number | null;
|
|
2250
|
+
numberOfRows?: number | null;
|
|
2251
|
+
orientation?: PrintOrientation;
|
|
2252
|
+
pageSize?: Array<any> | null;
|
|
2253
|
+
printMode?: PrintMode;
|
|
2346
2254
|
printPageTemplateId: string;
|
|
2347
2255
|
printTemplate?: PrintTemplate | null;
|
|
2348
|
-
stickerShape
|
|
2349
|
-
stickerSize
|
|
2256
|
+
stickerShape?: StickerShape | null;
|
|
2257
|
+
stickerSize?: Array<any> | null;
|
|
2350
2258
|
unit?: PrintUnit;
|
|
2351
|
-
verticalMargin
|
|
2352
|
-
verticalPadding
|
|
2259
|
+
verticalMargin?: number | null;
|
|
2260
|
+
verticalPadding?: number | null;
|
|
2353
2261
|
}
|
|
2354
2262
|
export interface PrintPageTemplateByName {
|
|
2355
2263
|
_prefix?: string;
|
|
@@ -2381,9 +2289,8 @@ export interface PrintStickerTemplate {
|
|
|
2381
2289
|
previewImage?: string | null;
|
|
2382
2290
|
printStickerTemplateId: string;
|
|
2383
2291
|
serializedFabric: NestedKeyValueObject;
|
|
2384
|
-
stickerShape?: StickerShape;
|
|
2385
|
-
stickerSize?: Array<any
|
|
2386
|
-
unit?: PrintUnit;
|
|
2292
|
+
stickerShape?: StickerShape | null;
|
|
2293
|
+
stickerSize?: Array<any> | null;
|
|
2387
2294
|
}
|
|
2388
2295
|
export interface PrintStickerTemplateByName {
|
|
2389
2296
|
_prefix?: string;
|
|
@@ -2511,19 +2418,6 @@ export interface QrCode {
|
|
|
2511
2418
|
validFrom?: string | Date | number | null;
|
|
2512
2419
|
validTo?: string | Date | number | null;
|
|
2513
2420
|
}
|
|
2514
|
-
export interface QrCodeByIntent {
|
|
2515
|
-
_prefix?: string;
|
|
2516
|
-
accountId: string;
|
|
2517
|
-
appAccountId?: string | null;
|
|
2518
|
-
assetId: string;
|
|
2519
|
-
batchId?: string | null;
|
|
2520
|
-
created?: string | Date | number | null;
|
|
2521
|
-
intent: string;
|
|
2522
|
-
modified?: string | Date | number | null;
|
|
2523
|
-
projectId: string;
|
|
2524
|
-
qrCodeId: string;
|
|
2525
|
-
timestamp: string | Date | number;
|
|
2526
|
-
}
|
|
2527
2421
|
export interface QrCodeImage {
|
|
2528
2422
|
data: string;
|
|
2529
2423
|
options?: QrCodeImageOptions;
|
|
@@ -2671,7 +2565,7 @@ export interface ResponseAsset {
|
|
|
2671
2565
|
state?: string | null;
|
|
2672
2566
|
staticQrCodeCount: number;
|
|
2673
2567
|
thumbnails?: Array<any> | null;
|
|
2674
|
-
|
|
2568
|
+
userMedia?: UserMedia[] | null;
|
|
2675
2569
|
}
|
|
2676
2570
|
export interface ResponseBodyUser {
|
|
2677
2571
|
created: string | Date | number;
|
|
@@ -2707,16 +2601,6 @@ export interface ResponseQrCode {
|
|
|
2707
2601
|
validFrom?: string | Date | number | null;
|
|
2708
2602
|
validTo?: string | Date | number | null;
|
|
2709
2603
|
}
|
|
2710
|
-
export interface S3Image {
|
|
2711
|
-
accountId: string;
|
|
2712
|
-
appAccountId?: string | null;
|
|
2713
|
-
created?: string | Date | number | null;
|
|
2714
|
-
imageId: string;
|
|
2715
|
-
internalUrl: string;
|
|
2716
|
-
modified?: string | Date | number | null;
|
|
2717
|
-
s3Key: string;
|
|
2718
|
-
url: string;
|
|
2719
|
-
}
|
|
2720
2604
|
export interface Scan {
|
|
2721
2605
|
assetId: string;
|
|
2722
2606
|
assetName: string;
|
|
@@ -2831,7 +2715,6 @@ export interface TagType {
|
|
|
2831
2715
|
imageOptions?: QrCodeImageOptions | null;
|
|
2832
2716
|
intent: string;
|
|
2833
2717
|
isAskingForGPS?: boolean;
|
|
2834
|
-
isUsingPrefixValues?: boolean;
|
|
2835
2718
|
leadingCharacter: string;
|
|
2836
2719
|
modified?: string | Date | number | null;
|
|
2837
2720
|
name: string;
|
|
@@ -2874,49 +2757,6 @@ export interface TemporaryCode {
|
|
|
2874
2757
|
phoneNumber?: string | null;
|
|
2875
2758
|
status?: string;
|
|
2876
2759
|
}
|
|
2877
|
-
export interface URLSafety {
|
|
2878
|
-
created?: string | Date | number | null;
|
|
2879
|
-
expiresAt?: string | Date | number | null;
|
|
2880
|
-
isBlacklisted?: boolean;
|
|
2881
|
-
isThreat?: boolean;
|
|
2882
|
-
modified?: string | Date | number | null;
|
|
2883
|
-
threatTypes?: Array<any> | null;
|
|
2884
|
-
timesChecked: number;
|
|
2885
|
-
url: string;
|
|
2886
|
-
}
|
|
2887
|
-
export interface URLSafetyByCreated {
|
|
2888
|
-
_GLOBAL: string;
|
|
2889
|
-
_created: string | Date | number;
|
|
2890
|
-
_prefix?: string;
|
|
2891
|
-
created?: string | Date | number | null;
|
|
2892
|
-
modified?: string | Date | number | null;
|
|
2893
|
-
url: string;
|
|
2894
|
-
}
|
|
2895
|
-
export interface URLSafetyByModified {
|
|
2896
|
-
_GLOBAL: string;
|
|
2897
|
-
_modified: string | Date | number;
|
|
2898
|
-
_prefix?: string;
|
|
2899
|
-
created?: string | Date | number | null;
|
|
2900
|
-
modified?: string | Date | number | null;
|
|
2901
|
-
url: string;
|
|
2902
|
-
}
|
|
2903
|
-
export interface URLSafetyByTimesChecked {
|
|
2904
|
-
_GLOBAL: string;
|
|
2905
|
-
_modified: string | Date | number;
|
|
2906
|
-
_prefix?: string;
|
|
2907
|
-
created?: string | Date | number | null;
|
|
2908
|
-
modified?: string | Date | number | null;
|
|
2909
|
-
timesChecked: number;
|
|
2910
|
-
url: string;
|
|
2911
|
-
}
|
|
2912
|
-
export interface URLSafetyByUrl {
|
|
2913
|
-
_GLOBAL: string;
|
|
2914
|
-
_modified: string | Date | number;
|
|
2915
|
-
_prefix?: string;
|
|
2916
|
-
created?: string | Date | number | null;
|
|
2917
|
-
modified?: string | Date | number | null;
|
|
2918
|
-
url: string;
|
|
2919
|
-
}
|
|
2920
2760
|
export interface User {
|
|
2921
2761
|
created?: string | Date | number | null;
|
|
2922
2762
|
email: string;
|
|
@@ -2946,7 +2786,6 @@ export interface UserMedia {
|
|
|
2946
2786
|
accountId: string;
|
|
2947
2787
|
appAccountId?: string | null;
|
|
2948
2788
|
assetId?: string | null;
|
|
2949
|
-
category?: string | null;
|
|
2950
2789
|
containsVirus?: boolean | null;
|
|
2951
2790
|
created?: string | Date | number | null;
|
|
2952
2791
|
expiresAt?: string | Date | number | null;
|
|
@@ -2954,7 +2793,7 @@ export interface UserMedia {
|
|
|
2954
2793
|
lastScannedAt?: string | Date | number | null;
|
|
2955
2794
|
mediaId: string;
|
|
2956
2795
|
modified?: string | Date | number | null;
|
|
2957
|
-
name
|
|
2796
|
+
name: string;
|
|
2958
2797
|
projectId?: string | null;
|
|
2959
2798
|
scanId?: string | null;
|
|
2960
2799
|
size?: number | null;
|
|
@@ -3080,16 +2919,6 @@ export interface CreateAssetTypeByAccountIdResponseBody {
|
|
|
3080
2919
|
accountId: string;
|
|
3081
2920
|
assetType: AssetType;
|
|
3082
2921
|
}
|
|
3083
|
-
export interface CreateImageUploadPresignedUrlPathParameters {
|
|
3084
|
-
accountId: string;
|
|
3085
|
-
}
|
|
3086
|
-
export interface CreateImageUploadPresignedUrlRequestBody {
|
|
3087
|
-
imageContentType: string;
|
|
3088
|
-
}
|
|
3089
|
-
export interface CreateImageUploadPresignedUrlResponseBody {
|
|
3090
|
-
image: S3Image;
|
|
3091
|
-
presignedUrl: string;
|
|
3092
|
-
}
|
|
3093
2922
|
export interface CreateInvitationByAccountIdPathParameters {
|
|
3094
2923
|
accountId: string;
|
|
3095
2924
|
}
|
|
@@ -3133,21 +2962,21 @@ export interface CreatePrintPageTemplateByAccountIdPathParameters {
|
|
|
3133
2962
|
export interface CreatePrintPageTemplateByAccountIdRequestBody {
|
|
3134
2963
|
created?: string | Date | number | null;
|
|
3135
2964
|
format?: PrintFormat | null;
|
|
3136
|
-
horizontalMargin
|
|
3137
|
-
horizontalPadding
|
|
2965
|
+
horizontalMargin?: number | null;
|
|
2966
|
+
horizontalPadding?: number | null;
|
|
3138
2967
|
modified?: string | Date | number | null;
|
|
3139
|
-
name
|
|
3140
|
-
numberOfColumns
|
|
3141
|
-
numberOfRows
|
|
3142
|
-
orientation?: PrintOrientation
|
|
3143
|
-
pageSize
|
|
3144
|
-
printMode?: PrintMode
|
|
2968
|
+
name?: string | null;
|
|
2969
|
+
numberOfColumns?: number | null;
|
|
2970
|
+
numberOfRows?: number | null;
|
|
2971
|
+
orientation?: PrintOrientation;
|
|
2972
|
+
pageSize?: Array<any> | null;
|
|
2973
|
+
printMode?: PrintMode;
|
|
3145
2974
|
printTemplate?: PrintTemplate | null;
|
|
3146
|
-
stickerShape
|
|
3147
|
-
stickerSize
|
|
2975
|
+
stickerShape?: StickerShape | null;
|
|
2976
|
+
stickerSize?: Array<any> | null;
|
|
3148
2977
|
unit?: PrintUnit;
|
|
3149
|
-
verticalMargin
|
|
3150
|
-
verticalPadding
|
|
2978
|
+
verticalMargin?: number | null;
|
|
2979
|
+
verticalPadding?: number | null;
|
|
3151
2980
|
}
|
|
3152
2981
|
export interface CreatePrintPageTemplateByAccountIdResponseBody {
|
|
3153
2982
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -3225,12 +3054,9 @@ export interface CreateUserMediaPresignedUrlByAccountIdPathParameters {
|
|
|
3225
3054
|
export interface CreateUserMediaPresignedUrlByAccountIdRequestBody {
|
|
3226
3055
|
allowExpiry?: boolean;
|
|
3227
3056
|
assetId?: string | null;
|
|
3228
|
-
category?: string | null;
|
|
3229
3057
|
fileType: UserMediaFileTypes;
|
|
3230
|
-
name?: string | null;
|
|
3231
3058
|
projectId?: string | null;
|
|
3232
3059
|
scanId?: string | null;
|
|
3233
|
-
subFolder?: string | null;
|
|
3234
3060
|
}
|
|
3235
3061
|
export interface CreateUserMediaPresignedUrlByAccountIdResponseBody {
|
|
3236
3062
|
presignedUrl: string;
|
|
@@ -3554,7 +3380,6 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3554
3380
|
}
|
|
3555
3381
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3556
3382
|
accountId: string;
|
|
3557
|
-
lastKey?: string | null;
|
|
3558
3383
|
numberOfPrintJobs: number;
|
|
3559
3384
|
printJobs: PrintJob[];
|
|
3560
3385
|
}
|
|
@@ -3739,7 +3564,6 @@ export interface GetUserMediasByAccountIdPathParameters {
|
|
|
3739
3564
|
}
|
|
3740
3565
|
export interface GetUserMediasByAccountIdQueryStringParameters {
|
|
3741
3566
|
ascending?: boolean | null;
|
|
3742
|
-
category?: string | null;
|
|
3743
3567
|
fileType?: string | null;
|
|
3744
3568
|
lastKey?: string | null;
|
|
3745
3569
|
limit?: number | null;
|
|
@@ -4226,7 +4050,7 @@ export interface GetAssetQueryStringParameters {
|
|
|
4226
4050
|
foregroundGradientRotation?: number | null;
|
|
4227
4051
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
4228
4052
|
format?: QrCodeType | null;
|
|
4229
|
-
|
|
4053
|
+
getMedia?: boolean;
|
|
4230
4054
|
lightColor?: string | null;
|
|
4231
4055
|
logo?: string | null;
|
|
4232
4056
|
logoMargin?: number | null;
|
|
@@ -4368,7 +4192,6 @@ export interface GetUserMediasByAssetIdPathParameters {
|
|
|
4368
4192
|
}
|
|
4369
4193
|
export interface GetUserMediasByAssetIdQueryStringParameters {
|
|
4370
4194
|
ascending?: boolean | null;
|
|
4371
|
-
category?: string | null;
|
|
4372
4195
|
fileType?: string | null;
|
|
4373
4196
|
lastKey?: string | null;
|
|
4374
4197
|
limit?: number | null;
|
|
@@ -4708,12 +4531,6 @@ export interface DeleteJobPathParameters {
|
|
|
4708
4531
|
export interface DeleteJobResponseBody {
|
|
4709
4532
|
job: Job;
|
|
4710
4533
|
}
|
|
4711
|
-
export interface DeletePrintJobPathParameters {
|
|
4712
|
-
printJobId: string;
|
|
4713
|
-
}
|
|
4714
|
-
export interface DeletePrintJobResponseBody {
|
|
4715
|
-
printJob: PrintJob;
|
|
4716
|
-
}
|
|
4717
4534
|
export interface GetJobPathParameters {
|
|
4718
4535
|
jobId: string;
|
|
4719
4536
|
}
|
|
@@ -5279,7 +5096,6 @@ export interface GetUserMediasByProjectIdPathParameters {
|
|
|
5279
5096
|
}
|
|
5280
5097
|
export interface GetUserMediasByProjectIdQueryStringParameters {
|
|
5281
5098
|
ascending?: boolean | null;
|
|
5282
|
-
category?: string | null;
|
|
5283
5099
|
fileType?: string | null;
|
|
5284
5100
|
lastKey?: string | null;
|
|
5285
5101
|
limit?: number | null;
|
|
@@ -5439,7 +5255,7 @@ export interface GetScanPathParameters {
|
|
|
5439
5255
|
scanId: string;
|
|
5440
5256
|
}
|
|
5441
5257
|
export interface GetScanQueryStringParameters {
|
|
5442
|
-
|
|
5258
|
+
getMedia?: boolean;
|
|
5443
5259
|
}
|
|
5444
5260
|
export interface GetScanResponseBody {
|
|
5445
5261
|
asset: Asset;
|
|
@@ -5528,21 +5344,21 @@ export interface UpdatePrintPageTemplatePathParameters {
|
|
|
5528
5344
|
export interface UpdatePrintPageTemplateRequestBody {
|
|
5529
5345
|
created?: string | Date | number | null;
|
|
5530
5346
|
format?: PrintFormat | null;
|
|
5531
|
-
horizontalMargin
|
|
5532
|
-
horizontalPadding
|
|
5347
|
+
horizontalMargin?: number | null;
|
|
5348
|
+
horizontalPadding?: number | null;
|
|
5533
5349
|
modified?: string | Date | number | null;
|
|
5534
|
-
name
|
|
5535
|
-
numberOfColumns
|
|
5536
|
-
numberOfRows
|
|
5537
|
-
orientation
|
|
5538
|
-
pageSize
|
|
5539
|
-
printMode
|
|
5350
|
+
name?: string | null;
|
|
5351
|
+
numberOfColumns?: number | null;
|
|
5352
|
+
numberOfRows?: number | null;
|
|
5353
|
+
orientation: PrintOrientation;
|
|
5354
|
+
pageSize?: Array<any> | null;
|
|
5355
|
+
printMode: PrintMode;
|
|
5540
5356
|
printTemplate?: PrintTemplate | null;
|
|
5541
|
-
stickerShape
|
|
5542
|
-
stickerSize
|
|
5357
|
+
stickerShape?: StickerShape | null;
|
|
5358
|
+
stickerSize?: Array<any> | null;
|
|
5543
5359
|
unit: PrintUnit;
|
|
5544
|
-
verticalMargin
|
|
5545
|
-
verticalPadding
|
|
5360
|
+
verticalMargin?: number | null;
|
|
5361
|
+
verticalPadding?: number | null;
|
|
5546
5362
|
}
|
|
5547
5363
|
export interface UpdatePrintPageTemplateResponseBody {
|
|
5548
5364
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -5557,9 +5373,8 @@ export interface UpdatePrintStickerTemplateRequestBody {
|
|
|
5557
5373
|
name: string;
|
|
5558
5374
|
previewImage?: string | null;
|
|
5559
5375
|
serializedFabric: NestedKeyValueObject;
|
|
5560
|
-
stickerShape
|
|
5561
|
-
stickerSize
|
|
5562
|
-
unit: PrintUnit;
|
|
5376
|
+
stickerShape?: StickerShape | null;
|
|
5377
|
+
stickerSize?: Array<any> | null;
|
|
5563
5378
|
}
|
|
5564
5379
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5565
5380
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -5849,9 +5664,6 @@ export declare class CreateAppRequest extends RequestPost<CreateAppPathParameter
|
|
|
5849
5664
|
export declare class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {
|
|
5850
5665
|
routeSegments?: RequestRouteSegment[];
|
|
5851
5666
|
}
|
|
5852
|
-
export declare class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedUrlPathParameters, undefined, CreateImageUploadPresignedUrlRequestBody, CreateImageUploadPresignedUrlResponseBody> {
|
|
5853
|
-
routeSegments?: RequestRouteSegment[];
|
|
5854
|
-
}
|
|
5855
5667
|
export declare class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {
|
|
5856
5668
|
routeSegments?: RequestRouteSegment[];
|
|
5857
5669
|
}
|
|
@@ -6218,9 +6030,6 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6218
6030
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6219
6031
|
routeSegments?: RequestRouteSegment[];
|
|
6220
6032
|
}
|
|
6221
|
-
export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
|
|
6222
|
-
routeSegments?: RequestRouteSegment[];
|
|
6223
|
-
}
|
|
6224
6033
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6225
6034
|
routeSegments?: RequestRouteSegment[];
|
|
6226
6035
|
}
|
|
@@ -6524,9 +6333,6 @@ export declare class SdkAccountAssettypesResources extends Resources {
|
|
|
6524
6333
|
create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody>;
|
|
6525
6334
|
get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody>;
|
|
6526
6335
|
}
|
|
6527
|
-
export declare class SdkAccountImageUploadResources extends Resources {
|
|
6528
|
-
create(requestBody: CreateImageUploadPresignedUrlRequestBody, options?: any): Promise<CreateImageUploadPresignedUrlResponseBody>;
|
|
6529
|
-
}
|
|
6530
6336
|
export declare class SdkAccountInvitationsResources extends Resources {
|
|
6531
6337
|
create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody>;
|
|
6532
6338
|
}
|
|
@@ -6671,7 +6477,6 @@ export declare class SdkAccountResource extends Resource {
|
|
|
6671
6477
|
apikeys(): SdkAccountApikeysResources;
|
|
6672
6478
|
apps(): SdkAccountAppsResources;
|
|
6673
6479
|
assettypes(): SdkAccountAssettypesResources;
|
|
6674
|
-
imageUpload(): SdkAccountImageUploadResources;
|
|
6675
6480
|
invitations(): SdkAccountInvitationsResources;
|
|
6676
6481
|
invitationsBatch(): SdkAccountInvitationsBatchResources;
|
|
6677
6482
|
locations(): SdkAccountLocationsResources;
|
|
@@ -6903,8 +6708,7 @@ export declare class SdkJobResource extends Resource {
|
|
|
6903
6708
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6904
6709
|
}
|
|
6905
6710
|
export declare class SdkPrintJobResource extends Resource {
|
|
6906
|
-
|
|
6907
|
-
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6711
|
+
update(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6908
6712
|
}
|
|
6909
6713
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6910
6714
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|