@openscreen/internal-sdk 1.8.94 → 1.8.96
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.esm.mjs +2 -0
- package/dist/index.esm.mjs.map +1 -0
- 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.js +2 -0
- package/dist/index.modern.js.map +1 -0
- 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 -9
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -1096,7 +1096,7 @@ export interface AssetGraph {
|
|
|
1096
1096
|
assetGraphId: string;
|
|
1097
1097
|
created?: string | Date | number | null;
|
|
1098
1098
|
direction?: string;
|
|
1099
|
-
edges
|
|
1099
|
+
edges?: Array<any> | null;
|
|
1100
1100
|
modified?: string | Date | number | null;
|
|
1101
1101
|
name: string;
|
|
1102
1102
|
nodes: Array<any>;
|
|
@@ -2826,6 +2826,16 @@ export interface RequestSessionAction {
|
|
|
2826
2826
|
timestamp?: string | Date | number | null;
|
|
2827
2827
|
willUpdateSession?: boolean;
|
|
2828
2828
|
}
|
|
2829
|
+
export interface ReservedMappedQrLocatorKey {
|
|
2830
|
+
_prefix?: string;
|
|
2831
|
+
created?: string | Date | number | null;
|
|
2832
|
+
customDomain: string;
|
|
2833
|
+
isStart: boolean;
|
|
2834
|
+
locatorKeyNumber: number;
|
|
2835
|
+
modified?: string | Date | number | null;
|
|
2836
|
+
pairLocatorKeyNumber: number;
|
|
2837
|
+
prefix: string;
|
|
2838
|
+
}
|
|
2829
2839
|
export interface ResponseAccountPlugin {
|
|
2830
2840
|
accountId: string;
|
|
2831
2841
|
appAccountId?: string | null;
|
|
@@ -5236,6 +5246,16 @@ export interface UpdateContactResponseBody {
|
|
|
5236
5246
|
contact: Contact;
|
|
5237
5247
|
contactId: string;
|
|
5238
5248
|
}
|
|
5249
|
+
export interface CheckCustomLocatorKeyRangePathParameters {
|
|
5250
|
+
customDomain: string;
|
|
5251
|
+
}
|
|
5252
|
+
export interface CheckCustomLocatorKeyRangeQueryStringParameters {
|
|
5253
|
+
endingValue: number;
|
|
5254
|
+
prefix: string;
|
|
5255
|
+
startingValue: number;
|
|
5256
|
+
}
|
|
5257
|
+
export interface CheckCustomLocatorKeyRangeResponseBody {
|
|
5258
|
+
}
|
|
5239
5259
|
export interface DeleteCustomDomainPathParameters {
|
|
5240
5260
|
customDomain: string;
|
|
5241
5261
|
}
|
|
@@ -6985,6 +7005,9 @@ export declare class LinkContactToScanRequest extends RequestPost<LinkContactToS
|
|
|
6985
7005
|
export declare class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {
|
|
6986
7006
|
routeSegments?: RequestRouteSegment[];
|
|
6987
7007
|
}
|
|
7008
|
+
export declare class CheckCustomLocatorKeyRangeRequest extends RequestGet<CheckCustomLocatorKeyRangePathParameters, CheckCustomLocatorKeyRangeQueryStringParameters, CheckCustomLocatorKeyRangeResponseBody> {
|
|
7009
|
+
routeSegments?: RequestRouteSegment[];
|
|
7010
|
+
}
|
|
6988
7011
|
export declare class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {
|
|
6989
7012
|
routeSegments?: RequestRouteSegment[];
|
|
6990
7013
|
}
|
|
@@ -7633,7 +7656,7 @@ export declare class SdkAppsAccountResource extends Resource {
|
|
|
7633
7656
|
main(): SdkAppsAccountMainResources;
|
|
7634
7657
|
get(options?: any): Promise<GetAppAccountByAppAccountIdResponseBody>;
|
|
7635
7658
|
}
|
|
7636
|
-
export declare class
|
|
7659
|
+
export declare class SdkAssetgraphResource extends Resource {
|
|
7637
7660
|
delete(options?: any): Promise<any>;
|
|
7638
7661
|
get(options?: any): Promise<GetAssetGraphResponseBody>;
|
|
7639
7662
|
update(requestBody: UpdateAssetGraphRequestBody, options?: any): Promise<UpdateAssetGraphResponseBody>;
|
|
@@ -7789,11 +7812,15 @@ export declare class SdkContactResource extends Resource {
|
|
|
7789
7812
|
get(options?: any): Promise<GetContactResponseBody>;
|
|
7790
7813
|
update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody>;
|
|
7791
7814
|
}
|
|
7792
|
-
export declare class
|
|
7815
|
+
export declare class SdkCustomdomainLocatorCollisionsResources extends Resources {
|
|
7816
|
+
get(queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters, options?: any): Promise<CheckCustomLocatorKeyRangeResponseBody>;
|
|
7817
|
+
}
|
|
7818
|
+
export declare class SdkCustomdomainRetryResources extends Resources {
|
|
7793
7819
|
create(options?: any): Promise<RetryCustomDomainResponseBody>;
|
|
7794
7820
|
}
|
|
7795
|
-
export declare class
|
|
7796
|
-
|
|
7821
|
+
export declare class SdkCustomdomainResource extends Resource {
|
|
7822
|
+
locatorCollisions(): SdkCustomdomainLocatorCollisionsResources;
|
|
7823
|
+
retry(): SdkCustomdomainRetryResources;
|
|
7797
7824
|
delete(options?: any): Promise<any>;
|
|
7798
7825
|
}
|
|
7799
7826
|
export declare class SdkFileValidateResources extends Resources {
|
|
@@ -7846,7 +7873,7 @@ export declare class SdkProjectJobsAssetbatchResources extends Resources {
|
|
|
7846
7873
|
export declare class SdkProjectPresignedurlJobsAssetbatchResources extends Resources {
|
|
7847
7874
|
create(requestBody: CreateAssetCreationPresignedUrlRequestBody, options?: any): Promise<CreateAssetCreationPresignedUrlResponseBody>;
|
|
7848
7875
|
}
|
|
7849
|
-
export declare class
|
|
7876
|
+
export declare class SdkProjectAssetgraphsResources extends Resources {
|
|
7850
7877
|
create(requestBody: CreateAssetGraphByProjectIdRequestBody, options?: any): Promise<CreateAssetGraphByProjectIdResponseBody>;
|
|
7851
7878
|
get(queryStringParameters: GetAssetGraphsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByProjectIdResponseBody>;
|
|
7852
7879
|
}
|
|
@@ -7951,7 +7978,7 @@ export declare class SdkProjectResource extends Resource {
|
|
|
7951
7978
|
assets(): SdkProjectAssetsResources;
|
|
7952
7979
|
jobsAssetbatch(): SdkProjectJobsAssetbatchResources;
|
|
7953
7980
|
presignedurlJobsAssetbatch(): SdkProjectPresignedurlJobsAssetbatchResources;
|
|
7954
|
-
|
|
7981
|
+
assetgraphs(): SdkProjectAssetgraphsResources;
|
|
7955
7982
|
assetsBatch(): SdkProjectAssetsBatchResources;
|
|
7956
7983
|
contacts(): SdkProjectContactsResources;
|
|
7957
7984
|
contactsBatch(): SdkProjectContactsBatchResources;
|
|
@@ -8132,7 +8159,7 @@ export declare class SdkResources extends Resources {
|
|
|
8132
8159
|
apps(): SdkAppsResources;
|
|
8133
8160
|
appsPublished(): SdkAppsPublishedResources;
|
|
8134
8161
|
appsAccount(appAccountId: string): SdkAppsAccountResource;
|
|
8135
|
-
|
|
8162
|
+
assetgraph(assetGraphId: string): SdkAssetgraphResource;
|
|
8136
8163
|
assettype(assetTypeId: string): SdkAssettypeResource;
|
|
8137
8164
|
asset(assetId: string): SdkAssetResource;
|
|
8138
8165
|
batch(batchId: string): SdkBatchResource;
|
|
@@ -8147,7 +8174,7 @@ export declare class SdkResources extends Resources {
|
|
|
8147
8174
|
billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource;
|
|
8148
8175
|
careAccounts(): SdkCareAccountsResources;
|
|
8149
8176
|
contact(contactId: string): SdkContactResource;
|
|
8150
|
-
|
|
8177
|
+
customdomain(customDomain: string): SdkCustomdomainResource;
|
|
8151
8178
|
file(fileId: string): SdkFileResource;
|
|
8152
8179
|
invitation(invitationId: string): SdkInvitationResource;
|
|
8153
8180
|
job(jobId: string): SdkJobResource;
|