@openscreen/internal-sdk 1.7.20 → 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 -248
- 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;
|
|
@@ -3162,7 +2991,6 @@ export interface CreatePrintStickerTemplateByAccountIdRequestBody {
|
|
|
3162
2991
|
serializedFabric: NestedKeyValueObject;
|
|
3163
2992
|
stickerShape: StickerShape;
|
|
3164
2993
|
stickerSize: Array<any>;
|
|
3165
|
-
unit?: PrintUnit;
|
|
3166
2994
|
}
|
|
3167
2995
|
export interface CreatePrintStickerTemplateByAccountIdResponseBody {
|
|
3168
2996
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -3226,12 +3054,9 @@ export interface CreateUserMediaPresignedUrlByAccountIdPathParameters {
|
|
|
3226
3054
|
export interface CreateUserMediaPresignedUrlByAccountIdRequestBody {
|
|
3227
3055
|
allowExpiry?: boolean;
|
|
3228
3056
|
assetId?: string | null;
|
|
3229
|
-
category?: string | null;
|
|
3230
3057
|
fileType: UserMediaFileTypes;
|
|
3231
|
-
name?: string | null;
|
|
3232
3058
|
projectId?: string | null;
|
|
3233
3059
|
scanId?: string | null;
|
|
3234
|
-
subFolder?: string | null;
|
|
3235
3060
|
}
|
|
3236
3061
|
export interface CreateUserMediaPresignedUrlByAccountIdResponseBody {
|
|
3237
3062
|
presignedUrl: string;
|
|
@@ -3555,7 +3380,6 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3555
3380
|
}
|
|
3556
3381
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3557
3382
|
accountId: string;
|
|
3558
|
-
lastKey?: string | null;
|
|
3559
3383
|
numberOfPrintJobs: number;
|
|
3560
3384
|
printJobs: PrintJob[];
|
|
3561
3385
|
}
|
|
@@ -3740,7 +3564,6 @@ export interface GetUserMediasByAccountIdPathParameters {
|
|
|
3740
3564
|
}
|
|
3741
3565
|
export interface GetUserMediasByAccountIdQueryStringParameters {
|
|
3742
3566
|
ascending?: boolean | null;
|
|
3743
|
-
category?: string | null;
|
|
3744
3567
|
fileType?: string | null;
|
|
3745
3568
|
lastKey?: string | null;
|
|
3746
3569
|
limit?: number | null;
|
|
@@ -4227,7 +4050,7 @@ export interface GetAssetQueryStringParameters {
|
|
|
4227
4050
|
foregroundGradientRotation?: number | null;
|
|
4228
4051
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
4229
4052
|
format?: QrCodeType | null;
|
|
4230
|
-
|
|
4053
|
+
getMedia?: boolean;
|
|
4231
4054
|
lightColor?: string | null;
|
|
4232
4055
|
logo?: string | null;
|
|
4233
4056
|
logoMargin?: number | null;
|
|
@@ -4369,7 +4192,6 @@ export interface GetUserMediasByAssetIdPathParameters {
|
|
|
4369
4192
|
}
|
|
4370
4193
|
export interface GetUserMediasByAssetIdQueryStringParameters {
|
|
4371
4194
|
ascending?: boolean | null;
|
|
4372
|
-
category?: string | null;
|
|
4373
4195
|
fileType?: string | null;
|
|
4374
4196
|
lastKey?: string | null;
|
|
4375
4197
|
limit?: number | null;
|
|
@@ -4709,12 +4531,6 @@ export interface DeleteJobPathParameters {
|
|
|
4709
4531
|
export interface DeleteJobResponseBody {
|
|
4710
4532
|
job: Job;
|
|
4711
4533
|
}
|
|
4712
|
-
export interface DeletePrintJobPathParameters {
|
|
4713
|
-
printJobId: string;
|
|
4714
|
-
}
|
|
4715
|
-
export interface DeletePrintJobResponseBody {
|
|
4716
|
-
printJob: PrintJob;
|
|
4717
|
-
}
|
|
4718
4534
|
export interface GetJobPathParameters {
|
|
4719
4535
|
jobId: string;
|
|
4720
4536
|
}
|
|
@@ -5280,7 +5096,6 @@ export interface GetUserMediasByProjectIdPathParameters {
|
|
|
5280
5096
|
}
|
|
5281
5097
|
export interface GetUserMediasByProjectIdQueryStringParameters {
|
|
5282
5098
|
ascending?: boolean | null;
|
|
5283
|
-
category?: string | null;
|
|
5284
5099
|
fileType?: string | null;
|
|
5285
5100
|
lastKey?: string | null;
|
|
5286
5101
|
limit?: number | null;
|
|
@@ -5440,7 +5255,7 @@ export interface GetScanPathParameters {
|
|
|
5440
5255
|
scanId: string;
|
|
5441
5256
|
}
|
|
5442
5257
|
export interface GetScanQueryStringParameters {
|
|
5443
|
-
|
|
5258
|
+
getMedia?: boolean;
|
|
5444
5259
|
}
|
|
5445
5260
|
export interface GetScanResponseBody {
|
|
5446
5261
|
asset: Asset;
|
|
@@ -5529,21 +5344,21 @@ export interface UpdatePrintPageTemplatePathParameters {
|
|
|
5529
5344
|
export interface UpdatePrintPageTemplateRequestBody {
|
|
5530
5345
|
created?: string | Date | number | null;
|
|
5531
5346
|
format?: PrintFormat | null;
|
|
5532
|
-
horizontalMargin
|
|
5533
|
-
horizontalPadding
|
|
5347
|
+
horizontalMargin?: number | null;
|
|
5348
|
+
horizontalPadding?: number | null;
|
|
5534
5349
|
modified?: string | Date | number | null;
|
|
5535
|
-
name
|
|
5536
|
-
numberOfColumns
|
|
5537
|
-
numberOfRows
|
|
5538
|
-
orientation
|
|
5539
|
-
pageSize
|
|
5540
|
-
printMode
|
|
5350
|
+
name?: string | null;
|
|
5351
|
+
numberOfColumns?: number | null;
|
|
5352
|
+
numberOfRows?: number | null;
|
|
5353
|
+
orientation: PrintOrientation;
|
|
5354
|
+
pageSize?: Array<any> | null;
|
|
5355
|
+
printMode: PrintMode;
|
|
5541
5356
|
printTemplate?: PrintTemplate | null;
|
|
5542
|
-
stickerShape
|
|
5543
|
-
stickerSize
|
|
5357
|
+
stickerShape?: StickerShape | null;
|
|
5358
|
+
stickerSize?: Array<any> | null;
|
|
5544
5359
|
unit: PrintUnit;
|
|
5545
|
-
verticalMargin
|
|
5546
|
-
verticalPadding
|
|
5360
|
+
verticalMargin?: number | null;
|
|
5361
|
+
verticalPadding?: number | null;
|
|
5547
5362
|
}
|
|
5548
5363
|
export interface UpdatePrintPageTemplateResponseBody {
|
|
5549
5364
|
printPageTemplate: PrintPageTemplate;
|
|
@@ -5558,9 +5373,8 @@ export interface UpdatePrintStickerTemplateRequestBody {
|
|
|
5558
5373
|
name: string;
|
|
5559
5374
|
previewImage?: string | null;
|
|
5560
5375
|
serializedFabric: NestedKeyValueObject;
|
|
5561
|
-
stickerShape
|
|
5562
|
-
stickerSize
|
|
5563
|
-
unit: PrintUnit;
|
|
5376
|
+
stickerShape?: StickerShape | null;
|
|
5377
|
+
stickerSize?: Array<any> | null;
|
|
5564
5378
|
}
|
|
5565
5379
|
export interface UpdatePrintStickerTemplateResponseBody {
|
|
5566
5380
|
printStickerTemplate: PrintStickerTemplate;
|
|
@@ -5850,9 +5664,6 @@ export declare class CreateAppRequest extends RequestPost<CreateAppPathParameter
|
|
|
5850
5664
|
export declare class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {
|
|
5851
5665
|
routeSegments?: RequestRouteSegment[];
|
|
5852
5666
|
}
|
|
5853
|
-
export declare class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedUrlPathParameters, undefined, CreateImageUploadPresignedUrlRequestBody, CreateImageUploadPresignedUrlResponseBody> {
|
|
5854
|
-
routeSegments?: RequestRouteSegment[];
|
|
5855
|
-
}
|
|
5856
5667
|
export declare class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {
|
|
5857
5668
|
routeSegments?: RequestRouteSegment[];
|
|
5858
5669
|
}
|
|
@@ -6219,9 +6030,6 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6219
6030
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6220
6031
|
routeSegments?: RequestRouteSegment[];
|
|
6221
6032
|
}
|
|
6222
|
-
export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
|
|
6223
|
-
routeSegments?: RequestRouteSegment[];
|
|
6224
|
-
}
|
|
6225
6033
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6226
6034
|
routeSegments?: RequestRouteSegment[];
|
|
6227
6035
|
}
|
|
@@ -6525,9 +6333,6 @@ export declare class SdkAccountAssettypesResources extends Resources {
|
|
|
6525
6333
|
create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody>;
|
|
6526
6334
|
get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody>;
|
|
6527
6335
|
}
|
|
6528
|
-
export declare class SdkAccountImageUploadResources extends Resources {
|
|
6529
|
-
create(requestBody: CreateImageUploadPresignedUrlRequestBody, options?: any): Promise<CreateImageUploadPresignedUrlResponseBody>;
|
|
6530
|
-
}
|
|
6531
6336
|
export declare class SdkAccountInvitationsResources extends Resources {
|
|
6532
6337
|
create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody>;
|
|
6533
6338
|
}
|
|
@@ -6672,7 +6477,6 @@ export declare class SdkAccountResource extends Resource {
|
|
|
6672
6477
|
apikeys(): SdkAccountApikeysResources;
|
|
6673
6478
|
apps(): SdkAccountAppsResources;
|
|
6674
6479
|
assettypes(): SdkAccountAssettypesResources;
|
|
6675
|
-
imageUpload(): SdkAccountImageUploadResources;
|
|
6676
6480
|
invitations(): SdkAccountInvitationsResources;
|
|
6677
6481
|
invitationsBatch(): SdkAccountInvitationsBatchResources;
|
|
6678
6482
|
locations(): SdkAccountLocationsResources;
|
|
@@ -6904,8 +6708,7 @@ export declare class SdkJobResource extends Resource {
|
|
|
6904
6708
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6905
6709
|
}
|
|
6906
6710
|
export declare class SdkPrintJobResource extends Resource {
|
|
6907
|
-
|
|
6908
|
-
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6711
|
+
update(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6909
6712
|
}
|
|
6910
6713
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6911
6714
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|