@openscreen/internal-sdk 1.7.6 → 1.7.8
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 +25 -0
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -2164,6 +2164,7 @@ 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
2170
|
createdBy: string;
|
|
@@ -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;
|
|
@@ -3378,6 +3380,7 @@ export interface GetPrintJobsByAccountIdQueryStringParameters {
|
|
|
3378
3380
|
}
|
|
3379
3381
|
export interface GetPrintJobsByAccountIdResponseBody {
|
|
3380
3382
|
accountId: string;
|
|
3383
|
+
lastKey?: string | null;
|
|
3381
3384
|
numberOfPrintJobs: number;
|
|
3382
3385
|
printJobs: PrintJob[];
|
|
3383
3386
|
}
|
|
@@ -4529,12 +4532,24 @@ export interface DeleteJobPathParameters {
|
|
|
4529
4532
|
export interface DeleteJobResponseBody {
|
|
4530
4533
|
job: Job;
|
|
4531
4534
|
}
|
|
4535
|
+
export interface DeletePrintJobPathParameters {
|
|
4536
|
+
printJobId: string;
|
|
4537
|
+
}
|
|
4538
|
+
export interface DeletePrintJobResponseBody {
|
|
4539
|
+
printJob: PrintJob;
|
|
4540
|
+
}
|
|
4532
4541
|
export interface GetJobPathParameters {
|
|
4533
4542
|
jobId: string;
|
|
4534
4543
|
}
|
|
4535
4544
|
export interface GetJobResponseBody {
|
|
4536
4545
|
job: Job;
|
|
4537
4546
|
}
|
|
4547
|
+
export interface InvokePrintJobByJobIdPathParameters {
|
|
4548
|
+
printJobId: string;
|
|
4549
|
+
}
|
|
4550
|
+
export interface InvokePrintJobByJobIdResponseBody {
|
|
4551
|
+
printJob: PrintJob;
|
|
4552
|
+
}
|
|
4538
4553
|
export interface UpdateAssetsLocationsPathParameters {
|
|
4539
4554
|
locationId: string;
|
|
4540
4555
|
}
|
|
@@ -6022,9 +6037,15 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
|
|
|
6022
6037
|
export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
|
|
6023
6038
|
routeSegments?: RequestRouteSegment[];
|
|
6024
6039
|
}
|
|
6040
|
+
export declare class DeletePrintJobRequest extends RequestPatch<DeletePrintJobPathParameters, undefined, undefined, DeletePrintJobResponseBody> {
|
|
6041
|
+
routeSegments?: RequestRouteSegment[];
|
|
6042
|
+
}
|
|
6025
6043
|
export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
|
|
6026
6044
|
routeSegments?: RequestRouteSegment[];
|
|
6027
6045
|
}
|
|
6046
|
+
export declare class InvokePrintJobByJobIdRequest extends RequestPatch<InvokePrintJobByJobIdPathParameters, undefined, undefined, InvokePrintJobByJobIdResponseBody> {
|
|
6047
|
+
routeSegments?: RequestRouteSegment[];
|
|
6048
|
+
}
|
|
6028
6049
|
export declare class UpdateAssetsLocationsRequest extends RequestPatch<UpdateAssetsLocationsPathParameters, undefined, UpdateAssetsLocationsRequestBody, UpdateAssetsLocationsResponseBody> {
|
|
6029
6050
|
routeSegments?: RequestRouteSegment[];
|
|
6030
6051
|
}
|
|
@@ -6696,6 +6717,9 @@ export declare class SdkJobResource extends Resource {
|
|
|
6696
6717
|
delete(options?: any): Promise<DeleteJobResponseBody>;
|
|
6697
6718
|
get(options?: any): Promise<GetJobResponseBody>;
|
|
6698
6719
|
}
|
|
6720
|
+
export declare class SdkPrintJobResource extends Resource {
|
|
6721
|
+
invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
|
|
6722
|
+
}
|
|
6699
6723
|
export declare class SdkLocationAssetsResources extends Resources {
|
|
6700
6724
|
update(requestBody: UpdateAssetsLocationsRequestBody, options?: any): Promise<UpdateAssetsLocationsResponseBody>;
|
|
6701
6725
|
get(queryStringParameters: GetAssetsByLocationIdQueryStringParameters, options?: any): Promise<GetAssetsByLocationIdResponseBody>;
|
|
@@ -6984,6 +7008,7 @@ export declare class SdkResources extends Resources {
|
|
|
6984
7008
|
file(fileId: string): SdkFileResource;
|
|
6985
7009
|
invitation(invitationId: string): SdkInvitationResource;
|
|
6986
7010
|
job(jobId: string): SdkJobResource;
|
|
7011
|
+
printJob(printJobId: string): SdkPrintJobResource;
|
|
6987
7012
|
location(locationId: string): SdkLocationResource;
|
|
6988
7013
|
support(): SdkSupportResources;
|
|
6989
7014
|
pricePlans(): SdkPricePlansResources;
|