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