@openscreen/internal-sdk 1.8.1 → 1.8.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 +36 -5
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -189,7 +189,8 @@ export declare enum JobType {
|
|
|
189
189
|
CONTACT_EXPORT = "CONTACT_EXPORT",
|
|
190
190
|
TEMPLATED_PRINT = "TEMPLATED_PRINT",
|
|
191
191
|
CLONE_MICROSITE = "CLONE_MICROSITE",
|
|
192
|
-
QRCODE_SCANS_EXPORT = "QRCODE_SCANS_EXPORT"
|
|
192
|
+
QRCODE_SCANS_EXPORT = "QRCODE_SCANS_EXPORT",
|
|
193
|
+
PROJECT_EXPORT = "PROJECT_EXPORT"
|
|
193
194
|
}
|
|
194
195
|
export declare enum Label {
|
|
195
196
|
NONE = "NONE",
|
|
@@ -634,9 +635,9 @@ export interface AccountPhoneContact {
|
|
|
634
635
|
}
|
|
635
636
|
export interface AccountPlugin {
|
|
636
637
|
accountId: string;
|
|
637
|
-
appAccountId
|
|
638
|
+
appAccountId?: string | null;
|
|
638
639
|
created?: string | Date | number | null;
|
|
639
|
-
|
|
640
|
+
isEnabled?: boolean;
|
|
640
641
|
modified?: string | Date | number | null;
|
|
641
642
|
pluginId: string;
|
|
642
643
|
}
|
|
@@ -1726,6 +1727,7 @@ export interface Job {
|
|
|
1726
1727
|
accountId: string;
|
|
1727
1728
|
appAccountId?: string | null;
|
|
1728
1729
|
callbackUrl?: string | null;
|
|
1730
|
+
childJobIds?: Array<any>;
|
|
1729
1731
|
created?: string | Date | number | null;
|
|
1730
1732
|
errorMessage?: NestedKeyValueObject | null;
|
|
1731
1733
|
expires?: string | Date | number | null;
|
|
@@ -2710,6 +2712,14 @@ export interface RequestSessionAction {
|
|
|
2710
2712
|
timestamp?: string | Date | number | null;
|
|
2711
2713
|
willUpdateSession?: boolean;
|
|
2712
2714
|
}
|
|
2715
|
+
export interface ResponseAccountPlugin {
|
|
2716
|
+
accountId: string;
|
|
2717
|
+
appAccountId?: string | null;
|
|
2718
|
+
icon: string;
|
|
2719
|
+
isEnabled?: boolean;
|
|
2720
|
+
name: string;
|
|
2721
|
+
pluginId: string;
|
|
2722
|
+
}
|
|
2713
2723
|
export interface ResponseAsset {
|
|
2714
2724
|
appAccountId?: string | null;
|
|
2715
2725
|
appId?: string | null;
|
|
@@ -3762,8 +3772,9 @@ export interface GetPluginsByAccountIdPathParameters {
|
|
|
3762
3772
|
}
|
|
3763
3773
|
export interface GetPluginsByAccountIdResponseBody {
|
|
3764
3774
|
accountId: string;
|
|
3765
|
-
|
|
3766
|
-
|
|
3775
|
+
lastKey?: string | null;
|
|
3776
|
+
numberOfPlugins: number;
|
|
3777
|
+
plugins: ResponseAccountPlugin[];
|
|
3767
3778
|
}
|
|
3768
3779
|
export interface GetPricePlanByAccountIdPathParameters {
|
|
3769
3780
|
accountId: string;
|
|
@@ -4651,6 +4662,7 @@ export interface UpdateAssetRequestBody {
|
|
|
4651
4662
|
name?: string | null;
|
|
4652
4663
|
parentAssetId?: string | null;
|
|
4653
4664
|
state?: string | null;
|
|
4665
|
+
willCreateSession?: boolean | null;
|
|
4654
4666
|
}
|
|
4655
4667
|
export interface UpdateAssetResponseBody {
|
|
4656
4668
|
asset: Asset;
|
|
@@ -5282,6 +5294,18 @@ export interface GetAdvancedScanReportByProjectIdResponseBody {
|
|
|
5282
5294
|
scansTotal: number;
|
|
5283
5295
|
staticQRCodesTotal: number;
|
|
5284
5296
|
}
|
|
5297
|
+
export interface GetAllExportsByProjectIdPathParameters {
|
|
5298
|
+
projectId: string;
|
|
5299
|
+
}
|
|
5300
|
+
export interface GetAllExportsByProjectIdRequestBody {
|
|
5301
|
+
email?: string | null;
|
|
5302
|
+
format?: string;
|
|
5303
|
+
from?: string | Date | number | null;
|
|
5304
|
+
to?: string | Date | number | null;
|
|
5305
|
+
}
|
|
5306
|
+
export interface GetAllExportsByProjectIdResponseBody {
|
|
5307
|
+
job: Job;
|
|
5308
|
+
}
|
|
5285
5309
|
export interface GetAssetExportByProjectIdPathParameters {
|
|
5286
5310
|
projectId: string;
|
|
5287
5311
|
}
|
|
@@ -6607,6 +6631,9 @@ export declare class GetAdvancedContactReportByProjectIdRequest extends RequestG
|
|
|
6607
6631
|
export declare class GetAdvancedScanReportByProjectIdRequest extends RequestGet<GetAdvancedScanReportByProjectIdPathParameters, GetAdvancedScanReportByProjectIdQueryStringParameters, GetAdvancedScanReportByProjectIdResponseBody> {
|
|
6608
6632
|
routeSegments?: RequestRouteSegment[];
|
|
6609
6633
|
}
|
|
6634
|
+
export declare class GetAllExportsByProjectIdRequest extends RequestPost<GetAllExportsByProjectIdPathParameters, undefined, GetAllExportsByProjectIdRequestBody, GetAllExportsByProjectIdResponseBody> {
|
|
6635
|
+
routeSegments?: RequestRouteSegment[];
|
|
6636
|
+
}
|
|
6610
6637
|
export declare class GetAssetExportByProjectIdRequest extends RequestPost<GetAssetExportByProjectIdPathParameters, undefined, GetAssetExportByProjectIdRequestBody, GetAssetExportByProjectIdResponseBody> {
|
|
6611
6638
|
routeSegments?: RequestRouteSegment[];
|
|
6612
6639
|
}
|
|
@@ -7312,6 +7339,9 @@ export declare class SdkProjectAdvancedContactsReportResources extends Resources
|
|
|
7312
7339
|
export declare class SdkProjectAdvancedScansReportResources extends Resources {
|
|
7313
7340
|
get(queryStringParameters: GetAdvancedScanReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByProjectIdResponseBody>;
|
|
7314
7341
|
}
|
|
7342
|
+
export declare class SdkProjectExportResources extends Resources {
|
|
7343
|
+
create(requestBody: GetAllExportsByProjectIdRequestBody, options?: any): Promise<GetAllExportsByProjectIdResponseBody>;
|
|
7344
|
+
}
|
|
7315
7345
|
export declare class SdkProjectAssetsExportResources extends Resources {
|
|
7316
7346
|
create(requestBody: GetAssetExportByProjectIdRequestBody, options?: any): Promise<GetAssetExportByProjectIdResponseBody>;
|
|
7317
7347
|
}
|
|
@@ -7371,6 +7401,7 @@ export declare class SdkProjectResource extends Resource {
|
|
|
7371
7401
|
advancedAssetsReport(): SdkProjectAdvancedAssetsReportResources;
|
|
7372
7402
|
advancedContactsReport(): SdkProjectAdvancedContactsReportResources;
|
|
7373
7403
|
advancedScansReport(): SdkProjectAdvancedScansReportResources;
|
|
7404
|
+
export(): SdkProjectExportResources;
|
|
7374
7405
|
assetsExport(): SdkProjectAssetsExportResources;
|
|
7375
7406
|
basicAssetsReport(): SdkProjectBasicAssetsReportResources;
|
|
7376
7407
|
basicContactsReport(): SdkProjectBasicContactsReportResources;
|