@openscreen/internal-sdk 1.8.5 → 1.8.6
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.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/typings/sdk.d.ts +11 -1
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -446,6 +446,7 @@ export interface Account {
|
|
|
446
446
|
contactCount: number;
|
|
447
447
|
created?: string | Date | number | null;
|
|
448
448
|
customAttributeCount: number;
|
|
449
|
+
defaultCustomDomain?: string | null;
|
|
449
450
|
dynamicQrCodeCount: number;
|
|
450
451
|
emailCount: number;
|
|
451
452
|
isLocked?: boolean | null;
|
|
@@ -608,6 +609,7 @@ export interface AccountDomain {
|
|
|
608
609
|
nameServers?: Array<any> | null;
|
|
609
610
|
projectIds?: Array<any> | null;
|
|
610
611
|
status?: DomainStatus;
|
|
612
|
+
title?: string | null;
|
|
611
613
|
}
|
|
612
614
|
export interface AccountEmailContact {
|
|
613
615
|
accountId: string;
|
|
@@ -678,6 +680,7 @@ export interface AccountResponse extends Account {
|
|
|
678
680
|
created?: string | Date | number | null;
|
|
679
681
|
currentPeriod: PricePlanPeriod;
|
|
680
682
|
customAttributeCount: number;
|
|
683
|
+
defaultCustomDomain?: string | null;
|
|
681
684
|
dynamicQrCodeCount: number;
|
|
682
685
|
emailCount: number;
|
|
683
686
|
isLocked?: boolean | null;
|
|
@@ -1257,6 +1260,7 @@ export interface CareUIAccounByIdResponse extends Account {
|
|
|
1257
1260
|
created?: string | Date | number | null;
|
|
1258
1261
|
currentPeriod: PricePlanPeriod;
|
|
1259
1262
|
customAttributeCount: number;
|
|
1263
|
+
defaultCustomDomain?: string | null;
|
|
1260
1264
|
dynamicQrCodeCount: number;
|
|
1261
1265
|
emailCount: number;
|
|
1262
1266
|
isLocked?: boolean | null;
|
|
@@ -1311,6 +1315,7 @@ export interface CareUIPortalAccountResponse extends Account {
|
|
|
1311
1315
|
createdDate: string | Date | number;
|
|
1312
1316
|
currentPeriod: PricePlanPeriod;
|
|
1313
1317
|
customAttributeCount: number;
|
|
1318
|
+
defaultCustomDomain?: string | null;
|
|
1314
1319
|
dynamicQrCodeCount: number;
|
|
1315
1320
|
emailCount: number;
|
|
1316
1321
|
isLocked?: boolean | null;
|
|
@@ -3533,6 +3538,7 @@ export interface GetAccountResponseBody extends Account {
|
|
|
3533
3538
|
created?: string | Date | number | null;
|
|
3534
3539
|
currentPeriod: PricePlanPeriod;
|
|
3535
3540
|
customAttributeCount: number;
|
|
3541
|
+
defaultCustomDomain?: string | null;
|
|
3536
3542
|
dynamicQrCodeCount: number;
|
|
3537
3543
|
emailCount: number;
|
|
3538
3544
|
isLocked?: boolean | null;
|
|
@@ -4097,7 +4103,7 @@ export interface UpdateAccountPathParameters {
|
|
|
4097
4103
|
}
|
|
4098
4104
|
export interface UpdateAccountRequestBody {
|
|
4099
4105
|
companyName?: string | null;
|
|
4100
|
-
|
|
4106
|
+
defaultCustomDomain?: string | null;
|
|
4101
4107
|
}
|
|
4102
4108
|
export interface UpdateAccountResponseBody extends Account {
|
|
4103
4109
|
accountId: string;
|
|
@@ -4109,6 +4115,7 @@ export interface UpdateAccountResponseBody extends Account {
|
|
|
4109
4115
|
contactCount: number;
|
|
4110
4116
|
created?: string | Date | number | null;
|
|
4111
4117
|
customAttributeCount: number;
|
|
4118
|
+
defaultCustomDomain?: string | null;
|
|
4112
4119
|
dynamicQrCodeCount: number;
|
|
4113
4120
|
emailCount: number;
|
|
4114
4121
|
isLocked?: boolean | null;
|
|
@@ -4285,6 +4292,7 @@ export interface GetMainAccountByAppAccountIdResponseBody extends Account {
|
|
|
4285
4292
|
contactCount: number;
|
|
4286
4293
|
created?: string | Date | number | null;
|
|
4287
4294
|
customAttributeCount: number;
|
|
4295
|
+
defaultCustomDomain?: string | null;
|
|
4288
4296
|
dynamicQrCodeCount: number;
|
|
4289
4297
|
emailCount: number;
|
|
4290
4298
|
isLocked?: boolean | null;
|
|
@@ -4974,6 +4982,7 @@ export interface CreateCustomDomainByAccountIdPathParameters {
|
|
|
4974
4982
|
export interface CreateCustomDomainByAccountIdRequestBody {
|
|
4975
4983
|
customDomain: string;
|
|
4976
4984
|
projectId?: string | null;
|
|
4985
|
+
title?: string | null;
|
|
4977
4986
|
}
|
|
4978
4987
|
export interface CreateCustomDomainByAccountIdResponseBody {
|
|
4979
4988
|
accountDomain: AccountDomain;
|
|
@@ -6025,6 +6034,7 @@ export interface CreateAccountByUserIdResponseBody extends Account {
|
|
|
6025
6034
|
contactCount: number;
|
|
6026
6035
|
created?: string | Date | number | null;
|
|
6027
6036
|
customAttributeCount: number;
|
|
6037
|
+
defaultCustomDomain?: string | null;
|
|
6028
6038
|
dynamicQrCodeCount: number;
|
|
6029
6039
|
emailCount: number;
|
|
6030
6040
|
isLocked?: boolean | null;
|