@openscreen/internal-sdk 1.8.93 → 1.8.95
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 +25 -0
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -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,14 @@ 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
|
+
}
|
|
5239
5257
|
export interface DeleteCustomDomainPathParameters {
|
|
5240
5258
|
customDomain: string;
|
|
5241
5259
|
}
|
|
@@ -6985,6 +7003,9 @@ export declare class LinkContactToScanRequest extends RequestPost<LinkContactToS
|
|
|
6985
7003
|
export declare class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {
|
|
6986
7004
|
routeSegments?: RequestRouteSegment[];
|
|
6987
7005
|
}
|
|
7006
|
+
export declare class CheckCustomLocatorKeyRangeRequest extends RequestGet<CheckCustomLocatorKeyRangePathParameters, CheckCustomLocatorKeyRangeQueryStringParameters, undefined> {
|
|
7007
|
+
routeSegments?: RequestRouteSegment[];
|
|
7008
|
+
}
|
|
6988
7009
|
export declare class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {
|
|
6989
7010
|
routeSegments?: RequestRouteSegment[];
|
|
6990
7011
|
}
|
|
@@ -7789,10 +7810,14 @@ export declare class SdkContactResource extends Resource {
|
|
|
7789
7810
|
get(options?: any): Promise<GetContactResponseBody>;
|
|
7790
7811
|
update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody>;
|
|
7791
7812
|
}
|
|
7813
|
+
export declare class SdkCustomDomainLocatorCollisionsResources extends Resources {
|
|
7814
|
+
get(queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters, options?: any): Promise<any>;
|
|
7815
|
+
}
|
|
7792
7816
|
export declare class SdkCustomDomainRetryResources extends Resources {
|
|
7793
7817
|
create(options?: any): Promise<RetryCustomDomainResponseBody>;
|
|
7794
7818
|
}
|
|
7795
7819
|
export declare class SdkCustomDomainResource extends Resource {
|
|
7820
|
+
locatorCollisions(): SdkCustomDomainLocatorCollisionsResources;
|
|
7796
7821
|
retry(): SdkCustomDomainRetryResources;
|
|
7797
7822
|
delete(options?: any): Promise<any>;
|
|
7798
7823
|
}
|