@openscreen/internal-sdk 1.8.84 → 1.8.86

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openscreen/internal-sdk",
3
- "version": "1.8.84",
3
+ "version": "1.8.86",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -35,7 +35,8 @@ export declare enum AccountUserRole {
35
35
  BILLING_CONTACT = "BILLING_CONTACT",
36
36
  MEMBER = "MEMBER",
37
37
  API_KEY = "API_KEY",
38
- INVITATION_DECLINED = "INVITATION_DECLINED"
38
+ INVITATION_DECLINED = "INVITATION_DECLINED",
39
+ READ_ONLY = "READ_ONLY"
39
40
  }
40
41
  export declare enum AssetByAssetTypeSortingTypes {
41
42
  MODIFIED = "MODIFIED",
@@ -224,7 +225,8 @@ export declare enum PluginNameTypes {
224
225
  REHRIG_VISION = "REHRIG_VISION",
225
226
  HOTWIRE = "HOTWIRE",
226
227
  GOOGLE_SHEET = "GOOGLE_SHEET",
227
- CONDITIONAL_REDIRECT = "CONDITIONAL_REDIRECT"
228
+ CONDITIONAL_REDIRECT = "CONDITIONAL_REDIRECT",
229
+ GOOGLE_PLACES = "GOOGLE_PLACES"
228
230
  }
229
231
  export declare enum PluginStatus {
230
232
  ACTIVE = "ACTIVE",
@@ -5091,6 +5093,15 @@ export interface UpdateContactResponseBody {
5091
5093
  contact: Contact;
5092
5094
  contactId: string;
5093
5095
  }
5096
+ export interface DeleteCustomDomainPathParameters {
5097
+ customDomain: string;
5098
+ }
5099
+ export interface RetryCustomDomainPathParameters {
5100
+ customDomain: string;
5101
+ }
5102
+ export interface RetryCustomDomainResponseBody {
5103
+ accoutDomain: AccountDomain;
5104
+ }
5094
5105
  export interface GetFilePathParameters {
5095
5106
  fileId: string;
5096
5107
  }
@@ -6781,6 +6792,12 @@ export declare class LinkContactToScanRequest extends RequestPost<LinkContactToS
6781
6792
  export declare class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {
6782
6793
  routeSegments?: RequestRouteSegment[];
6783
6794
  }
6795
+ export declare class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {
6796
+ routeSegments?: RequestRouteSegment[];
6797
+ }
6798
+ export declare class RetryCustomDomainRequest extends RequestPost<RetryCustomDomainPathParameters, undefined, undefined, RetryCustomDomainResponseBody> {
6799
+ routeSegments?: RequestRouteSegment[];
6800
+ }
6784
6801
  export declare class GetFileRequest extends RequestPost<GetFilePathParameters, undefined, undefined, GetFileResponseBody> {
6785
6802
  routeSegments?: RequestRouteSegment[];
6786
6803
  }
@@ -7547,6 +7564,13 @@ export declare class SdkContactResource extends Resource {
7547
7564
  get(options?: any): Promise<GetContactResponseBody>;
7548
7565
  update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody>;
7549
7566
  }
7567
+ export declare class SdkCustomDomainRetryResources extends Resources {
7568
+ create(options?: any): Promise<RetryCustomDomainResponseBody>;
7569
+ }
7570
+ export declare class SdkCustomDomainResource extends Resource {
7571
+ retry(): SdkCustomDomainRetryResources;
7572
+ delete(options?: any): Promise<any>;
7573
+ }
7550
7574
  export declare class SdkFileValidateResources extends Resources {
7551
7575
  create(options?: any): Promise<ValidateFileResponseBody>;
7552
7576
  }
@@ -7892,6 +7916,7 @@ export declare class SdkResources extends Resources {
7892
7916
  billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource;
7893
7917
  careAccounts(): SdkCareAccountsResources;
7894
7918
  contact(contactId: string): SdkContactResource;
7919
+ customDomain(customDomain: string): SdkCustomDomainResource;
7895
7920
  file(fileId: string): SdkFileResource;
7896
7921
  invitation(invitationId: string): SdkInvitationResource;
7897
7922
  job(jobId: string): SdkJobResource;