@openscreen/internal-sdk 1.9.2 → 1.9.4
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 +51 -2
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -9,7 +9,8 @@ export interface NestedKeyValueObject {
|
|
|
9
9
|
}
|
|
10
10
|
export declare enum AccountDomainTypes {
|
|
11
11
|
ENGAGE_MICROSITE = "ENGAGE_MICROSITE",
|
|
12
|
-
QRCODE = "QRCODE"
|
|
12
|
+
QRCODE = "QRCODE",
|
|
13
|
+
TRACK_WORKFLOW = "TRACK_WORKFLOW"
|
|
13
14
|
}
|
|
14
15
|
export declare enum AccountSortingTypes {
|
|
15
16
|
CREATED_DATE = "CREATED_DATE",
|
|
@@ -236,7 +237,9 @@ export declare enum PluginNameTypes {
|
|
|
236
237
|
GOOGLE_SHEET = "GOOGLE_SHEET",
|
|
237
238
|
CONDITIONAL_REDIRECT = "CONDITIONAL_REDIRECT",
|
|
238
239
|
GOOGLE_PLACES = "GOOGLE_PLACES",
|
|
239
|
-
REHRIG_BARRIE_ADDRESS_DYNAMO_DB = "REHRIG_BARRIE_ADDRESS_DYNAMO_DB"
|
|
240
|
+
REHRIG_BARRIE_ADDRESS_DYNAMO_DB = "REHRIG_BARRIE_ADDRESS_DYNAMO_DB",
|
|
241
|
+
GUND = "GUND",
|
|
242
|
+
KLAVIYO = "KLAVIYO"
|
|
240
243
|
}
|
|
241
244
|
export declare enum PluginStatus {
|
|
242
245
|
ACTIVE = "ACTIVE",
|
|
@@ -625,6 +628,7 @@ export interface AccountByUserCount {
|
|
|
625
628
|
}
|
|
626
629
|
export interface AccountDomain {
|
|
627
630
|
accountId: string;
|
|
631
|
+
cnameValue?: string | null;
|
|
628
632
|
created?: string | Date | number | null;
|
|
629
633
|
customDomain: string;
|
|
630
634
|
hostedZoneId?: string | null;
|
|
@@ -3984,6 +3988,13 @@ export interface GetContactsByAccountIdResponseBody {
|
|
|
3984
3988
|
lastKey?: string | null;
|
|
3985
3989
|
numberOfContacts: number;
|
|
3986
3990
|
}
|
|
3991
|
+
export interface GetDecryptedKlaviyoKeyPathParameters {
|
|
3992
|
+
accountId: string;
|
|
3993
|
+
pluginId: string;
|
|
3994
|
+
}
|
|
3995
|
+
export interface GetDecryptedKlaviyoKeyResponseBody {
|
|
3996
|
+
key?: string | null;
|
|
3997
|
+
}
|
|
3987
3998
|
export interface GetDomainsByAccountIdPathParameters {
|
|
3988
3999
|
accountId: string;
|
|
3989
4000
|
}
|
|
@@ -4393,6 +4404,16 @@ export interface UpdateAccountResponseBody extends Account {
|
|
|
4393
4404
|
visibleContacts?: number | null;
|
|
4394
4405
|
webSessionCount?: number | null;
|
|
4395
4406
|
}
|
|
4407
|
+
export interface UpdateKlaviyoAccountPluginPathParameters {
|
|
4408
|
+
accountId: string;
|
|
4409
|
+
pluginId: string;
|
|
4410
|
+
}
|
|
4411
|
+
export interface UpdateKlaviyoAccountPluginRequestBody {
|
|
4412
|
+
key?: string | null;
|
|
4413
|
+
}
|
|
4414
|
+
export interface UpdateKlaviyoAccountPluginResponseBody {
|
|
4415
|
+
accountPlugin: AccountPlugin;
|
|
4416
|
+
}
|
|
4396
4417
|
export interface UpdateEngagePricePlanPathParameters {
|
|
4397
4418
|
accountId: string;
|
|
4398
4419
|
}
|
|
@@ -6055,6 +6076,12 @@ export interface UpdateSmsTemplateResponseBody {
|
|
|
6055
6076
|
smsTemplateName?: string | null;
|
|
6056
6077
|
statusUrl?: string | null;
|
|
6057
6078
|
}
|
|
6079
|
+
export interface GetQrCodeLinkPathParameters {
|
|
6080
|
+
qrCodeLink: string;
|
|
6081
|
+
}
|
|
6082
|
+
export interface GetQrCodeLinkResponseBody {
|
|
6083
|
+
qrCodeLink: QrCodeLink;
|
|
6084
|
+
}
|
|
6058
6085
|
export interface GetQrCodeLogoByQrCodeLogoIdPathParameters {
|
|
6059
6086
|
qrCodeLogoId: string;
|
|
6060
6087
|
}
|
|
@@ -6118,6 +6145,7 @@ export interface GetQrCodeQueryStringParameters {
|
|
|
6118
6145
|
foregroundGradientRotation?: number | null;
|
|
6119
6146
|
foregroundGradientType?: QrCodeGradientTypes | null;
|
|
6120
6147
|
format?: QrCodeType | null;
|
|
6148
|
+
getQrCodeLinks?: boolean;
|
|
6121
6149
|
lightColor?: string | null;
|
|
6122
6150
|
logo?: string | null;
|
|
6123
6151
|
logoMargin?: number | null;
|
|
@@ -6783,6 +6811,9 @@ export declare class GetContactExportByAccountIdRequest extends RequestPost<GetC
|
|
|
6783
6811
|
export declare class GetContactsByAccountIdRequest extends RequestGet<GetContactsByAccountIdPathParameters, GetContactsByAccountIdQueryStringParameters, GetContactsByAccountIdResponseBody> {
|
|
6784
6812
|
routeSegments?: RequestRouteSegment[];
|
|
6785
6813
|
}
|
|
6814
|
+
export declare class GetDecryptedKlaviyoKeyRequest extends RequestGet<GetDecryptedKlaviyoKeyPathParameters, undefined, GetDecryptedKlaviyoKeyResponseBody> {
|
|
6815
|
+
routeSegments?: RequestRouteSegment[];
|
|
6816
|
+
}
|
|
6786
6817
|
export declare class GetDomainsByAccountIdRequest extends RequestGet<GetDomainsByAccountIdPathParameters, GetDomainsByAccountIdQueryStringParameters, GetDomainsByAccountIdResponseBody> {
|
|
6787
6818
|
routeSegments?: RequestRouteSegment[];
|
|
6788
6819
|
}
|
|
@@ -6876,6 +6907,9 @@ export declare class TestDomainConnectionRequest extends RequestPatch<TestDomain
|
|
|
6876
6907
|
export declare class UpdateAccountRequest extends RequestPatch<UpdateAccountPathParameters, undefined, UpdateAccountRequestBody, UpdateAccountResponseBody> {
|
|
6877
6908
|
routeSegments?: RequestRouteSegment[];
|
|
6878
6909
|
}
|
|
6910
|
+
export declare class UpdateKlaviyoAccountPluginRequest extends RequestPatch<UpdateKlaviyoAccountPluginPathParameters, undefined, UpdateKlaviyoAccountPluginRequestBody, UpdateKlaviyoAccountPluginResponseBody> {
|
|
6911
|
+
routeSegments?: RequestRouteSegment[];
|
|
6912
|
+
}
|
|
6879
6913
|
export declare class UpdateEngagePricePlanRequest extends RequestPatch<UpdateEngagePricePlanPathParameters, undefined, UpdateEngagePricePlanRequestBody, UpdateEngagePricePlanResponseBody> {
|
|
6880
6914
|
routeSegments?: RequestRouteSegment[];
|
|
6881
6915
|
}
|
|
@@ -7281,6 +7315,9 @@ export declare class UpdateProjectByProjectIdRequest extends RequestPatch<Update
|
|
|
7281
7315
|
export declare class UpdateSmsTemplateRequest extends RequestPatch<UpdateSmsTemplatePathParameters, undefined, UpdateSmsTemplateRequestBody, UpdateSmsTemplateResponseBody> {
|
|
7282
7316
|
routeSegments?: RequestRouteSegment[];
|
|
7283
7317
|
}
|
|
7318
|
+
export declare class GetQrCodeLinkRequest extends RequestGet<GetQrCodeLinkPathParameters, undefined, GetQrCodeLinkResponseBody> {
|
|
7319
|
+
routeSegments?: RequestRouteSegment[];
|
|
7320
|
+
}
|
|
7284
7321
|
export declare class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<GetQrCodeLogoByQrCodeLogoIdPathParameters, undefined, GetQrCodeLogoByQrCodeLogoIdResponseBody> {
|
|
7285
7322
|
routeSegments?: RequestRouteSegment[];
|
|
7286
7323
|
}
|
|
@@ -7541,11 +7578,19 @@ export declare class SdkAccountContactsBatchResources extends Resources {
|
|
|
7541
7578
|
export declare class SdkAccountPluginPasswordResources extends Resources {
|
|
7542
7579
|
get(options?: any): Promise<GetAccountPluginPasswordResponseBody>;
|
|
7543
7580
|
}
|
|
7581
|
+
export declare class SdkAccountPluginKlaviyoKeyResources extends Resources {
|
|
7582
|
+
get(options?: any): Promise<GetDecryptedKlaviyoKeyResponseBody>;
|
|
7583
|
+
}
|
|
7584
|
+
export declare class SdkAccountPluginKlaviyoResources extends Resources {
|
|
7585
|
+
update(requestBody: UpdateKlaviyoAccountPluginRequestBody, options?: any): Promise<UpdateKlaviyoAccountPluginResponseBody>;
|
|
7586
|
+
}
|
|
7544
7587
|
export declare class SdkAccountPluginRehrigResources extends Resources {
|
|
7545
7588
|
update(requestBody: UpdateRehrigAccountPluginRequestBody, options?: any): Promise<UpdateRehrigAccountPluginResponseBody>;
|
|
7546
7589
|
}
|
|
7547
7590
|
export declare class SdkAccountPluginResource extends Resource {
|
|
7548
7591
|
password(): SdkAccountPluginPasswordResources;
|
|
7592
|
+
klaviyoKey(): SdkAccountPluginKlaviyoKeyResources;
|
|
7593
|
+
klaviyo(): SdkAccountPluginKlaviyoResources;
|
|
7549
7594
|
rehrig(): SdkAccountPluginRehrigResources;
|
|
7550
7595
|
update(options?: any): Promise<any>;
|
|
7551
7596
|
}
|
|
@@ -8110,6 +8155,9 @@ export declare class SdkProjectResource extends Resource {
|
|
|
8110
8155
|
get(options?: any): Promise<GetProjectByProjectIdResponseBody>;
|
|
8111
8156
|
update(requestBody: UpdateProjectByProjectIdRequestBody, options?: any): Promise<UpdateProjectByProjectIdResponseBody>;
|
|
8112
8157
|
}
|
|
8158
|
+
export declare class SdkQrcodelinkResource extends Resource {
|
|
8159
|
+
get(options?: any): Promise<GetQrCodeLinkResponseBody>;
|
|
8160
|
+
}
|
|
8113
8161
|
export declare class SdkQrcodelogoResource extends Resource {
|
|
8114
8162
|
get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody>;
|
|
8115
8163
|
update(requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody, options?: any): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody>;
|
|
@@ -8289,6 +8337,7 @@ export declare class SdkResources extends Resources {
|
|
|
8289
8337
|
support(): SdkSupportResources;
|
|
8290
8338
|
pricePlans(): SdkPricePlansResources;
|
|
8291
8339
|
project(projectId: string): SdkProjectResource;
|
|
8340
|
+
qrcodelink(qrCodeLink: string): SdkQrcodelinkResource;
|
|
8292
8341
|
qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource;
|
|
8293
8342
|
qrCode(qrCodeId: string): SdkQrCodeResource;
|
|
8294
8343
|
scan(scanId: string): SdkScanResource;
|