@openscreen/internal-sdk 1.9.1 → 1.9.3
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 +14 -0
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -6056,6 +6056,12 @@ export interface UpdateSmsTemplateResponseBody {
|
|
|
6056
6056
|
smsTemplateName?: string | null;
|
|
6057
6057
|
statusUrl?: string | null;
|
|
6058
6058
|
}
|
|
6059
|
+
export interface GetQrCodeLinkPathParameters {
|
|
6060
|
+
qrCodeLink: string;
|
|
6061
|
+
}
|
|
6062
|
+
export interface GetQrCodeLinkResponseBody {
|
|
6063
|
+
qrCodeLink: QrCodeLink;
|
|
6064
|
+
}
|
|
6059
6065
|
export interface GetQrCodeLogoByQrCodeLogoIdPathParameters {
|
|
6060
6066
|
qrCodeLogoId: string;
|
|
6061
6067
|
}
|
|
@@ -6119,6 +6125,7 @@ export interface GetQrCodeQueryStringParameters {
|
|
|
6119
6125
|
foregroundGradientRotation?: number | null;
|
|
6120
6126
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
6121
6127
|
format?: QrCodeType | null;
|
|
6128
|
+
getQrCodeLinks?: boolean;
|
|
6122
6129
|
lightColor?: string | null;
|
|
6123
6130
|
logo?: string | null;
|
|
6124
6131
|
logoMargin?: number | null;
|
|
@@ -7282,6 +7289,9 @@ export declare class UpdateProjectByProjectIdRequest extends RequestPatch<Update
|
|
|
7282
7289
|
export declare class UpdateSmsTemplateRequest extends RequestPatch<UpdateSmsTemplatePathParameters, undefined, UpdateSmsTemplateRequestBody, UpdateSmsTemplateResponseBody> {
|
|
7283
7290
|
routeSegments?: RequestRouteSegment[];
|
|
7284
7291
|
}
|
|
7292
|
+
export declare class GetQrCodeLinkRequest extends RequestGet<GetQrCodeLinkPathParameters, undefined, GetQrCodeLinkResponseBody> {
|
|
7293
|
+
routeSegments?: RequestRouteSegment[];
|
|
7294
|
+
}
|
|
7285
7295
|
export declare class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<GetQrCodeLogoByQrCodeLogoIdPathParameters, undefined, GetQrCodeLogoByQrCodeLogoIdResponseBody> {
|
|
7286
7296
|
routeSegments?: RequestRouteSegment[];
|
|
7287
7297
|
}
|
|
@@ -8111,6 +8121,9 @@ export declare class SdkProjectResource extends Resource {
|
|
|
8111
8121
|
get(options?: any): Promise<GetProjectByProjectIdResponseBody>;
|
|
8112
8122
|
update(requestBody: UpdateProjectByProjectIdRequestBody, options?: any): Promise<UpdateProjectByProjectIdResponseBody>;
|
|
8113
8123
|
}
|
|
8124
|
+
export declare class SdkQrcodelinkResource extends Resource {
|
|
8125
|
+
get(options?: any): Promise<GetQrCodeLinkResponseBody>;
|
|
8126
|
+
}
|
|
8114
8127
|
export declare class SdkQrcodelogoResource extends Resource {
|
|
8115
8128
|
get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody>;
|
|
8116
8129
|
update(requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody, options?: any): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody>;
|
|
@@ -8290,6 +8303,7 @@ export declare class SdkResources extends Resources {
|
|
|
8290
8303
|
support(): SdkSupportResources;
|
|
8291
8304
|
pricePlans(): SdkPricePlansResources;
|
|
8292
8305
|
project(projectId: string): SdkProjectResource;
|
|
8306
|
+
qrcodelink(qrCodeLink: string): SdkQrcodelinkResource;
|
|
8293
8307
|
qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource;
|
|
8294
8308
|
qrCode(qrCodeId: string): SdkQrCodeResource;
|
|
8295
8309
|
scan(scanId: string): SdkScanResource;
|