@openscreen/internal-sdk 1.7.7 → 1.7.9
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 +28 -1
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -2164,9 +2164,10 @@ export interface PricePlanPeriod {
|
|
|
2164
2164
|
export interface PrintJob {
|
|
2165
2165
|
accountId: string;
|
|
2166
2166
|
appAccountId?: string | null;
|
|
2167
|
+
assetIds?: Array<any> | null;
|
|
2167
2168
|
callbackUrl?: string | null;
|
|
2168
2169
|
created?: string | Date | number | null;
|
|
2169
|
-
createdBy
|
|
2170
|
+
createdBy?: string | null;
|
|
2170
2171
|
errorMessage?: NestedKeyValueObject | null;
|
|
2171
2172
|
fileExpiry?: string | Date | number | null;
|
|
2172
2173
|
imageOptions?: QrCodeImageOptions | null;
|
|
@@ -2183,6 +2184,7 @@ export interface PrintJob {
|
|
|
2183
2184
|
printStickerTemplateName?: string | null;
|
|
2184
2185
|
progress?: number | null;
|
|
2185
2186
|
projectId?: string | null;
|
|
2187
|
+
serializedFabric?: NestedKeyValueObject | null;
|
|
2186
2188
|
sortField?: QrCodeSortingTypes | null;
|
|
2187
2189
|
source?: string | null;
|
|
2188
2190
|
status?: JobStatus;
|
|
@@ -2713,6 +2715,7 @@ export interface TagType {
|
|
|
2713
2715
|
imageOptions?: QrCodeImageOptions | null;
|
|
2714
2716
|
intent: string;
|
|
2715
2717
|
isAskingForGPS?: boolean;
|
|
2718
|
+
isUsingPrefixValues?: boolean;
|
|
2716
2719
|
leadingCharacter: string;
|
|
2717
2720
|
modified?: string | Date | number | null;
|
|
2718
2721
|
name: string;
|
|
@@ -3378,6 +3381,7 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3378
3381
|
}
|
|
3379
3382
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3380
3383
|
accountId: string;
|
|
3384
|
+
lastKey?: string | null;
|
|
3381
3385
|
numberOfPrintJobs: number;
|
|
3382
3386
|
printJobs: PrintJob[];
|
|
3383
3387
|
}
|
|
@@ -4529,12 +4533,24 @@ export interface DeleteJobPathParameters {
|
|
|
4529
4533
|
export interface DeleteJobResponseBody {
|
|
4530
4534
|
job: Job;
|
|
4531
4535
|
}
|
|
4536
|
+
export interface DeletePrintJobPathParameters {
|
|
4537
|
+
printJobId: string;
|
|
4538
|
+
}
|
|
4539
|
+
export interface DeletePrintJobResponseBody {
|
|
4540
|
+
printJob: PrintJob;
|
|
4541
|
+
}
|
|
4532
4542
|
export interface GetJobPathParameters {
|
|
4533
4543
|
jobId: string;
|
|
4534
4544
|
}
|
|
4535
4545
|
export interface GetJobResponseBody {
|
|
4536
4546
|
job: Job;
|
|
4537
4547
|
}
|
|
4548
|
+
export interface InvokePrintJobByJobIdPathParameters {
|
|
4549
|
+
printJobId: string;
|
|
4550
|
+
}
|
|
4551
|
+
export interface InvokePrintJobByJobIdResponseBody {
|
|
4552
|
+
printJob: PrintJob;
|
|
4553
|
+
}
|
|
4538
4554
|
export interface UpdateAssetsLocationsPathParameters {
|
|
4539
4555
|
locationId: string;
|
|
4540
4556
|
}
|
|
@@ -6022,9 +6038,15 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6022
6038
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6023
6039
|
routeSegments?: RequestRouteSegment[];
|
|
6024
6040
|
}
|
|
6041
|
+
export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
|
|
6042
|
+
routeSegments?: RequestRouteSegment[];
|
|
6043
|
+
}
|
|
6025
6044
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6026
6045
|
routeSegments?: RequestRouteSegment[];
|
|
6027
6046
|
}
|
|
6047
|
+
export declare class InvokePrintJobByJobIdRequest extends RequestPatch<InvokePrintJobByJobIdPathParameters, undefined, undefined, InvokePrintJobByJobIdResponseBody> {
|
|
6048
|
+
routeSegments?: RequestRouteSegment[];
|
|
6049
|
+
}
|
|
6028
6050
|
export declare class UpdateAssetsLocationsRequest extends RequestPatch<UpdateAssetsLocationsPathParameters, undefined, UpdateAssetsLocationsRequestBody, UpdateAssetsLocationsResponseBody> {
|
|
6029
6051
|
routeSegments?: RequestRouteSegment[];
|
|
6030
6052
|
}
|
|
@@ -6696,6 +6718,10 @@ export declare class SdkJobResource extends Resource {
|
|
|
6696
6718
|
delete(options?: any): Promise<DeleteJobResponseBody>;
|
|
6697
6719
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6698
6720
|
}
|
|
6721
|
+
export declare class SdkPrintJobResource extends Resource {
|
|
6722
|
+
delete(options?: any): Promise<DeletePrintJobResponseBody>;
|
|
6723
|
+
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6724
|
+
}
|
|
6699
6725
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6700
6726
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|
|
6701
6727
|
get(queryStringParameters: GetAssetsByLocationIdQueryStringParameters, options?: any): Promise<GetAssetsByLocationIdResponseBody>;
|
|
@@ -6984,6 +7010,7 @@ export declare class SdkResources extends Resources {
|
|
|
6984
7010
|
file(fileId: string): SdkFileResource;
|
|
6985
7011
|
invitation(invitationId: string): SdkInvitationResource;
|
|
6986
7012
|
job(jobId: string): SdkJobResource;
|
|
7013
|
+
printJob(printJobId: string): SdkPrintJobResource;
|
|
6987
7014
|
location(locationId: string): SdkLocationResource;
|
|
6988
7015
|
support(): SdkSupportResources;
|
|
6989
7016
|
pricePlans(): SdkPricePlansResources;
|