@openscreen/internal-sdk 1.7.8 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openscreen/internal-sdk",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -2167,7 +2167,7 @@ export interface PrintJob {
2167
2167
  assetIds?: Array<any> | null;
2168
2168
  callbackUrl?: string | null;
2169
2169
  created?: string | Date | number | null;
2170
- createdBy: string;
2170
+ createdBy?: string | null;
2171
2171
  errorMessage?: NestedKeyValueObject | null;
2172
2172
  fileExpiry?: string | Date | number | null;
2173
2173
  imageOptions?: QrCodeImageOptions | null;
@@ -2715,6 +2715,7 @@ export interface TagType {
2715
2715
  imageOptions?: QrCodeImageOptions | null;
2716
2716
  intent: string;
2717
2717
  isAskingForGPS?: boolean;
2718
+ isUsingPrefixValues?: boolean;
2718
2719
  leadingCharacter: string;
2719
2720
  modified?: string | Date | number | null;
2720
2721
  name: string;
@@ -6037,7 +6038,7 @@ export declare class GetInvitationRequest extends RequestGet<GetInvitationPathPa
6037
6038
  export declare class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {
6038
6039
  routeSegments?: RequestRouteSegment[];
6039
6040
  }
6040
- export declare class DeletePrintJobRequest extends RequestPatch<DeletePrintJobPathParameters, undefined, undefined, DeletePrintJobResponseBody> {
6041
+ export declare class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {
6041
6042
  routeSegments?: RequestRouteSegment[];
6042
6043
  }
6043
6044
  export declare class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {
@@ -6718,6 +6719,7 @@ export declare class SdkJobResource extends Resource {
6718
6719
  get(options?: any): Promise<GetJobResponseBody>;
6719
6720
  }
6720
6721
  export declare class SdkPrintJobResource extends Resource {
6722
+ delete(options?: any): Promise<DeletePrintJobResponseBody>;
6721
6723
  invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody>;
6722
6724
  }
6723
6725
  export declare class SdkLocationAssetsResources extends Resources {